/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.5.29-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: soloswaps_sl26
-- ------------------------------------------------------
-- Server version	10.5.29-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Current Database: `soloswaps_sl26`
--


--
-- Table structure for table `approved_sites`
--

DROP TABLE IF EXISTS `approved_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `approved_sites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `domain` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `approved_sites`
--

LOCK TABLES `approved_sites` WRITE;
/*!40000 ALTER TABLE `approved_sites` DISABLE KEYS */;
/*!40000 ALTER TABLE `approved_sites` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banned_sites`
--

DROP TABLE IF EXISTS `banned_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `banned_sites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `domain` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `banned_sites`
--

LOCK TABLES `banned_sites` WRITE;
/*!40000 ALTER TABLE `banned_sites` DISABLE KEYS */;
/*!40000 ALTER TABLE `banned_sites` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banned_words`
--

DROP TABLE IF EXISTS `banned_words`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `banned_words` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `word` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `banned_words`
--

LOCK TABLES `banned_words` WRITE;
/*!40000 ALTER TABLE `banned_words` DISABLE KEYS */;
/*!40000 ALTER TABLE `banned_words` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_ai`
--

DROP TABLE IF EXISTS `geniuxs_ai`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_ai` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `creator` tinyint(1) NOT NULL DEFAULT 0,
  `aidata` text NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_ai`
--

LOCK TABLES `geniuxs_ai` WRITE;
/*!40000 ALTER TABLE `geniuxs_ai` DISABLE KEYS */;
INSERT INTO `geniuxs_ai` (`id`, `name`, `creator`, `aidata`) VALUES (1,'LFMVM AI',1,'{\"descr\":\"A database for a viral mailer website that combines a viral mailer, a banner exchange, and a text ad exchange\",\"userinfo\":\"Search for information about credits, banners in rotation, mailing logs, and other mailer-related topics\",\"tables\":{\"oto_mbanners\":{\"descr\":\"The list of banner ads in the exchange\",\"columns\":{\"id\":{\"type\":\"int, Primary Key\",\"descr\":\"Banner ID\"},\"state\":{\"type\":\"tinyint\",\"descr\":\"Status 0=\\\"Pending\\\", 1=\\\"enabled\\\", 2=\\\"paused by member\\\", 3=\\\"suspended by admin\\\"\"},\"memid\":{\"type\":\"int\",\"descr\":\"The User ID who submitted the banner\"},\"img\":{\"type\":\"varchar\",\"descr\":\"The image URL of the banner\"},\"target\":{\"type\":\"varchar\",\"descr\":\"The target URL of the banner\"},\"imps\":{\"type\":\"int\",\"descr\":\"Number of impressions currently assigned to the banner\"},\"hits\":{\"type\":\"int\",\"descr\":\"Number of impressions the banner received\"},\"clicks\":{\"type\":\"int\",\"descr\":\"Number of clicks the banner received\"}}},\"oto_members\":{\"descr\":\"List of users\",\"columns\":{\"Id\":{\"type\":\"int, Primary Key\",\"descr\":\"user ID\"},\"username\":{\"type\":\"varchar\",\"descr\":\"\"},\"firstname\":{\"type\":\"varchar\",\"descr\":\"\"},\"lastname\":{\"type\":\"varchar\",\"descr\":\"\"},\"email\":{\"type\":\"varchar\",\"descr\":\"\"},\"refid\":{\"type\":\"int\",\"descr\":\"referrer ID (0 if direct join)\"},\"status\":{\"type\":\"varchar\",\"descr\":\"Status of the account (Active, Unverified, or Suspended)\"},\"joindate\":{\"type\":\"datetime\",\"descr\":\"\"},\"mtype\":{\"type\":\"int\",\"descr\":\"Number representing the user account level (This number matches mtid in the oto_membertypes table)\"},\"lastlogin\":{\"type\":\"datetime\",\"descr\":\"The datetime the user last logged in\"},\"numLogins\":{\"type\":\"int\",\"descr\":\"Number of times the user has logged in\"},\"credits\":{\"type\":\"float\",\"descr\":\"User\'s credits balance\"},\"bannerimps\":{\"type\":\"int\",\"descr\":\"User\'s banner impression balance\"},\"textimps\":{\"type\":\"int\",\"descr\":\"User\'s text impression balance\"},\"lastmailing\":{\"type\":\"int\",\"descr\":\"Unix timestamp of the last time the user sent a mailing\"},\"goodclicks\":{\"type\":\"int\",\"descr\":\"Total number of times user clicked correct captcha icon\"},\"badclicks\":{\"type\":\"int\",\"descr\":\"Total number of times user clicked incorrect captcha icon\"},\"clickstoday\":{\"type\":\"int\",\"descr\":\"Number of credit links the user has clicked today\"},\"upgend\":{\"type\":\"date\",\"descr\":\"The date the user\'s paid account level expires (YYYY-MM-DD, 0000-00-00 for lifetime membership)\"},\"mailrectoday\":{\"type\":\"int\",\"descr\":\"Number of mailings the user received today\"}}},\"oto_membertypes\":{\"descr\":\"List of membership levels\",\"columns\":{\"mtid\":{\"type\":\"int, Primary Key\",\"descr\":\"Membership type ID number\"},\"accname\":{\"type\":\"varchar\",\"descr\":\"Name of the membership level\"},\"surfratio\":{\"type\":\"float\",\"descr\":\"Amount of credit user receives per credit link clicked\"},\"surftimer\":{\"type\":\"tinyint\",\"descr\":\"Number of seconds user must view the site before earning credit\"},\"maxbanners\":{\"type\":\"int\",\"descr\":\"Max number of banners user can promote\"},\"maxtexts\":{\"type\":\"int\",\"descr\":\"Max number of text ads user can promote\"},\"monthcrds\":{\"type\":\"int\",\"descr\":\"Number of monthly credits user receives from their upgrade\"},\"monthbimps\":{\"type\":\"int\",\"descr\":\"Number of monthly banner impressions user receives from their upgrade\"},\"monthtimps\":{\"type\":\"int\",\"descr\":\"Number of monthly text impressions user receives from their upgrade\"},\"mailhours\":{\"type\":\"int\",\"descr\":\"Number of hours the user must wait between sending mailings\"},\"maillimit\":{\"type\":\"int\",\"descr\":\"Max number of credits the user can spend per mailing\"},\"maxmailings\":{\"type\":\"int\",\"descr\":\"Max number of mailings the user will receive from other members in a day\"}}},\"oto_mtexts\":{\"descr\":\"List of text ads being promoted\",\"columns\":{\"id\":{\"type\":\"int, Primary Key\",\"descr\":\"Text ad ID\"},\"state\":{\"type\":\"tinyint\",\"descr\":\"Status 0=\\\"Pending\\\", 1=\\\"enabled\\\", 2=\\\"paused by member\\\", 3=\\\"suspended by admin\\\"\"},\"memid\":{\"type\":\"int\",\"descr\":\"User ID that submitted the text ad\"},\"text\":{\"type\":\"varchar\",\"descr\":\"The text of the ad\"},\"target\":{\"type\":\"varchar\",\"descr\":\"The target URL of the ad\"},\"imps\":{\"type\":\"int\",\"descr\":\"Number of impressions currently assigned to the ad\"},\"hits\":{\"type\":\"int\",\"descr\":\"Number of times the ad has been displayed\"},\"clicks\":{\"type\":\"int\",\"descr\":\"Number of times the ad has been clicked\"}}},\"oto_prizelog\":{\"descr\":\"Log of prizes or rewards that members have received\",\"columns\":{\"id\":{\"type\":\"int, Primary Key\",\"descr\":\"Log entry ID\"},\"plugin\":{\"type\":\"varchar\",\"descr\":\"The game or other source of the prize\"},\"user\":{\"type\":\"int\",\"descr\":\"The User ID who won the prize\"},\"time\":{\"type\":\"int\",\"descr\":\"The Unix timestamp when the prize was awarded\"},\"credits\":{\"type\":\"int\",\"descr\":\"Number of credits in prize\"},\"bannerimps\":{\"type\":\"int\",\"descr\":\"Number of banner impressions in prize\"},\"textimps\":{\"type\":\"int\",\"descr\":\"Number of text ad impressions in prize\"},\"cash\":{\"type\":\"decimal\",\"descr\":\"Amount of cash in prize\"},\"peelads\":{\"type\":\"int\",\"descr\":\"Number of peel ad impressions in prize\"},\"sqbans\":{\"type\":\"int\",\"descr\":\"Number of square banner impressions in prize\"},\"mbrands\":{\"type\":\"int\",\"descr\":\"Number of mini brander impressions in prize\"},\"porkyps\":{\"type\":\"int\",\"descr\":\"Number of Porky Points in prize\"},\"xppoints\":{\"type\":\"int\",\"descr\":\"Number of XP points in prize\"},\"podpoints\":{\"type\":\"int\",\"descr\":\"Number of pod points in prize\"},\"widgetads\":{\"type\":\"int\",\"descr\":\"Number of widget ad impressions in prize\"},\"piggybank\":{\"type\":\"decimal\",\"descr\":\"Amount of account balance cash in prize\"},\"notes\":{\"type\":\"varchar\",\"descr\":\"\"}}},\"oto_senthistory\":{\"descr\":\"The long-term stats for sent mailings. Stats are moved from oto_sentmessages to oto_senthistory after a few days.\",\"columns\":{\"id\":{\"type\":\"int, Primary Key\",\"descr\":\"Log ID\"},\"messageid\":{\"type\":\"int\",\"descr\":\"Message ID\"},\"timesent\":{\"type\":\"int\",\"descr\":\"Unix timestamp of when the mailing was sent\"},\"senderid\":{\"type\":\"int\",\"descr\":\"User ID who sent the mailing\"},\"subjecttext\":{\"type\":\"varchar\",\"descr\":\"Subject text of the mailing\"},\"sentto\":{\"type\":\"int\",\"descr\":\"Number of users who received the mailing\"},\"numclicks\":{\"type\":\"int\",\"descr\":\"Number of users who clicked the credit link\"}}},\"oto_sentmessages\":{\"descr\":\"A list of currently queued and recently sent mailings\",\"columns\":{\"id\":{\"type\":\"int, Primary Key\",\"descr\":\"Message ID\"},\"timesent\":{\"type\":\"int\",\"descr\":\"Unix timestamp of when the mailing was sent\"},\"senderid\":{\"type\":\"int\",\"descr\":\"User ID who sent the mailing\"},\"subjecttext\":{\"type\":\"varchar\",\"descr\":\"Subject text of the mailing\"},\"bodytext\":{\"type\":\"text\",\"descr\":\"Body text of the mailing\"},\"linkurl\":{\"type\":\"varchar\",\"descr\":\"URL of the site members see after clicking the credit link\"},\"sendto\":{\"type\":\"int\",\"descr\":\"Number of members the mailing will be sent to. This is higher than sentto while message is being sent.\"},\"sentto\":{\"type\":\"int\",\"descr\":\"Number of users who received the mailing\"},\"numclicks\":{\"type\":\"int\",\"descr\":\"Number of users who clicked the credit link\"}}},\"oto_sstats\":{\"descr\":\"Log of the credit links clicked (last 7 days)\",\"columns\":{\"id\":{\"type\":\"int, Primary Key\",\"descr\":\"Log entry ID\"},\"userid\":{\"type\":\"varchar\",\"descr\":\"The member who clicked the credit link\"},\"messageid\":{\"type\":\"int\",\"descr\":\"ID of the mailing the credit link was for\"},\"url\":{\"type\":\"varchar\",\"descr\":\"URL of the site that was shown\"},\"adate\":{\"type\":\"int\",\"descr\":\"Unix timestamp when the link was clicked\"}}},\"oto_surflogs\":{\"descr\":\"History logs at the site (updated daily at midnight)\",\"columns\":{\"id\":{\"type\":\"int, Primary Key\",\"descr\":\"Log entry ID\"},\"date\":{\"type\":\"date\",\"descr\":\"The date of the log entry\"},\"userid\":{\"type\":\"int\",\"descr\":\"The user ID the stats are for\"},\"clicks\":{\"type\":\"int\",\"descr\":\"Number of credit links the user clicked that day\"},\"time\":{\"type\":\"int\",\"descr\":\"Number of seconds the user spent clicking credit links\"},\"messsent\":{\"type\":\"int\",\"descr\":\"Number of messages the user sent\"},\"mailrec\":{\"type\":\"int\",\"descr\":\"Number of mailings the user received\"},\"bandeliver\":{\"type\":\"int\",\"descr\":\"The number of times the user\\u2019s banners were shown that day\"},\"textdeliver\":{\"type\":\"int\",\"descr\":\"The number of times the user\\u2019s text ads were shown that day\"}}}},\"relationships\":[{\"relationship1\":\"oto_mbanners.memid\",\"relationship2\":\"oto_members.Id\"},{\"relationship1\":\"oto_mtexts.memid\",\"relationship2\":\"oto_members.Id\"},{\"relationship1\":\"oto_prizelog.user\",\"relationship2\":\"oto_members.Id\"},{\"relationship1\":\"oto_sstats.userid\",\"relationship2\":\"oto_members.Id\"},{\"relationship1\":\"oto_surflogs.userid\",\"relationship2\":\"oto_members.Id\"},{\"relationship1\":\"oto_members.mtype\",\"relationship2\":\"oto_membertypes.mtid\"},{\"relationship1\":\"oto_sentmessages.id\",\"relationship2\":\"oto_sstats.messageid\"},{\"relationship1\":\"oto_sentmessages.senderid\",\"relationship2\":\"oto_members.Id\"},{\"relationship1\":\"oto_senthistory.senderid\",\"relationship2\":\"oto_members.Id\"}],\"training\":[{\"message\":\"How much cash has been given out in prizes over the last 30 days?\",\"response\":\"SELECT COALESCE(SUM(cash), 0) AS total_cash FROM oto_prizelog WHERE FROM_UNIXTIME(time) >= DATE_SUB(NOW(), INTERVAL 30 DAY);\",\"exampleshow\":1,\"exampletitle\":\"Get Prize Stats\"},{\"message\":\"List each banner ad along with the CTR\",\"response\":\"SELECT id, img, target, clicks, hits, COALESCE((clicks\\/hits*100), 0) AS CTR FROM oto_mbanners;\",\"exampleshow\":1,\"exampletitle\":\"Get Banner Stats\"},{\"message\":\"How many credit links has User #1 clicked since May 1, 2023?\",\"response\":\"SELECT COALESCE(SUM(clicks), 0) + COALESCE(clickstoday, 0) AS total_clicks FROM oto_surflogs JOIN oto_members ON oto_surflogs.userid = oto_members.Id WHERE oto_surflogs.date >= \'2023-05-01\' AND oto_members.Id = 1;\",\"exampleshow\":1,\"exampletitle\":\"Get Credit Link Stats\"},{\"message\":\"How many credits does user Id #2\'s get when clicking on a credit link?\",\"response\":\"SELECT oto_membertypes.surfratio FROM oto_members JOIN oto_membertypes ON oto_members.mtype = oto_membertypes.mtid WHERE oto_members.Id = 2;\",\"exampleshow\":1,\"exampletitle\":\"Get a user\'s membership benefits\"},{\"message\":\"List all the banners that are in rotation right now\",\"response\":\"SELECT id, img, target FROM oto_mbanners WHERE state = 1 AND imps >= 1;\",\"exampleshow\":1,\"exampletitle\":\"See what is rotating in your mailer\"},{\"message\":\"List the top 5 members who won the most cash prizes in April 2023\",\"response\":\"SELECT oto_members.Id, oto_members.username, COALESCE(SUM(oto_prizelog.cash), 0) AS total_cash, COUNT(oto_prizelog.id) AS total_prizes FROM oto_prizelog JOIN oto_members ON oto_prizelog.user = oto_members.Id WHERE oto_prizelog.cash > 0 AND YEAR(FROM_UNIXTIME(oto_prizelog.time)) = 2023 AND MONTH(FROM_UNIXTIME(oto_prizelog.time)) = 4 GROUP BY oto_members.Id ORDER BY total_cash DESC, total_prizes DESC LIMIT 5;\",\"exampleshow\":1,\"exampletitle\":\"See which members are winning the most prizes\"},{\"message\":\"How many times has User ID #1 sent a mailing with the subject \\\"Get More Traffic\\\" since January 1, 2023?\",\"response\":\"SELECT COUNT(*) AS total_mailings FROM (SELECT id FROM oto_sentmessages WHERE senderid = 1 AND subjecttext = \'Get More Traffic\' AND FROM_UNIXTIME(timesent) >= \'2023-01-01\' UNION ALL SELECT id FROM oto_senthistory WHERE senderid = 1 AND subjecttext = \'Get More Traffic\' AND FROM_UNIXTIME(timesent) >= \'2023-01-01\') AS combined;\",\"exampleshow\":1,\"exampletitle\":\"Check your sent mailings\"}]}');
/*!40000 ALTER TABLE `geniuxs_ai` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_ai_templates`
--

DROP TABLE IF EXISTS `geniuxs_ai_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_ai_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `templateid` int(11) NOT NULL,
  `updated` datetime NOT NULL,
  `newcode` text NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `templateid` (`templateid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_ai_templates`
--

LOCK TABLES `geniuxs_ai_templates` WRITE;
/*!40000 ALTER TABLE `geniuxs_ai_templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_ai_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_api`
--

DROP TABLE IF EXISTS `geniuxs_api`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_api` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `messageid` varchar(200) NOT NULL DEFAULT '',
  `time` int(11) NOT NULL DEFAULT 0,
  `subjecttext` varchar(200) NOT NULL DEFAULT 'None',
  `bodytext` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `messageid` (`messageid`),
  KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_api`
--

LOCK TABLES `geniuxs_api` WRITE;
/*!40000 ALTER TABLE `geniuxs_api` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_api` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_clicklinks`
--

DROP TABLE IF EXISTS `geniuxs_clicklinks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_clicklinks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `linkkey` varchar(30) NOT NULL,
  `salespackage` int(11) NOT NULL DEFAULT 0,
  `acctype` int(11) NOT NULL DEFAULT 0,
  `expiretime` int(11) NOT NULL DEFAULT 0,
  `htmlcontent` text NOT NULL,
  `redirecturl` varchar(75) NOT NULL DEFAULT 'about:blank',
  `credits` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `banners` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `texts` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `peelimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `sqbanimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `porkyps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `mbranders` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `xppoints` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `cash` decimal(6,2) NOT NULL DEFAULT 0.00,
  `widgetads` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `podpoints` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `piggybank` decimal(6,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`),
  UNIQUE KEY `linkkey` (`linkkey`),
  KEY `expiretime` (`expiretime`),
  KEY `acctype` (`acctype`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_clicklinks`
--

LOCK TABLES `geniuxs_clicklinks` WRITE;
/*!40000 ALTER TABLE `geniuxs_clicklinks` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_clicklinks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_clicklog`
--

DROP TABLE IF EXISTS `geniuxs_clicklog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_clicklog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `linkkey` varchar(30) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `linkkey` (`linkkey`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_clicklog`
--

LOCK TABLES `geniuxs_clicklog` WRITE;
/*!40000 ALTER TABLE `geniuxs_clicklog` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_clicklog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_crons`
--

DROP TABLE IF EXISTS `geniuxs_crons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_crons` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `crontype` varchar(20) NOT NULL,
  `lastruntime` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_crons`
--

LOCK TABLES `geniuxs_crons` WRITE;
/*!40000 ALTER TABLE `geniuxs_crons` DISABLE KEYS */;
INSERT INTO `geniuxs_crons` (`id`, `crontype`, `lastruntime`) VALUES (3,'dailynewmem',1782433570),(4,'dailygroups',1782434170),(5,'quarterhourly',1782486910);
/*!40000 ALTER TABLE `geniuxs_crons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_groupmails`
--

DROP TABLE IF EXISTS `geniuxs_groupmails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_groupmails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `groupid` int(11) NOT NULL,
  `subject` varchar(200) NOT NULL,
  `bodytext` text NOT NULL,
  `expiredays` int(11) NOT NULL DEFAULT 1,
  `surfboost` float NOT NULL DEFAULT 0,
  `buyboost` float NOT NULL DEFAULT 0,
  `timerdrop` int(11) NOT NULL DEFAULT 0,
  `salespackage` int(11) NOT NULL DEFAULT 0,
  `htmlcontent` text NOT NULL,
  `clickurl` varchar(75) NOT NULL DEFAULT 'http://',
  `lastsent` int(11) NOT NULL DEFAULT 0,
  `totalsends` int(11) NOT NULL DEFAULT 0,
  `linkclicks` int(11) NOT NULL DEFAULT 0,
  `unsubscribes` int(11) NOT NULL DEFAULT 0,
  `numsales` int(11) NOT NULL DEFAULT 0,
  `sales` decimal(7,2) NOT NULL DEFAULT 0.00,
  `percentclicked` decimal(6,3) NOT NULL DEFAULT 0.000,
  `percentbought` decimal(6,3) NOT NULL DEFAULT 0.000,
  `percentunsub` decimal(6,3) NOT NULL DEFAULT 0.000,
  `salespersend` decimal(7,2) NOT NULL DEFAULT 0.00,
  `salesperclick` decimal(7,2) NOT NULL DEFAULT 0.00,
  `credits` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `banners` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `texts` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `peelimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `sqbanimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `porkyps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `mbranders` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `xppoints` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `cash` decimal(6,2) NOT NULL DEFAULT 0.00,
  `widgetads` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `podpoints` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `piggybank` decimal(6,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`),
  KEY `groupid` (`groupid`),
  KEY `lastsent` (`lastsent`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_groupmails`
--

LOCK TABLES `geniuxs_groupmails` WRITE;
/*!40000 ALTER TABLE `geniuxs_groupmails` DISABLE KEYS */;
INSERT INTO `geniuxs_groupmails` (`id`, `groupid`, `subject`, `bodytext`, `expiredays`, `surfboost`, `buyboost`, `timerdrop`, `salespackage`, `htmlcontent`, `clickurl`, `lastsent`, `totalsends`, `linkclicks`, `unsubscribes`, `numsales`, `sales`, `percentclicked`, `percentbought`, `percentunsub`, `salespersend`, `salesperclick`, `credits`, `banners`, `texts`, `peelimps`, `sqbanimps`, `porkyps`, `mbranders`, `xppoints`, `cash`, `widgetads`, `podpoints`, `piggybank`) VALUES (1,1,'Surfing Ratio Boost','Hello #FIRSTNAME#,\r\n\r\nThe surfing ratios at #SITENAME# have been\r\nincreased today.  Come surf and enjoy the extra\r\ncredits!\r\n\r\nLogin and surf here:\r\n-> #CLICKLINK#\r\n\r\nRegards,\r\n#SITENAME#',1,1.5,0,0,0,'none','https://soloswaps.com/login.php',0,0,0,0,0,0.00,0.000,0.000,0.000,0.00,0.00,0,0,0,0,0,0,0,0,0.00,0,0,0.00),(2,2,'Our Surf Timers Have Been Lowered','Hello #FIRSTNAME#,\r\n\r\nThe surfing timers at #SITENAME# have been\r\nlowered by 2 seconds for today.  Be sure to come\r\nsurf and see how much extra traffic you can get!\r\n\r\nLogin and surf here:\r\n-> #CLICKLINK#\r\n\r\nRegards,\r\n#SITENAME#',1,0,0,2,0,'none','https://soloswaps.com/login.php',0,0,0,0,0,0.00,0.000,0.000,0.000,0.00,0.00,0,0,0,0,0,0,0,0,0.00,0,0,0.00),(3,3,'2 Day Credit Special','Hello #FIRSTNAME#,\r\n\r\nWe are having a 2-Day credit special at\r\n#SITENAME#.  Pick up any credit package on our\r\nBuy Credits page, and we\'ll double your order!\r\n\r\nLogin here:\r\n-> #CLICKLINK#\r\n\r\nRegards,\r\n#SITENAME#',2,0,2,0,0,'none','https://soloswaps.com/login.php',0,0,0,0,0,0.00,0.000,0.000,0.000,0.00,0.00,0,0,0,0,0,0,0,0,0.00,0,0,0.00);
/*!40000 ALTER TABLE `geniuxs_groupmails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_grouprules`
--

DROP TABLE IF EXISTS `geniuxs_grouprules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_grouprules` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `groupid` int(11) NOT NULL,
  `ruletype` int(11) NOT NULL DEFAULT 1,
  `daysvalue` int(11) NOT NULL DEFAULT 0,
  `ruleoperator` varchar(5) NOT NULL DEFAULT '=',
  `rulevalue` float NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `groupid` (`groupid`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_grouprules`
--

LOCK TABLES `geniuxs_grouprules` WRITE;
/*!40000 ALTER TABLE `geniuxs_grouprules` DISABLE KEYS */;
INSERT INTO `geniuxs_grouprules` (`id`, `groupid`, `ruletype`, `daysvalue`, `ruleoperator`, `rulevalue`) VALUES (1,1,4,1,'<',10),(2,2,5,1,'<',7),(3,3,6,30,'<',200);
/*!40000 ALTER TABLE `geniuxs_grouprules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_groups`
--

DROP TABLE IF EXISTS `geniuxs_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_groups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `groupname` varchar(50) NOT NULL DEFAULT '',
  `groupactive` int(1) NOT NULL DEFAULT 1,
  `grouprank` int(11) NOT NULL DEFAULT 0,
  `sendfreq` int(11) NOT NULL DEFAULT 1,
  `rotatetype` int(1) NOT NULL DEFAULT 1,
  `acctype` int(11) NOT NULL DEFAULT 0,
  `lastsent` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `groupactive` (`groupactive`),
  KEY `grouprank` (`grouprank`),
  KEY `lastsent` (`lastsent`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_groups`
--

LOCK TABLES `geniuxs_groups` WRITE;
/*!40000 ALTER TABLE `geniuxs_groups` DISABLE KEYS */;
INSERT INTO `geniuxs_groups` (`id`, `groupname`, `groupactive`, `grouprank`, `sendfreq`, `rotatetype`, `acctype`, `lastsent`) VALUES (1,'Less than 10 surfers',0,1,1,1,0,0),(2,'Less than 7 hits per url',0,2,1,1,0,0),(3,'Less than 200 in sales',0,3,5,1,0,0);
/*!40000 ALTER TABLE `geniuxs_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_maillog`
--

DROP TABLE IF EXISTS `geniuxs_maillog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_maillog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `mailid` int(11) NOT NULL DEFAULT 0,
  `groupid` int(11) NOT NULL DEFAULT 0,
  `starttime` int(11) NOT NULL DEFAULT 0,
  `updatetime` int(11) NOT NULL DEFAULT 0,
  `warnflag` int(1) NOT NULL DEFAULT 0,
  `sendcount` int(11) NOT NULL DEFAULT 0,
  `numsends` int(11) NOT NULL DEFAULT 0,
  `linkclicks` int(11) NOT NULL DEFAULT 0,
  `unsubscribes` int(11) NOT NULL DEFAULT 0,
  `numsales` int(11) NOT NULL DEFAULT 0,
  `sales` decimal(7,2) NOT NULL DEFAULT 0.00,
  `percentclicked` decimal(6,3) NOT NULL DEFAULT 0.000,
  `percentbought` decimal(6,3) NOT NULL DEFAULT 0.000,
  `percentunsub` decimal(6,3) NOT NULL DEFAULT 0.000,
  `salespersend` decimal(7,2) NOT NULL DEFAULT 0.00,
  `salesperclick` decimal(7,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`),
  KEY `mailid` (`mailid`),
  KEY `groupid` (`groupid`),
  KEY `starttime` (`starttime`),
  KEY `updatetime` (`updatetime`),
  KEY `warnflag` (`warnflag`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_maillog`
--

LOCK TABLES `geniuxs_maillog` WRITE;
/*!40000 ALTER TABLE `geniuxs_maillog` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_maillog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_memtypes`
--

DROP TABLE IF EXISTS `geniuxs_memtypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_memtypes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `acctype` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  UNIQUE KEY `userid` (`userid`)
) ENGINE=MyISAM AUTO_INCREMENT=676 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_memtypes`
--

LOCK TABLES `geniuxs_memtypes` WRITE;
/*!40000 ALTER TABLE `geniuxs_memtypes` DISABLE KEYS */;
INSERT INTO `geniuxs_memtypes` (`id`, `userid`, `acctype`) VALUES (1,1,6),(2,2,4),(3,3,4),(4,4,1),(5,5,3),(6,6,1),(7,7,1),(8,8,3),(9,9,3),(10,10,1),(11,11,3),(12,12,3),(13,13,1),(14,14,3),(15,15,3),(16,16,3),(17,17,3),(18,18,3),(19,19,1),(20,20,3),(21,21,3),(22,22,2),(23,23,3),(24,24,1),(25,25,3),(26,26,2),(27,27,3),(28,28,3),(29,29,3),(30,30,3),(31,31,3),(32,32,1),(33,33,2),(34,34,3),(35,35,3),(36,36,3),(37,37,1),(38,38,3),(39,39,1),(40,40,3),(41,41,3),(42,42,1),(43,43,3),(44,44,3),(45,45,3),(46,46,3),(47,47,3),(48,48,3),(49,49,3),(50,50,2),(51,51,3),(52,52,1),(53,53,3),(54,54,1),(55,55,3),(56,56,3),(57,57,3),(58,58,1),(59,59,3),(60,60,3),(61,61,1),(62,62,1),(63,63,1),(64,64,1),(65,65,1),(66,66,1),(67,67,1),(68,68,1),(69,69,1),(70,70,1),(71,71,4),(72,72,2),(73,73,3),(74,74,3),(75,75,3),(76,76,1),(77,77,3),(78,78,3),(79,79,1),(80,80,3),(81,81,3),(82,82,3),(83,83,3),(84,84,3),(85,85,3),(86,86,3),(87,87,1),(88,88,2),(89,89,3),(90,90,1),(91,91,1),(92,92,1),(93,93,3),(94,94,1),(95,95,2),(96,96,1),(97,97,1),(98,98,1),(99,99,1),(100,100,3),(101,101,3),(102,102,3),(103,103,1),(104,104,3),(105,105,3),(106,106,3),(107,107,1),(108,108,1),(109,109,3),(110,110,1),(111,111,3),(112,112,1),(113,113,1),(114,114,1),(115,115,1),(116,116,3),(117,117,3),(118,118,3),(119,119,3),(120,120,2),(121,121,1),(122,122,3),(123,123,1),(124,124,1),(125,125,2),(126,126,1),(127,127,1),(128,128,1),(129,129,3),(130,131,3),(131,132,1),(132,133,3),(133,134,3),(134,135,1),(135,136,1),(136,137,5),(137,138,1),(138,139,3),(139,140,1),(140,141,1),(141,142,3),(142,143,1),(143,144,1),(144,145,1),(145,146,1),(146,147,1),(147,148,1),(148,149,1),(149,150,3),(150,151,1),(151,152,1),(152,153,1),(153,154,1),(154,155,2),(155,156,1),(156,157,1),(157,158,1),(158,159,1),(159,160,1),(160,161,1),(161,162,3),(162,163,1),(163,164,1),(164,165,1),(165,166,1),(166,167,1),(167,168,1),(168,169,3),(169,170,1),(170,171,3),(171,172,1),(172,173,1),(173,174,1),(174,175,1),(175,176,1),(176,177,1),(177,178,3),(178,179,1),(179,180,1),(180,181,1),(181,182,1),(182,183,1),(183,184,1),(184,185,1),(185,186,1),(186,187,1),(187,188,1),(188,189,1),(189,190,1),(190,191,1),(191,192,1),(192,193,1),(193,194,1),(194,195,1),(195,196,1),(196,197,1),(197,198,4),(198,199,4),(199,200,1),(200,201,1),(201,202,1),(202,203,1),(203,204,1),(204,205,1),(205,206,1),(206,207,1),(207,208,1),(208,209,1),(209,210,1),(210,211,1),(211,212,1),(212,213,1),(213,214,1),(214,215,1),(215,216,1),(216,217,1),(217,218,6),(218,219,1),(219,220,1),(220,221,1),(221,222,1),(222,223,1),(223,224,1),(224,225,1),(225,226,1),(226,227,1),(227,228,1),(228,229,1),(229,230,1),(230,231,1),(231,232,1),(232,233,1),(233,234,1),(234,235,1),(235,236,1),(236,237,1),(237,238,1),(238,239,1),(239,240,1),(240,241,1),(241,242,1),(242,243,1),(243,244,1),(244,245,1),(245,246,1),(246,247,1),(247,248,1),(248,249,1),(249,250,1),(250,251,1),(251,252,1),(252,253,1),(253,254,1),(254,255,1),(255,256,1),(256,257,1),(257,258,1),(258,259,1),(259,260,1),(260,261,1),(261,262,1),(262,263,1),(263,264,1),(264,265,1),(265,266,1),(266,267,3),(267,268,1),(268,269,1),(269,270,1),(270,271,1),(271,272,1),(272,273,1),(273,274,1),(274,275,1),(275,276,1),(276,277,1),(277,278,1),(278,279,1),(279,280,1),(280,281,1),(281,282,1),(282,283,1),(283,284,1),(284,285,1),(285,286,1),(286,287,1),(287,288,1),(288,289,1),(289,290,1),(290,291,1),(291,292,1),(292,293,1),(293,294,1),(294,295,1),(295,296,1),(296,297,3),(297,298,1),(298,299,1),(299,300,1),(300,301,1),(301,302,1),(302,303,1),(303,304,1),(304,305,1),(305,306,1),(306,307,1),(307,308,1),(308,309,1),(309,310,1),(310,311,3),(311,312,1),(312,313,1),(313,314,1),(314,316,1),(315,317,1),(316,318,1),(317,319,1),(318,320,1),(319,321,1),(320,322,1),(321,323,1),(322,324,1),(323,325,1),(324,326,1),(325,327,1),(326,328,1),(327,329,1),(328,330,1),(329,331,1),(330,332,1),(331,333,1),(332,334,1),(333,335,1),(334,336,1),(335,337,1),(336,338,1),(337,339,1),(338,340,1),(339,341,1),(340,342,1),(341,343,1),(342,344,1),(343,345,1),(344,346,1),(345,347,1),(346,348,1),(347,349,1),(348,350,1),(349,351,1),(350,352,1),(351,353,1),(352,354,1),(353,355,1),(354,356,1),(355,357,1),(356,358,1),(357,359,1),(358,360,1),(359,361,1),(360,362,1),(361,363,1),(362,364,1),(363,365,1),(364,366,1),(365,367,1),(366,368,1),(367,369,1),(368,370,1),(369,371,1),(370,372,1),(371,373,1),(372,374,1),(373,375,1),(374,376,1),(375,377,1),(376,378,1),(377,379,1),(378,380,1),(379,381,1),(380,382,1),(381,383,1),(382,384,1),(383,385,1),(384,386,1),(385,387,1),(386,388,1),(387,389,1),(388,390,1),(389,391,1),(390,392,1),(391,393,1),(392,394,1),(393,395,1),(394,396,1),(395,397,1),(396,398,1),(397,399,1),(398,400,1),(399,401,1),(400,402,1),(401,403,1),(402,404,1),(403,405,1),(404,406,1),(405,407,1),(406,408,1),(407,409,1),(408,410,1),(409,411,1),(410,412,1),(411,413,1),(412,414,1),(413,415,1),(414,416,1),(415,417,1),(416,418,1),(417,419,1),(418,420,1),(419,421,1),(420,422,1),(421,423,1),(422,424,1),(423,425,1),(424,426,1),(425,427,1),(426,428,1),(427,429,1),(428,430,1),(429,431,1),(430,432,1),(431,433,1),(432,434,1),(433,435,1),(434,436,1),(435,437,1),(436,438,1),(437,439,1),(438,440,1),(439,441,1),(440,442,1),(441,443,1),(442,444,1),(443,445,1),(444,446,1),(445,447,1),(446,448,1),(447,449,1),(448,450,1),(449,451,1),(450,452,1),(451,453,1),(452,454,1),(453,455,1),(454,456,1),(455,457,1),(456,458,1),(457,459,1),(458,460,1),(459,461,1),(460,462,1),(461,463,1),(462,464,1),(463,465,1),(464,466,1),(465,467,1),(466,468,1),(467,469,1),(468,470,1),(469,471,1),(470,472,1),(471,473,1),(472,474,1),(473,475,1),(474,476,1),(475,477,1),(476,478,1),(477,479,1),(478,480,1),(479,481,1),(480,482,1),(481,483,1),(482,484,1),(483,485,1),(484,486,1),(485,487,1),(486,488,1),(487,489,1),(488,490,1),(489,491,1),(490,492,1),(491,493,1),(492,494,1),(493,495,1),(494,496,1),(495,497,1),(496,498,1),(497,499,1),(498,500,1),(499,501,1),(500,502,1),(501,503,1),(502,504,1),(503,505,1),(504,506,1),(505,507,1),(506,508,1),(507,509,1),(508,510,1),(509,511,1),(510,512,1),(511,513,1),(512,514,1),(513,515,1),(514,516,1),(515,517,1),(516,518,1),(517,519,1),(518,520,1),(519,521,1),(520,522,1),(521,523,1),(522,524,1),(523,525,1),(524,526,1),(525,527,1),(526,528,1),(527,529,1),(528,530,1),(529,531,1),(530,532,1),(531,533,1),(532,534,1),(533,535,1),(534,536,1),(535,537,1),(536,538,1),(537,539,1),(538,540,1),(539,541,1),(540,542,1),(541,543,1),(542,544,1),(543,545,1),(544,546,1),(545,547,1),(546,548,1),(547,549,1),(548,550,1),(549,551,1),(550,552,1),(551,553,1),(552,554,1),(553,555,1),(554,556,1),(555,557,1),(556,558,1),(557,559,1),(558,560,1),(559,561,1),(560,562,1),(561,563,1),(562,564,1),(563,565,1),(564,566,1),(565,567,1),(566,568,1),(567,569,1),(568,570,1),(569,571,1),(570,572,1),(571,573,1),(572,574,1),(573,575,1),(574,576,1),(575,577,1),(576,578,1),(577,579,1),(578,580,1),(579,581,1),(580,582,1),(581,583,1),(582,584,1),(583,585,1),(584,586,1),(585,587,1),(586,588,1),(587,589,1),(588,590,1),(589,591,1),(590,592,1),(591,593,1),(592,594,1),(593,595,1),(594,596,1),(595,597,1),(596,598,1),(597,599,1),(598,600,1),(599,601,1),(600,602,1),(601,603,1),(602,604,1),(603,605,1),(604,606,1),(605,607,1),(606,608,1),(607,609,1),(608,610,1),(609,611,1),(610,612,1),(611,613,1),(612,614,1),(613,615,1),(614,616,1),(615,617,1),(616,618,1),(617,619,1),(618,620,1),(619,621,1),(620,622,1),(621,623,1),(622,624,1),(623,625,1),(624,626,1),(625,627,1),(626,628,1),(627,629,1),(628,630,1),(629,631,1),(630,632,1),(631,633,1),(632,634,1),(633,635,1),(634,636,1),(635,637,1),(636,638,1),(637,639,1),(638,640,1),(639,641,1),(640,642,1),(641,643,1),(642,644,1),(643,645,1),(644,646,1),(645,647,1),(646,648,1),(647,649,1),(648,650,1),(649,651,1),(650,652,1),(651,653,1),(652,654,1),(653,655,1),(654,656,1),(655,657,1),(656,658,1),(657,659,1),(658,660,1),(659,661,1),(660,662,1),(661,663,1),(662,664,1),(663,665,1),(664,666,1),(665,667,1),(666,668,1),(667,669,1),(668,670,1),(669,671,1),(670,672,1),(671,673,1),(672,674,1),(673,675,1),(674,676,1),(675,677,1);
/*!40000 ALTER TABLE `geniuxs_memtypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_newmem`
--

DROP TABLE IF EXISTS `geniuxs_newmem`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_newmem` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `messageactive` int(1) NOT NULL DEFAULT 1,
  `numdays` int(11) NOT NULL,
  `acctype` int(11) NOT NULL DEFAULT 0,
  `sendonce` int(1) NOT NULL DEFAULT 1,
  `salespackage` int(11) NOT NULL DEFAULT 0,
  `htmlcontent` text NOT NULL,
  `clickurl` varchar(75) NOT NULL DEFAULT 'http://',
  `expiredays` int(11) NOT NULL DEFAULT 1,
  `subject` varchar(200) NOT NULL,
  `bodytext` text NOT NULL,
  `totalsends` int(11) NOT NULL DEFAULT 0,
  `linkclicks` int(11) NOT NULL DEFAULT 0,
  `unsubscribes` int(11) NOT NULL DEFAULT 0,
  `numsales` int(11) NOT NULL DEFAULT 0,
  `sales` decimal(7,2) NOT NULL DEFAULT 0.00,
  `percentclicked` decimal(6,3) NOT NULL DEFAULT 0.000,
  `percentbought` decimal(6,3) NOT NULL DEFAULT 0.000,
  `percentunsub` decimal(6,3) NOT NULL DEFAULT 0.000,
  `salespersend` decimal(7,2) NOT NULL DEFAULT 0.00,
  `salesperclick` decimal(7,2) NOT NULL DEFAULT 0.00,
  `credits` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `banners` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `texts` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `peelimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `sqbanimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `porkyps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `mbranders` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `xppoints` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `cash` decimal(6,2) NOT NULL DEFAULT 0.00,
  `widgetads` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `podpoints` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `piggybank` decimal(6,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`),
  KEY `messageactive` (`messageactive`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_newmem`
--

LOCK TABLES `geniuxs_newmem` WRITE;
/*!40000 ALTER TABLE `geniuxs_newmem` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_newmem` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_newmemlog`
--

DROP TABLE IF EXISTS `geniuxs_newmemlog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_newmemlog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `messageid` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `messageid` (`messageid`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_newmemlog`
--

LOCK TABLES `geniuxs_newmemlog` WRITE;
/*!40000 ALTER TABLE `geniuxs_newmemlog` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_newmemlog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_pausequeue`
--

DROP TABLE IF EXISTS `geniuxs_pausequeue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_pausequeue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `starttime` int(11) NOT NULL DEFAULT 0,
  `endtime` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `starttime` (`starttime`),
  KEY `endtime` (`endtime`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_pausequeue`
--

LOCK TABLES `geniuxs_pausequeue` WRITE;
/*!40000 ALTER TABLE `geniuxs_pausequeue` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_pausequeue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_pausesched`
--

DROP TABLE IF EXISTS `geniuxs_pausesched`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_pausesched` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hour` int(11) NOT NULL DEFAULT 0,
  `minute` int(11) NOT NULL DEFAULT 0,
  `durationmins` int(11) NOT NULL DEFAULT 5,
  PRIMARY KEY (`id`),
  KEY `hour` (`hour`),
  KEY `minute` (`minute`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_pausesched`
--

LOCK TABLES `geniuxs_pausesched` WRITE;
/*!40000 ALTER TABLE `geniuxs_pausesched` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_pausesched` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_preview`
--

DROP TABLE IF EXISTS `geniuxs_preview`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_preview` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `timestamp` bigint(15) NOT NULL,
  `htmlcontent` text NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_preview`
--

LOCK TABLES `geniuxs_preview` WRITE;
/*!40000 ALTER TABLE `geniuxs_preview` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_preview` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_queue`
--

DROP TABLE IF EXISTS `geniuxs_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_queue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `priority` int(11) NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 0,
  `messageid` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL DEFAULT 0,
  `toaddress` varchar(200) NOT NULL DEFAULT 'None',
  `fromname` varchar(200) NOT NULL DEFAULT 'Viral Mailer Script',
  `fromaddress` varchar(200) NOT NULL DEFAULT 'None',
  `subjecttext` varchar(200) NOT NULL DEFAULT 'None',
  `bodytext` text DEFAULT NULL,
  `linkkey` varchar(30) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `priority` (`priority`),
  KEY `type` (`type`),
  KEY `messageid` (`messageid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_queue`
--

LOCK TABLES `geniuxs_queue` WRITE;
/*!40000 ALTER TABLE `geniuxs_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_queue_log`
--

DROP TABLE IF EXISTS `geniuxs_queue_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_queue_log` (
  `logid` bigint(20) NOT NULL AUTO_INCREMENT,
  `logtimestamp` int(11) NOT NULL DEFAULT 0,
  `logtime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `logentry` text NOT NULL,
  `queuecount` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`logid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_queue_log`
--

LOCK TABLES `geniuxs_queue_log` WRITE;
/*!40000 ALTER TABLE `geniuxs_queue_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_queue_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_schedsent`
--

DROP TABLE IF EXISTS `geniuxs_schedsent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_schedsent` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `messageid` int(11) NOT NULL,
  `starttime` int(11) NOT NULL DEFAULT 0,
  `updatetime` int(11) NOT NULL DEFAULT 0,
  `warnflag` int(1) NOT NULL DEFAULT 0,
  `sendcount` int(11) NOT NULL DEFAULT 0,
  `numsends` int(11) NOT NULL DEFAULT 0,
  `subject` varchar(200) NOT NULL,
  `linkclicks` int(11) NOT NULL DEFAULT 0,
  `unsubscribes` int(11) NOT NULL DEFAULT 0,
  `numsales` int(11) NOT NULL DEFAULT 0,
  `sales` decimal(7,2) NOT NULL DEFAULT 0.00,
  `percentclicked` decimal(6,3) NOT NULL DEFAULT 0.000,
  `percentbought` decimal(6,3) NOT NULL DEFAULT 0.000,
  `percentunsub` decimal(6,3) NOT NULL DEFAULT 0.000,
  `salespersend` decimal(7,2) NOT NULL DEFAULT 0.00,
  `salesperclick` decimal(7,2) NOT NULL DEFAULT 0.00,
  `bodytext` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `messageid` (`messageid`),
  KEY `starttime` (`starttime`),
  KEY `updatetime` (`updatetime`),
  KEY `warnflag` (`warnflag`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_schedsent`
--

LOCK TABLES `geniuxs_schedsent` WRITE;
/*!40000 ALTER TABLE `geniuxs_schedsent` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_schedsent` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_schedtemplates`
--

DROP TABLE IF EXISTS `geniuxs_schedtemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_schedtemplates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `acctype` int(11) NOT NULL DEFAULT 0,
  `subject` varchar(200) NOT NULL,
  `bodytext` text NOT NULL,
  `expiredays` int(11) NOT NULL DEFAULT 1,
  `surfboost` float NOT NULL DEFAULT 0,
  `buyboost` float NOT NULL DEFAULT 0,
  `timerdrop` int(11) NOT NULL DEFAULT 0,
  `salespackage` int(11) NOT NULL DEFAULT 0,
  `htmlcontent` text NOT NULL,
  `clickurl` varchar(75) NOT NULL DEFAULT 'http://',
  `credits` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `banners` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `texts` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `peelimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `sqbanimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `porkyps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `mbranders` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `xppoints` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `cash` decimal(6,2) NOT NULL DEFAULT 0.00,
  `widgetads` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `podpoints` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `piggybank` decimal(6,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_schedtemplates`
--

LOCK TABLES `geniuxs_schedtemplates` WRITE;
/*!40000 ALTER TABLE `geniuxs_schedtemplates` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_schedtemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_schedule`
--

DROP TABLE IF EXISTS `geniuxs_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_schedule` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `senddate` date NOT NULL,
  `sendhour` int(2) NOT NULL DEFAULT 0,
  `sendminute` int(1) NOT NULL DEFAULT 1,
  `acctype` int(11) NOT NULL DEFAULT 0,
  `subject` varchar(200) NOT NULL,
  `bodytext` text NOT NULL,
  `expiredays` int(11) NOT NULL DEFAULT 1,
  `surfboost` float NOT NULL DEFAULT 0,
  `buyboost` float NOT NULL DEFAULT 0,
  `timerdrop` int(11) NOT NULL DEFAULT 0,
  `salespackage` int(11) NOT NULL DEFAULT 0,
  `htmlcontent` text NOT NULL,
  `clickurl` varchar(75) NOT NULL DEFAULT 'http://',
  `messagesent` int(1) NOT NULL DEFAULT 0,
  `credits` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `banners` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `texts` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `peelimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `sqbanimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `porkyps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `mbranders` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `xppoints` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `cash` decimal(6,2) NOT NULL DEFAULT 0.00,
  `widgetads` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `podpoints` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `piggybank` decimal(6,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_schedule`
--

LOCK TABLES `geniuxs_schedule` WRITE;
/*!40000 ALTER TABLE `geniuxs_schedule` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_schedule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_timerdrops`
--

DROP TABLE IF EXISTS `geniuxs_timerdrops`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_timerdrops` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `acctype` int(11) NOT NULL DEFAULT 0,
  `expiretime` int(11) NOT NULL DEFAULT 0,
  `numseconds` int(11) NOT NULL DEFAULT 0,
  `expired` int(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `expiretime` (`expiretime`),
  KEY `expired` (`expired`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_timerdrops`
--

LOCK TABLES `geniuxs_timerdrops` WRITE;
/*!40000 ALTER TABLE `geniuxs_timerdrops` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_timerdrops` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_tracksales`
--

DROP TABLE IF EXISTS `geniuxs_tracksales`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_tracksales` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `time` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL DEFAULT 0,
  `salespackage` int(11) NOT NULL DEFAULT 0,
  `mailtype` int(1) NOT NULL DEFAULT 1,
  `mailid` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `time` (`time`),
  KEY `userid` (`userid`),
  KEY `salespackage` (`salespackage`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_tracksales`
--

LOCK TABLES `geniuxs_tracksales` WRITE;
/*!40000 ALTER TABLE `geniuxs_tracksales` DISABLE KEYS */;
/*!40000 ALTER TABLE `geniuxs_tracksales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geniuxs_vals`
--

DROP TABLE IF EXISTS `geniuxs_vals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `geniuxs_vals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `valtype` varchar(20) DEFAULT NULL,
  `valvalue` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geniuxs_vals`
--

LOCK TABLES `geniuxs_vals` WRITE;
/*!40000 ALTER TABLE `geniuxs_vals` DISABLE KEYS */;
INSERT INTO `geniuxs_vals` (`id`, `valtype`, `valvalue`) VALUES (1,'lastadminmail',0),(2,'lastschedmail',0),(3,'sendonegroup',1),(4,'notifylevel',1),(5,'usequeue',0),(6,'lastqueue',0),(7,'lastmail',0),(8,'messagespermin',500);
/*!40000 ALTER TABLE `geniuxs_vals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `offerbsettings`
--

DROP TABLE IF EXISTS `offerbsettings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `offerbsettings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(200) NOT NULL,
  `value` varchar(200) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `offerbsettings`
--

LOCK TABLES `offerbsettings` WRITE;
/*!40000 ALTER TABLE `offerbsettings` DISABLE KEYS */;
INSERT INTO `offerbsettings` (`id`, `field`, `value`) VALUES (1,'lickey','0'),(2,'autoadd_enabled','1'),(3,'item_prefix',''),(4,'merchant1','1'),(5,'merchant2','0'),(6,'merchant3','0'),(7,'merchant4','0'),(8,'merchant5','0'),(9,'merchant6','0'),(10,'version','3.0');
/*!40000 ALTER TABLE `offerbsettings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_admin`
--

DROP TABLE IF EXISTS `oto_admin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_admin` (
  `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  `admin_name` varchar(64) DEFAULT NULL,
  `login` varchar(32) NOT NULL DEFAULT 'admin',
  `password` varchar(255) NOT NULL DEFAULT 'password',
  `email` varchar(64) NOT NULL DEFAULT 'noreply@pleasesetthisnow.com',
  `remotekey` varchar(64) NOT NULL DEFAULT '0',
  `license` varchar(32) NOT NULL DEFAULT '0',
  `encpw` int(11) NOT NULL DEFAULT 0,
  `ipaddresses` varchar(255) NOT NULL DEFAULT '',
  `admin_lfmrid` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_admin`
--

LOCK TABLES `oto_admin` WRITE;
/*!40000 ALTER TABLE `oto_admin` DISABLE KEYS */;
INSERT INTO `oto_admin` (`id`, `admin_name`, `login`, `password`, `email`, `remotekey`, `license`, `encpw`, `ipaddresses`, `admin_lfmrid`) VALUES (1,'Frank','frankandres','$2y$10$aliRxdIYbfQHWV2l1yC3h.lm3hxoK6D2nbrq77cpaMHXbcsxpgqQe','instantresellerclib@gmail.com','0','vqvxttpj26mhm5hw8tg3zhjcd0',0,'',NULL);
/*!40000 ALTER TABLE `oto_admin` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_adminmenu`
--

DROP TABLE IF EXISTS `oto_adminmenu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_adminmenu` (
  `id` int(10) unsigned NOT NULL,
  `menu_label` varchar(30) NOT NULL,
  `menu_url` varchar(255) NOT NULL,
  `menu_target` varchar(30) DEFAULT NULL,
  `menu_parent` int(11) DEFAULT 0,
  `menu_order` int(11) DEFAULT NULL,
  `f` varchar(100) NOT NULL,
  `filename` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_adminmenu`
--

LOCK TABLES `oto_adminmenu` WRITE;
/*!40000 ALTER TABLE `oto_adminmenu` DISABLE KEYS */;
INSERT INTO `oto_adminmenu` (`id`, `menu_label`, `menu_url`, `menu_target`, `menu_parent`, `menu_order`, `f`, `filename`) VALUES (100,'Home','admin.php','_top',0,1,'',''),(300,'Settings','admin.php?f=ss','_top',0,1,'ss','systemsettings.php'),(310,'Payment Settings','admin.php?f=ipnset','_top',300,2,'ipnset','ipnsettings.php'),(320,'Signup Settings','admin.php?f=sgs','_top',300,3,'sgs','signupsettings.php'),(330,'System Settings','admin.php?f=ss','_top',300,4,'ss','systemsettings.php'),(332,'Bounce Settings','admin.php?f=bouncesettings','_top',300,6,'bouncesettings','bounce_settings.php'),(334,'Administrators','admin.php?f=admins','_top',300,3,'admins','administrators.php'),(336,'Widgets','admin.php?f=widgets','_top',300,7,'widgets','widgets.php'),(337,'Account Security','admin.php?f=accsec','_top',300,4,'accsec','accountsecurity.php'),(400,'Members','admin.php?f=mm&sf=browse','_top',0,3,'mm','membermanagement.php'),(500,'View Members','admin.php?f=mm&sf=browse','_top',400,4,'mm','membermanagement.php'),(501,'Deleted Members','admin.php?f=delmm&sf=browse','_top',400,5,'delmm','deletedmembers.php'),(600,'Account Levels','admin.php?f=mt','_top',400,5,'mt','membertypes.php'),(610,'Leaderboards','admin.php?f=mstats','_top',400,6,'mstats','memberstats.php'),(620,'Support Questions','admin.php?f=askadmin','_top',400,7,'askadmin','../askadmin/askadmin.php'),(630,'Banned Emails','admin.php?f=banemm&sf=browse','_top',400,8,'banemm','bannedemanagement.php'),(640,'Banned IP Addresses','admin.php?f=banipmm&sf=browse','_top',400,9,'banipmm','bannedipmanagement.php'),(650,'Find Cheaters','admin.php?f=dupe','_top',400,10,'dupe','mod_dupe.php'),(651,'Click Logs','admin.php?f=sstats&sort=1','_top',400,11,'sstats','sstats_main.php'),(652,'HitsConnect IP ID','admin.php?f=hcipid','_top',400,12,'hcipid','hcipid.php'),(700,'Ads','admin.php?f=bmm&sf=browse','_top',0,3,'bmm','bannermanagement.php'),(720,'Banner Ads','admin.php?f=bmm&sf=browse','_top',700,5,'bmm','bannermanagement.php'),(730,'Text Ads','admin.php?f=tmm&sf=browse','_top',700,6,'tmm','textmanagement.php'),(750,'Banned Sites','admin.php?f=banmm&sf=browse','_top',700,8,'banmm','bannedmanagement.php'),(760,'Abuse Reports','admin.php?f=areports&sf=browse','_top',700,9,'areports','abusereports.php'),(822,'Custom Fields','admin.php?f=cfields','_top',300,3,'cfields','customfields.php'),(900,'Offers','admin.php?f=oto','_top',0,3,'oto','oto.php'),(1000,'One Time Offers','admin.php?f=oto','_top',900,4,'oto','oto.php'),(1100,'Login Offers','admin.php?f=spo','_top',900,5,'spo','spo.php'),(1150,'Rotating Offers','admin.php?f=rto','_top',900,6,'rto','rto.php'),(1152,'Upsell Offers','admin.php?f=upsells','_top',900,7,'upsells','upsells.php'),(1200,'Downline Builder','admin.php?f=dlb','_top',0,3,'dlb','downlinebuilder.php'),(1250,'Pro Downline Builder','admin.php?f=multiple_downline_builders','_top',2050,15,'multiple_downline_builders','../lfm_plugins/multiple_downline_builders/admin.php'),(1300,'Affiliate Toolbox','admin.php?f=lm','_top',0,3,'lm','linkmanagement.php'),(1400,'Site Design','admin.php?f=tm','_top',0,3,'tm','templatemanagement.php'),(1410,'Templates','admin.php?f=tm','_top',1400,4,'tm','templatemanagement.php'),(1420,'Bonus Page','admin.php?f=bonus','_top',1400,5,'bonus','../bonuspage/bonusadmin.php'),(1430,'Themes','admin.php?f=th','_top',1400,6,'th','themes.php'),(1432,'Surfbar Icon Themes','admin.php?f=iconstheme','_top',1400,8,'iconstheme','iconthemes.php'),(1440,'Content Pages','admin.php?f=cd','_top',1400,7,'cd','contentdelivery.php'),(1500,'Sell Items','admin.php','_top',0,3,'',''),(1510,'Sales Packages','admin.php?f=scrds','_top',1500,4,'scrds','ipnsalespackages.php'),(1523,'Login Spotlight','admin.php?f=spotlight','_top',2050,5,'spotlight','spotlight.php'),(1530,'Payments Received','admin.php?f=ipnsales','_top',1500,6,'ipnsales','ipnpayments.php'),(1535,'Purchased Pages','admin.php?f=purchasedpages','_top',1500,10,'purchasedpages','purchasedpages.php'),(1536,'Purchased Downloads','admin.php?f=purchaseddls','_top',1500,11,'purchaseddls','purchaseddownloads.php'),(1540,'Commissions','admin.php?f=sa','_top',1500,7,'sa','sales.php'),(1550,'Downloads','admin.php?f=pd','_top',1500,8,'pd','products.php'),(1560,'Media Library','admin.php?f=fl','_top',1500,9,'fl','filelib.php'),(1600,'SurfingGuard','/surfingguard/index.php','_blank',0,3,'',''),(2050,'Apps','http://lfmwealthsystems.com','_blank',0,1,'',''),(2100,'Help','https://theviralmailerscript.com/helplink.php','_blank',0,3,'',''),(2102,'Macros List','admin.php?f=macros','_top',2100,1,'macros','macros_list.php'),(2200,'Logout','admin.php?f=lo','_top',0,3,'',''),(2300,'LFMVM','admin.php','_top',0,2,'',''),(2310,'Mailer Settings','admin.php?f=mailsettings','_top',2300,2,'mailsettings','mailingsettings.php'),(2320,'Blocked Words','admin.php?f=banwd&sf=browse','_top',2300,3,'banwd','bannedwordmanagement.php'),(2402,'Surfbar Settings','admin.php?f=sbsettings','_top',2300,2,'sbsettings','surfbarsettings.php'),(2440,'Credit Boost/Special','admin.php?f=cboost','_top',2300,4,'cboost','creditboost.php'),(2450,'Surfing Stats','admin.php?f=surfstats','_top',2300,5,'surfstats','surfstats.php'),(2460,'Dynamic Ratios','admin.php?f=dynamic','_top',2300,6,'dynamic','dynamic.php'),(5072,'Square Banners','admin.php?f=sqbanners','_top',2050,5,'sqbanners','sqbanners.php'),(5078,'Promo Codes','admin.php?f=promocode','_top',2050,5,'promocode','utility_promocode.php'),(5098,'Missed Mail','admin.php?f=inboxsettings','_top',2050,15,'inboxsettings','inboxsettings.php'),(5101,'Easy Competitions','admin.php?f=lbcontests','_top',2050,10,'lbcontests','lb_contests.php'),(5102,'Get The Spot','admin.php?f=thespot','_top',2050,5,'thespot','thespot.php'),(5118,'Puzzle Hunt','admin.php?f=puzzlehunt','_top',7050,5,'puzzlehunt','../lfm_plugins/puzzlehunt/admin.php'),(5125,'PiggyBank','admin.php?f=piggybank','_top',2050,5,'piggybank','piggybank.php'),(7050,'Games','http://lfmwealthsystems.com','_blank',0,3,'',''),(8500,'GeniuXs','admin.php?f=gensched','_top',0,3,'gensched','geniuxs_sched.php'),(8510,'Scheduled Mailings','admin.php?f=gensched','_top',8500,2,'gensched','geniuxs_sched.php'),(8520,'Automated Mailings','admin.php?f=gengroups','_top',8500,3,'gengroups','geniuxs_groups.php'),(8530,'Autoresponder Series','admin.php?f=gennewmem','_top',8500,4,'gennewmem','geniuxs_newmem.php'),(8540,'Status and Settings','admin.php?f=geninfo','_top',8500,5,'geninfo','geniuxs_info.php'),(8550,'Help and Tutorials','https://geniuxs.com/geniuxshelp_lfmvm.php','_blank',8500,6,'',''),(10500,'Rotator','admin.php?f=rotsettings','_top',0,3,'rotsettings','utility_rotator.php'),(10510,'Main Settings','admin.php?f=rotsettings','_top',10500,2,'rotsettings','utility_rotator.php'),(10520,'Tracker Sites','admin.php?f=rottrackers&sf=browse','_top',10500,3,'rottrackers','rotator_trackers.php'),(10530,'Source Ranks','admin.php?f=rotsourceranks','_top',10500,4,'rotsourceranks','rotator_sourceranks.php'),(10540,'Help and Tutorials','https://geniuxs.com/geniuxshelp_lfmvm.php','_blank',10500,5,'',''),(94897,'Solo Ads','admin.php?f=solomailer','_top',2050,5,'solomailer','solomailer.php'),(94927,'Private Messages','admin.php?f=pmessages','_top',2050,5,'pmessages','pmessages_admin.php'),(100100,'OTO Builder','admin.php?f=offerb','_top',2050,6,'offerb','offerb.php'),(100300,'Random Referrals','admin.php?f=randomrefs','_top',2050,6,'randomrefs','randomrefs.php'),(100400,'Recommended Splash','admin.php?f=dlbsplash','_top',2050,6,'dlbsplash','dlbsplash.php'),(100500,'Surf Goal','admin.php?f=surftarget','_top',2050,6,'surftarget','surftarget.php'),(100600,'Widget Ads','admin.php?f=widgetads&sf=browse','_top',2050,5,'widgetads','widgetads.php'),(100700,'PiggyBank Marketplace','admin.php?f=pmarket','_top',2050,6,'pmarket','pmarket.php'),(8575,'GeniuXs AI','admin.php?f=geniuxsadmin','_top',8500,1,'geniuxsadmin','geniuxs_admin.php');
/*!40000 ALTER TABLE `oto_adminmenu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_admins`
--

DROP TABLE IF EXISTS `oto_admins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_admins` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `username` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `ipaddresses` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `username` (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_admins`
--

LOCK TABLES `oto_admins` WRITE;
/*!40000 ALTER TABLE `oto_admins` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_admins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_admins_log`
--

DROP TABLE IF EXISTS `oto_admins_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_admins_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `logtime` int(11) NOT NULL DEFAULT 0,
  `adminidnum` int(11) NOT NULL,
  `ipaddress` varchar(50) NOT NULL,
  `invalidlogin` tinyint(1) NOT NULL DEFAULT 0,
  `message` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `logtime` (`logtime`),
  KEY `adminidnum` (`adminidnum`),
  KEY `ipaddress` (`ipaddress`),
  KEY `invalidlogin` (`invalidlogin`)
) ENGINE=MyISAM AUTO_INCREMENT=1251 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_admins_log`
--

LOCK TABLES `oto_admins_log` WRITE;
/*!40000 ALTER TABLE `oto_admins_log` DISABLE KEYS */;
INSERT INTO `oto_admins_log` (`id`, `logtime`, `adminidnum`, `ipaddress`, `invalidlogin`, `message`) VALUES (1247,1776280912,0,'201.108.110.174',0,'Successful Login As frankandres'),(1242,1775240189,0,'201.108.110.174',0,'Successful Login As frankandres'),(1243,1775488901,0,'201.108.110.174',0,'Successful Login As frankandres'),(1240,1774627787,0,'201.108.97.119',0,'Successful Login As frankandres'),(1241,1775060876,0,'201.108.110.174',0,'Successful Login As frankandres'),(1239,1774453228,0,'187.150.228.42',0,'Successful Login As frankandres'),(1244,1775662698,0,'201.108.110.174',0,'Successful Login As frankandres'),(1246,1776092262,0,'201.108.110.174',0,'Successful Login As frankandres'),(1238,1774283680,0,'187.150.228.42',0,'Successful Login As frankandres'),(1250,1776870357,0,'187.155.232.178',0,'Successful Login As frankandres'),(1245,1775843122,0,'201.108.110.174',0,'Successful Login As frankandres'),(1248,1776446123,0,'201.108.98.174',0,'Successful Login As frankandres'),(1249,1776699090,0,'187.155.232.178',0,'Successful Login As frankandres');
/*!40000 ALTER TABLE `oto_admins_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_admins_noperms`
--

DROP TABLE IF EXISTS `oto_admins_noperms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_admins_noperms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `adminidnum` int(11) NOT NULL DEFAULT 0,
  `permission` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `adminidnum` (`adminidnum`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_admins_noperms`
--

LOCK TABLES `oto_admins_noperms` WRITE;
/*!40000 ALTER TABLE `oto_admins_noperms` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_admins_noperms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_admins_permsadded`
--

DROP TABLE IF EXISTS `oto_admins_permsadded`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_admins_permsadded` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `permission` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `permission` (`permission`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_admins_permsadded`
--

LOCK TABLES `oto_admins_permsadded` WRITE;
/*!40000 ALTER TABLE `oto_admins_permsadded` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_admins_permsadded` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_anticheat`
--

DROP TABLE IF EXISTS `oto_anticheat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_anticheat` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `accuracy` int(11) NOT NULL DEFAULT 75,
  `gracep` int(11) NOT NULL DEFAULT 20,
  `sessiontime` int(11) NOT NULL DEFAULT 5,
  `maxtime` int(11) NOT NULL DEFAULT 12,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_anticheat`
--

LOCK TABLES `oto_anticheat` WRITE;
/*!40000 ALTER TABLE `oto_anticheat` DISABLE KEYS */;
INSERT INTO `oto_anticheat` (`id`, `accuracy`, `gracep`, `sessiontime`, `maxtime`) VALUES (1,75,20,5,12);
/*!40000 ALTER TABLE `oto_anticheat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_askadmin_messages`
--

DROP TABLE IF EXISTS `oto_askadmin_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_askadmin_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date_recieved` timestamp NOT NULL DEFAULT current_timestamp(),
  `from_user` int(11) NOT NULL,
  `message` varchar(1000) NOT NULL,
  `replied` varchar(10) NOT NULL DEFAULT 'no',
  `archived` varchar(10) NOT NULL DEFAULT 'no',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_askadmin_messages`
--

LOCK TABLES `oto_askadmin_messages` WRITE;
/*!40000 ALTER TABLE `oto_askadmin_messages` DISABLE KEYS */;
INSERT INTO `oto_askadmin_messages` (`id`, `date_recieved`, `from_user`, `message`, `replied`, `archived`) VALUES (20,'2022-06-09 19:16:49',27,'This should say Soloswaps...  On Step 3.\r\n\r\nTo help you make money by promoting soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!\r\n\r\nStep 3\r\n\r\nGet Started With PremiumAdSwaps!','no','no'),(21,'2022-06-29 20:30:47',27,'I am trying to send an email out. and the page loads just fine. However, it says that it has Iframes.  \r\n\r\nI don\'t think it does.  Can you please check it?  I don\'t have any other page to use. \r\nhttps://rebrand.ly/sq2iyjl','no','no');
/*!40000 ALTER TABLE `oto_askadmin_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_askadmin_settings`
--

DROP TABLE IF EXISTS `oto_askadmin_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_askadmin_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(50) NOT NULL,
  `notify` varchar(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_askadmin_settings`
--

LOCK TABLES `oto_askadmin_settings` WRITE;
/*!40000 ALTER TABLE `oto_askadmin_settings` DISABLE KEYS */;
INSERT INTO `oto_askadmin_settings` (`id`, `email`, `notify`) VALUES (1,'instantresellerclib@gmail.com','yes');
/*!40000 ALTER TABLE `oto_askadmin_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_autotrack`
--

DROP TABLE IF EXISTS `oto_autotrack`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_autotrack` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `timehit` int(11) NOT NULL DEFAULT 0,
  `ipaddress` varchar(40) NOT NULL,
  `srtrkdm` varchar(200) NOT NULL,
  `srtrkid` int(11) NOT NULL,
  `landing` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `timehit` (`timehit`),
  KEY `ipaddress` (`ipaddress`),
  KEY `landing` (`landing`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_autotrack`
--

LOCK TABLES `oto_autotrack` WRITE;
/*!40000 ALTER TABLE `oto_autotrack` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_autotrack` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_banemails`
--

DROP TABLE IF EXISTS `oto_banemails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_banemails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `banned` varchar(250) DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_banemails`
--

LOCK TABLES `oto_banemails` WRITE;
/*!40000 ALTER TABLE `oto_banemails` DISABLE KEYS */;
INSERT INTO `oto_banemails` (`id`, `banned`) VALUES (1,'a.david.beaman@gmail.com'),(2,'aarontroops@gmail.com'),(3,'bjfolly08@gmail.com'),(4,'jwors35@gmail.com'),(5,'jeffindarden@gmail.com'),(6,'srinivasmoluguri84@gmail.com'),(7,'boinirajitha11@gmail.com'),(8,'molugurimoksha@gmail.com'),(9,'gadhearun7979@gmail.com'),(10,'kesarisuresh77@gmail.com'),(11,'himanshunarmala15@gmail.com'),(12,'anvithraju4670@gmail.com'),(13,'kesaridmstrategies@gmail.com'),(14,'varshakante4579@gmail.com'),(15,'yaminigowtham14@gmail.com'),(16,'bimmernut318@gmail.com'),(17,'rajeshkudala101@gmail.com'),(18,'rgigens@emergentvillage.org'),(19,'egzonmehmedi01@gmail.com');
/*!40000 ALTER TABLE `oto_banemails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_banips`
--

DROP TABLE IF EXISTS `oto_banips`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_banips` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `banned` varchar(50) DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_banips`
--

LOCK TABLES `oto_banips` WRITE;
/*!40000 ALTER TABLE `oto_banips` DISABLE KEYS */;
INSERT INTO `oto_banips` (`id`, `banned`) VALUES (1,'75.108.137.122'),(2,'184.62.2.180'),(3,'75.106.92.112'),(4,'72.204.30.54'),(5,'135.84.228.231'),(6,'103.96.18.8'),(7,'106.208.116.15'),(8,'106.208.28.143'),(9,'106.208.21.41'),(10,'49.37.152.79'),(11,'157.48.254.16'),(12,'223.182.56.52'),(13,'49.37.158.201'),(14,'49.37.153.40'),(15,'49.37.153.36'),(16,'195.208.126.217'),(17,'223.228.73.226'),(18,'197.167.20.189'),(19,'178.218.167.211');
/*!40000 ALTER TABLE `oto_banips` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_banners`
--

DROP TABLE IF EXISTS `oto_banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_banners` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `banner` mediumblob NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_banners`
--

LOCK TABLES `oto_banners` WRITE;
/*!40000 ALTER TABLE `oto_banners` DISABLE KEYS */;
INSERT INTO `oto_banners` (`id`, `banner`) VALUES (1,'/9j/4gxYSUNDX1BST0ZJTEUAAQEAAAxITGlubwIQAABtbnRyUkdCIFhZWiAHzgACAAkABgAxAABh\r\nY3NwTVNGVAAAAABJRUMgc1JHQgAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLUhQICAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFjcHJ0AAABUAAAADNkZXNjAAAB\r\nhAAAAGx3dHB0AAAB8AAAABRia3B0AAACBAAAABRyWFlaAAACGAAAABRnWFlaAAACLAAAABRiWFla\r\nAAACQAAAABRkbW5kAAACVAAAAHBkbWRkAAACxAAAAIh2dWVkAAADTAAAAIZ2aWV3AAAD1AAAACRs\r\ndW1pAAAD+AAAABRtZWFzAAAEDAAAACR0ZWNoAAAEMAAAAAxyVFJDAAAEPAAACAxnVFJDAAAEPAAA\r\nCAxiVFJDAAAEPAAACAx0ZXh0AAAAAENvcHlyaWdodCAoYykgMTk5OCBIZXdsZXR0LVBhY2thcmQg\r\nQ29tcGFueQAAZGVzYwAAAAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAABJzUkdCIElF\r\nQzYxOTY2LTIuMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAWFlaIAAAAAAAAPNRAAEAAAABFsxYWVogAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAA\r\nOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z2Rlc2MAAAAAAAAA\r\nFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAAAAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZXNjAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAZGVzYwAAAAAAAAAsUmVmZXJlbmNlIFZpZXdpbmcgQ29uZGl0aW9uIGluIElFQzYx\r\nOTY2LTIuMQAAAAAAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2\r\nNi0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZpZXcAAAAAABOk/gAUXy4AEM8UAAPtzAAE\r\nEwsAA1yeAAAAAVhZWiAAAAAAAEwJVgBQAAAAVx/nbWVhcwAAAAAAAAABAAAAAAAAAAAAAAAAAAAA\r\nAAAAAo8AAAACc2lnIAAAAABDUlQgY3VydgAAAAAAAAQAAAAABQAKAA8AFAAZAB4AIwAoAC0AMgA3\r\nADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQAJUAmgCfAKQAqQCuALIAtwC8AMEA\r\nxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEyATgBPgFFAUwBUgFZAWABZwFu\r\nAXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIUAh0CJgIvAjgCQQJLAlQC\r\nXQJnAnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOANDA08DWgNmA3IDfgOK\r\nA5YDogOuA7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTEBNME4QTwBP4F\r\nDQUcBSsFOgVJBVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAadBq8GwAbR\r\nBuMG9QcHBxkHKwc9B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjSCOcI\r\n+wkQCSUJOglPCWQJeQmPCaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtp\r\nC4ALmAuwC8gL4Qv5DBIMKgxDDFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4O\r\nSQ5kDn8Omw62DtIO7g8JDyUPQQ9eD3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFt\r\nEYwRqhHJEegSBxImEkUSZBKEEqMSwxLjEwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAV\r\nEhU0FVYVeBWbFb0V4BYDFiYWSRZsFo8WshbWFvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6\r\nGSAZRRlrGZEZtxndGgQaKhpRGncanhrFGuwbFBs7G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcd\r\ncB2ZHcMd7B4WHkAeah6UHr4e6R8THz4faR+UH78f6iAVIEEgbCCYIMQg8CEcIUghdSGhIc4h+yIn\r\nIlUigiKvIt0jCiM4I2YjlCPCI/AkHyRNJHwkqyTaJQklOCVoJZclxyX3JicmVyaHJrcm6CcYJ0kn\r\neierJ9woDSg/KHEooijUKQYpOClrKZ0p0CoCKjUqaCqbKs8rAis2K2krnSvRLAUsOSxuLKIs1y0M\r\nLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+RL8cv/jA1MGwwpDDbMRIxSjGCMbox8jIqMmMymzLUMw0z\r\nRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3NnI2rjbpNyQ3YDecN9c4FDhQOIw4yDkFOUI5fzm8\r\nOfk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1hPaE94D4gPmA+oD7gPyE/YT+iP+JAI0BkQKZA\r\n50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUSRVVFmkXeRiJGZ0arRvBHNUd7R8BIBUhL\r\nSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1KTZNN3E4lTm5Ot08AT0lPk0/dUCdQ\r\ncVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYPVlxWqVb3V0RXklfgWC9YfVjL\r\nWRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19hX7NgBWBXYKpg/GFPYaJh\r\n9WJJYpxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlDaZpp8WpIap9q92tP\r\na6dr/2xXbK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4dBR0cHTMdSh1\r\nhXXhdj52m3b4d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7CfyN/hH/l\r\ngEeAqIEKgWuBzYIwgpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opkisqL\r\nMIuWi/yMY4zKjTGNmI3/jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaf\r\nlwqXdZfgmEyYuJkkmZCZ/JpomtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopaj\r\nBqN2o+akVqTHpTilqaYapoum/adup+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+L\r\nsACwdbDqsWCx1rJLssKzOLOutCW0nLUTtYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9\r\nFb2Pvgq+hL7/v3q/9cBwwOzBZ8Hjwl/C28NYw9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3\r\nyzbLtsw1zLXNNc21zjbOts83z7jQOdC60TzRvtI/0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZ\r\nbNnx2nba+9uA3AXcit0Q3ZbeHN6i3ynfr+A24L3hROHM4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy\r\n6LzpRunQ6lvq5etw6/vshu0R7ZzuKO6070DvzPBY8OXxcvH/8ozzGfOn9DT0wvVQ9d72bfb794r4\r\nGfio+Tj5x/pX+uf7d/wH/Jj9Kf26/kv+3P9t////7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEB\r\nAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMD\r\n/9sAQwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD\r\nAwMDAwMDAwMDAwMD/8AAEQgEOAQ4AwERAAIRAQMRAf/EAB8AAQABAwUBAQAAAAAAAAAAAAABCAkK\r\nBAUGBwsDAv/EAIYQAAAEBAMDBgoCBw8KEAkBGQECAwQABQYRBxLwCCExCRNBUWFxFCKBkaGxwdHh\r\n8QoVFhkjMlZilhcYGkJSV1h3k5W20tTV1iQzU1VykpSXtdMlJjQ1OUNFRlRodniCt9fiNjdEY3OY\r\noqfCJyhmZ4SmsrQ4WWR0dYOGo6SHs0hlpai4xMX/xAAfAQEAAQMFAQEAAAAAAAAAAAAAAQcICQME\r\nBQYKAgv/xAB9EQABAwMCAgYDBA8RCgkIABcBAAIDBAURBhIHIQgTMUFRYRQikQkVcYEWFxgjMlJT\r\nVVaSlKHR0tMKGTNCVFdicnWCk5Wxs8HU8BokNFhzdKKytOElJzU2Q0RFwuImN2ODo7XD1UZHZWaW\r\n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\r\nHqAN14vc0xrXRfEahjuOlLvG6V7cujJGRy7O5cxNFJEAHt5eK4HiTg3h3i5KlJNXFOMZmkcpikXU\r\nQTBwmYxRADEVAua5c1+MVP0TxP19woujbhpW9TQOBGWBxLHeWOxUx4gcKtDcS7ZLbNXWGCrp3AjL\r\nmjcOWORxnkrQ+O3JRnIo+nuEs5EUcqiqciVTJuEAuUhBE4G8wxkl4Q+6PUkwpLNxItmyoyAZwTjz\r\nJ5LFnxn9zTikkrbzwxupY3BIpnAY8gDnKtV4hbOOLmGbhZGp6RmTciJxDwhNuc6RilMJQUASgI5R\r\ntGRTRfG7hvr2CKbT2paeQvH0O4A+OFjS13wA4qcO55otQ6WqGxsJ9drS5pGe3kuklG6yRhIskomY\r\nBG5TkMQwW43AwBaKpsmjkAdHI1w8iCqNyRywuLZYnNeO4gj+VfPLr5x97lpZU5ddsMplMvZDcm5R\r\nl1rrhuTKnLDcmVOX2RGVGVGXXf5IbkypAvdDKZTL5d2uqG5NyZfV7IbvJNynLw18IZ5qN3amWGUy\r\nmX0+yGUymXdr1xG7sTKnLrXfDcm5Mo698RuTKZYnPmm5MvTb32hn2qMqcvZ5IZTKZde2IJTcmWGf\r\nam5MurRG5NyZfj8IblGVOXq1q8TnxTcmXq12RG7zTKZdbvjeGUypEuuPfDcmUy+j0++4wyB8Cbky\r\n+nXREZ5KMpl3dUN3iU3c1OW+vLEZ5plMsTlMplHQ+2I3KNyZdecO6J3Kcpl9ERuTcpEvlgHKMpl9\r\ncNyZTL2XiMplMvXv6vfDd2plTl1rtid3sTKZddPdEbuxRlMvvhnxTcmXpiN3mmUy612RO5MqcvGI\r\nBTKZe7p12Q3eCbky+vju1uhlRlTlhnzTKkqYmEpAC5jCBSh2mGwB5xj4kkDGPkccMaCT8XNS3L3N\r\na36InCvHbB/JyI4wVtRU/wARXwDSzlds+WkpSEEz1tziRhTUHNmAhiiIeWPPH7o77sdFwT09xC4e\r\ncJ7U75NoGPhbWEuxDJhwy3ljIOCsm/CXoA3m8aIs3FPVFzY2zTAPEGBlze3nzzjtV4ba75E7CDEa\r\nVhMcEAToCoZayMCTBFNMzSYqJIjzZVTGEoZlFA6umMMXQf8AzQZxz4U3p9q6Q5dqbS1XUDdM5zhJ\r\nA1zuZaBnk0H73Yue4ldEXS+o6FtTo/FDcI2HDQPVeQO/4SsX7aC2T8Ztm2oXckxFpSYsW6LhVFtN\r\n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\r\nl2qNyZfNrthuHcm5ALrvhnxTcmTQ+iILk3KcuvPE7k3Jl16uEN3Pmo3Jl15euGVOVOXyRGVG5MsN\r\n3mm5Mu+GR8SZU5fd8ojKjKZdavDPJMqMvmgT7VO5Tl+MMqMpl15YZ7EymXXw74buXkm5Tl9ERu80\r\n3Jl11wyoymXVuryQym5Tl9kM96blGXh5ePxhuTcpyeqG5NyZfju49sRlMpl17egIbk3Kcvo93ZDd\r\nyUZTLDdhNyAX1dvziMplMvRbXdE580ypyxGVGUyw3JlTl38NfKI3JlMmrfGG5NyZesIblGUy+bXf\r\neG72qdyZYZTKnL2Qz5qMpl39/fEbk3IBdfOBKEpbo6oZTKnJ0Q3KNyZez0eaG7mmUy/CI3JuTLr2\r\n+WG5MqcvphuTcmX0Q3JuTLDcoypy60ERuTKjL1Q3JuU5YbkymWGU3KcvZ6BhlRuTLv4a7ojd7Eym\r\nX3w3JlMuu/hDcmVIE9MNybky8L+n5Q3dqjKZbb9dkRuymUy6694RO7wTcpy+Xo+MRu9qZTLx18YZ\r\nTKZYblG5MsN3mp3Jl+W6Iyo3Kcuh11w3JlMvZ7+m/XDPZzTcmX5wDkymXyQ3JlTl15eqIyoypy6t\r\nq8MplRl8mvRDd7Eypy612BDd5plMvfv9cN33kymXs15IjdhN3mmXXv7Ibu1RlAL6IE+BTKnL2Q3d\r\nvNN3mpyh8ojdlRlMvsid3tTcmX08deWI3JuWyZfNrojlcrk8pl1byeSGVOUy8dd0NyjKZYbgmUyw\r\nz7EypyxG4803Jl9MNyZTLro4Q3doUblOXWuqI3JuTL74ZTKZfbq0TuTcmXs16ojd5plTl7tdgwyo\r\nymUPl64Z5HwTKZfN5NdENybvapy9XTbr90QXJlMvmhu71GUtrphkJlMut/piMpuTLrq9nTDd2plT\r\nl7PNxGG7km5MuvTDKbky8IbvNRlMu/y/LvhlTuTLEZyUypy67t0TuUbky61eIz7EymXrhuTKnL5N\r\ndsM+xRuTLrq9sNyZTL5vVq8RuTKZfL5tcYbkypya1whu7spuTLru9MNyjcmXgGvPEbvam5TlhuTc\r\nmXWt0MhMpk9kNybky9nw7obs9/JN3mpy8IjPMqMpl8vu+UN3mm5MutdEM+ablOX49XohuTcmUePq\r\n9HXAOTcmXq98RuTcmXp6tBDPcoyptrfq0M96ZTLbo6IbkymXXp9FobvNMplHWuERlMpl0Puidybl\r\n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\r\nk0ms1etZdLJZLmqz6YTGYvliNmTFiybEVcu3rxyqVNJJMplFDmApQERAI0p6iGmglqamZsdPGwue\r\n5xDWta0Zc5zjgBoAySSAAMlasMU1TNDTU8TpKiRwa1rQXOc5xw1rWgElxJAAAySQAsmLZP8Ao22K\r\nWIlLSittqbFcuCozhqk+Qwvo+RNasrtk0cpJqIp1TP30xaU5TU3IAiKjNuhNhIAgVRRNUDpEsl19\r\n00LJaK6otmg7B75CNxaaqZ5igcQSCYo2tMkjD3Pc6LPPDSMON3GjOipcrhSQV2tL2aJz259Hga18\r\nrcgEdZK47GuHMFjWSDs9fOQqp8Q/ow+FLmQuPzKNp/EKS1MmmJ2n5odIU3U8hdrFARK2cfY2rSMw\r\nlyaw+KK5fChS++5pT70eiWfpwaijqme/+iKKWhJ5+jyyxSAeI6zrmux4Ybns3DtXcLn0SdPSUzxZ\r\ntV1sVb3GZkUrPgLWCFwz47jjtwexYy219sX48bEGKKmFmOlNIy186bKTOlaqkjhaZ0VXUjTW5g04\r\npOdqNWh3aKCogRw3XRbvmhzFBdBPOTNe3w74l6U4n2MX3S1YXxtdtlieA2aB+MhkrATjI5tc0uY8\r\nA7HHDsWj670BqPh3d/ejUNMAXt3RSsy6KZo5F0biBzBIDmOAe0kZaA5pNKeX3DHfty6TuU5ddHbE\r\nbk3Jl80N3mmUy9mt8N3NNynKHz74buajKjLDd3puUgXoiM96Z71OXXk7d8Nybky674bvNRuUZd/T\r\nruhuU5U5ddftGIyoypy6tq8TuTcmXXviMpuTL1cIbk3JlhuUbky74jKZTLrXTeJ3JuU5fnDcmUy6\r\n11xGU3JlhuTcmW+t8NyblOSG5RuTLrtiNyZTLrW+G7vym5Tl82t++G5NyZOnq1v7hhuTd3Jl7O3p\r\nhuUbkyxG5NynJDcm5MsNyZTLEblGVOXq+MMpuTLrjDcm5MsNybky9mvIPbAuTcmXQa6obk3LZMuv\r\nZHK5XJ5U5YZTcoywymVOXXGIym5MvZ16tDKjKZd2vh1wymVOXv16oZTKZfRuiN3mmVyhjQtaTNog\r\n/ltIVRMWLkonbvGNPzZ21XIUxiGMg4btFEVSgcohcphC4CHGOPmvNqgldDPdKdkze1rpGNI+EF2Q\r\nuThs15qYmT09pqZIXDk5sT3NPmCGkH4lq/zN8Q/wDrP8l556f6hjS9/rJ9eKT+Fj/GWp8j9/+sdZ\r\n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\r\nvjrq7MkESCJBFTxtJ7K+Bu1nQLrDzHCh5dVMrMRY8mnBSEZ1XSMxVTyEnFJVEkQZhJZgmNhMBDCg\r\n4KHNuE1khMmbtOktZ6j0Rc2XbTlyfBOMbm9scrfpJWH1XtPnzB5tLXAEdQ1poPSvEGzyWTVdpjqa\r\nQ82kjEkTsYD4pB60bx4tPMZa4FpIOCpyg2wPiBsHYuhSE8cLVRhtVpXs1wrxGK08GRqOUNVUivJT\r\nNkEzHQl9W08LlJN83KYSHKok4T+5rFKXJNws4oWziXYzXQMEN4gw2pgznY4g4ewnm6J+CWE8wQWH\r\nm3JxK8auDt44Q6jbRTSOqdO1W51JU4xvaO2OQDk2aPIDgPVeCHtwHFrKB8vZ1RU/cqMbky6HQQ3J\r\nuTLDcmUyb+nXdEbk3Kcu7zX1fdDdz5KMpl93whnyTcmXjrsvDd4JlMtuv46GI3JlTlid3am5Muvb\r\nEblG5Mvu7Q90TkBMrork9Aty8uyMH/Gfwr/yHK4sr4486nWfwM/1Ylln6NXPhZoL/Jz/AO0zr1nY\r\ns2VzaQRY2H0kML4TbMf7Ylefwak0Xa9Es41Bq7/M4v5wqyPpvnGj9FfulJ/MOWJRli+bcsbGVGXh\r\ncLw3Ju8F+suvTEbkyoyj6IbvFNynL1avDcoz4oBYjKbky63cBid2E3KcvsiN3mmUy+bW/shlRlMn\r\nTEbk3Jl1b4ROVO5Tk16ojco3Jl3Q3JuTLrVrQ3JuTJ2d0NyblOX4X0EN3nzUbky69cRlNyZddnmh\r\nuTcpy+vQQ3KNyZfXrq3wyp3Jl6PZrqhuUbkyjrjEbk3KcvZDKZ80y9Oun1w3ZTKZe/ydMNyblOXp\r\n6ojd3KNyZda4w3JuTJrt8kNybky6DphuTcmSG5Ny/WXvtr3xGfao3e1Rk16++G5NynL54bk3exMs\r\nRu7U3Jl43174ncm5MutB0RBPmoymXXu4RO5NynLEbsJuTL08OyGfBNyZddHrhuTcmTy9UQXEpuU5\r\nda7oblG5Tl15obu5NyjL5/L8obueE3Kcut0Ruyo3Jl1byROT4puTJ066O6Pncm5Tk11RO5NyZfjD\r\ncE3Kcvp7Ijco3Jl18LQ3JlMuvVDKZTLEF3am5Tl+fvhu7PBNyZdBDd5puQCa80NyjcmWIz3JuU5O\r\nnhDd2JuTJ6+2GU3Jl7Pd5d8Nybky9mrQzyUbvNTlhu7kymTs8nw4Q3ck3eaZde7jEFybky9l/dDd\r\n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\r\ntu3W4QRaKaURJ8ZG7CgqiEqjebqkYJnX8cqecd4iYR8UAgi0eDEkrvYVxAxDo2ZqfW2G0+kyqFOE\r\nWEDtGrh0mKZTtgOJilOFw3gO6JBLSCDghfD2MlY6ORoLCMEHsIVZWGM6NO6WYLrrc85MU5lDCYDH\r\nEDmE5b26imCLsuGF49OsEFPLLuqI/PnhYNOmdoQ6Z4o3G60dH1VrqcEYaQ3dk9h7CuxsvDVoqWT2\r\nqzrKZR6obkymWGU3JlDq467IZTcpy+3XkiNyjKZflDcmUy613Q3c0ypy9WvfDcmUy6690C5NyZez\r\n0fOG7zTKZezXfwiN3mo3Kcno9MN3em5MvZuCGUypy67ojcoymXWuyG7uTKjL2bteUIbvFTlTl174\r\nZ7FGV81TERTOqoIARMonMYegA4iN40aipjpoZKiZ2I2DJ+ALkLVbqu83GjtdBGX1k7wxjR3k9nYq\r\nWsTKxPMl1mjdT+oGh7lMQ1xOYDCA3ENwluHCLT9f6vm1BcJKaGT/AIPjd6vms6HRY4C0PCvStJeL\r\nhS41XVxgykjG0EcgM8+9W8iYhKO8U5rJFzZUERHIBjbr3G+4bDxCKdK7ZVIoq85IpgACNlGCgDxv\r\ncUxAolsN7AA7uEEXFscMVKQw72QaXlkml0udVlPamCWThyYif1l9XruCEVKexROJMgjfr3+Ui3Ck\r\nMRAYYJy/Ctov9XUS2MhUJkSnBNEXipSLKgVM3E2YBDvgi6uGdz3FZ4WXSc6zKkWhxQM7SumqdROw\r\nZREtswGAvDtgi7rp+j5XIG5EiN0lVygXM4UIAqiYtwEc/bBFv6j9NMokzgFtxQAwBbcI2CwjwAII\r\nvkjMAUOBQMI7w6R6d3SMEWrWIRZM1wAwCAhv/GC3YPTBF1TV0nBRExyksIHzAcoBmASgIhw3wRds\r\n7NWKLlrMRo+bq3SUE52yiqhQEglMAASw9Bgio3DnUktmu8VM+XFDKfW596tE6XXCCh4gaBrrzS0e\r\n/UlG3MRAySMHI5eCr+KJVCgYo3KYMwCHSA9O64RdfHKyVjJI3ZY4ZHmsFVXTT0NTNSVMe2ojcWuB\r\n7iO0L9Zde2PvcttlMnm1wiNxTcpy9Hmhu7E3IJd+uz2wz2c0ymX0a8kN3PtUZU5evXZDd5puUZeO\r\n62reuG5NynL5+ERlMpl3a88C5NyZd3DXfDKblsmX166o5bdzXJ5TLv16OMRuym5MmrRO5NyZdB2x\r\n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\r\n6GUyot5O6JymVOX4cOiIymVOXXuhlRlRb4+fphlMpa+/W+GUzhTbWt8MplLcPdEZTKW12ROUypAN\r\nb4jKZS3phlMpbXGGVGUtu15YZTKZdcOmGUylt8MplTbWumIymVFu2JymVNvRxiMplLX18IZTKZfb\r\nDKZS2/XRw7oZUZU217YZTKi3DXeG6GUyptrfEZTKi0TlMqbdERlMpb4+SGUymXj3+mGUymX0aDdD\r\nKZU2iMqMpbWuuGUyloZCZS2td8MplLdnohnzTKWhnyRTbW71QymUt0dOvdDKjKW9Gu+GUylunWgh\r\nnCZSwa3dXX2RGSmSltdcTlMpbv7YjKZS2uiGUyluzXk7oZTKm0MplLa+XRAFMpbfr4wyozyU29ER\r\nlMpbza7YnKZS3k7ojKZS2vNDJTK263ZG9z7FvMpl88MplLemGUymX0+eG7KZTKHHqhnzTKW10wym\r\nUtrh8+MMplTbXbDJUZTLrthlMpbz++GexMqbfHh5IjKZS3TDPkmUy69UMplLa1v3wB7u9Mpbp18L\r\nwz4JlTb4ebrhnzUZS2vneGUyltaGGUyotoPREZymVIBqwh67Qz4JlLQzy7EymWIz5JlMu/2dsTuT\r\nKW9vp64ZTKm3m8kMqMpl1336YgFMpb0d1unohnsTKW7Pb84ZTKm2/frphnsTPJRb3D1jDPsTKnLr\r\n074jKZS3lvb1BE5UZQA9kM+KZS2gGGVOUt7/AIxGVGVNh13wzlMqLeqCZU2hlMpbWuuCZS3Zf3wJ\r\n80z5pl18IjKZS3x11wz4JlTbo88MqMpaGUygl6oZTPiluzXTDKZTLrXCGUypt8+yIyoyoy+yJypy\r\nptrq1aIyoymXzxOUymXq119cRlMqbebuhlMpbXTEZTKWic80ylvmN7RGUylujWhCGUypy6+e+8Mq\r\nMpbs0N4ZTKi0MqcpbXTDKjKm2td8MplLdm7VojKZS3VrohlMqbQyoyluOvJDKZUW4dvl8sMqcqbf\r\nCGVGUy61uhlMpbthlMpbW+GUylojKZU5eqGVGUtw17t8Mqcpl10QymUtDKjKZddsMplMsMplLdlo\r\nZTKm2urphlMpbXp7oZTKW9Hf64jKZS3yhlMpl6fbrphnuUZ7lOXXp6IjKZUW7InKnKm1tWhlRlLR\r\nGUylujq74Z8UymXXfDKZS3v154Z80ymUPb5oZKZKW7IZTKm2vXDKjKW1rjDKJbWrboZ7eaZS2t8R\r\nlMpbh1DDKZS2uv0wymVNvmPlhlMpbdw9sMplLeXq8sMqMpbXRq0RlTlLa1uicplTaIyoyluwNdkT\r\nlMpliMplLBDKZS3X268kMplLeSGUylrjDPJMqcvZDKjKW9Pm9MMplLfGIymUt0DoYAplAL57cezh\r\nDOe1CVIF4a1vGBKEpaGeeEyloZTKW8nH4xGfYoylta6IZU5S2uG+JUZS3Z8ojPYmUtDKZU26tcRh\r\nnCZTLDPgmUtrz9cMplBDXkiM9+UBU21xgCoyosOvRE5U5S2tdkRlMqbb/NxhlRlLa+XCGUylghns\r\nTKW9EAe3CZW3W18I3pPct5lTYAtrQwz7UylunXZDPamUy674ZxzUZU210+aIymVFrerXTDPNTlMs\r\nM9yjKm3ZDKZS3fDKZTL7IZ7UyltcN0RlMpbs8+6GUypy67bwyoyltcIZTKZdavDKZS2vLDKZS3z1\r\n1xOUymXXX7o+cplLat1emJBTKm3V6dcYjPemUy9/khlRlLdPyhlMplhnwTKZevXVDKZU2vDKZUW1\r\n0wz7Uypy8Onj0RGe3xTKW9fRE5UZS3XwiMqcpl8vzt5YZTKW6IZTKm0MqMoIdmu6GUymX5AHkiMp\r\nlLROUypy9HDXpiMplRbXfDKZS0MplTl7PfDKjPmltdPGGUyltd3TDKZQC90MplTbXliMqMqLeWGV\r\nOVNoZTKW0EMplLQymUtw93XDPaoyluN9e2GUylteyGUylujfDKZU21oAiMplLaHs8vRDKZS3rhlM\r\npl9kMqMpbp6oZU5UgAj3eX39EM+CjKWhlMpbf6IjKZS3ohlMpbo9kTlMpYLRGUylu63nhlMqba4Q\r\nymUtq0MplLRGVGUtE5TKW17AhlMpbVoZTKm3n15Y+cplLROUylvPruhlMpbXn67QymUtrXTDOUyl\r\nta7IEqMqba11wymVFuPf8umGUyptrXCIymUtDKZS0M+aZS0MplMurde6GUypy69HqiMplLa4wyoy\r\nlvTrzxOUylvnEZ8EyluzQ7vLDKZ80sHn0ECUyptDOUyltBAHkoyltdsMqcpl7vJ0Qz58kylh80M+\r\nKjKW4a9EQXJntU2hlMqLefq7onPlyTKm0Rnl2JlLdkCUylvj2Qz2plMo7oA8kyltb/dDKZTLr39s\r\nAVGUEOrXqCI3BMqbd49XzgCmUy6CGUygBrQQz2JlMu6GUypt2cOnvCH9KjKW6td8MqcqLdnv77wy\r\nmVNvn6uERlRlLWCGe9MpaGfYmUtrhDKZS27u1v7IZCZ5qba7oZTKW8kM96ZS2tDDITKW6e/s1xiC\r\ne0JlLeWGUylg7uHshnuKZS2vRDKjKZfJ0b4Z7UyptDOEylvb6IZTKi3ZBFNvRv1xgD4JlLa8sMpl\r\nTbXy4xGfFRlLRIPJTlLd2rxGe1RlRbW6Ge7KnKm3n9sMqMpbz66+iIymUt2RPjzTK2+2ujf743mV\r\nvMqbQzzUZUAGrjrpgSmVOXs6uiGUylg15fTDKZS0MplLa12xGexMpbWu2GUylta7YZTKm3XrQwz4\r\nKMpYYZTKW7oZRLfDuhlMpaGUymXduhlMpl1rriMplTbXvhnzTKW9vw74ZUZS2tXhlTlLQyoyloZT\r\nKZYZTKAHZ7LemGUyptr53iMplLbu/V/NE5TKW49vniMplTbXp9EMqMpbXohlMpbf2/OGUyoy674A\r\nplTbWt0MplLer5xGUylonKZU213j8IjKZTLrywz5plMvCGSoz2pbshnmpylvNx9sMqMpaGUymW0M\r\nplTbV+iIymUyw3JlMsMplLaDybrQzzTKW16IZTKZYZUZS2vbw6YjPNMqba80M+KZUWgSmVNtWhnv\r\nTKWhlMpbo9cMpnvS0MplMt93V0a74bu9Mqbat3+2Iz7VGUEPR8YnKZTL5oZTKW+URnwTKm3Trphl\r\nMqLaDjuhlMqcvw+F++GUymX5ejp3w3JlLQz2olreXV4jKZU27/Rq0MqMqLfHuhlMpbd6oZTKW164\r\nZTKnLr2Qz4plADWuMM+KZS2/s108N0M+aZS3dv7IZ7UylvTwiM9mSoypt5NeqGUylvhDPmmUtrth\r\nnsTKZfgEMplMsMplLe6GUylvJ5O2BPYmUtw17oZTKnLEZUZS2uMTlMpbsiM+CZTL6b74ZTKW7fj2\r\nQz4JlTb0wzhMpaIz3qMpa8M96nKW8ut0MplMvo8sTlMpaGcFMpbv7/f54jPZzUZS0M4TKmwa12QK\r\nZKW15/dDKZTLq8M+JTKW9vZDPsTKW+Xn6YZymUtfXphnmUyptv1u9ERnzUZS0EyluGvTaIz5plLa\r\nDu6onKZS3YOvlDKZ81Nui2r9XRDPmijLDKZU283liM9nimUt8NcIZTKW9WtwdcMqMpbXX5oZTKWh\r\nlMqbeb5wz3plRbo+PyhlMpbs4QzzTKm3v8/miM5TKCF/LE57Uyltb4jKZU2goS3z11wymUtr2Qym\r\nVFujf7dDDPeme9TaGUyluMMplLe8bfCG5MpaGUS3Z8u6I+NMqctteUbQymUtrrhkJlLebp8vZDKZ\r\nS0MqMpby63wzlMpb39MMplLcfZqwQz3plLa6OmIymVoLeu0b3K3eUt8+PmhlMpaGUylte20RlMqc\r\nvv11jDKZSwwymUywz2plLa9cMplMvn9UMqMpbWhgmUt6vZ39sRlMpb3QymVNtebrhlMpbdrf5oZU\r\nZUW1bdDPmpyptv1uhlRlLQz7FOUy/PphlRlTaGUyluz0+mIz5plADXZDKZS0MnxTKW+PGGUyptrs\r\ngSmVFr9cRlMpbWuMTnkmVNr66uPohlRnCCF9a6IZTKW9/o90QSiWhnxTKm3DXfDITKW+GrwyFGUt\r\n0aCGQeanKWvrzQymUt2dmvPEZ5plLa9kMqMpbXv7YZ7sqcpbfbXnhnCjKm0TlMqLa+cRnmmVNoZT\r\nKW80M470yloZTKW0N/TEc1GVIhoPVDKZS0M+aZS3Rw9OrwymUt8dBDKZS2vj2wymUtr0XhlMpl9/\r\nzhnsTKm2r2hlMqLa11wz5plTaIyoylu/XzhnwTKW6dDDOUypsOtb4EhMqLe6GUylt8MplTbXGGQo\r\nylh6tW90RnvTKW16onPipyluPpiM+1MpbXsvaGfJRlTbr0Pk7YZ5plLDrzwymUtr2+mGfFMpb49M\r\nM8kygBEZ9iZU5eEM9vNRlRbW7yxOeanKnLrQxGfJRlLQymUt5fZAntTKW83n90M+aZS2tdcM+aZQ\r\nA1rjDKZS3Z5NDEZTKkAicplLa9sRn2plQAcPLEkplTbz+/d6ojPmoylu/wB8MplLQymUtrshuTKm\r\n2vJuhntTKW6tavAnzTKWgmUt0eb3dMRlMoIe4eqGUyltdfn4wz3plLa6uuGfaoyptrXCGUylte+G\r\nfYmUt8oZ80yluERkJlLe7q6/dE5TKZdd8Rns5plLa1uicplTaIymUt2eWGfNRnzS3whlTlLa6oZT\r\nKW0F4ZUZS0MplLdcRnuTKm3X8PfDKZS3x98MplMoa1bdDKZS2un1b4ZUJbd2+3ugpyloZUZS3qhl\r\nMqba3e6IymVFtXicplTbXp6u2AKZS3ntEZTKW6++GUylteiGUyptbWuuGUyot6eyGUyptrj5YZUZ\r\nS3TryeaGUyloZTKAG6Iz5plLe6GUygh74ZTKW7tb4ZTKm0MplLefVhhlMpbXRDKjKW+EMqcpbh3Q\r\nyoyltfOGUyptEZTK2+19cI3uVu8pb3XiM+KZS3vhlMpl9/mtDPJMpYIbkypt5NcYjKjKW7IdqnPm\r\npt36DqhlRlRb1fKBTKW1rjDKZUgGuzfDd3plLa9kMplMuvVDKjKWhlTlLezQwyMJlTlhn2qMoIa3\r\na6IjKZS3fDvwmUtfXb7obkylu/phnCZS2g+UMhMpbXr6YZTKm3o4btXhlMqLW3W7YjzKZU24+75B\r\nDPimUt2d/d0wyoygh0fOGUylvl1wymUsEMplLeeGUyptDKJbXDj8oZTKW463wz3plLerj6IjcmUE\r\nPX6YnKjKWiMqcpl7PLrphlRlTaGUyltd8MplMu+27XVDcmUt5PT8YjKZS3y1xhlMpbz69EMplTlh\r\nn2qMpbXthn2qcpbVuqGVGUtrgMM9yZS2uy/fEZTKW7+GvPE5TKW1b2WiMplTb58YnKZSw+gfN74j\r\nx8UyEt16+MMplMsM+xMpYddA7oklRlLRBKZS3vhlMqba9dojKZUZbcYnKZU2CIymUtDKZS2tb4Jl\r\nTbjofRDPeoyloZ7QmUtr4QyiW10fKGfJMpbXr7YZTKW15em8RlMpYYZTISwQymUt3dPohn2plLcI\r\nZTKm2uqGUyluv593lhlMpb1d/lgCoS0MplLa7/bDKZU216ojKZUW1w9ETlMqba90RlMpbWuqGUyl\r\nvb3wymUsOtXhlMpYYZCjKm2vjDKZS2u/3wymUtroGGUyot1QymVNuvXfEZTKW7AhlMpbXphlMpbV\r\n4ZTKm3sGGUylrQyoylvL290RlMpYN0TlTlLa98RlRlLQymUtDKZU2hlMpbXb8oZTKW+OgvDKZS3v\r\n90MplLQymUt5e6GVGUt7dd0RlMpaGUylteSGUyloZTKm2uEMplLaHq9cMplLa8/nhlMqQCIyoylu\r\n/XthlMqLa+UTlTlTbXlCGVGUtx+ERnsTPYltdnVDKZS3Zr4QyUylvnrjDKZS3v8AXDPimUtofjEZ\r\nTKm2u8IZTKi2uuJymVNoZTKW6Ov5RGVGUtfXXDPmmUtDKZU213QymUtrthlMoIa9HnhlMpbV4jPa\r\nmUtr0xKZQAhlMpaIyoytBaN5lbvKm3Z6NdEMplRbXygmVNvfDKZS3n0MMplLa74jKhLe+GfYmUtD\r\nKZU277cd/wA+ECfamVFvfE5U5U216ojKjKWhlMqbBbq9sMqMlRbr+fAIhTlLeb139EM+CZU27teS\r\nGVGUtrywJTKAHr+MM8u1Mpa+rWhnHemUtrt7YZTKW1oeMNyZU2+XRDPemUAOMRnsTKW9uuyGUylt\r\ndvbuhnkmUtDKjKW98MqcqbfHthlRlRbXt3QymVNoZTKWhnkmUtDsPNMpaIyoyltcIZTKW9EMqcpb\r\n3dcMqMpl10QJU5U21xhuUZS0RlMpbp+XRDKZS3XDKZS2vN74ZTKW10+yCZU2hlMpbXsgSmUtw17B\r\n6YEqMpYfdDKZS2vPDKZTLEZTKkAt3ROezxRLB5d8RlMpaGUyltejvhlMpb5eeGUygBrqhlMqbfLr\r\nhlRlLa10wz7UyotfQQymVNtdcRlMpaGUylvfrhDKZS2t/ZDPimUtrQQymVNvJBFFtdob4ZTKm2vR\r\nDKZS0MqMpb5xGUylui3bDKZS3s1u7YZTKQRTb5wymUteGUyltcO+GVGUt7/dDKZS2vnDKnKm3Zq0\r\nRlRlRb1QymUt6oZTKAF/h2wymVNvJDKZS2vNbohlMpbjrthlM9iWhlMpbhu9MMqMqQC2vZEEoSlt\r\nfOGUylonKZS0MplLerXniMplLdmhgT2plTbdDKZUWhnKZS2uEMplTaIz5qMpbXx8kM9iZS0MplLb\r\nvRDPNMpaGeaZS3Z2wymUt6YdiZS1oZTKm2reTdDKZS3sgmUANdsQSoJS0SmU11e+IRLdgwymVNtf\r\nLphnvymUtrXXDPf3JlLa80MplLdFt8R/ImUt2a7uiJymVNra4eqGVGVFtdXzhlTlLa3+jyQymVNt\r\ndfriMqMpYen1+ryQzhMpa+unrh/ImUtbr12QKZS2tXhlMpbu164jITKW1oN0TlMpliMplTbXxicq\r\nMpb49urRGfapyloZTKWiUylteiIUZTLr4dsEyptrdrhBMpaCZS0Eylt8QmUtrzxPkmVobaHojd5W\r\n6ymX5RGUylvdvgSmUANeqJKZS0RlMpbydEAUylujXVDKjKm0CUylvZDPmmUt1cNcIZTKW12d/CIy\r\nmUtu164Z7kykTn2Ipt67RGVGUt3enqhlMpb5a64Eqcpb58LQz7FGUt5YZTKW7Nb4ZU5S0QoyptrQ\r\njDKZUW363fKCZU2hlMpb0emGUyloZKZS2vT2wTKW9Qwyoypt5OrsiMplRbXGJymVNoZTKAERlMpa\r\nGUyltef3wymUtrXCGUylteWGUyloZTKmwQymUtfy63QyoylvlDKZS3VEZTKW1374ZTKW74ZTKW1r\r\nuhlMoAX1vhlMqbQymUt5eMMplLdevdDKjKW10RGUygBDKZU290MplACGUygB2dXRDKFLero80Mpl\r\nLa+PfDKZS3u13wyoU29cMplRbWrwymVNu/VuvqiMplRb1b+HVE5U5U21oYZUZS0RlMpaGfamVNtc\r\nIZTKWiM5TKi3y9UTlMqbQz2plLRBKZS3XDKjKW9MEyptr0wymVGW9++GUyluOh98M9iZ7FNtboZT\r\nKW9EMplADs17IZTKWiM9ijKW1rvicqcpbu3a4wyoyloZRTb0a8kRlMpbhrW6GUyloZKZS2uiGSmU\r\nt693x8kMplLa1briM8kylu7ywz3plLdfx88M+CZU29vT8InKjKW3a+ERlMpbhu9PyhlTlLaGGVGU\r\nsOh11wTKW9UM5TKm3l6+iGR8aZUZddnV5oZTKW9Pw6RhnkmVIBrs6oZTKW+HTEZTKW1rhDKjKm2u\r\n+GUyot8On1wzlMqbQTKgC/KGUypt5+yGcJn2Jb1+mHkmUtEZRRbVuG+Jz2plTbo6tDEZTKW1u0MM\r\n+KZU26deyGVGUAIZ9qZS3dDKZS3frr4Qz2HKZU21xiMplRbWhiUylvb6IEplTbv80Rk9iZUW9nxh\r\nlMpbXxgezzTKm3rHXbDKZS0M+1Mpb23hnkoyltdXrhlTlMutdEQSoylvbbjE59iZS2uqIz5plTbj\r\n1a8kMnCZS2tBE5TKi0AUypt1+nqiMqMpbWu6GfamVNoZ8EUW17ojKKbfOJz4plLRGUWht161eN3l\r\nbrKWHzQymUt8vP74ZTKW1whlMpaGUylh6+F9boZCZU29sEUAHl6IZTKm2tDEZUZS1uiGcplLX93v\r\nhlMpbzwymUy26N8TlMqbenXkiMplLQymUtrohlMpbshlMpbXm98MplLeb0wyoypt8YjKZUW11wym\r\nVOWGUyosMMhMqba1whlMoAQymUt579kMplTaGVGVFvb8OMMplTbXdaGUylta7YjKZS1tWhlMpb16\r\n790MplTbp6+uGUyotw6de6GQmUtDOEyltdkMplTbXuhlRlLQypyltcNb4jKjKQyiZezVhhnzTKm2\r\nvjDKZS0MplLejp1vgSmUtu+EMplLB8YHsTKWhlMpbXpiMplLeuJymUtu3RGVGUy+2HemVNgvoYZT\r\nJS3Rr0QymUAIZ5JlLWhnwTKWtfXbDKZU21aGUyltW9wRGVGUt3dvlhlTlRb4w80ylvhreMEyptre\r\nG7u6YZ8VGUtrp6IIluuGUylvjrvhntTKW466PfDKZU26ojKZUW3ROUyptx16e+Iz2JlLa+UM+aZS\r\n2uvvic8kylteb0xGe1RlLQz2JlLa10BDKZU2+OuMO5Mpa8MplLQTKW7IhMpl174ZTcpt7/b64ZUZ\r\nUWhnzU5S0MqFNtBDKZSwej2+a2+GUylvnEZ9qZSwe6J70S3ZDPemUtrhoYZTKW6db/MERnuB5plT\r\nbr8+62rxOUylojKZS2td0M9yjKW+cM+SZS3Zu1vhntTKW8nmgTlMpb5avxiEylvP0RJ5qcqba10x\r\nBKjKWicplRbr15uiIJymVNuzXdDJTPmosPbru4QTKm2vX6IAplTa2vkEO1RlLQymVFh3a8sM9qnI\r\nU29PpiMqMpbo6A6NdUTlMpaIyiW+UMplLQ+FFNta6IZUZS3z1eGUyotDKnKm3R7PnDPLOOSjKW16\r\nbwymVFuzV4ZU581O7XkiMqEtr39G+Jzy8kylohFNteyGUyot5dfCJz3plLez5xHJFNte2Jz3plLa\r\n9IRGe1EANdHv3wyO1MpYdd3bDOQiW1u7u+GVGVNoZTKW1b5Qz5plADr11ce6IymUtfogmVFuPyCG\r\ncJlTbQe+GcZTKW11dsPjTK//2Q==\r\n'),(2,'/9j/4gxYSUNDX1BST0ZJTEUAAQEAAAxITGlubwIQAABtbnRyUkdCIFhZWiAHzgACAAkABgAxAABh\r\nY3NwTVNGVAAAAABJRUMgc1JHQgAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLUhQICAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFjcHJ0AAABUAAAADNkZXNjAAAB\r\nhAAAAGx3dHB0AAAB8AAAABRia3B0AAACBAAAABRyWFlaAAACGAAAABRnWFlaAAACLAAAABRiWFla\r\nAAACQAAAABRkbW5kAAACVAAAAHBkbWRkAAACxAAAAIh2dWVkAAADTAAAAIZ2aWV3AAAD1AAAACRs\r\ndW1pAAAD+AAAABRtZWFzAAAEDAAAACR0ZWNoAAAEMAAAAAxyVFJDAAAEPAAACAxnVFJDAAAEPAAA\r\nCAxiVFJDAAAEPAAACAx0ZXh0AAAAAENvcHlyaWdodCAoYykgMTk5OCBIZXdsZXR0LVBhY2thcmQg\r\nQ29tcGFueQAAZGVzYwAAAAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAABJzUkdCIElF\r\nQzYxOTY2LTIuMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAWFlaIAAAAAAAAPNRAAEAAAABFsxYWVogAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAA\r\nOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z2Rlc2MAAAAAAAAA\r\nFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAAAAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZXNjAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAZGVzYwAAAAAAAAAsUmVmZXJlbmNlIFZpZXdpbmcgQ29uZGl0aW9uIGluIElFQzYx\r\nOTY2LTIuMQAAAAAAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2\r\nNi0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZpZXcAAAAAABOk/gAUXy4AEM8UAAPtzAAE\r\nEwsAA1yeAAAAAVhZWiAAAAAAAEwJVgBQAAAAVx/nbWVhcwAAAAAAAAABAAAAAAAAAAAAAAAAAAAA\r\nAAAAAo8AAAACc2lnIAAAAABDUlQgY3VydgAAAAAAAAQAAAAABQAKAA8AFAAZAB4AIwAoAC0AMgA3\r\nADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQAJUAmgCfAKQAqQCuALIAtwC8AMEA\r\nxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEyATgBPgFFAUwBUgFZAWABZwFu\r\nAXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIUAh0CJgIvAjgCQQJLAlQC\r\nXQJnAnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOANDA08DWgNmA3IDfgOK\r\nA5YDogOuA7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTEBNME4QTwBP4F\r\nDQUcBSsFOgVJBVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAadBq8GwAbR\r\nBuMG9QcHBxkHKwc9B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjSCOcI\r\n+wkQCSUJOglPCWQJeQmPCaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtp\r\nC4ALmAuwC8gL4Qv5DBIMKgxDDFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4O\r\nSQ5kDn8Omw62DtIO7g8JDyUPQQ9eD3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFt\r\nEYwRqhHJEegSBxImEkUSZBKEEqMSwxLjEwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAV\r\nEhU0FVYVeBWbFb0V4BYDFiYWSRZsFo8WshbWFvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6\r\nGSAZRRlrGZEZtxndGgQaKhpRGncanhrFGuwbFBs7G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcd\r\ncB2ZHcMd7B4WHkAeah6UHr4e6R8THz4faR+UH78f6iAVIEEgbCCYIMQg8CEcIUghdSGhIc4h+yIn\r\nIlUigiKvIt0jCiM4I2YjlCPCI/AkHyRNJHwkqyTaJQklOCVoJZclxyX3JicmVyaHJrcm6CcYJ0kn\r\neierJ9woDSg/KHEooijUKQYpOClrKZ0p0CoCKjUqaCqbKs8rAis2K2krnSvRLAUsOSxuLKIs1y0M\r\nLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+RL8cv/jA1MGwwpDDbMRIxSjGCMbox8jIqMmMymzLUMw0z\r\nRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3NnI2rjbpNyQ3YDecN9c4FDhQOIw4yDkFOUI5fzm8\r\nOfk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1hPaE94D4gPmA+oD7gPyE/YT+iP+JAI0BkQKZA\r\n50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUSRVVFmkXeRiJGZ0arRvBHNUd7R8BIBUhL\r\nSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1KTZNN3E4lTm5Ot08AT0lPk0/dUCdQ\r\ncVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYPVlxWqVb3V0RXklfgWC9YfVjL\r\nWRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19hX7NgBWBXYKpg/GFPYaJh\r\n9WJJYpxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlDaZpp8WpIap9q92tP\r\na6dr/2xXbK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4dBR0cHTMdSh1\r\nhXXhdj52m3b4d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7CfyN/hH/l\r\ngEeAqIEKgWuBzYIwgpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opkisqL\r\nMIuWi/yMY4zKjTGNmI3/jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaf\r\nlwqXdZfgmEyYuJkkmZCZ/JpomtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopaj\r\nBqN2o+akVqTHpTilqaYapoum/adup+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+L\r\nsACwdbDqsWCx1rJLssKzOLOutCW0nLUTtYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9\r\nFb2Pvgq+hL7/v3q/9cBwwOzBZ8Hjwl/C28NYw9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3\r\nyzbLtsw1zLXNNc21zjbOts83z7jQOdC60TzRvtI/0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZ\r\nbNnx2nba+9uA3AXcit0Q3ZbeHN6i3ynfr+A24L3hROHM4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy\r\n6LzpRunQ6lvq5etw6/vshu0R7ZzuKO6070DvzPBY8OXxcvH/8ozzGfOn9DT0wvVQ9d72bfb794r4\r\nGfio+Tj5x/pX+uf7d/wH/Jj9Kf26/kv+3P9t////7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEB\r\nAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMD\r\n/9sAQwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD\r\nAwMDAwMDAwMDAwMD/8AAEQgBOwNTAwERAAIRAQMRAf/EAB8AAAEDBAMBAAAAAAAAAAAAAAEABQgG\r\nBwkKAgQLA//EAIQQAAAFAgMFBAQIBwcIDw8NEQECAwQFBgcAERMIEiExYQlBUfAUcYGhChUWIpGx\r\nwdEXIzJCluHxGRpSVldY1hgkM2KSl9TVJTQ1N0NTY3J3gpWltbbTJic2RUdVZXOEhZOis8PXREZU\r\nZmdodIOYpKaosrfY6DhIWWR1hqfExXajtNLj/8QAHwEAAgEFAQEBAQAAAAAAAAAAAAEFBAYHCAkK\r\nAwIL/8QAcxEAAQIEBAQBBAgMDgoOCAUFAQIDAAQFEQYHEhMIITFhQQkUIlEVIzJxgZGU0goWFxhC\r\nUlZXlaGx0xkkM1NYYnKCkrPB0dTVGjRDVGVzk6KytCUmNURFRmNkdISFwuTwVXWDo6SlteEnNjfD\r\n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\r\n9Px2i3iqnPvxeraByi8G0dIxU9o9Vrti8s/T7R6uREV6nn3zFFRUEzqoEimMS7cpkzTMZHVdAiYw\r\nZlET5c8YlzafITRJQL9G7iyn+AEkjpy9IA9z646z+THobe5m1iNySBeCZGWbdKRdKSZh11tKragF\r\nEMqcSDYlDZNykWhNA3jnYtIiRZA4lJkIFVMBwyDLgIHAeGMMR1lisfw/zhyboqNh55CCCQD9O7nn\r\ngghkkLvTEiUxFXqgFHP5pVBKXh3cB5ZDggi2clKg+UMqoffE3zjCIiI5myEeeXARzwQR2ISbftFS\r\noxMeMo7/AB7hBkicxVVzIoap0yiADufi0M94eBe/BBFSx20jKRQmZyNrqzScFHdErZVi4JnkAcBO\r\ndDPjwDhgghyqK8EorDklnNBzsa2cukmyBZF/GJLKqrFPubqSSy58gDiI5d3jggiS1qrauYUyFaHk\r\nBWcz0S0ckj0GxiJs03aCa4FVdHV3llkyKbolKmUu9x3hAOO4GU2WyaEiTxX7KF92ckklKAjSlKXQ\r\nhzmSolSgLDoAOfaOXXEpn05jZ6qZanDiZSVpdXcS46p7cW45LKdY9FKUJShBJUr3SyfRHLne9omk\r\nEx/JNzDu9o+IYz8w2+kj0TGo+mUX4iO8i5efnAfmHTu8cT8ol7lcRSuMy3gRHfBdUfyswDv+niI4\r\nuGXSo2uIpS0ge5jqLK8/15Yl2m+nKPu2iGpZX7fPtAMSLTY9USDaIallefnwxINNxXtohqWU54kW\r\nkdIr20dIallfX9WK9puK5tENayvAePPjiQabivbRDWspxHyGJBtHSK5tENaynh9/sxINoivbRDYq\r\npz4/T44rmkdOUVraOkNiynPjivbR0iubR0hsVUxXto8IrW0R09QfEOfTw9eKnR28IqNAjYY0vrxx\r\nd3I5A7kHSy9fn34W535QtyDpd+WAuQbkLR85YW5C3IOl0+36sG5zPODc7wdHphbneFuQdLz6uODc\r\nHrg3IWj585YW53g3IOl05YNzvC3O8LS8/T34W53g3IOl0wbh9cLcg6WfdhbneDchaXTz44NyFud4\r\nOlx5dMLcg3IWl08+QwbneDc7wdLhy7vZhbneFud4Ol09X7MG53hbneCCXTz5HCLneDchaXTBud+U\r\nLcg6XTC3INyIJbTGxJA3eduq3oJ2zo64x813uomdOn6pcFzMVaSBomdeMmDGAM3qJFNTL8amcwgo\r\nXKeC8zpmgNJpVYaMzRTyA5FbYPUJ1clIt9goi32JA5HbHIzikrOWzMrhnFTLtRwcggNlJ/TMoPU0\r\nVEBxoeDKlJ0/3NaQNBtzb7tGu0+2Hk21K1XMSVb0XEim1joy9EI4uHTWgkIESbxNw46QY1MLUiAF\r\nIm1JN6Tcm6UESZZY1Szq8lV5P7ilm5zEbWBxhzF8ySp2bw6+mmPKUrmVu09bT1OKyq6lumQ3XFEl\r\nbqr3jspk3xu1efkZZvBuYcnWZJKRaVnPbH2wPBSFqanEAdACvb5ehcRLaJ+Ei3iRaJkndme2ki+A\r\noAq5ia1qmFaHP3mTZPI+fWSKPcAuDiHjjRqrfQ5WUD024uh8SmJZeRJ9FD9OkphwDu427KpJ7hpP\r\nvRs9L8aOI0tgTeCJJbviUPOoH8EpcI/hGHT98l3I/mr0R/fMnv6KYjP7HFy5/ZR1v8DSv9Oj7/Xp\r\n1r7gpX5S5+ahfvku5H81eiP75k9/RTB/Y4uXP7KOt/gaV/p0H16da+4KV+UufmoX75LuR/NXoj++\r\nZPf0Uwf2OLlz+yjrf4Glf6dB9enWvuClflLn5qF++S7kfzV6I/vmT39FMH9ji5c/so63+BpX+nQf\r\nXp1r7gpX5S5+ahfvku5H81eiP75k9/RTB/Y4uXP7KOt/gaV/p0H16da+4KV+UufmoX75LuR/NXoj\r\n++ZPf0Uwf2OLlz+yjrf4Glf6dB9enWvuClflLn5qF++S7kfzV6I/vmT39FMH9ji5c/so63+BpX+n\r\nQfXp1r7gpX5S5+ahfvku5H81eiP75k9/RTB/Y4uXP7KOt/gaV/p0H16da+4KV+UufmoX75LuR/NX\r\noj++ZPf0Uwf2OLlz+yjrf4Glf6dB9enWvuClflLn5qF++S7kfzV6I/vmT39FMH9ji5c/so63+BpX\r\n+nQfXp1r7gpX5S5+ahfvku5H81eiP75k9/RTB/Y4uXP7KOt/gaV/p0H16da+4KV+UufmoX75LuR/\r\nNXoj++ZPf0Uwf2OLlz+yjrf4Glf6dB9enWvuClflLn5qF++S7kfzV6I/vmT39FMH9ji5c/so63+B\r\npX+nQfXp1r7gpX5S5+ahfvku5H81eiP75k9/RTB/Y4uXP7KOt/gaV/p0H16da+4KV+UufmoX75Lu\r\nR/NXoj++ZPf0Uwf2OLlz+yjrf4Glf6dB9enWvuClflLn5qF++S7kfzV6I/vmT39FMH9ji5c/so63\r\n+BpX+nQfXp1r7gpX5S5+ahfvku5H81eiP75k9/RTB/Y4uXP7KOt/gaV/p0H16da+4KV+UufmoX75\r\nLuR/NXoj++ZPf0Uwf2OLlz+yjrf4Glf6dB9enWvuClflLn5qF++S7kfzV6I/vmT39FMH9ji5c/so\r\n63+BpX+nQfXp1r7gpX5S5+ahfvku5H81eiP75k9/RTB/Y4uXP7KOt/gaV/p0H16da+4KV+UufmoX\r\n75LuR/NXoj++ZPf0Uwf2OLlz+yjrf4Glf6dB9enWvuClflLn5qF++S7kfzV6I/vmT39FMH9ji5c/\r\nso63+BpX+nQfXp1r7gpX5S5+ahfvku5H81eiP75k9/RTB/Y4uXP7KOt/gaV/p0H16da+4KV+Uufm\r\noX75LuR/NXoj++ZPf0Uwf2OLlz+yjrf4Glf6dB9enWvuClflLn5qF++S7kfzV6I/vmT39FMH9ji5\r\nc/so63+BpX+nQfXp1r7gpX5S5+ahfvku5H81eiP75k9/RTB/Y4uXP7KOt/gaV/p0H16da+4KV+Uu\r\nfmoX75LuR/NXoj++ZPf0Uwf2OLlz+yjrf4Glf6dB9enWvuClflLn5qPkv8JJueZI4NtlugklhAdx\r\nRe41QuEimy4CdFOm2xzgA9wHL68fVn6HGyyS6gzHE/XVs35hNIlEKI7KM4sD+Cfej8r4064UnRgS\r\nUCu8w4R8W2PyxHSvO2w7RjaJO4pCzsLTduAfEM2MWztCSc/VhWq2ZTmc1FVbyrQizAUR/rtohHnR\r\nAN4DkEBNjZ/KvyHXAZk5MSuIMwTW8XzjKgsJrU+2zJa09LSlPakd1N/7jMuzSF3spKknTGIcxONf\r\nGEjTXpiqYipGHKWQRuDShZHqS5MrcJWeg2kpXe2nnFvbP7DVb1tVql29rGpparajk3hJZ9TsxULu\r\nqZ6ef/MEriu6rcvHqjwpdwAM1QXW1S7oHXKUDJG6CzOOcI4Hw1I4Cydw3JUjDMm1tMIlJZqUlZds\r\nX9CUlWkNobHMnVoSAbkIJOocgs9uNt6sqqdNy5nJmaqkxcPVaZ1lfPkTLod9sUsjkHngkosdDZOl\r\nxOUpsybs26DNm2RatGiKLZs1bJJoN2zZAhUkW6CKRSJooopkApSFAClKAAAZYw0t9bi1uOLKnFEk\r\nkm5JPMknqSepPU+Mc6Hpp6ZedmZl5Tkw4oqUpRKlKUo3UpSjcqUSSSSbkm5N4++l0937Mfjc7x8t\r\nzvB0unD9mDchbneFpffhbkLchaXThg3PG8G5BBLz56YW5ygLkEEs+73YNzvC1wdLPyHnLC3IWuFp\r\ndP2fRhbkGuDpdPVl578G535wa+8HSwbkLcg6XT7cvtwbh9cGuFpdM+mXPnhbneFuRquX5kmzy/d7\r\nniDtB43cXZuCdq7brJuEHDX5VSgNFUF0znIqiduBdwxREpi5ZcMYUqigup1FYN0l9yx7ajHqx4f5\r\nR+QyHyUkpqVWxNNYSpCXG1pKFocFPlwtK0kApWF3CkkAhVwReLdtnRAOA5gHHnmHD1j0yxQxl2Ll\r\n09X7yBAoNXSiZQMG8UFMimABAeJQHIQEOGCCLkNr2MjlD4yhImSMAAAncNkxOJuYjvAADxwQQHd5\r\n4IUzej0jAJHy4CLYDe0cx7sEEW5fX8qSAkCSkB6BFgibeOi3aJAmomGW8A5lExB6lEBwQRlx2MKz\r\nkbt2jVqWozC/fI1RJR5FVVDnBNsmxi3JEUy8ASSIq5OYADIBMYR5iI4yFhl1SqaUqNwlwgdhyP5S\r\nY4j+UAp8jSc92pyTl0tvT9FlXnikW3HUrfYC1W90raZaRc89KEjwES8CBalD5jREMu8SmH3iI88X\r\nDqjR8zneOBokpOJUUy9CplH6Pm8cGq3WF52PXH3bQ66pwKUDDnwKQAHiOXcQAHu6YWq55dY/K51K\r\nEFxawlsdSeQHvmLyx7IWjJq2MHzkUSEN3gBgABMAD3gBuAdMV6VlKEp8QIwrUp1M5Pzk0j3C3CR7\r\n1+Xw26x3NLoH1+z1Y/W54Xih3IOl0wbkG5CBLh5zzwbneDXB0vP0Y/OvvC1whRAQEogAgICAgOQ5\r\ngPAQEB8Qww7YhQPMGAOEEKB5xZeXbmYPnLQ2eSRx0xH85I3zkjZjzzIYPbjKFNdTOSrEwn7JPPsR\r\nyI+OMlU55M3KsPj7Ic/fHIj44iZtE2apK8DeFa1GwVK7jPSlIuei3q0ZPRoriiVdBm+QzAWq4JlF\r\nRJYiqRhAB3QEM8R+IsPU2utMNVCX1ablKgbKTe17EeB5XBuDGzeQebuOMpJyq1DB1ZLIf0B5haQ4\r\nw6E6tKnG1cipOpQQtJStIJF7G0QwkNiRBMxhibk1+zT/ADEXzSkqgSJkOZQ3ndPpLmKGeWQnzHxx\r\nZK8qKO6SWp2YR2ulX5Ug/jjdGmceGZbCEoqGGqPMkdTpfaJ/gvFP+bFJutjKpiCOhcwpg45C+tlT\r\nixuIDlmLZ41Afox8Tk/KK9xWXR76En/vCLtluPevWHnOXsmo/tJl1P5W1QzKbHdaBnu3JhR8ANa1\r\ngQeY/wAGeDx7sfoZMIV0rqh/7IfPiVRx6TZ93lw18E4r8xDPI7J1aRrVV25uXTiLdLTBRVe2jRNJ\r\nMVVCIEFVQ1QkImQVFQATGMUpQHMRAMxxSVPKSUpFOm6pO4iUmVZRqVZm59QAG51JIAHLmRF2YQ4y\r\nK1jXElHwtRMtG11WeeDbYM6UpBIJUpR83NkISFLWbEhKSQCeUSKtVBWLtxAkjXFQQ1U1g7SOlP1m\r\nnFtYz0vWOBhjolmmKoRsM33QKUu+Ky4hvqmzECEworTqVovovyv1t4X7xvY1u7Te8Eh7SNWm5Tqt\r\nzsSASL9LgG3hFbOaBs/UxRcoKMjFLnqOA3CkLnx+coAgADlxx+Y+kRr2gYa1j+FhKfpSXbPJiHfn\r\nermbLFOQSkQVRBur/CEDm4DnwHLBBEkrROk3du6UMfIyhIw6JhHiYPRnrxqH9yVAOHhjo/lWUzGA\r\ncJKIuRItj+DdP8kcMeIGWXKZz5loTcJVV3l/5Qhw/GVGK+WIl/BL9AfdjJzTKeXKMStKc+2MNagk\r\nLyKHj3fdiSaZH2sVyAo9TDaspz8A88vXiSabtblFa2jpDUsr+rwxIttxXtNw1LK8/X5+kMSDTY5R\r\nXtt9IallefHzx64kWkdIr20Q0rK9RxINNxXtohrWVzz4/sxINN8xFe230hrVV+0efuxINtxXNohs\r\nVU5+f2Yr2kdIrm0dIa1VPPTjzxXtoiubRDYqp18cV7aIrm0dobFlOA/rH1D7sV7aIrW0Q2KqefX9\r\nuK5tAitbRHU1Pry5d/h6umKnR+SKjRGxyCX044ibnjHGncg6XT7e7C3DbrBud4Wl092FuQbkHS6e\r\nfowbkLc7wgS88u/AXIC5BBLp5+zhhbnTnBuQdL78G5C3IWl58+rC3O/KFuQdL7+WfTBuGDcg6WFu\r\nQbkLS89MG543hbkHS+j1c8Lcg3IWl0893Tjg3O8GvvB0un6sG5yMLchaXPz9WFuQa4Ol04Z/b34W\r\n5C3O8HS8+eHfg3O8G5B0s+7z9WFuW8YW5C0unt8fv44NzvBr7wdLgGYefpwtzn1ha/UYOl093qwb\r\nkG53jidsRUh01UyqJnKYh0zlKdM5DgIHKcpgEpimAchAeAhgDqkkKSogw0vLbUlaFlKwbgg2II6E\r\nEdLRQDyz1qZJU68hbG3r9Y5hOdZ7RdNulTGHmYyi8aocwj4jxxLt4lr7KQlmuTiEjwS84B8QVaLv\r\nlsx8fySEtSeOawy2BYBE7MpAHqAS4BHS/AbZj+SK2H6A0p/irH0+mvEv3RT3+Xd+fFT9VTMz74td\r\n+XzX52D+A2zH8kVsf0BpX/FWF9NmJfuinv8ALu/Pg+qrmZ98Wu/L5r87B/AbZj+SK2H6A0p3/wDe\r\nnB9NeJfuinvlDvz4X1VMzPvi135fN/nYX4DbL/yRWw4Zf+sGlP8AFOF9NeJbX+mKe+UO/Pg+qpmb\r\n98Wu/L5v87B/AZZj+SK2H6A0p/inB9NeJvuinv8ALu/PhfVVzM++LXfl83+dhfgMsx/JFbD9AaU/\r\nxTg+mvEv3RT3yh358H1VczPvi135fN/nYP4DLMfyQ2w/QGlc/wDgnuwvpsxL90U98od+fC+qrmZ9\r\n8Wu/L5r87C/AZZj+SK2H6AUpy/3JwfTZiX7op75Q78+D6quZn3xa78vm/wA7B/AZZj+SG1/6A0p9\r\nP+ZPLB9NmJvuinvlDvz4Pqq5m/fFrvy+b/OwvwGWX/khtf8AoDSv+KcL6bMS/dFP/KHfnwfVVzN+\r\n+LXvl81+dg/gMsvl/nQ2w6/8wFKf4pwfTZib7op75Q78+F9VXM374td/CE3+dg/gMsv/ACQ2w/QC\r\nlP8AFOF9NmJvuinvlDvz4X1VczfvjV35fN/nYX4DLL/yQ2v/AEApT/FOD6bMTfdFPfKHfnwfVVzN\r\n++NXfl83+dg/gMsv/JDa/wDQClP8U4X02Ym+6Oe+UO/Og+qrmb98avfL5v8AOwvwF2X/AJIbX/oB\r\nSfT/ALE4PpsxN90U/wDKHfnwvqq5m/fGrvy+b/OwfwF2X/khtf8AoBSn+KcL6bcTfdHP/KHfnwfV\r\nWzN++NXvwhN/nYX4DLLfyQ2v5fxApT/FOD6bMTfdHP8Ayh358L6quZv3xq9+EJv87B/AXZf+SG1/\r\n6AUoP/8AKcL6bcTfdHP/ACh358H1VszfvjV78ITf52F+Auy38kNr/wBAKT4f704PptxP90c/8od+\r\nfB9VbM7741e/CE3+dg/gLsv/ACQWv9tAUp/inB9NuJr/AP5jn/lDvz4Pqq5m/fGr34Qm/wA9C/AX\r\nZb+SC1+fDnQFKf4pywvpsxP90c/8od+fC+qtmd98avfhCb/OwfwF2W/kgtf+gFKf4pwfTbif7o5/\r\n5Q78+D6q2Z33xq9+EJv87B/AXZb+SC1/h/0AUp/ijB9NuJ+X+2Of+UO/PhfVWzO++NXvwhN/noX4\r\nC7LfyQWu/QClP8U4X024m+6Of+UO/Pg+qtmd98avfhCb/OwfwF2W/kgtd7KApTv/AO9OA4txPy/2\r\nxz/yh358L6q2Z33xq9+EJv8AOwQsXZb+SG1/6AUn/ijC+m3E/L/bHP8Ayh358H1VszvvjV78ITf5\r\n6F+Auy38kFrv0ApT/FOD6bcT/dHP/KHfnwvqrZnffGr34Qm/zsfVKyNnG5wUQtNbNFQPyVEqDpZM\r\n4eoxIopgx+VYrxKoaVYhniO77p/78fhzNHMl5Oh3MKuKR6jPzRHxF2K/j4mOimxGUWwZxrNMR02s\r\ne0QZtk8+e4g2TSSJnl3BiHemnphZdmHlLdPUqJJ+M3MWhOVCcqD6pqfm3X5lXVbi1LUffUokn447\r\n2lj5bkUuuFpdMLcg194Ol7B+zBud4W5C0sG53g3IOl0wtzvC194Oln3fdha4NcHS6cft8O7BuQtc\r\nLS6efXhbneDXB0unnpg1wtyFpefswbkG5B0vP0fXg3O8GuDpdPPAcfnctC194Wl3+v8Ab7MGu0Gu\r\nEKXAQDhmHAcuX04NyAOcxeMP9yezhpqpKtqioqVr+q6OJOT0pLBTysRTtQQEUo/erOVWUc3XZMX6\r\nDJBVQQSTFyfSIAFAwgADiz5rDco866424pvUom3IgXPQcun5I6s5eeUWzLwthrD1BruHKbWEScky\r\nz5wtT7Uw8G20oS46sLWlbikgFa9sFaiVEAkxY2U7Ni5rUxjQt0KJlEylESJTdCykSqY2XAp3MNUD\r\nspQ6giPDuxHrwuv+5zg+FP8AMYzlSPKcUNaUJruVkwhd+amJxChbslxhH41xb+R2ANolmJhasrXT\r\nZQzEDMqwquGUNkPANKQpxymUR5/liAYpV4anU+5dbPwkfyRkemeUgyTmgn2RoFdlVePtUu6B8KZg\r\nH8UUmvsVbRzb8u1zV2Of/Su6NO5Dz5fGMa1NkHdnx8cfA4fqQ+wSfeUIvKW4/uHGYF11ypM/u5J3\r\n/uFcN47He0YYRKWzEnmPDeUudQm5w55iUd7jl4Y/HsDUv1ofwh/PEiePDhrCdX04TN/V5lNX/i47\r\nzDYG2jKhcoN3tGUnTLJdQpXD2er743FqiYcjrfF9Ns1FXRiFzEEwOnvcA3g5h9kYdqCiAvQlPv3/\r\nACRbNb8oZkBTpWYcpblWn5xKToQiV2gpXgC48tASCeqtKreo9Iy/bMdii2DtunSCkoaZeryK0rIv\r\nEI8kcw9MWQbNzpRkekdwo3ZJptigGss4XObeMdQcwKW7aZJJp0uWUrKlE3J7kAcvijlRxF5+zufm\r\nOmcWTNKakZSXlEy0uylWspZS444NxwgbjhW6okhKEgEJCeVzK6HiU5BJQ5zrI6Zyl3BTAomKIZlM\r\nBhE3zcyiGXPhiURZV7npGs1WxA9T1tpbYSrUCbk+rqLDn8N4qNOn44g8UBUHLLNQ5jePHIN0MfQJ\r\nQDFtu4pqrnuXkoH7VI/lvDikybo/2FFNLL+CQAHL18+OeP2CE8gBETMVGcmv7YmVr98m3xdI++l0\r\nw9yKXXB0vIePkMLcha4Wl9n7fZg3O8G5B0u7LC3O8GvvCBLz5ywFcLXB0un2YNzvBri3VfxRhbIy\r\nyRREW4g3dZBx0jm/EqD3ZEVMJR/14eGL1wdUUh9ynOK5L9JPvgekPhHP4D64vHCU+kPuSDh936Sf\r\nfHUfCOfwGLAT7YzoiKhA3jIGMAlABERIoAZiABxHdEvvxkR6XUtKVJHMRmbDk0iVedadNkuAWPhc\r\nX6+/f8kUqZv3bwFEO4REo9/iADwHH4bZ7c4v5pwEAjmI6Crce44+w4/ePHPFe2z2iuQ53hrWRMHM\r\nxx9ojx9nXFe2z2itbXziMO1hLKwllKkWIsCSjuSphiG8cC6pVKgj3KqJQHITCdBqYTAHHcAw8gHF\r\nhZrq2MCVMAgbjjKPf9tSuw/gX94HwjaPhClROZ74Wc2yoS0tOu8gTp/SrjOo+oe3abnlqUB1IiI9\r\nPXAoQIlsaSgUFXaaBRUFIx0QOcCZgORTBzHnjUOOxsRquXdqoX7tRrESbyHhi74pRbFwom3z4hvH\r\nyNqHPuh3jggi3tupOUkp5cCLCqqYoncOHColQaoAoQp3LtY29pIkMYPE5jZFIBjiAD+kIW4tLaEl\r\nS1EAAcySegA8SY/DjjbLbjzqwlpCSVKJsAALkknkABzJPQRmnttDlhaNgG+TggkYG/EuSEScIlXd\r\nOHIJOSEExBcpAvuqGz+ecBHvx0xyzw+5QMF4cpswT503LDWD4LWpS1p95KlFI7ARwuzsxUxjPNLG\r\n1ekkp8wfnlbRH2TTaEtNr99aG0rP7ZRisFlefHp58MZKbb6RjNtHSGlZXnxzxItNxXttw0qq8+OJ\r\nBtvpEg2jpDUsp58fdiRaR2ivbRDUsrz6YkWm+kV7aIallfI4kGm+kV7aIa1left+/Eg030iubRDU\r\nsrz48uueK9tvtFe2jpDYspz8+PsxINt9Irm0dIa1lOfHPFe2jpyiubR0hsWUzz85ftxXtoiubRa0\r\nNiqvn6sV7aPGK1tENqqmff064rm0dorW0Q2qqc+OK5tHaK1COkdPUH3+PT7sVOj8kVGgRss6QeeH\r\nnPHCsud44p7kLS8+e/C3INyCCXT6sG5C194OlhFyDXC0un1eGDX3ha+8HSDw/WHj7cIud4NcLS6e\r\ncvqwbneDX3g6Xn9uFuQtyDpdPDBueF4W5C0ug4NyDcg6XiGFud4NyDpdMG5C3IWl57+734W4YNyD\r\npdPdg3O8LchaXT2fq9WFud4NcHS6YNcLXB0uWFuQbkLS893jg3O8GuFpcvo8hg3INyDpd/qDC194\r\nWvwg6XTz7sLX8ULcg6f7PPEMG53g1wtL6cG58UG5BBLphFz44RXC0vP7eHLBrg3IOlhbkLchaQee\r\nXd3YNcGuDpdOfDC3IW5B0umDcg3IWly88P14W5aFrg6Xnl+3BuQa4Wl9n6sG5BuQdLpy8cIOQtcL\r\nS6e7z3YW5BuQdLpg3O8LX3ggl7/P14Nz4oNcLS88OP24WuDcg6XTBuQtyDpdMLc684NzvC0umDcg\r\n1wtLz9nuwbneFrg6XTC3INcHS6ft/bg19+ULX3g6Xn2j4eOFuQa4Wng1wtcLSwtyDcg6XHl0wblo\r\nW5B0+nnvwtfeDXC0unfhbkG5B0+7Lz4ZYNzvC194Wl9P68G53g3IOkHn6MLctC1wdPpn4d32YC5B\r\nrg6Xn9mFudIWuBpdPdg19YNcHS6d36s8Lcg3IOng3IWuFpYW5Brg6fd5+jBrg1wdLv8AP04NyFrh\r\nAl5+jC3INyDp+csu7Brha4Wn0wtcGuCCWfnz4YC5AVwtPyPnPC1wtcHS6efHD3INcUS7ZADx1mBg\r\nzXVOH+3OJ/eBsU5VzJB8YvmTnLycrY9G0j4hb+SPn6FmHeIeooh78fnVFR52fWIHxeUeIplHPxIT\r\n7Azwaj64XnZ9cL4tSHhoEHu/Jy+ocs8Go9oPO7eIhfFiQf8AqZMP9qP39cGqDzs+uOB48oZAVMoZ\r\n8AyIGXq45hhauVoXnXeO+LECEKQwZDlxDdAcv7XlkAhhavCDzs+uKjjWgJNwMGYipxEMg4boiXLh\r\n1x9UKsL+uLUrM4X5rQRZLYsO9+Zhw0+fDz3+/H71xEa45Aly+r1j9WFrha+sLS6YW53ha4Wn0wa+\r\n8GuDpdPfg3O8GvvB08+7z6gwtfSFr7wdPC1wa4Wn09vdxwa4WvvHwdMkXbddq4JvoOEjoqkHhmRQ\r\nolHIe4ePAeYDyx9WJp2WfamGVWdQoEH1ER9WJlyXeafZVZ1CgQe45xFSo4xxBSjuNcbwiicRRUEO\r\nC7c/zkFi93zy88vyTAId2NhqJPs1aQl55m3pD0h9qoclD4D09YsfGM9UaeZqkjLzrNvSHMfaqHuh\r\n8B6esWPjFIrnKbmBR9YAPL2D4YuFtpJtdMXGwXEe4Woe8SIZ1ipDzITPj+aHLLFc3LNH+5iJZqam\r\n09JhdvfMU3JZkEmj+LAQNvGAMwEfm5AACPDLIR64+i5ZKdOhFhFy0qZec3Q85qItbp3v/JEZdpe3\r\nc7c+3C0BCLswk28pHSjRF6ss1ZPjtDnKdq9WQQdLN0zN1znIdMgmKumTP5gnAbJzBwdMYvw/7HSj\r\nqUTiHkuoKuSSpIUkhVgTYpWrmByVp8Lxsvw6ZrSOUePhiKqyi3qVMSjss8EAFxKFqbcC29SkgqDr\r\nLdwVAFBX9lpIx1OrJXUiSaLm3E46MmUQFWn6tpZ+3NkA/wBjSlAi3eQ5chLnjXGZybx7LkhFMbdH\r\nrQ6j/vFJ/FHSemcWOSlSSlS8RPyxPg9Lui3vltLifxxQqezxd2pnu4hbt/GJ55Gd1dUEVHtCByER\r\nQh1nT5fIA/MLkOP3TsmMwKg7trpKZdH2zriAPiSVqPwCPvWuKnJakS+8ziVc67bkiXZdUr4S4ltA\r\n+FUS/s7svM6FcIy9SyDablkhIu2ZM2CcfAxboBKYrpu1EVXb+QR4lI5cnMcoDmQhDfODYvL7JSmY\r\nVmWqrU3/ADurJHokps22eXNCTc6vALUbgdAk840xze4pK/mLJPYfoUmabhtavTAWVPPp5+i6saUh\r\ns9S0kWJ90pYFomUluoNkkihulITdAA7gzHIMbJyTOlhpIT4Rp9Mgrm3lHmSqOmsp55fViXab6R9W\r\n0Q0rK8+PL7cSDTfaK9tvpDUsrz44kWm4kG2+0NSyvPw48vPjiRbbEV7aOkNSynPj+rh1xINI6RXt\r\no7Q1LKc+Xn9mJBpHSK9tHSGtZTrivaR2iubR2hrWU8+3PEg0iK5tENaynDz7cSDbcVzaIbFVO7P1\r\n+/Fe0gRXNohsVU9uK9tHblFa2iGxVTFchHSK5CIblVOY+fI4rkIisQjpDcqpzxWtoEVqEdI6mp6u\r\nfiHhio0/kj76I2cO4PyfI92WODJ+GOIXj4wfo59/rDCggh7POXvwH4YUL+59+F4+MHxwg7uXPrg8\r\nPGF64Id/Ll3cvbg9XWAwfo9/T3YXj4woXd3fZ34Pjg8YP0d/LPC8IXxwR9nPr+3B8cHxwA9nszy+\r\n/B6+sBg/R7/swvjhfHHL+59/j0wfHB8cD+5+zB8cHxxy/ue7xz/bj8jp4wvjgeH5Htw/jg+OD9Hf\r\nyzz5/VhfHC+OCHL8334R6+MB6+MIMsvzfZnlg+ODx8YPf3d/j7+7CheHjCD/AGvtzwfHB8cHhw5e\r\nzPx+r7cL44Xrgh/teXXzlg+OA/DB8OXPrl7MHr6wvXCDv/J9meWAwH4YP0e/C8IUIOX5vv8ADuwv\r\njg8fGD/c+/7cHxwfHC/ucHxwvjg/Rz9vnxx+T4wQg/2vsz64D/5/FAfhhd35vvy5dO/D8fGD44Qc\r\n/wA32Z4RgPTxjn9Hv+zC8fGPzCD/AGvs9f14XgesHxweHT35e37MIwoXf+b7c/2YYg+OF3d3sz8Q\r\n8MLxg+OD/c+/xwH4YXxwvo9/j3YQ+GCCHPu9ufn1YB08YXxwQ9ntwvjgMH+5wfHC+OEH+18hg+Pr\r\nAfhg/wBz78uX14OfPrB8cLw/J7/H3YXxwevrB4f2vLr5ywvjhfHAD2ez2YDBHIPZ7/2YR6wj8ML+\r\n59nLB6+sHxwf7n3+GD44XxwfDl7+uFBC7g/J7/HAOp6wvX1g+HLmPjnheuD1wv7n25+I+/BB8cIO\r\nfd3+vnggg/3PPrnzHC+OF8cLv7vf7+/B8cEH6OXn24Xxwvjgh7Pf4YIPjhf3Pvwj1HWD44P0d+D4\r\n4UHw/J7+WfuwoPX1hD7PbnlzwDrCEH6Pf9uEYUL6OXXP3ccHxwRT77/LKmenzLz55bpfDu9+Pmrq\r\nIuKQ/tVu2rx/L3jrhlmH9i5hy3vOePzFbz/bfij78P8AUv8Ax8vuwzBz/bfij6k/J/0Ln3ezx45+\r\nvCELnf7L8UHu/wBC5d/rD2YSvCA3/bfij5hlvk/sOe8H8LPu/J/Nz8MHiesI3/bRyVy3vzffn3e7\r\nCP8ALC52+y/FD21/sCf5HIfyfyfyh8e/x64/Yi2p3+2nuvX+QR9/o9+H6opYX0e/9mCD44Iez34X\r\nxwQg9nd4+7B4HrCPwwf7n25+Ic+/D8IPjg94cuXXPv8APhj8/HC8PGF/c8uuXPzlgHwwfHB7u73+\r\nP14IUH6Pf+3Cg+OLD3j3fSIf/KO/orZbmt8Y7moO9qf+p/Q88tzP5+pvZcN7GXcstW1U/wBV0ah1\r\n07d7eH2Wvrqt6OnTfnaMq5catqo/qunUOttu9vD7LX67ejptfnaLBrfnc/d788Zha+xjLDfh0hrW\r\n7/y+/wAPDuyxINeHSK9v4Ip5/wDmflcx5ZZcu7+38PbiqX7lHTrE/TPdudPc/D1/J6/ghgeZ+jj+\r\nT+UX8vd3e/w454+jdr+EXE38MUq53cx/yrz/ANV6c+v24kG/D3P/AJ9UV7fh7qGs2WQ/5X/2m/nz\r\nHx44kGrdvxxXo+GOtxzLy/K/tdzv/Jy4Z+OJBu37X8cVzfwxzN/Yy8/yQ8Ovhx9fXFxSv6k306RR\r\nq/Vnf3R/LDYt7eXsxKteEVTcNSvfz92JBHwRXt+HSGpX2+7x6Ykm/CK9uGpXv/K93TFe14dIr2/g\r\nhqW59/uxINxXtdPCGpb28+mXs64kW7dor2/ghsW5jz5dOnvxXtdB0iub6CGpXv58vPsxIN9BFe34\r\nQ2Lcu/25eIYr2orm4bVvbyDzw44rm/gitbhrV9vsy854r2/CK5uG1bv5+7Pn9WK5vw6RWN+ENy3t\r\n5dM/b1xXN+HSK1uG5Xv5+7ritbirb8I630/lfZioj7/zR//Z\r\n');
INSERT INTO `oto_banners` (`id`, `banner`) VALUES (3,'/9j/4gxYSUNDX1BST0ZJTEUAAQEAAAxITGlubwIQAABtbnRyUkdCIFhZWiAHzgACAAkABgAxAABh\r\nY3NwTVNGVAAAAABJRUMgc1JHQgAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLUhQICAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFjcHJ0AAABUAAAADNkZXNjAAAB\r\nhAAAAGx3dHB0AAAB8AAAABRia3B0AAACBAAAABRyWFlaAAACGAAAABRnWFlaAAACLAAAABRiWFla\r\nAAACQAAAABRkbW5kAAACVAAAAHBkbWRkAAACxAAAAIh2dWVkAAADTAAAAIZ2aWV3AAAD1AAAACRs\r\ndW1pAAAD+AAAABRtZWFzAAAEDAAAACR0ZWNoAAAEMAAAAAxyVFJDAAAEPAAACAxnVFJDAAAEPAAA\r\nCAxiVFJDAAAEPAAACAx0ZXh0AAAAAENvcHlyaWdodCAoYykgMTk5OCBIZXdsZXR0LVBhY2thcmQg\r\nQ29tcGFueQAAZGVzYwAAAAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAABJzUkdCIElF\r\nQzYxOTY2LTIuMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAWFlaIAAAAAAAAPNRAAEAAAABFsxYWVogAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAA\r\nOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z2Rlc2MAAAAAAAAA\r\nFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAAAAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZXNjAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAZGVzYwAAAAAAAAAsUmVmZXJlbmNlIFZpZXdpbmcgQ29uZGl0aW9uIGluIElFQzYx\r\nOTY2LTIuMQAAAAAAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2\r\nNi0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZpZXcAAAAAABOk/gAUXy4AEM8UAAPtzAAE\r\nEwsAA1yeAAAAAVhZWiAAAAAAAEwJVgBQAAAAVx/nbWVhcwAAAAAAAAABAAAAAAAAAAAAAAAAAAAA\r\nAAAAAo8AAAACc2lnIAAAAABDUlQgY3VydgAAAAAAAAQAAAAABQAKAA8AFAAZAB4AIwAoAC0AMgA3\r\nADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQAJUAmgCfAKQAqQCuALIAtwC8AMEA\r\nxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEyATgBPgFFAUwBUgFZAWABZwFu\r\nAXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIUAh0CJgIvAjgCQQJLAlQC\r\nXQJnAnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOANDA08DWgNmA3IDfgOK\r\nA5YDogOuA7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTEBNME4QTwBP4F\r\nDQUcBSsFOgVJBVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAadBq8GwAbR\r\nBuMG9QcHBxkHKwc9B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjSCOcI\r\n+wkQCSUJOglPCWQJeQmPCaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtp\r\nC4ALmAuwC8gL4Qv5DBIMKgxDDFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4O\r\nSQ5kDn8Omw62DtIO7g8JDyUPQQ9eD3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFt\r\nEYwRqhHJEegSBxImEkUSZBKEEqMSwxLjEwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAV\r\nEhU0FVYVeBWbFb0V4BYDFiYWSRZsFo8WshbWFvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6\r\nGSAZRRlrGZEZtxndGgQaKhpRGncanhrFGuwbFBs7G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcd\r\ncB2ZHcMd7B4WHkAeah6UHr4e6R8THz4faR+UH78f6iAVIEEgbCCYIMQg8CEcIUghdSGhIc4h+yIn\r\nIlUigiKvIt0jCiM4I2YjlCPCI/AkHyRNJHwkqyTaJQklOCVoJZclxyX3JicmVyaHJrcm6CcYJ0kn\r\neierJ9woDSg/KHEooijUKQYpOClrKZ0p0CoCKjUqaCqbKs8rAis2K2krnSvRLAUsOSxuLKIs1y0M\r\nLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+RL8cv/jA1MGwwpDDbMRIxSjGCMbox8jIqMmMymzLUMw0z\r\nRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3NnI2rjbpNyQ3YDecN9c4FDhQOIw4yDkFOUI5fzm8\r\nOfk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1hPaE94D4gPmA+oD7gPyE/YT+iP+JAI0BkQKZA\r\n50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUSRVVFmkXeRiJGZ0arRvBHNUd7R8BIBUhL\r\nSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1KTZNN3E4lTm5Ot08AT0lPk0/dUCdQ\r\ncVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYPVlxWqVb3V0RXklfgWC9YfVjL\r\nWRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19hX7NgBWBXYKpg/GFPYaJh\r\n9WJJYpxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlDaZpp8WpIap9q92tP\r\na6dr/2xXbK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4dBR0cHTMdSh1\r\nhXXhdj52m3b4d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7CfyN/hH/l\r\ngEeAqIEKgWuBzYIwgpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opkisqL\r\nMIuWi/yMY4zKjTGNmI3/jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaf\r\nlwqXdZfgmEyYuJkkmZCZ/JpomtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopaj\r\nBqN2o+akVqTHpTilqaYapoum/adup+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+L\r\nsACwdbDqsWCx1rJLssKzOLOutCW0nLUTtYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9\r\nFb2Pvgq+hL7/v3q/9cBwwOzBZ8Hjwl/C28NYw9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3\r\nyzbLtsw1zLXNNc21zjbOts83z7jQOdC60TzRvtI/0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZ\r\nbNnx2nba+9uA3AXcit0Q3ZbeHN6i3ynfr+A24L3hROHM4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy\r\n6LzpRunQ6lvq5etw6/vshu0R7ZzuKO6070DvzPBY8OXxcvH/8ozzGfOn9DT0wvVQ9d72bfb794r4\r\nGfio+Tj5x/pX+uf7d/wH/Jj9Kf26/kv+3P9t////7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEB\r\nAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgEBAQEBAQICAgICAgICAgICAgICAwMDAwMDAwMDAwMDAwMD\r\n/9sAQwEBAQEBAQECAQECAwICAgMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD\r\nAwMDAwMDAwMDAwMD/8AAEQgHgAQ4AwERAAIRAQMRAf/EAB8AAQEAAAYDAQAAAAAAAAAAAAABBQYH\r\nCAkKAwQLAv/EAIcQAAAEAwQGBQgDBgoRChEEEwABAhEDBAUGByHwCBIxQVFhCRNxgaEUIpGxwdHh\r\n8QoVMhgZI0JS1RYXVldYYpSX0tMaJCUzU1VydneCkpWWmLa31CYpNDlDVKKy1uInKDU2NzhERmRz\r\ndXiTs7S1wkVHWWNndIOEpkhmhqXX4+Vlh6OkxbjD/8QAHwEBAQABBAMBAQAAAAAAAAAAAAEIBAYH\r\nCQIDBQoL/8QAexEAAQQBAgMEAwUODA8NAwMVAAECAxEEBQYHEiEIEzFBFFFhCSJxgZMVFhcYIzJS\r\nVZGSobHR0goZQlRWYnSUlbPT1BokMzdTV3JzgpaywdXi8CYnNDU2Q0RFY3WitOElg8JGZGWEo7W2\r\n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\r\nK0t5dehSqlQpuWhzaPIbGyUytKoRTNQMla+t9iAiIeC1Q36evdnPdMtJ9zn7ND8/a7ocriBu3vsD\r\nQMR8iI7GuJ3pGszRtc2R0GBbGxIld5mSwNXmibPy5E9nbhBFxL3JLq2vo5mh6RySZKon/CZld9Qw\r\nGOVFRHT058zvFmNHK5Pqixo76DtmrM0Ox1n6PZazNLk6LQKBT5Wl0ilU+BBlZORkZOEUGXl5eXgE\r\nlCUpSRERJIiH8xfcW49b3br2Zujc2XLnahqE0mRk5E73SzTTSuV8kskj1c973uVXOc5Vc5VVVVVO\r\nzPKyn5c6zy8qXSI1rUYxjWojWMYxqI1kbGojGMaiNYxEa1EREQxzVPgPjWhp7Qap8AtBaDVPgFoL\r\nQap8AtBaDVPgFoLQap8AtBaDVPgFoLQap8AtBaDVPgFoLQap8AtBaDVPgFoLQap8AtBaGV7a2Ls5\r\neHZK0VhrYUqXrdl7V0efoVdpU0nWgTtMqcsqUm4CmxLWQsyIyxLaQ3Psree5eHe7tM35szMfgato\r\n+VBmYeTEtSQZONI2WGVq+tkjGuS7S0PbDP3SutEeyRr43sclskjkarJInp05mSMc5j2+bXKh89Tp\r\nM9BSuaC+kJU7ISkvU5y6a2HlFoLqLSzpJiJnKQa0Kn7PR5pCla0zTIkVEFZrZS4ZwohupSm/p9e4\r\n+e6SaH7o32YMfdmtS40G/dud3hblwYbbyzqj0xtRjiVrUbj6lHE+VGstkWQzIhaqNjZfWJ2hOETO\r\nF+6WZehMkXQdUR0mE96o5Y3N5fSMN7kW3SYrntRrnIjpIHwyqlvciZR0ArTUmi3t1WhT0SMioWws\r\n3M02iIRAXEhxpqlmdoJtMaKnCGRS0rGUSlYGZEksTIbU92v4fbl3X2ZNN3ho8bH4O1tUiys9zpGt\r\ncyHLRNNhWNi9ZVXKy4Wua3q1iq9fetUzU9yR3xt/bfaEz9raq9zczcWmy42E1rHOa+XFVc+VHuTp\r\nGiY2NK5HO6OciMTq5Dv76JKT+5tud/rNkj9MaIY/m39ohf8Afw3P+75vxoZg8fVT6MWv/un/AO5x\r\nm4rVPgOGbQ4gtBqnwC0FoNU+AWgtDLNtEmdjrWFxszXi/wD0XFH2duKnzw4H7og/jWn3trORNz6c\r\nv/zrH/jWHyy6sX81an/5QnP/AGlQ/sq6Av8A7Bwv3PD/ABbTo21Bf6fn/vj/APKUw5h9ezSWVuz1\r\n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\r\n56akrD2CpEwpZRFyszNlUa7VZiWQTJiTUpKxkma/sJNCTMlK1T/TZ7hZ2Zc1e1Npm5tZjSfI0DEy\r\ntVz5Goixxu7l2Fg4rXqqX3eRmJOnL1kfFI9G923mbzn2ydL03sz9h/VttOlZ83N3ZGJp75Goqq7n\r\nkTJyI2qiL9TZh488auVWs5pE6q5zEd11LubeVu7O2VDtpQIhlPUabTFiyyoiocCpSET8HP0ubNO2\r\nFMQjVDUbGaTMlpZSUmX68uN3B7aHHzhbrPCbfEXeYGsQOiV6I1ZMeZPfwZUPMiok+NM1k0Sr0VzE\r\na5FYrkXoc4KcXt1cCeJ2k8UNnPrL0yZHujVytjyYHe9yMWaruLIiV0buiq20kZT2NVOeK7C86y17\r\nNlJK1llpsosvGIoNQp8VSSqFEqaYZLmaXUoJfZiIcjSovNiINMRBqQpJn+LTtK9m3iP2W+JmVw34\r\niY6orVdJhZjGqmNqOJzKkeVjOW+jqqWJVWSCXmikS0RV/XhwB4+cP+0bw7xeIfD/ACEfFIiMycZ6\r\np6Rg5SNRZMXJYn1r2XbXp7yaNWzROdG9qm965jS8vyuNTBkbJ2qiVGzkLUSmytpUxKxRIUJGCYci\r\niItMaWSRGeqiXioQ5uaFGMKd48Gtk7ymfnTwuwsyRVV2RiqkT3qvisrFa6KZy0lvkjdJXRr2oazi\r\nDwL4b8SOafXsFI8pb/piCoplVfNyoiteq9LV7XOrojkOSW6/pVLNVSak6berYicswmMpMGNaGz00\r\nutU2AZqSXlU5T1ohzKIbazpgJjKJiYjc2xy3T2bt76ZA/K2rnxamjbVIZG+jTKnX3rHK98L3eHV7\r\noGra+FdcRN59iTU8SCTL2RqTctW9UgnakT18fetkRVYq+FK9WJ4+ByiWVtzZy29Bp1p7KVmSrlCq\r\nsuiZkajIR0R5eNDWWwlIPBSTdKkniRkZHiQxP1XcGp6FqMuk6zE/GyYHK2SKRFa9jk8lRfuovgqK\r\nioqoqKYWa7tnWNs6pLo2u478bJhVWvY9FRUVPxovii+aGYvLf23iPnfPt+3Pj9wPLf23iHz7ftx3\r\nBxndLpo+03SU0E76KCqQTPWqu9oUze1YOKgoZzktaWwcpFqq5eRVGI0kuekSnKap28yYWRKSZ6xd\r\njfuTPa1zOzn2/eHu7Uyu40zW8+Lbuqoqr3cmm65LFhvWblVHLHiZa4epIiX9VwYlVr0RWO4+4s7R\r\n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\r\nDMpT1sMlGcGKhR6w/MrxT4M6FuHKn2rxP0Z8OoYD3wvbPHJjZ2HI1ffx8yoyeFyORFfE73jlREkY\r\n5Oh3e6xtjYfFHRsfUchkGo480aSY2ZjyIru7eiOa/HyoXWsb+jqa90UlJztenQ5B7A6blhbQFLSV\r\n4dGnLA1VeqiPWqIictDY+JEUrzpiJTvwlVkYSSMi6uH9YqMydyfVLBXe3ZA3NpSyZexMtmqQJatx\r\n8hWQZSJ9ikvTGmcv2TvRGpdUtWuO25Oz3uPS1fkbXnbqcKdUilVsGUiV9aj+mPM5V83eip1qlq13\r\nX2dtNR7YyxTli6/Q7Yyxw+tUdmarKVabgQy2qn6TLq8tlTLaaJqXhqImMyYyGMev7S3DtOdcbdGB\r\nkac5Fq8iJ8bHL+0lVO5kT2xyPS+lnDGp6TmaFN6Pr+NNgPuv6YjdE1V/aSuTupPhje9L6XZ7cSpR\r\nIS1Q4pLhxEGykREqQtJ8FJViQ+M3Fa5OZvVF80PU3Ca9qPZSovgqdUPz9a/tvEX0P2Hl6B7B9a/t\r\nvEPQ/YPQPYfuHUYkZaYcJK4sRZsmHDSpa1HwSlLmfcI7Fa1OZ3RE81PF+GyNqvkpqJ4qvRPunoWj\r\ntTQ7Fy6pu21o6DY2CiEUYkWlqsrTKhHhGZESpGhrM5+aM3ckysrEUzqZiMx9vb2ztybtmSDa2nZG\r\noqq1zQROfG1f281JBH6rkkYl9LtUQ92l6Pn69KkG38WbPcq1/S8bpGIv7eZE7mP1XJIxL6XfQ2l2\r\n904LG0LrJS7igzVt6kgzSmtWlhzdCsohaTPVXApMtERU5yGeH89iSCixI0mMoNk9j7cGpcuVv7Nb\r\np0K9Vx8VWzZKp6nTOauPE5P2jclF9aHNW2+zzr2pVPurJbp0S/8ANQK2bJX2LI5q48Sp+1bkovrQ\r\n4477tISu2kgzNtb4bcQoFHpMMil4cycvSrP0mFimDJ0WhU9KIJRVvqkUGCqPHVis4sQzM+xbs9dm\r\nbUdw6/jcMeAm3Jc/U8xbVkDXSzPS055srKlcvdwstFfLPKzHhSkRWNpDmPVs/hD2dtlZW6dw5ONo\r\nel46c0+XkyKskr1+tYsj1dNPK9UqKCPnc5aZDH4NOEXSL0qaxeuuZspZMpqhXfQ4urGSs+pqtqFQ\r\nlOmPVerP8FLEZEqFKEZuxLimpWqiF+tDsHe5vbP7LmNBxC3+sOt76lj/AKs1ObE0pr20+HAR6Ir5\r\n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\r\nOt+NM3b3eQ1mTN5y5KmQTPi6nPiY2fP2YODUruaPT54vY3Pz6+4/JfXxdDb8nArhy9bjx8mP2Nz8\r\n5U+4/IdXxdBMaYl+8UjKBXrLyL4GqVu3u8Wtm/FiTlLjKSfNJkfMWDsw8GoXc0mnTy/3efn19xuS\r\n1F+BbT2Fj4FcOWLcmPkyf3WfnV9xuQ1F+Behkat6RN+VoYUWWqF6VsYUpHSaI8jR6tGs7T5iGZuc\r\nOYp9nvJYK0/tVwzLkN5aRwX4UaG9sun7fwu8attfLC2eRq+tsk/ePavtRyKbh0/hZw60x6S42jYr\r\nnt6o+WNJ3tX1o+fvHovtRUU0DtHaijUCVmK3auv0+kSmsqJM1Ou1KBJw1xFG6jiTU6tOstRnsc1G\r\nZ7zMZAcP+GO/eJWrR7Y4Z6Fmazl+9akGBiyzuYi9EVyQsckUaUtvfysaiKquREVU+juze2yOHOiO\r\n1zeuqYei6fCnWbLnixokRP1LXSOY1V8ERjbcqqiIiqqIbKbztOWxFn0TNOu4p8a2lXTrw0VacRMU\r\nyzMtFJ0dYXWkiam9VRF5sOHCQsjdMcdv/Z19xi4p7vlg17tDakza+nLTnafiPiy9Ukb48j5W95hY\r\ndoqU7mzJEVFa+Bi9U6r+PvuuXCnZsc+icDMJ+6NRbzNTMnbJi6XG5LTmRHIzLy+VUvlZHjxSNVHR\r\n5Kocbd4t6dur1Kt9bW0rsxU1w1RPIaej+VqRS4a1P1VOpsFocPBkqiMcRZEXWLWZOO/7gf2eeD3Z\r\n02um0+EWiw6XA7lWeVEWTLyntSu8ysqRXTTu8Vajnd3HatiZG2mp0W8a+0Lxc7Qm4/nk4qaxLqD2\r\nK7uMdPqWHitcqryY2Kyookqmq+nTSI1qzSyOTmNPGz8hzVZwtZWCxYYSxZuC0V6vSqDf3d/U61UJ\r\nOl06HHr8tFnp6PDlZWFHqNlJ+mySIseKZJT1keNDhJNRkWsoiGEHukOzd1b/AOxVvja+y8CbU9Rl\r\ni06aPGx2OlnkZiaxp2Zkd3GxFfI6PHglk5GIr3IxUaiuVEXND3PPdO3dm9sTZmv7rzYdPwY5NRif\r\nPkSNiiY/K0jUMWBr5HqjW95kTRRNVyonM9LVDmy/RRZn9UVC/vvT/wCMH5EPoMcYf2J6z/Beb/IH\r\n6tfoj8PPt9p379xv5Ufoos1+qKhf32p/8YH0GOMP7E9Z/gzN/kB9Efh79vtO/fuN/Kj9FFmv1RUL\r\n++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\r\n2jYR9YADrA9MJ9IrrXRW6V1J0aJDRKpd98CqXQWQvT/RjOX2Td3sWAu1NfrNEVRPqKDZWtEooH1S\r\nUUpjystfrdXq06msrf22NkJuPTnZ65Pc8sis5e75vBrVu+dv2XhXl4nyc7VFwpki5Oa0RbuvNU9S\r\n+o4q/wCTU7T/AP0dNB/xpqh/+r4bi+hU39fL8j/+9NF831/sX/i/1TgNvPvRiX5Xl3iX1xaIizUW\r\n+G3Vrb04tnIc+dWh2fiXg1+YtYuiw6oqDLnMlKHNnAKYOXhHEJOv1aNbVLuw4c4CaTw+0LS0d3no\r\n2nYUXNVc3d40TOarWuarq1q6tTrb3fk+l7t1TLrl73LyX1d1zTPdV0l1fjSfAZFbPzG8jbtlMj3Z\r\n5GFi0DcOIWLDCWSw2Hv9ZhfUX1DHx7QsthgtCWGCwdz76K0TXW6YX9f903+TtZHV12+/+V+3/wBx\r\nzfxyGaPZj/5Nal+6W/xTTtfjAMyZAA4RL++gG0H9I2+W8i/S39ob/wCXtpelamo2vtJAs7byydOo\r\nUKqVNZLjw6XIzdnZmLCgkxEhESYiKLeozGUGy+1vxT2JtfC2jokWAuLgx93GssErpOXmV3vnJkNR\r\nVty9UanwHEO4OCWydzazPrup+kd/kORz+SVGttGo1KTkWuiJ5mkX8jOdHf8Aqn0mP3ybF/8AJYbn\r\n+nk40f2HTf3tN/OT430uvDv1ZPyyfmD+RnOjv/VPpMfvk2K/5LB9PJxo/sOm/vab+cj6XXh36sn5\r\ndPzDYp0l/QWaGGiNoQX6aRF1lev0m7e3cSNh5mgS1rrcWWq1nYsS0V51FshUCqVPkKBJxohFKVCO\r\ncMkTKGiEhRuRGk+WOBvav4n8ROKmk7N1+PBbiZrpkkWKCRkn1PGmmbyudO9E9/G27atpae02TxG4\r\nJ7K2xsrP17S/SEnx2sVnPKjm2srGLaciX0cvmdQZs/IdkNmINnM1ok/Scq70ctwViNEGS0MqTe5L\r\nXYRbUTkO301f1OWIj1r9Htrp68JcNdmoVj6smX8lVVDlCMp6J1hQyiMjX1E9Tnae4eN1njZrGq+l\r\n9337cNeXuubl5cLHj+u7xt3yX4J415WuefBPWlx+Gun4/d3yLkJfNV3kzO8K/bV8R3iejm0vJnT0\r\n0LLidLecsFAuwmb5qHaOsxbBy1pIlr4FnToNuapY5MvDtJFkaaqa60qcUwazkYWqcQ0MerrKw11n\r\nTvmTqc2nI/vO6dy81ct9EW6ta8fWpzljTd/A2aq5kuvE3sj5h7jJV5NrV2Au6t9buHIJqi7FWKtT\r\na1FMXMHJoqK7N0KPWUyCptKIhwijHB6s4hQ1ar62qpmPzjZ3kjWeHMqJ91SKtIqnRi/k1O0//wBH\r\nTQf8aaof/q+HLv0Km/r5fkf/AN6bd+b6/wBi/wDF/qnHLpH9M7U9OHSuuT6Qea0eJC7Wc0XIN28n\r\nL3VS96MxayVtqVyV5E9fbCiRrZxKBTl0/wCsl1Y6aok0uY6goRRyOKa+qTnrwD2kmndmnd+3/SOf\r\n0t2qp3nJXL3ulY8f1vOt8tX9cl+HTxMV+Kupd5xn2/m8ld0mCvLfjy50zvGul+HgpzYaGv0tC0Wl\r\nhpX6O+jPMaClFsLAv2vesNdbGtlB0jJ60cWzEO2Neg0Zdah0FdiJEpxUuUXrClznIJLZusS7jr51\r\nfhy3S9Mm1H0zn7lqu5e6q68r7xa+4plfjayuRO2Hu65lq+a/8x3PBxgfcAA4XOmo6Wyo9EddJc1e\r\nhTriJK/hd6941WsFEos7ePHu3TQ00yzMS0KaoioQKJXDmDWcPqjgnBhs+trm2qe59rbcTcmZJiLN\r\n3Pds575ee/fIlVzNrx8bNDn5noUaScvNa1415X6lOuh/Jqdp/wD6Omg/401Q/wD1fDfP0Km/r5fk\r\nf/3p8r5vr/Yv/F/qnXqolEq1pKzSLO0GQmarXK/VKfRaNS5OH1s3UqtVJtEjTpCVhEfnRY0aIiGh\r\nO9RkQ718vLxsDFlzsx6RwwsdI97uiNYxFc5yr5I1qKq+w6vcbHnzMmPExmq+SVzWMani5zlRGont\r\nVVRD6k+gboo2a0K9FW6XR+oEGUVUbLWel5+3lalYZJO1F5VdQmpW4tDFiGalrRFnVxIUoS1qOFKQ\r\npeAStSEki6DuLPEHO4n7/wBR3jmqqNyJFSBir/UsZnvYI08EtsaIr1RE5pFe9UtynZ3srbGLs7bG\r\nJt/Gpe4YneOT9XK730r+qqvvnqqolrytpqdEQ3gDjk3UaA6UGk7ctoc3GW+0itIG2ErYi667qlFU\r\na3VYyFTU9PTUzGTJUeztnqXC/CztTqM1EhSkhJwS1osVaSdKdZSdXg4OVqWWzCwmK+SRaRE/Cqr5\r\nIidVVeiIlqeuWWOGNZZVpqeJ0G9KX6XPpw3pW1rFN0LLnbAXK3aSkxHg0OoWwstMXuXuVOVTGUiV\r\nqtcWqOVAkFRoZJWdPl6ZNdSs1I8umUkSxzlt7g3JqSd2keRnTpSubjMc5G+ymsc9fYq8t+o2hqe7\r\ncXT0STIlixmL4LK9rb+NzkT4uppDc99K/wClWuntJS5+/Sx90V99iymkFW6Fai7CYurr87JsZRIN\r\nAtbYc5SWkpkzbVjTVInoZYkcBTkZfS1vgk7TYFfmYuZgKvRrpontZftSRjb+BHIaXT964OoScmFk\r\n4+TXVUikY5a/wHOr7h3pejO6TvR26Ue4pd8Nxs1UKHX7MzspQL2LpbTxJb9Gl19qZuWOalpKp+Sn\r\n1U5Tp1CIkWk1eWLqZpCIiTTBmoE1Ky/BWuaFnaBmeiZqItpbXJ9a9vrT/Oi9U+ClXemLlRZcfeRf\r\nGnminI2PimpMu2vslZu31lLS2HtlRpG0VkrY0GrWYtPQKnATM06tUCuyESmValz0BeC4UeBFiQ1p\r\n3kZjWadqGbpOoQappsrocjGkZLFIxacySNyOY9q+StciKi+tD0ZONBmY8mJlMSSKVrmPa5La5rkV\r\nHNVPNFRVRUPlq6cWjPUtD/Swvv0d5+JMzMpd3bSbl7L1KbI/KavYWty8O0dg6tMr1EJVGmKROSUS\r\nZ6stRMY4iEmeq477+FG+oeJPDzSt5xojX5kKLK1PBmRGqxTtTqqo1JmP5L68nKq+J1kb820/aG7c\r\n3b7rVkEirGq376J6I+JbWrXkciOVOnMjk8jfJ0GehtIaXWnJZSPbGlJql1dwsgm+S3UpNQOuptaq\r\nFEqMGVsDZSd1j1FJnKvEgTceXiJUiPKSc3CUnVUZlxT2r+JkvDvhVkRabJ3eoaw70OBUWnMY9qrk\r\nSt6X7yFFY1yKiskljci2hvfgZtBm6t7R5GW3mxdORMiRF8HPRahYvVPF/v1SlRzY3NVKU+jQOlo7\r\nBwANiPSDdIvoz9GnchHvt0kLSzktL1CamKPYG7+zECVql4d6FqIMt5Udn7GUSajS8NRw0GmJOTs3\r\nHgykqhSVTEdBxISYn1tH0XP13MTDwG2vi5y9GsT7Jy9aT4LVfBEVTT5OTFix95KvTyTzVfUh08La\r\n/TQb341qZtd3Wg5dtTbFQ5yOiQlra3tWnrVqZynoimmWmJueoVLp8pLRokMiXEgol46Yaj1CiRST\r\nrq5Mi4Vx92nfZi81deWNKRfOrfap7el+pD4jteW/exdPa7/0Oczom/pHGjP0lNuKfcJbSxNR0Z9J\r\nerSk5M2WsTXbTSlrbCXmHToC5uekLv7dFK06KqqQ5eFEm10ioU6BEVCJXksacOHF1Npbj2RqOgRL\r\nlsck+OioivRKVt+HO21pFXoioqpdXSqiL9DC1SHLd3apyP8AUvn8C/5uh2MRso+mAB1yfpIeiFIX\r\nv6JtH0m7P0tK7wdGmsyn11Ny0CJEnKrdJbapwaJXqfGTBMjiFTanFp1ThRIhKTLwCn1FqlFiKGaX\r\nYn4jzba4iSbGzJKw9dYqMRVRGsy4GufE5L8O8jSSJUSud6xXfK1DH3tD7SZrW0U3DjtvI0x3Mqoi\r\nqroJFRsjei/qXcklqi8rWvquZVOnToadIDOdGVfZI6VkjdXLXyTFnrOWgskVh5u2UWwcGbTbOAik\r\nKnjtDBplXVDOW/nhQ/Ila+zWRtGavax24m5+EMuGs3c91lY0t8vPdOdHy1zNr+qXdr4VXXpj7wD1\r\nNdN4gMcjOfvseaPxqujZL8Fv6yq6eN30pezJ0aX0oevdINpuXHaH85oWUi6mWvimrdy0W38tf9OW\r\nzj2f/QXdfW7xkrRZmLY6lpmvKFUcpQyOfhahRTi+fqdWrqh17h+3RNJl1NMvve65fe91y3zPazx7\r\nx1VzX4L4UZ1YmrrlZDYO75ea+vNfgir6k9R26BxsfaAA6/fTadOBVeiEtHo80GnaNtPv8TfrRLyK\r\nvFmp29eZu1OzJ2An6NJJgQ4UCztd8sKa+tjUajVB6vqmZeu6d5bU2mm5mzuWfue55P1HPfPzft21\r\nXL7bs+bqGoegqxOTm5r86qq9i+s4Mf5NTtP/APR00H/GmqH/AOr4bu+hU39fL8j/APvT53zfX+xf\r\n+L/VOFjSh0u5nT1v5vB0t5uwUC6+ZvmnKNWYtg5a0sS18Czp0GzUlY5Mui0kWRpqprrSppTBqORh\r\napxDQx6usrtv7OWjJt3gtoekpJ3vdsndz8vLfeZeRLXLzOquevHrV9LpMAOMWb6fxJ1PK5eS3RNq\r\n7+sx4mXdJ48t+HS66+Jyf/R5CbpPrqv6wL4f8384OOe2ot8Dp/3Zif5bjdnZzW+IqfuWf8bD6HQ6\r\ndjPYADpIfSlC/wCmX0Z/7Bda/wAvpwdnfYEX/czuL91Y38U8w67UX/GWj/3rI/y4jq6xIMONCiQo\r\nqExIUVCocSGoiUlcNZaq0KI8DIywMZ+yxxzRuhmRHNeitVF8FRUpUVPUqGLDJXxSNljVWuaqKip4\r\noqdUX4lO/R9Gp0nYt93R10m5i0NSXO280N7b1m4SoFNLh+WzV3SYaLX3MVbq0GbSyKDPwqJAUokm\r\npVMiuRtrq6JeOmy5Nh8TdT0NUqNJVfGq9VVj/fNVfa5qo9fVzJ1Oznh/uFm6No4WsNX30kaI+vBH\r\nt969E9jXorfiOwiOITeZ6s7JSlSk5unT8tBnJGflY8lOykwhMWXmpSahHAmZaPCVgpC0KUlSTwMj\r\nMh5xySQyNmiVWuYqKip0VFRbRU9qL1Qjmte1WuS0Xoqew+VTpj3DTejFpT3+XCTMGNCl7srzrUWf\r\noKpiIqLGnLIKn1VGxNTiRF+cZzlHjSM152P4THEd/wDwy3czffD/AEfdzFRXZ2LE+SkpEmRvJO1E\r\n/aTNkb09R1c720Fdr7s1DQapuPM9GdVX6k5eeJbXqqrG5ir52baW3bfiN82bXs7h/wBFv0ekwKRp\r\nJ6VFVkUdbUJ2hXEWJnly5pjQpanQoNu7xEwZhf2oceJHs2nzGLWgLJRmZESetjt7byV+XomwMd61\r\nG2TPnbfRVeroMe0TwVqNyF6+T0qvPMLsxbf7vD1HdEresjm40aqnVGsRJJad5tcrok6dLj62vh25\r\nx11mVoAHzT+mx0mvurek/wBIGt0uolUbAaOcKm6Kd3SoE1EjSSpi7qajVW9yqQYP86KJGtbPVKRV\r\nGhEfWwZCX1lqJCST2qdiHYvzI2hl7zy2VLnv7uNVSnJG2nOpfFWu+p16nNchhd2ldzelavibZgdb\r\nMdveyIi9Od1tYip5K1Of209DjOolEqtpKzSLO0GQmarXK/VJCi0amScPrZupVaqzSJGnSErCL7US\r\nNGiIhw071KIhm/l5mNgYkufmPSOGFjnvevRGsY1XOcq+pERVX2IYz42PPmZMeJjNV8srmsY1PFzn\r\nKjWontVVRD6kWgboo2a0K9FW6XR+oEGUXUbL2fgT9vK1Ko1TtReVXUJqVuLQxYijUtaIs8uJClCW\r\ntRwpSFLwCVqQkt0JcWeIGdxP3/qO8cxVRuRIqQMVf6ljM97BGngltjRFeqInNIr3qluU7P8AZW18\r\nXZ22MTb+NS9wxO8cn6uV3vpH+K/XPVVRLXlbTU6Ihu/HHJuo0B0oNJ25bQ5uMt9pFaQNsJWxF113\r\nVKKo1uqxkKmp6empmMmSo9nbPUuF+FnanUZqJClJCTglrRYq0k6U6yk6vBwcrUstmFhMV8ki0iJ+\r\nFVXyRE6qq9ERLU9csscMayyrTU8ToN6Uv0ufThvTtrWKboWXO2AuVu1lJiPCodQthZaYvdvcqcqm\r\nMpErVa4tUcqBIKjQySs6fApk11KzUjy6ZSRLHOW3uDcmop3fd5GdMlK5uMxzkbflTWOevsVeW/Ub\r\nP1Pd2Jp6JJkyxYzF8Fme1t/G5yJ8XU0iue+lfdKvdNaSl1C/Wx90V99iymoaa3Q7UXXzN1dfnZNj\r\nKJBoFrbDnKS0lMmbasaapE9DLEjgKcjL6Wt8E3abAr8zFzMBV6NdNE9rb9qSMbfwI5DS6dvbB1CT\r\nkwcnHya6qkUjHLX+A51fcO9J0Z3Sd6O3Sj3FLvhuNmqhQ6/ZmdlKBexdLaeJLfo0uvtTNyxzUtJV\r\nPyU+qnKdOoREi0mryxdTNIRESaYM1AmpWX4K1zQs7QMz0TNRFtLa5PrXt9af50XqnwUq71xcqLLj\r\n7yL4080U5Gx8U1Jl219krN2+spaWw1sqNI2islbGg1azFp6BU4KZmnVqgV2QiUyr0uegLwXCjwIs\r\nSGtO8jMazTtQzdJz4NU02V0ORjSMlikYtOZJG5HMe1fJWuRFRfWh6MnGgzMeTEymJJFK1zHtcltc\r\n1yKjmqnmioqoqHy29OLRoqWiBpX336O8/EmZmUu8tpNy9l6jNkflNXsLW5eHaOwlWmV6iEqjTFIn\r\nJNcz1ZaqYxxEJMyS477OFG+YeJHDzSt5RIjX5kKLK1PBmRGqxzsRLWmtmY/kvqrOVV8TrE35tl+z\r\n925u31tWQSL3arfvonoj4ltUS15HNRyp05kcnkbUWHIV+ZtGw2eIWLKwWLDZ3CWSw2ezaFiyt3/A\r\nBZGAWUy4iWgsjC30FlbkFiw2XC+osN47BL8yWG+R+It+QsNn3CWLPRbOzsGrs1VlYLFhgsWGz8As\r\nWG7s7gv1CwRZ7xLFhs7AsWGzzC1FlbOIWSw2dwWLPpfdC9/tX+iD/WBXP84FYHRT2jv6+W5v3Y7/\r\nACGHZXwt/rd6P+5o/wARygDhM38AAAAAAB87T6Qnj0o98/KxtzRFy/6F1MPAdynYvVV4E4aL+usz\r\n+OUwI7Q/TiM/9zwficcJrZ7xlbZwZZ3j/ovF10rQNE2/m9uJIQ4FXvIv0h2STOmhJR56zd2di5Gb\r\npX4QsThw5+v1ZCUnsUSzbEh1TdvPX5M3iLpO3mvV0eDgd7y+TZcmaRH9PWscEKr7KM3OzTpiY+0M\r\nzVHMp+Vkq1HdLdHFGxG9fUj3yoiL536zs3DBcyOAA+a79Ir0wread2nzbLRmolqJ2maLehdaGLYB\r\nFLpc6apC19+UrIpg3n2mnZRBnCiVCmzMWPZuVOOUTyODLR1wyQuoTENeb/Zj4E5O+MZ2uZyrj4aq\r\nnezIic6p4tgh5kVOZyVI96orWtcxVa5eVF4H4u8TsfZzW4OO1Jsx6XHGq+9b5LJJS3yotta1KVyo\r\n5EVERVThsot2lhaDARAkLMUlSkJY5mdk4NRnVn+Ma5udKJExPaRKIuBEQ7JdD4Y7A29jtg0/Sse0\r\nSueWNs0q+tVklR7uviqIqN9SIiIiYd6rvzd+sTLLmahMiKv1jHujYnwMjVrenrVFX1qp69fursHa\r\nOXiQZ2zlOloq0nqz1Ll4NNn4S282ImPKJTrGW0kxSUnikxptw8J+H+5cd0OdpkMT3J0lgY2CVq+S\r\no+NE5lTyR6Pb62qh7tG4h7x0OdsuLnSyNRescrnSxqnmiteq1frYrXepUOxJ9F800rw9GrS1mujx\r\nvBtRP1+4bSSptq7U3HJqEWLElbFXz2PosW1NZp9NSolIk4VeosnOlPQCWUOLOy0jEgpTFmJgonV/\r\n2mOCudw9y2am36tjuX6nOiV3kdonLIl0k0Tlai1aOY5HItJyszU4UcRcLeuC6Nqd1kR13kV3yu6r\r\nzMXzjfS1fVqorV69XfQZGIhzEAB1efpSv/axaNX9nirf5vp4Zydgr+udq3/db/8AzeKY5dpn/kVh\r\nfu5n8RkHSKbb6B2uWYQ2d636MjpDWfvC0ObyrgFT8oi2+jxe7UJiYoZTMNc8d397FNhWssvaNctg\r\ntMKYq8K0kkk2NLyhnrOrVLpw7aGkzYPHDL1ByLyZuPiyNWulxwMhciL513aKv90dgHZ/zY8nhri4\r\n7fHHknYv+FK+RF+4+viOycMTjmswO09mbPW0s3X7H2uotMtJZW1VGqdnbSWerUnAqFIrlCrUkunV\r\nakVSQmSVDjS8xAiRIMaEtJpUlRkZMY1GJl5OBlRZ2FI6KaF7XxvatOY9io5rmqnVHNciKip4Kh65\r\nYop4nQTNR7HorXNVLRWqlKip5oqdFQ6velB9GEugtjVKpabRSvrrd0MScjx5uFdxeRTI1vrFyqoi\r\nT6un0O1UnGl6xIyyFMxzyKpFxP8ACMxFnnsPt3bm0vHjweIGlx6mjURFycdyY86/tpIla6GR1fYe\r\njt8OnipjVubs16HnSuyds5j8JXLfdSN76JOngx1tkal9ffOk80TpSJwU6R/0e7pGLuqFV5SNc9Z+\r\n/Oy8aVmUTdTuStZI2qmYXVpeBGk7KWgh0mvxoxH+Eg+SUmIZKSxso0keR2L2oOz9xO0ibbuu5j9P\r\nblN5OTPgWOlXwe2aNZoGOjdTmudK2nIip4LXFC8G+Kmy9Rh1nSIWZT4Hc3NjSovRPFrmSJE9zXpb\r\nVa1rrS0Xyvhvtnep0yN0dZXYi3Wk7p23b1ikwYcCHZe12kffnYmqSUjAM5aVJNn65WpaPAhESNRC\r\nTgpIm1S2MMetO7Out67AudoGFpufjK5UbNBPgyxurzRzHuTqlLV2l9TmvM4v7d0uRMfVpsrEmVEV\r\nY5cfJY5PicxFWltLTp0Mp/dQ9K7+zZ0xP8bu9v8A5RD6H0rm9vtLiff4n5xpPo47K/X83yc/5pma\r\njXxaXl48jNUnSbvyvnvgp1Lm5eo2RgXrXw2wvSg0SdmIMSWrEWlQbUVKfKUXGhplyWqESNcksZm2\r\nGSvZ64X61w3XVG6zp2PiLk9ysckXcK93L3neMc6K3cvWNyNVau1Tqpwnxh3xo28UwV0bLlmSHve8\r\nY9JWsRV5ORyNeiN5vr0VU61SeB+5+lUyqw0QqpTpGpQoS+shwp+Ul5yHDWaTT1iETCVERsbOWLDI\r\nfUNL0vVo2w6pjRZLGrbWyxskRF8LRHoqItdLTrRw3h6jn6e9ZNPnkgc5KVY3uYqpfgqtVFVL8jsS\r\nfRf6BQqV0hV4sxTKLSadML0T7xYKo8jTpOUjKgqvRsStUJUSXQkzSakpM0uzkRtgMIe3BoGg6Vwm\r\nwMjS8LHxpHatA1XRQxxuVq4mcqtVzGoqoqoiql1aIvkZG9nPWdX1De+VDn5U07EwZXI2SV72o5J8\r\nZEVEc5UulVL8aVU8zvyjqtM0wAPn9/SaKBQqr0jVFmKnRaTUY6NG27KCmPPU6Tm4yYSbU2kWmEmL\r\nMIUokkalGSXZzM947V+xFoGg6pwkzMjU8HHyZE1TIajpYY5HI1MXDVG8z2qtIqqqJdIqqvmYV9ov\r\nWdX0/fGNDgZU0DFwonK2OV7Gqvf5KWqNciXSIl+NInqOvN+g6yP6lrOf3kpn8UMxPnN2h9qsP96w\r\nfmHAfzz7l+2GT8vL+cZghwocKHDgwYaIUKEhEOFDhoJEOHDQnVQiGhDERERMREWBDcEcccMbYYWo\r\nxjERGtaiIjURKREROiIidEROiJ0PjPkfI9ZJVVznKqqqraqq9VVVXqqqvVV8z9tgPZZ4WG7QsWGC\r\nxYbPHtEsWVs4mLaiwxCWLDBYsrZ9YWQ7nf0Vwmut0wv6/wC6b/J2sjq87fX/ACv0D9xzfx6GafZi\r\nX/c1qX7qb/FNO16MBDJoAAAAAADiU6dP/aqdLH/yZdP/AJ+bLDITsq/1/tu/3zJ/8lknGHGf+tjq\r\n397j/joj5uTcN/rHdzZ1w2YNOWbs9UI65ufoNGnpqISSiTM5S5KZmIhIQSEEuNGhqUbJIiJzwIiL\r\nYPiZm29uajkOy9Q0/GnldVvkgie9aRES3OaqrSIiJa9EREPqY2u61hQpjYeZPFG26ayWRrUtbWmt\r\nciJaqqr06r1PpYdBvKy0l0VeiLKycvAlJaDZq8JMGXloUOBAhJ/TltGo0w4UIiSknMzYiHSf2lMT\r\nEweOO4cTBiZDEyePlZG1GMbePCq01qIiWqqvRPFVU7F+FORPlcO9JyMl7pJHw2rnKrnKvO7qqrar\r\n8Zywjg05CNIdIIiVcLfclREZHdDeSRkZORkdjJ0jIyMfS0ZrX6xiNclos0SKi9UVOdvRTT5aqmJK\r\nqdFRjvxKfJD/AEHWS/UtZz+8lM/ih+gf5zdofarD/e0H5h1a/PPuT7YZPy8v55iUtR6TJSkeQk6X\r\nTpSRmTiHMyctJS0vKTBxoZQYxxpeEkkL10ESVaxG5ERHgQ+li6RpGFiPwMLFhhgl5ueNkTGRv5mo\r\n13MxrUa7maiNW0W0REXoaGfU9Ry8hmZlZEsksdcr3Pc57eVVc3lcqq5KcqqlL0VbTqb1+jEstZmU\r\n6RPQkmZWztClpiBpPXNRIMxL0iQgx4SytzJ6sSFFhwyUky3GRjhXjrtXa+Lwc3Lk4um4sckeBkOa\r\n9uPC1zXIxVRWuRiKiovVFRbQ5L4Xbg17J4g6TBkZuRIx+Q1HNdNI5qpS9FRXKip7FQ+piOj47FQA\r\nOqx9KnpdNquj1orQKnT5GowYd81rosOFPykvOQkRSsRqlERDmEqIlMZk5E7Gwzb7DWl6ZqvEDV4d\r\nUxosljdPtGyxskRF9JhS0R6KiLS1adaUx47SGoZ+nbSwpcCeSBy5aIqxvcxVTuZlpVaqKqWiLXh0\r\nOkb+g2yX6lrO/wB46Z/FDs8+c7aH2qw/3tB+YYZ/PPuT7YZPy8v5xyw9DLdRJ3w9JhopWdqcgU/S\r\nbPW4qV5tQStGvLwF3U2Vn7w6LHmU7DR9Z06RhMZGSlLSkyMjMcVdpzcMu2+Bu4MyB/JJPCzFb619\r\nKmjx5ET29zJIvsRFXxN78F9Kbq/ErTIZWc7IXund6k7mN8jHL8EiMr2qh9LgdHp2OAAdWL6RzoRd\r\nIF0hFc0X7ktG26Ks250crAQ7W3q3rz1Pt/dhZOWr16E3FRZiw9BjSNs65TZ1cSl0wqpGTMQZc4JI\r\nqSy6w4yUlD514Dy8NsXcj8riVqPzPxGonVIsiR8qItrE3uIpVZzry8z1pUY1yNVHKhsHiHJu1uiK\r\nzZ2J6XlvWkt8TGx3/wA47vXsR3Kl01LtytVUVqKcAVL6BPpRKJJQqdSNECPTpGAkkwpaUvWuAgwy\r\n4qMkWq85R/jKU5meJmZjss0rtNdmvQ8Jmm6PrMWNBH0ayPBz2tT29MTqq+bltyr1VVXqYa6hwf4x\r\n6tlOztSwHzzP6q5+ViuX4Os/RE8kSkROiIiHuRugj6VGYhRIExokzkxAioNEWDGvYuBiQoqFEykR\r\nIa7VGRke8jJhrZu1V2eMmF0GTrzJGPSnNdhZ7muRfFFRcRUVF9SoaaLglxYgkbNDpjmPato5uTio\r\nqL60VJ7RfahyddBF0WnSJdH50gU7eRb64mq3a6Ol7Vz9trCXqwzvLunrtEp9fkI0ray7+sQrO2Wt\r\nBPTcSIU9JxZGAuFKL8mTORyI0QI0Qk4D9pLV+CmvRwalws1Jk73yXJjNx8qJIlVFt8SzQRtSN/Tm\r\njR3vHNTkTlWmZVcJoeI2FDJp+/MR0fdtTu51lgkWRL+tkSOV7le3yeqe+RV5l5kt3dUGJJzOAB0b\r\n/pQF10nZzS0uOvWk4aYJ3n3IxKBVEphoIpqs3b2smkLqERZYqiKkaxIS5vsTAQw7U+wdr8mZw+1b\r\nbsi36DmpK32MyYW+99VI+B7vhephT2ndMZj7l0/V2+OTjujVPbBJd/CqTIi+xqHIt9F3uok6Fowa\r\nQV8sWQKDWLxb6pKwsOdiJ/CTVnLsbHSlUkTgKPZC8utHUUKZnXDN31Etwv28twy5m/tH2019xYWC\r\ns6t+xlypntdft7vHiX4F9qnIXZl0puPtPN1dzKflZPIjvso4Y28vxI+SRPhs7PQwUMlAAPmCdOTf\r\nbWdObpQ7+Ju0tYm6hcposWjqGjXdLZSFNTcOlqqN3c2dPvVrK4SVlDNc5alNTTGmoCUrmIMCTgLW\r\nqHJo1uxvspcC8HX9vM3bueNVxJHczIurVyHJ4K5yU7uY210RffyOelojXNdi5xv4p5O38z53tBci\r\nZatRXydF7lq+CNRbTvX9VtU96xEWlVyK3julLPUKQlkycjRaVKSqEklMCXp8pBgkksG1IaSI+/bv\r\nHYPh7e0DT8dMTBwYIYkSkYyGNra+BG18PrMRcnW9YzJ1ycvKmkkVbVzpHuX7qqZKqVj5+ydo7NXt\r\n3PTcWwN792to6Lbyw1o7OFCkI8tamytSh12iTiIKC6opiHMwYcWDG1X1yT1mshyHCnFngXtreGhZ\r\nORoeJHjagjHKiRNSOPISl5onsbTOZ6WjZERrkfXM5W9DlHh5xZ1vb2qQ4us5D8jBe5Gqsiq98NrS\r\nPY5bdyt/VMVVby3yoinYGgfTM9LGDAgwpvQ90fI81ChQ4czHK1d40uUaYQgkxopS/XK6vWURnqax\r\n6uxzYdWDuFWK1ytXLeleSxpaexffGcya+5URUjRb/bf+h5f5M30qv2G+j7/hjeN/GifQrxf14/5N\r\nPzi/N5/9iT77/wBDKlvfpZd/GknYW22j3eDoh3E0+xl9tj7T3W2gqFOtdeAuoU+StzRI9nPL5Api\r\nLqFHgrmERYKz+wtJK2kOQuE3DXAwuJmhZkmoyQrFm472PbGy0kbIixIvMqpyukRjX2n1iuNp7816\r\nZdl6o1mM2ZFxpUcxXORFYrFSTqiWiozmVtdeZEOGKckJKowFStQk5WflVGhSpecl4M1AUpB6yFKg\r\nxyUkzIycnLAx3DZuDg6jAuLqMMeREqoqskY17VVFtFVrkVFpeqdOh10YuZl4MyZGFK+GRLpzHKxy\r\nX0WnNVF6p49Tla6CKzNnaf0r2iXOSNAoslNwane31UzKUqRlpiF1lwdqoa+rjQYaVFrJUaTY8SMy\r\nPAxjF2qdtbcwOAmvZmBp+NBKz0LlfHBEx6XqGI1ac1qOS0VUWlS0VU8Dmjgnr2t5vE7TMbLzJ5Y3\r\nekW18sjmrWJOqW1zlRaVEVLToqIvkfSkHTadgAAHTC+laUakVa8HQu+taVTan5PY2+vqPrCRlZzq\r\netrdm+s6ryhKtXW1U62qzsT7CHYj2D9G0fVsfdC6riQ5Xdu07l72JknLzJm3y87Vq6S6q6S/BDFP\r\ntNapqemv0X5nZEsHOmXzd3I9nNXo1Xyql1a1fha14nUm/QbZH9S1nP7yUz+KHYL8520PtVh/vaD8\r\nwxW+efcv2wyfl5fzzG5WUlZKBDlZKWgSkrBSaYMtKwYcCXhJNRqUmHChESUkZmZsRbR9vGxcXBx2\r\n4mFGyGJnRrGNRjW9bVGtaiInVVXoniqqfJyMnIy5nZGVI6WR3i57lc5V8OqqqqvT1r4HOH9HmL/X\r\nPrqv6wb4f8384MVe2kv+8dP+7MT/AC3HOfZy/rip+5Z/xxn0OB08GfAAHSS+lJF/0y+jR/YLrX+X\r\n04OzrsC/8mNxfurG/inmHPaj/wCMtH/vWR/lxHV6ZsTGf9mKl+o5wfo6mkx9z70lEtdTV54pOwmm\r\njdvULtZpCyNEqm+C6qDN3g3Wz8zHdiVHpqrTUiCk0nrxpqAkjI/tddfbp2OskOnb8xWeF48yp4Iq\r\ndWKvrc5Fr2Ni8DL3szbl54c3a07urFSaNPPld0eiepGuRF+GQ+hiOtoy0AA6M30mzR7/AEC6V91u\r\nkJS5FMGkX9XbHRK7MQZYy8ot9dNHhUibmpyaR5pqi0OeoUCClXnGUqsyNSSZHat2Ft5fNXYGobNy\r\nHXJpOT3kaKvhBlorka1PGmzxzucqdLkTwVeuEvaZ2/6FuXD3FE2mZsKxvVG/87AqdXO8FV0b2NRF\r\n61GviidOtORDOJVMZ7PpudE7o9q0Z+j80bLup6RiU+01SsLLXkW1gTCUJnoVrb0I67c1On1Dq8Di\r\n09E7BpeDsmWSTqbWPos7QW8U31xg1zXIno+Bs648CpfKsOKiQMc2/KTu1l+F6rSeB2acL9vrtnYe\r\nm6VI1Wy90kkqLVpLNcr2rXT3rn8iexqdV8TkVHDRv42faf8ApR0vQt0MNI7SdqSpVU1dPdhXqxZW\r\nRnIqIUGuXh1OGmzt2lmzUslY1K0E5TZEiJKj/C4JUeB/T0XTJtZ1bH0vHRXPnkaxERFVaVeqoidV\r\npLX4jT5eRHiY0mTKqI1jVcqqtJ0TzVfA+VvQpaqQaZBiV6oTNXtFUYs3WbTVidjLmZ6s2nrk2usW\r\niq07MxHVEizM7Hjxoi1GZmanM3HftsHbMGzNm6dtqFqN9FhY1yJ4d4vvpFT2LI51eyjq53hr0m5d\r\nzZutvVVSeVytvxSNPexp8TEbfts5VuhmuolL4ekv0U7O1OQKfpNnrcVG82oIWjXgQF3VWVn7w6LH\r\nmU7DQdTp0jDIjcjUtKTIyMxxr2m9wybb4G6/mY7+SWeFmK31qmVLHjyInt7qSRfgRV8Td3BbS26v\r\nxL0yGRnOyF753epO5jfIxy/BK1le1UPpZjpAOyAADqxfSONCLpAekIrmi/clo23R1m3Ojld/Dtbe\r\nrevO0+392Fk5av3ozcVFmLD0GNI2zrdNnVxKXTCqkZMxBlzgkipRC6w4yUlD514ES8NsXcj8riTq\r\nPzPxGonVIsiR8jUW1ib3EUqs515eZ6oioxrkaqOVFNgcRJN3N0RWbNxPS8t60lviY2O0/qju9exH\r\ncqXytS7crVVFainANS+gV6UKiSUGnUjRAjU6RgJIoUtJ3q3AwIaeKjJFqS1lHtUpTmZ4mZmOynSu\r\n0z2bNDwmabpGsxY0EaU1keDntb8KomJ1VfNy2qr1VVUwz1Dg7xk1bKdnangSTzP8XPysVyr7OuR0\r\nRPJEpEToiIh7kfoJOlQmYUSBMaJU7MQIqTRFgxr17gYsKKhWCkRIcS1Jkoj3kY1s3ap7POTE6DJ1\r\n5kkb0pzXYWe5rkXxRUXEVFRfUqGmi4I8WoJGzQaY5j2raObk4qKip4KipkWi+1Dk36CTotOkR6Pz\r\npAp28i3txVVu10dL2rn7b2EvWhHeVdRXKJTq/IRpW1l39YhWdstaCem4kQp6TiyMBcKUX5MmcjkR\r\nogRomrgT2kdX4Ka9HBqPCzUWTvfJcmM2DKiSK0W3xLNBG1I39OaNHe8c1OROVaZlZwlh4j4UEmn7\r\n8xHR921O7nWWCRZEv62RIpXuV7fJ6p75FXmXmS3d1MYlHNAAHRy+k/XXSlndLS469aThlBO865GJ\r\nQamlCEJKZrN29rJlC6hEWWKlqkaxIS5vsTAQw7UOwhr8mZw/1bbsq36DmpI1fUzJib71PYj4Hu+F\r\nymE/ae0xmPuXTtXb45OO6Nye2CS7+FUmRPgah1nGz7RnPZjJYb0ALK2eIWLDCWLI3pP5YBaqLK25\r\ngslhhRYbcJaiw2/xCxZWCxZG9wirYsNu9QWLKwWLDCiz0Wxzj2DVWamw3p4BfmLDBZbK3DJhfrJY\r\nYLAYLFhgsWG+b+wSxZWzyCyWRs8hbLZ9LvoX8OjA0Qv6wK5/nArA6K+0d/Xx3L+7Hf5DDst4Wf1u\r\ntH/csf4jlAHCZv4yLehbmWuwuzvEvKnZCPVZO7ywtrrczdLlY0OXmalLWSoExX48hLx4pGlC4yZc\r\n4aFqIyIzIzIyIecTFllbGnTmVE+6tEVaRV9R0/8A+TOdGD9hjf1/h1d77hyX9C7Vv1xD/wCP80+J\r\n83cb7B34Pyj+TOdGD9hjf1/h1d77g+hdq364h/8AH+aPm7jfYO/B+UfyZzowfsMb+v8ADq733B9C\r\n7Vv1xD/4/wA0fN3G+wd+D8pwEaeunNZPpHNJW1uljYiwtoruLO27o9kaPJ2TtTUabVK1IxLD2cl7\r\nITcaanaSRQFFHiya40Mk4khREeLjth7KGhT7d4L4ODkvbI50+W+23VLO9tdURf1N+HmYKcedRj1D\r\niLO6NqtSOGBi3XVeRH309j6+I2bNtGSFnDVn0Jfo6MKXh9GbYtUEklEjXr3txJvVZzmCtCmEk1Nv\r\n6pMLbubcw6aO2XM6Xjvnsd4R4+G1Pg9HY78blOwbgExG8McJyfqpMhV+Xen+Y51RiuczAAfJj0hp\r\nWPB0i9IuZnkq+tazpA322hrcSKSijRq5aC82qVirRI5rdRq6+MssTciIi3Dvr4IaNi6Dwk29hYjU\r\nRH4GLM/2yTwsleqr5++eqJf6lETwREOsziZqeRqu/tWyMhbVmTNE32Mhe6NqJ6ujbX2qq+KqaRNn\r\nmOUzYthgsWbzOjjKpwOkN0FqhRUK+tZDSxuNTCiw0qVEhUqs28lLOWqbUxJK6POT8Ne7VUZngQ4B\r\n7T2gYm4OCOuJkonPhwLlROX9S+FUcte1zOdn+EcrcFNWyNL4j6e2FV5clzoHtTza9q1f9y9Gv/wT\r\n6lo6PzsXAA6vf0pMn0YtGr+zxVf8308M4+wZ/XO1b/ut/wD5vFMce01/yKwv3cz+IyDpFsO1uzCC\r\nzVbRn04r9+jS0k7G6XdxqEWgp0pTv0C32XYVGamJazl592E5UUVCNRKvEgJiKlY0GOXX0+qw4S4k\r\nnNJgRDhxpc5iWjYXdrnhV89umY+7MeNXLjM7mZzUt0TeZXRS15sRz3sl9jo/CuZuS3Z93tHpWVPt\r\njKeje/d3sKKtI93KjZI7+yVrWuZ8D/NaX6RHR89KjocdJRd9T7V6Pd5lLK28Kly85ba421c7T6Nf\r\nDd9OLhPNy1bskqKpc1KQ1kpEKr01UxIxmPUj65LQjqr1nQNT0KdYc6NUba8r0tWP9rXfc6LTk80Q\r\nzOxsuDKZzRL8KeafCn+yHI0PjGpAAADTG9a5W6C/SzUex1812NhL0rLzBK1qHbyy1GtPIQoimMpm\r\nUhVeDF6iMkyJUOPANERCiJSVEoiMvuaBubcW1c5NT21nT4GQ3wkx5XxO+BVYqWi+CtW0VOioqHz9\r\nS0nS9ZxlwtWx48mJ3iyVjXt9fg5FS0Xqi+KL1Q6vHSP/AEcyx8zZy0N72gIio0S0tKl5yr1XR0rd\r\nWmavRrSS8IlTMeDdfaOsxFzcnPkWt1NLqUzGgRzMocGPKGlMOLnjwT7aepxZsO3OLytmx5Faxuos\r\nYjJIlXoi5UbERkkfhzSxta9nVzmy2qtxp4idnrAnx5NW2IiwztRXLiucqxyeapE5yqsb/U1yrGvR\r\nqd2nU6dVSplRo1Rn6PV5CdpVWpM7NU2qUupSseRqNNqMjHVKzshPyM0lMWDHgxEKhxYURJKQojSo\r\niMjIdlUGRBlQMysZ7ZI5Go5j2qjmua5La5rktHNcioqKiqioqKhh3NFLjyugyGqx7FVrmuRUc1yL\r\nStci0qKi2iovVF6Kekw91nrs7FX0Y8m6QS8P/wA1O8P/ADn2LGFPbuW+EOn/APe+P/5PPMiOzN/y\r\n8y/3BL/5jFO+aOpgzmAA6Cn0lgv9cUo3/m5XZ/5T2iHbZ2FV/wB57N/72yP/ACuEYMdpdf8Ad7jf\r\nuGL+PyTr5t7fSM0LMeLDBfkLK3LALJYbd38+wwsWGyfELAbLhYsEWeYWLDd3PcILK3dsx+AXYsMF\r\nizuc/RXf+xbpg/1/3T/5O1kdX3b567v0D9xzfxyGanZg/wCTOpfupv8AFNO14MBTJsADpXae/wBK\r\nrvg0NtMjSI0XaLohXbW5pNyN5FWsNT7XVS8+1FGqFelqfChRoc/OUuUpkeHBiKKIykIiqLByPFi5\r\nP0Th5Dq+lQ6k7KWNZUVeXu0WqVU8edL8PUfDytYXGyHQd3fL53XlfqNon8mh35/sF7p/34rYfmcf\r\nV+hXB+vXfJJ+eaf5vu/sX/i/9B/Jod+f7Be6f9+K2H5nD6FcH69d8kn54+b7v7F/4v8A0NDNJT6T\r\n3ex0gNyVudEO0eidd5dvRb4YFElp22lEvKtJXqpRE2NtLJXiQVStJn6bLwoxx4lIRKq14ydVMRSy\r\nc0kk+b+zhw8h0njTomotynSLE7JXl7tEv+k8hPHnWvH1HGfGPXHScNtUj7tE5mxJfN68iJPV7TiK\r\nYds9nX/Ybux9gtiz6TXQgf7Vlolf1t3g/wCeO0Y6Pu09/X43H/f4v/LQHZRwh/ra6R/eP/jecrQ4\r\nFOSDSLSA/wCwNfb/AGIryf8AI2dH1NE/46xP7/F/GNNNmf8AA5f7h3+Sp8mhh+iazqYsrZ2cwv1k\r\ns3w9GaX+uGaFP/nN3N/5cSY4i4+L/vL7n/7uyf4tTkPhOv8Avj6P+6Wf5z6iQ6IjsuAA6s/0pf8A\r\n7X/Ra/sxWvP/APAohnT2C1riHrP/AHd/98wGNnad/wCR2B+7G/xEx0pGzuHahfrMIbOeP6ONBlon\r\nSUUJccknEl7mL1o0mamdMyqTk4CjQ+/qVxSw3PuGIfbbndFwU7tvhJn4rV+BGzP/ABtQ5/7NzEfx\r\nDe5f1OJMqffwt/Ep9BAdQRnkAAAAAAAAAAAB07PpVSoB2i0IkJbylNE0glRfyuoXPWNKXcuGsmK3\r\neOyH3P8Ac7ud1t8kXTV+6mf+RDETtT0jtCX2Zn/3qcn/ANHSgy0Loz7GrgEkosxexe1GnDSzqmSr\r\n6ICDW2/qUQix3NuYcC9sqd0vHbPY7wjx8NqfB3DX/jcpyn2f2I3hhhOT9VJkKvy72/iQ51Biwc0A\r\nAfJt0hkRS0hL/o0yR+Wz1+d8FVqKlJ1VxKpWLxalVKpGWlWJKXMRoi1Pi5m+I77+D2nwaVwp25hY\r\n7URqadhuWvs5IGSPX43vcvxnV/xEzJs7fmsZEy2vpmQ1P7mOR0bE+JjUT4jSEi9A5Js2YRss3aIi\r\n0Wz1Dp0iZmZyUoZm5/7GguZmbmZnqjSLgYCrawR2v7Rv5DUpnZiJSSv++d+UfV0h/vGT/c0H3CfM\r\n/T0/5iP7xv5B6dm/2Z/37vylKnyKTJSZKUSojdJlLwSNJlsMjIiPsFTBwGqjmwxoqeCoxvj9wi5u\r\nYqcrpXqn9078p7bDVmms5aeguJulV0T/APynex/mGtSMc+1ov/4vu4Pgwv8A7I4Zy5wJX/fV0r/6\r\np/8AKZB9IcdKh2LgAdNb6VH/ANkHQ0/rNvn/APfdnR2RdgD/AIPuv+6038WcYh9qj6/QvgzP/vU6\r\nnLY59JjsUsxHsMKiizm5+j0E3Se3Vf1g3w/5vpwYndtFf94+f92Yn+W4577OK3xGT9yz/jjPobDp\r\n5M+QAOkp9KQ/7ZfRp/sF1r/L+cHZx2B+m2dwr/8AOsb+KeYb9qX/AIy0f+9ZH+VEdXxhn9ZinZ+p\r\nO2FrrsrQWNvcu9jlK3iXM24sfe/YGZPrGhWuu2tBAtZRoa0wlJUqHHiSvk0VBKLWREUkzYzHFvGj\r\nZ8W+eG2qaE5vPIsTpYuiKveRorqbf6p7eZiern8jf3DHca7Y3tg6kruWNz0ik60nJJ71VX2NXlev\r\n9yfWO0fr6LIaR1xl0F/tgZjymxl8121jLy7NrUZnGhUq2dAgV6Wk5tJkk0R5co/UTENSSUiKhaFJ\r\nJSTIuiPLxpcPKkxJkp8TnNcntaqov4jszje2RiSN8HIip8Zq8NOeZwcfSENHs76+jxtbbGmSK5y0\r\n+j1a6zd7tO6gk+Urs8mKuyFuIBqV/uEKm1OJVI5OX+wkmTmnVPKfsebxTa3GXG06d/LBrEUuG6/D\r\nvFRJoF/unSxNiRf+1X12cK8fdvrrnDvIyIm80uA9mS2unvW2yX4kie9yp62p5nSS0CdH9WlFpk6O\r\nlxUSVKcpNubzaEm1kuZLMl2Ds6pVq7fmXV46xUSRnzS5kWszmRYjtH4v7w+cPhnrW62OVsuLjSd0\r\nqeWRLUOP4/8AbSMv2WYT8PNATdG9dN0R6I5k0zVkReqLFHcsqfHGxyJ7VQ+pjDhw4MNEKEhEKFCQ\r\nmHChQ0pRDhw0J1UIQhLERERERERMRDoSVVcquctqp2hIiIlIfsQHUM+lU6TSoNltFzQhs/UVJmbw\r\nrUz+kde1Jy0aESysBdas6DdxR6pLm6lS1VtLORZ2GxERxKLtNjSeVvZC2Mm6+KMWp5LObH0xqzuu\r\n/rmqnJ7F9+rGqi+LXr0U4Y47bm+d/Yk8MTuWbNVIGfA9F5/b0jR6oqeCoh1BW4juIs68bOeH6OTB\r\nlonST0JccknFl7mb1osnrM6ZlUnJwFmh9/Urilhiz8xiJ22Z3xcFe7b4S5+K1fgRsz/xtQyA7NjE\r\nfxDe5f1OHMqffwp+JVPoGDqFM9QAAAAAAAAAAAOnf9KnVAO0WhGhOr5Smi6QSo35XULnrGlLuT7N\r\nZMVsOI7HuwC5e53W3yR2mr8apn/kQxC7VNI7Ql9mb/8Aep1I2ztIx2LGI1ht+OzvILFhgtBYYLoW\r\nVhLFhhbFhs7yEsWG2hdiw2fEL9QsMBLDfMLFhsmWwLFlYSxYYAeiw1dmqDfH4hYsNnxCxYbLhYDH\r\nnmFksrOFiw3w9QWLBEFiwwWLDdwliz6XHQwf7WBohf1gVz/OBWB0Xdo3+vjuX92O/wAhh2X8K/63\r\nWjfuWP8AEcn44UN/mhOlIhEXRl0i4cRJLhxLib3ULSrElIXd/UEqSZcDLAfa23FHPuLAhmRHMfkw\r\nNci+CosrUVF9ip0NHqD3R4E8jFpWxvVF9So1aU+SF+ldd3+o2z/P+Z8D3Dvj+hZw4+0uJ8i06zfo\r\nhb3+2mT8o4v6Vt3f6jLP7P6XwPcH0LOHH2lxPkWj6IW9/tpk/KOJ+ldd5+o2z/8Ae6D7SD6FnDj7\r\nS4nyLR9ELe320yflHGbaXSabRJKFTqRIy9OkIHWKgykpDTBgQzjRDjRTRDTgWspRqPmZjd2laTpm\r\nh4LNM0eBmNjsVytjjajWtVzlc6kTp1cqqvtU25qGpZ+rZbs7UpXTzPpHPevM5eVEalqvqRERPYhi\r\nDD6Nmhs72X0Ym8WFaXQgvXu/jRYf1jdppHWiKDLpXrRE2ctlYKgVumTURB4p6yfRV4aWwMobli7d\r\nP/ba05MLjUuWl/03g4sq/C3vIenxRJ8amfXZ2zFyeHEcC/8AR8ieP7qtl/8AulfEdkQYhnOoAHzY\r\nOmf0Xa7ow9IDfjKR6XNStib4rT1S/G7mqKhr8gqdGvGqUWu1+RkYrEkvqutRKjTlQX1kIhQln5sW\r\nGau7jswb8w98cHdK7uRFytLiZgZDP1THYzUjicqeP1WBI383grlcidWqiddPGrbE+2t/5r1aqQZz\r\n1yondad3q80iX4W2VXpy9abyL4OQ4qWz7RkHZxNYbJBfQWc4n0fnRjtBfp0gFibx/q6Ku7/RskKh\r\nefa+qqgGuTTX5umTVAu6oaZkz1UTUepxvrGEljNUGnzLMadYsU+2JvrC2twfydCV6ema45mNCy6X\r\nu2vZLkSV5sbG1I18KdMzx8DnPs/bbyda35HqyJ/S+mtdK9a6c72ujiZ49FVVV6dF6RuTpaKfQxHT\r\ngZ+AAdX36Uj/ANrFo1/2d6r/AJvp4Zxdg3+udq3/AHW//wA3imOHac/5FYX7uZ/EZB0jWy47WbMH\r\nrPHFgwpiFEgRoaI0GNDXCiwoqUxIcWFEI0RIcRCyMjSojYyPAywHrliinidBO1HxvRWua5EVrmql\r\nKiovRUVOiovRTzjlkhkbLE5WvaqKioqoqKnVFRU6oqL1RU8F6m3GrXKV+y9pZK3ly1rarYa1NHnU\r\n1SjxqXWKnQanRaigzNE5Zu0tJWiak4iXPUZRGl2KIlOBYmcQezLi6m+XN2ZJHG2RVV2HPaxdVtUi\r\nfTlanqY9rkRfB7W0iZFbO47zYcbMLdcbpOTomTFXeezvGWiOX1vYqKqeLHLarye6P30hTpmdD2Xk\r\n6NaO9Er/AGxlJgS0vAo2klZMrz4KYEp5ilxr0KDMU600da0MlSpy0UVmJRJJWsasNt4dn7UtFc5+\r\ns6TkYSJarLCnND9+zvIURPGkVq1+DIrQOJmha2jU0vUIZ3LSIx68kv3j+SRfhpTnO0dPpmt3NSiy\r\ntM0r9Dm11kU60rDmbY3B23pVt5aIqIepNTCrBW9RRIstDh/bIkV+aWpLkSdZJa/DOdwty2Jzadkt\r\nk8ekjVYvsRFbzot+1Gob6i12NekzFT4Fv8n+c7KWhj0vPR5afEzKULRx0j7I1u8GagRo36UtsIc/\r\nd5er/KsMo06VPsVbKFJzNTRAQZKjTFH8rgILE4uBtsXVNu61o/vtQgcxv2aU5nXw9820RfYqovsP\r\nrQZmNk9IXoq+rwX7i9TkpHxDUgAdGb6Sroj2dui0irt9JaxFHg0mk6R9Jr8lb6WkICYMid6Vgzk0\r\nzVoIiYbJhxqzTZ6VVFSlJdbHk5mYWaosaIo+1bsP8Rc3cOzc7Y2qyrJJor43Y6uW3eiz8/1NL6q2\r\nGVjqtfetlYxKa1qGE/aT2nBpmuYu6MJnK3PRzJq8O+iRvK5f20jFpfX3aqvVVvrSMwzksxns7FP0\r\nZAm6QO8P/wA1S8P/ADnWLGFXbt/rQ6f/AN74/wD5PPMiezL/AMvcv9wS/wDmMU75Y6mjOcADoLfS\r\nVi/1xSj/APm5Xaf5TWiHbV2Fv6z2b/3tkf8AlcIwW7TP/L3G/cEX8fknX1YZnmO5W+e5gsWGCyWG\r\nz7Qui2G9HILJZGCy2VskJZLDep/SLYsrCWLIwdC2dzj6K+TXXaYP9f10/wDk9Wh1f9vj/lfoH7jm\r\n/jkM1ey//wAmdS/dTf4pp2uhgOZOAAfMH6WSk0uY6SXTOjR6bT40Vd+lrjXFjScvEiLMoqCI1LWk\r\nzPvHdv2cdJ0mfghtyWbFie92Mqq50bFVV72TxVWqqnXRxi1LUYeJerRQzyMakjKRr3IifUY/BEWk\r\nOPP6jor/APUimfuCU9iBzZ8xNE/WcHyUf5pxp819V/XMvyj/AM4HQqL/AEopf975T2ID5iaL+s4P\r\nko/zR819V/XMvyj/AMp5YNJpkvETGl6dIwIyH1IsGTl4UVGsk0q1Vw0kZORmW0eyDS9LxpUnxsaK\r\nN7bpzY2Ncl9FpUS0tFVOi+Cnql1LUJ41innke1fFHPcqL1vqiqqePU99h9A0dhs4hYs+kv0IP+1Z\r\n6JX9bl4P+eO0Y6Qe07/X43H/AH+L/wAtAdlfCH+tro/94/8AjecrI4GOSDSLSA/7A19v9iK8n/I2\r\ndH1NE/46xP7/ABfxjTTZn/A5f7h3+Sp8mzV3eA/RHZ1K2VvV2iWLN8PRnF/rhehV/wCc3c3/AJcy\r\ne8cSce1/3l9z/wDd2T/FqchcJl/3yNG/dLPxKfUOHRIdmIAHVp+lK/8AYA0Wv7MNr/8AIohnR2Df\r\n64es/wDd3/3zAY19p7/kdgfu1v8AETHSmYdp9mD5y3dBjeRBu26UPRlXOxocvSrdT9v7tqjFiK1P\r\nw1rbsqxAs5Bhm5Eao1Zh02CRHt18POYYr9sjTkz+BmbP1vEyMSZPlUhW/ilX4znLs8ZvovEqGH9c\r\nQTx/cakv44z6QI6cDsCAA6i/0j/pHuk36PO+rRznNEC3UKz1zF7t11pJeqU2JczYa8UoV51g7Vqi\r\nV+dXXLRUmemIHlNKrNFRDlOuTD/ldcSGjWVFM+W+GWwl3zDlx42DkZkuMrFd6OyV/K2RHI3mSNrq\r\ntWOpVq+qeRtbcm4sPb/dPzsqHGbLzI1ZnsYjlbV8qvc2+ipaJ4HW7/kk/p0P115P/Feuo/5OjlP6\r\nX/UftHqXyGT/ACZtf6JOgfbXC/fEP55P5JP6dD9deT/xXrqP+TofQA1H7R6l8hk/yY+iToH21wv3\r\nxD+eX+ST+nQ/XXk/8V66j/k6H0ANR+0epfIZP8mPok6B9tcL98Q/nj+ST+nQ/XXk/wDFeuo/5Oh9\r\nADUftHqPyGT/ACY+iToH21wv3xD+eP5JP6dH9deT/wAV66j/AJOh9ADUftHqXyGT/Jj6JOgfbXC/\r\nfEP55orer0hemv0gs5R7SaZ1rYdqKtdvLTVDsEmFdxZe7lEhTq/FRP14/I7M0+QTMnFiS8s8SMlZ\r\np1CSkyJ3zP7KPD2XYun61JPhZGG7MkxkrIZIxXJC2alakjW2iLKtqieK9fIxl7QW6MPcWXpcWFkw\r\n5LYGTqqwvY9GrI6JKVWK6lXu+iKd1D6MVeRCtLoT3t3dR40M6ndjpFV1cGWSt4iLM22sHQqzSpmK\r\ngzcusqEGsIJiYyh4Y6ww97bGnJhcaVy0v+m8HGkX4WrJD0+KJPjOdOzpmLlcN2QL/wBHyJ4/uq2X\r\n8cip8R2RhiIc7gAfMY6VS42raP8A0gmlLYeoykeWkKveraS8mysWLBVDgTlkb0p1VvqCqSimWrFh\r\ny8OoHIriIcuugRUGy0KSXef2e904u7ODW39Qx3IroMSLElRFtWy4jUx383qV3dpIiL+pe1fBUU60\r\neLeizaDxE1TGlReWad+QxVSkVmQvepXrRqucy/WxU8UU4+WHMyL1OOLKSVKUlKSNSlHqkkic1GeB\r\nERFvEVyVahLXohyKQOiR6SaZgQZiFodXxnDjwocaFr0aRhLOHFSS0GqFFmUqSbGTpUkjLYZEY4Vd\r\n2jOCDHqx25MS0Wl6vXw+BiovxdDkxODnE1UtNImpf20X8oeX70X0lP7Dq+H+9VN/0oRe0dwO/ZJi\r\nfdk/ML9Bvid9qJfvov5Qwa0XRWdIbZKz9dtXabRNvWolnLMUap2htBWahT6ZAkKRRKLJRKlVanOx\r\nzmmRBl4EOJFiK3JSZjUYfaC4M6hmRafg7hxZZp3tjjY1ZFc973I1jWpydVc5URE9anqn4RcScaB+\r\nTPpUrI42q5zldFSNalqq+/8ABERVU4/2fwHMdnG1nLR0F5N0qmift/6p3r/5h7UjHPtZrfZ+3B/9\r\nRf8A2Rwzl3gQv++tpX/1T/5PIPpCDpXOxkADpsfSoSe8HQ1L/wDI6+f/AN92dHZB2Af+D7q/utO/\r\nFnGIXap+v0L4Mz/71Op0zeodidmI1lbeLYs5uPo9Jf655dV/WDfDu/8AsfzgxO7aK3wQn/dmJ/lu\r\nOe+zgv8Avjp+5Z/xxn0Mx0+GfYAHSW+lHk+kvo0/2C6z/l/ODs37BC1tncP7qx/4p5ht2pv+MtH/\r\nAL1kf5UR1fWIZ+X5GKNgy9XDkJYs7uv0XHSa/R9ofXn6JleqJR7UaIl585DstKx5mLGml3I30x5q\r\n31hYiTmPOUiTrBWlpSEwzNEGDLS8MiQRpSOkvtKbG+cbinn4sDOTGyXd9DSU3kfTka318rXNaq+b\r\nkcdlvCbc3z07Hws+R3NMxndy9bXnZ71yr6uZU5kT1Kh2dhwCclGR7zbv7PXsXcW+uutbKonbLXj2\r\nLtPYW0cotCYiZih2sosehVSFqLwMzgR1s+8fU0TV8zb+s4mu6c7kyMKaKeNydKkie2Ri/E5qGk1D\r\nBx9TwJtOy2o+LIjfG9q9UVj2q1yKnqVFVDqHfR2NDi0Fi9MzS1t7b+nKTU9FqFXNH6BEXLmiTO8m\r\nu2rmaXaWcp0WMWv1knIUKZgKItkKopNX20jsW7ZnEvD1bhptzSNIf9T17k1FUv3yY7IWuia5E6U+\r\nSdF/uoFrwUxL7POzMjTd36znZyLzaYrsJq1TXSrIveKl9ba2Jv8Agy+dncpHWqZfgAfL06TvSYPT\r\nE6RXSrvwkp9VQsTRrbquDuhikqFFlCu0uLixrIFU6TGhmrWla1XirdchmanNM2lySxIT259jbY/z\r\nt8N3bhyGVPqj+ZF/7JlonwKr1c1yJ/Y0MEu0fub5qbsi0KF1x4DPfJ/2klKt+umI1U/u1NkLZ3DL\r\n+zHSzlr6DO8iDdt0oOjKudjQ5el26n7f3bVCLEVqfhrW3ZViBZyDDMzIjVGrMOmwSI9uvh5zDFnt\r\nj6cmfwNzZut4mRiTJ8qkK3/gyqc59nbNXF4lww/riCeP7jUl/HGfR+HTmdgoAHUX+kf9I90m/R6X\r\n1aOc5ogW6hWfuYvduutJL1SmLuZsPeKUK86wVq1RK/OrrloqTPTEDymlVmiohynXJh/yuuJDRrKi\r\nmfLfDPYa75hy48fByMyXGViu9HZK/lZIjkbzJG11WrHUq1fh5G1tybiw9vd0/OyocZsvMjVmexiO\r\nVtXyq9zb6Kloh1u/5JO6dH9daU/xXbqf+To5S+gBqH2j1H5DJ/kza30Stv8A21wv3xD+eP5JO6dH\r\n9daU/wAV26n/AJOh9ADUPtHqPyGT/Jj6JW3/ALa4X74h/lB/JJ3To/rrSn+K7dT/AMnQ+gBqH2j1\r\nH5DJ/kx9Erb/ANtcL98Q/wAoP5JO6dH9deU/xXrqP+TofQA1D7R6j8hk/wAmX6JO3/trhfviH88f\r\nySd06P668p/ivXU/8nQ+gBqH2j1H5DJ/kx9Enb/21wv3xD+eaMXp9IXpsdIJN0i0umda1Fp6tdvL\r\nTVDsEmFdvZe7lEhTq9FTP14/I7M0+QTMnFiwJZ4sZKzTqElJkRmR5ndlPh7LsTA1qSbCyMN2XJjJ\r\nWQyRjnJC2alakjW2iLKtqieK9TGLtB7pwtxZmlxYOTDktgZOqrC9j0asjokpVYrqVUj8FNKm+fxG\r\nW1mOlhu34BYsMZeG4AGCxZWIL9Ysjd3HsAWVsRLFhgsBvdkjCxYb3hYsNnkFksrPn3iXQuiMLZbK\r\nwWQ9FnGqujVWG3MCKLDBYsauT494WLGr6m2eIWLDAq+YsrZ7AsBs+0SyEbHY4tlsrZ5iWSz6WvQw\r\nf7WDoh/1g1z/ADgVgdGPaM/r4bl/djv8hh2ZcK/63OjfuWP8RyfDhQ3+aF6UH/a0aRH9gu9v/ICo\r\nD721v+U+nfurH/jWGh1P/i3I/vUn+Sp8oBh+huzqcsMWcQ6iyt8AsWGz3B4iwwWSzsH/AEbDSpkL\r\nmNO21ujpaiopkbO6Xd1yJSysSamloljveuLmJ61lAo8GDELqkRKlQKxaVXWayVRIknLwSJajhknr\r\nj7eO1JJZNG3jCy+SOTGkVE8Gtej2cy/3Uq8qefvvUZg9mDWmrialoD3dUkZO1L8edvI6k9ndtv4U\r\n9Z34x1xGWIAGxfT56P65DpCLoiu1vYlpmjWhoMaaql2151CgSy7V3fV6ZhJhR48j5QyJqQmyhw4d\r\nSpcZRQphCEKJUGYhS8xB5V4R8X91cHdx/NzbrkkilRGZONIq9zkRoqqiOrq17LVY5W++YqqlOY57\r\nHbL3xsXRN+6R8y9YarXNXmilbXeRP9bVXoqL4OavRyepURU6ZV+X0eDpFrrrRTcndzYyx2kFZTym\r\nMVOtPYK3NlbNTq5Ij/lWLWbLXjTtJmZeYWlusgycSchoU5FHWllH2ZbU7ZvBnXsNsmuZE2jZFJzR\r\nTwSyt5vNGS4zJWuank57YlVP1CL0MOdd7PHEHTJ1bpTItRiv3ro5GRuryV7JnMpfY10nwmP6PP0c\r\n/T8vUtDIQ74qTY3RvsV5WgqvW7VWrs5bm1B05nix7O2Qu8nZ+HHjv5qYNSqMgnao4jEklaTefbT4\r\nRaBhPXbL5tbyuX3jIopIIub1STZDI3Nb53HFN5JXiqe/bvZ031qk7V1tI9Ngv3yueyWTlrxYyJz2\r\nra9PfyMrqvXoi90jQv0LbktBS5el3MXKUePCkUx/re11rqyqBM2tvAtVFl0S85aa1E/ARDQqIaEJ\r\nhS8vBQiBLwkphQUJIjNXWLxN4m7o4r7nk3PumVFeqckUTLSHHiRVVsUTVVVRqKqq5yqrnuVXOVVU\r\nzK2fs/RdkaMzRdEZysT3z3upZJXqiIskjkRLctIlIiNaiI1qIiIhu2HHpukADq/fSkP+1j0a/wCz\r\nvVf8388M4ewd04nat/3W/wD83imN/ac/5E4X7uZ/EZB0j228c7B2r2YO2fTP0d9Fjo49IS4S5i/S\r\nyGhdoeVKzV7119hrxqPOQ9Ge5yFrylrrNy1bTCiwI1DSuFFhHGOFGgxEpXDiJVDWlKkmRdEOtcVe\r\nLem6xl6czdesObBNJGi/NLOS0Y9zUWnTI5LRLpURU80RTs7w9i7EyMSLIdoenor2Ncqeh4y0qoi1\r\naRqi+Pkqp6lNZPve+gN+wf0Qf8Wm5j8yj5n0Y+Lv7KtY/hPN/lzU/Q/2H9pMD954/wDJmyrpCuiQ\r\n0dr+NEy9GwmjZo36Od0d+aJSnWlu3tTYe6C7a76qztcs1UYdUiWRmbTWdp8nHgS9ZlkR6cpS45QU\r\nRIsONGI0QjIcncHu0RvTaXELA1fe2t6lqWlczo8mGfMychiRytVnepFJI9rnQuVsqIjeZUarW0rj\r\nZ+/OE+3Nd2rladt7TsPDzVRHQyR48MTudjkdyK9jGuRsiIrFW6TmtUWqPnR3v6OsaxNsbQ3fXy3U\r\nzljLe2cnYtNtDQLS0GZs1aemTUM/sTB6sCY1VEy4URKzRESZRIalIUSj7WnbX4YcRtLj1qLFw9Qx\r\n8lvMzJhRqOci+qaFWvtF8UV1tW0ciKioYRM3Fv7ZOc7THZOThywrSwyKqtRU/wCzk5mKi+TkaqOT\r\nqiqlGmN1+h1etbq+G7ul6I0S2sW/WLbChT12VKs5EmlVqTtZTahDn6PV6PXpDUjU3yGNDTOLqMws\r\n4UsmGceNFhQoaoice+K/AHZ+gbZzty4OoJh42PE98kWW5roXNRq/U2Se9ej3/WxtckrnvVGoqKqV\r\nzPw/4zbh1jWcbQ9QwvSpJnta2THaqSNtUTnezq1Wt8XuTu0a1Fct11+xNZ+DWJegUSXtDNQJ6vwK\r\nRTYNcnZVHVSs5WIUkhFTmpaGydWHEjEtaE6pMRkTEOpV1cy8vh5Gaie0xcQHWD+lHTNLTovaN0nG\r\nXCKsx7/KhNSCDMuvVTJS7yowquuGR46iYseSJfM0vuGcvYNkkTiPrEafWO01VX4UysdE/ArjG3tO\r\nonzmYLvNM1qfEsE9/iQ6RbeHsHaiimD1nPZ9HAtdT7M9JFIUacmIUGYvBuPvTshSYcRRJXN1CSOn\r\nW9iS8Aj2qKVoczFMi/FQo9ww07c0L5uD2I9iWkWq4zl9iLjZjLX/AAnonxoZEdmd6N3/AJLV/VYM\r\nqJ8Pf4y/iRT6Ag6lDOsADridNZ0Ot7WnXeLYPSC0d7QWOh3g2esNL3c2ysRbeqzdn5S0FDo9Znq7\r\nZ2t2crcGXmYKZ6FEqM1LTUvOdTCXBKCtEZK4akRc0ey/2kdvcJNHzdo7wgmXDyJ1yop4GtkcyV8c\r\ncUjJWK5iqxWxMc1zOZzXI5FaqOtuPXGjhBqm/c7G13QJY25MMfcvjlc5rXxo572KxzWupyOe5FRU\r\nRHIqLzIradwFn9Hi6TkjMiuzu7URGZaxXv2H1TJ9pEqYI8eZEMu/pzOBip/wzK/ekv5Dgf6XTiR9\r\nhjfLp+acOV41gbR3VXhW8uutlLS8na+7e2dqLBWqk5Sbgz8rK2ksdW49na5LS09LGqHGhompeKhE\r\naGZpWREpJmRkMl9E1jC3Do2Jr+mqrsbOhiyIlcitVY5mNkYqtXq1Va5LReqL0OFtU0/J0jUsjSsy\r\nkmxZZIn0tpzxvVjqXzTmatL5oZkuIumq1/N9t0NyVCmjkKve1eVYm7mQqXkS6iikxrZWjlqB9cR5\r\nGHEhHFhSiY5zMZPWoLUQp1oJ1Fod3bjx9o7W1LdOU3nj07GnyVbzIzn7mN0nIjlRaV6t5GrS9VTo\r\nvgarb2kTbg13D0OBVa7Lmji5kbzcvO9Gq/lRUtGIquXqnRF6p4naP/kVOq/s5Kd/i4zP/LkYF/pg\r\nEH7FHfwkn8wMoPpWH/b1P3n/APhRf5FTqv7OSnf4uUz/AMuQ+n/g/Yo7+Ek/mI+lYf8Ab1P3n/8A\r\nhRwk9J10etB6OO9GwN0UG/2Wvutdaqxce3VoZaUu5iWBRY6kTNXiUizUOOpVcrXlUWfXK1CIcN4K\r\noKIMNRktMwk05RcCeMmXxq0LM3E7R10rGx5kgjVclMjvnoxHy19Qg5EjR8aX75HK9UtFYt8K8T+H\r\nmPw41HG0tuoJnTTRrK9Eh7ru283KxV+qy83OqP8Asa5PPm6cZ5ET4Z7Rzna0cY2G9IiKSw2ewLLY\r\nbcFks7mv0WEv+hdpg/1/XTf5O1odYPb2/wCV2gfuOb+OQzY7L3/JnUv3U3+KadrkYEGToAHz7ekh\r\n6OXTqvR079Km8K73RWvmtfYm1t8NqKzZm09EshOzdIrlKmYyfJ6hTppOESEtjNKywMsSwHbtwH41\r\ncKducIdB0TXNexMbLx8fllikkp7Hd5ItOSui0qKYJcU+Gu+9a3/qWqaVpk0+PNI1WPajaciRMaqp\r\nbkXxRU8DZL96o6Rz9hlf1/gRPDlz6YTgp+ybB+V/9Dj/AOhDxL+08/3GfnD71R0jn7DO/r/AeeEX\r\ntCcE/D55cH5X/wBB9CHiX9p5/wDwfnD71R0jn7DK/r/AifD6YTgp+yXB+V/9B9CHiX9p5/uM/ONn\r\nV5t114VzFuK9dnerZCuWCt/ZeLJQbQ2StLJLp1bo8Wo0yDWZBE9JxfOQcWVmYEdD7UREnsMcmaDu\r\nDRt0aTDru38lmXh5HMsc0a8zH8r3Mdyr509rmr7UU2Rq2k6loWoyaVq8LoMmGueN31zeZqPbdKqd\r\nWuRfHwUyGRFnxH178j51n0lehD/2rTRL/rcvB/zx2iHSH2nP6++4/wC/x/8AloTss4P/ANbTR/7x\r\n/wDG85WBwOckmkWkB/2Br7f7EV5P+Rs6PqaJ/wAdYn9/i/jGmmzP+By/3Dv8lT5ODezwH6ILOpKw\r\nwWLN8PRnl/rhehV/5zVzZ/8A4cSY4j49L/vMbn/7uyf4tTkPhMv++Ro37pZ/nPqFjonOzMADq1fS\r\nlP8AsAaLX9mG1/8AkWQzn7B39cLWf+7v/vmAxq7T/wDyNwP3a3+ImOlSw7TLMHrMToNv7V3R2lsj\r\ne9YTV/RvdBbOx17VjkrXERDi2nuxtPKW6oMtFOEZKOHFmZCFDiJL7SVGk8DMcccXduJu3hlrW3+X\r\nmWfFkVqIlqr46lYiJ9krmIjfab14c6ymgb50zVHLytZO1rl8kbJcTlX2I16qvsPq4aOd/FgtKC4e\r\n6PSHuwqCalYK+OwNm7f2bj66Vx5aTtBTkTkak1BJERw5yRjHFkp2CoiVCmIUSGsiUgyLoczMWbBy\r\npMPISnxOVrk9qLX3PUvmh2fRvbLGkjOqORFT4zWgaY8zYj0iWgjYHpBtHasXL2tqB2YtLTp+Fay6\r\n+38GTTPTNibcyErFlZOdjyZqQczT5qDFiydSlCiJOJBiGuGqHMQoEWHyvwa4r6vwe3nFujTWd/C5\r\nqxZWOruVJ4HKiuajqXlkaqI+N9LyvaiORzFc12yOIOx9P3/t2TQ813dPtHwyolrFK2+V1dOZqoqt\r\ne205mOWla6nJ0D9IvoqtPLRktTP2etto63hWqpMvMR4dPt/dTZquXl3f1uVhKIoU/LV+y8tGVKFF\r\nI9ZEtVYEpNM+tASaTIu3bZnaB4Sb509uZpmtY+NIqJzY+XLHi5DFX9SrJXIj683QukZ4e+6mA+4+\r\nEu/9tZa4+Tp0uQy15ZcZj54nIldbY1XM8eiSNY7xpOhg9wvRh6d2kZamn2ZsDo03pUyWm5mXhTls\r\nbwrJVu7mwdElo0UkRp+p2rtdLysupMFOtFXLyZx5pSSMoMvFWaUK1G7uPHCbZeA/O1XXMWVzUVUh\r\nxpWZM71ROjWxQueqK5eiOfyRoq++e1LVPToPCvf+4spMXD0yeJFVLknY6CJqL5q6REuvFUYj314N\r\nXod7nQV6LLRz0Q9Hey109qLvrs75LfnHmbSXi3j2xu+s1X5uv2wq8OGmfg0VdoZWPHlqVJw4UGTp\r\n8trJ/Bw+viJ8ojRlK6nOK/HjeXEjeeRuLDy8nTcSkjx8aHIkY2OFl8vP3bmtdK9VV8jq+udyt941\r\nqJnhsXhtoOzduw6M6KPKmS3yzPjYqySOrmVLRVRiUjWNvo1Eu3KqrvD+5W0X/wBjfcL+8/d7+bhx\r\nv8/e9/tznfvvI/lDeHzB0P8AWUHyMf5p4ZjRe0WJOXjzc3o76P8AKysrBizEzMzF0l3UCXl5eAg4\r\nkaPHjRKeSUIQkjUpSjIiIjMzYPn63uq/8cZ377yP5QnzB0P9ZQfIx/mnzSNOm/67PSd0tb9b4rla\r\nLZ2g3P1u3E/QbsJGydAkLMWemLEWGhosNQq9TKNTYEtChJqsOnfWqzKF565hSzUrW1j7pez/AIsm\r\nHwf0RmRky5cz4XSSyzLIsjppJHvlaqy+/VsT1WJir0cxiK33qoddHF/IWfiLqX1JkLGPaxjGcnKj\r\nGRtRq/U/eor0+qKniiuVruqKhybfRzNLWm3A6f1RuEtbUIdOshpl3dQ7I0GZmIsRErDvnuemp219\r\ngKdEUr8FCOpUiqWnlIZq1VRpopSAkzUpCTxQ7du0pJ26PvKBl90yTHkVPJqPR7LX4ZFpOvRHL4Ic\r\n7dl/XGJj6lt6R1LzsnYnr5m8j6+Du238Kes+gCOt8y3AA4aOlv6JmzXSJ2QolsbE1ij2C0k7uqVM\r\n0ux9q6xBjlZ22Vmokdc+mwVuI8hDizMKXhzMSLMU6fgwYypSJFjl1EVEdZJyV7PHaEz+DOpS6dqc\r\nb8vRM16OmhYqd5DJSN9IgRyo1Xq1EbJGqtSVrWe+arGqcP8AFnhTicRcBmRivbj6ljNVIpXIvK9v\r\nj3UtIq8nN1a5Ecsaqqo1Uc5q9Pa1fQsdJvZK0UzZ2Y0U7Y1xcGaiy8vWLKVyxVo7PT8JEQ0wp6Wr\r\nFNqa4cOFFSRLQUz1URJGRRIaFkaS7IMDtQcC9Qw25jdfihtEVWSxzxyNVU6tVjourk8F5OZqr9aq\r\npSmIGVwP4oY07oPmW6SlVEcyWFzHIng5F7xFRF8U5kavrRF6HMn0Wn0f69Wy97FjNILTgp9DstRb\r\nv6vI2qshcTKVilWprlorU0qYTO0KfvCqNCizNMl6ZKRkwpoqdLzcxFmoiUwpooEFMSFMY08e+1/o\r\nOo7eytncLHyTyZjHRTZ7mPiZHE9OWRuO16NldI9qqxZHsYkbVV0fM5WuZzJwr4A6np+rQbj3sjI0\r\nx3JJFitcj3LI1ba6ZzbYjWLTkYxzuZyJzKjUVru4aOuAy7AA4MPpB+mHIaLegFaSw1MmYEW8zSwt\r\nDIaPliaQqIfXrs3X0nUb36/GgQ/POVk7MwZ+ViRS81MzOSiFfzwiPnDs46TLqvGbQVZB37cfJjmV\r\nOblRqxrbH3S33T6lVqJ75GKlp4px3xYy2YnDvVnPk7rnx5GXV3zpyqxEtOr0XkRb96rkWlql+fM3\r\nLJcB3g2dZdnJX0O1rpCw/SZ6H9ZqUxClpadvOjWQhRIyiSlU/eDZSpWCpUukz/GizVSgwkFvUoi3\r\njHvtUwvyOAW4Y40tUZiu+JmdivVfiRqr8CHLXAuRrOKukud065CfGuLOifhVD6Xo6UjseAA4Semj\r\n6Ly2nSJ2BurrV0NprM0C9+5eetSikU22c1P06zVr7LW0RILrdKj1enS83ElZ2XjUyVjSERUuqEvW\r\njQoqoZLTFh5P9mTjrpfBjWtQh3DjyTadqjIUkdCjXSxSQLL3bkY5zEexUme2REcjk965vNy8ruF+\r\nM3DHL4jaZiu0qVkWZhOerEkVyRvZLyd41XNRytd9TYrV5VTorVrm5k6xsX6PF0m8OItCLt7uI6Uq\r\nMkxoV71iyhxCL8dCY8dC2P8AbJI+Qzob2y+Byoirl5SexcSW/wAFp9wxnXs5cSUWuTGX/wB+n5px\r\nU6ROj9eXotXyW0uHvgplPo941gYtEg2kp1Kq8jXZCWXaCzcnaumFL1WmqXAja8lPyy1aij1VGaD8\r\n5JkMgdl7x0Tf22cXdu3HukwsxHrG57FY5e7lfC62O6pT43Il+KdfBTiTc23dS2nrc+39XRqZGPyc\r\n6MdzN9+xsjad0v3r0v22hynfR6y/1zy6r+sG+D/N9ODHjtn/ANZGf92Yn+W45e7N/wDXHT9yz/jj\r\nPoYDp+M/QAOkx9KN/wC2X0af7BlZ/wAvpwdmvYJX/czuFP8A51jfxTzDXtT/APGWj/3rI/y4jq/s\r\nM+78jE+w3AL9Ys5Wug30mvuWulAuSVVqkVOu+0o6XU9Fm3PlE31Egi0dqJhFpblapEgr/Brmf0Sy\r\nUGiwFqMlJRVIpJV55oXgn23tjfNPbOFvXEZcuG5YZVRLXu15nsuvBrfqquVfPlToZVdmTc/o+o5m\r\n1p3e9mRJ40VaTmSmSInrVU7ukTyRyn0jR1dmaAAGkt2dylg7pa9fFaKxlMKn1C/C86Ne1bdRaplM\r\n2tmrG0exk3GgGROmHFhUaFMqQZmXXxo6ybrDG4Nb3Nq24MTTsPUpOdml4yYkHshSaadEX1qjpnNR\r\nfsWtTyPm4Gk4Wmz5WRiN5XZkvfS+2Tu44r+9jb8dr5mrQ2+fSON7pcdLGPoW9HnpK330SdKTvAh2\r\nIiXe3RavnzMS9y9Oah2AsBMSsAlJOIchPVBFUjJJRfgJWKp2SY3JtDQcjc25sLQsVivfkysZyp0V\r\nbVLRF9a+Ce1UPnavqEGlaZPqWS7lZAxz3L6kaiqq/F4nzILOUOXs7QKPQZY9aDSafKyRRGY4y4MI\r\nkxphf7aIvWWrmZjvx25o2PtzQcPQsb6zEiZGi/ZK1qI5y+17rcvtU6q9d1afXNZytYyPr8mR8lep\r\nHKtNT2NbTU9iIY03zYfas+VZiVDt/au6S0lkr3rCGX6N7oLZ2Ovascla4iERbUXY2olLc0GWjHBZ\r\nXVxZqQhQoifxkqNJ4GOOeLu3E3bwz1rb/LzLPiyK1ES1V0dSsRPbzMSvab24ca0mgb60vVHLytZO\r\n1rl8kbJcTlX2I16qvsPq2aOd/FgtKC4e6PSHuwqCalYK+OwNm7f2bj66Vx5aTtBTkTkak1BJERw5\r\nyRjHFkp2CoiVCmIUSGsiUgyLofzMWbBypMPISnxOVrk9qLX3PUvmh2gxvbLGkjOqORFT4zWgaY8z\r\nYl0iOglYHpBdHasXL2tqB2YtLT5+Fau7C38GTTPTNibcyErFlZSdjyZqQczT5uDFiydSlCiJOJBi\r\nGuGpExCgRYfK3Bvitq/B/ecW6NOZ38LmrFlY6u5UngcqK5qO68sjVRHxvpeV7URyOYrmu2PxB2Np\r\n/EDbkmh5ru6faPhlRLWKVqLyurpzNVFVr22iqxy0rXU5OgnpF9FZp46MtqZ+z1ttHa8K1NJl5iPD\r\np9v7qbNVy8uwFalYSiKFPy1fsvLRjlCikZKRLVWDKTTPrQEmkyLtz2Z2gOEm+MBubpus4+NIqJzY\r\n+XLHizsVf1KslciPrzdE6Rnh7/qYC7k4ScQNs5a4+Tp0uQy15ZcZj54nIldbY1XMu+iSNY5aWk6G\r\nDXC9GJp26RlqafZmwOjTejTJebmZeFOWxvCsnW7urB0SWjRSRGn6nau10vKy6kwUPFXLyZx5pSSM\r\noMvFWaUHqd28eOE2zMB+dquuYsqtRVbDjTMyZ3qiWjWxQucqK5eiOfyRoq++e1LVPToHCriBuLLT\r\nFw9MniRVS5J43QRNRV8VfIjbRPFUYj3V4NVaO9toLdFlo56ImjxZa6e1F312d8lvjjTNpLxLx7Y3\r\nfWar83X7YVaHDTPwqKu0MrHjy1Kk4cKFJ0+W1i/Bw+uiJ8ojRjV1PcVuPG8uI+8sjcWHl5Om4lJH\r\nj40ORIxscLL5efu3Na6V6qr5HV9c7lb7xrUTPLYvDXQdmbdi0Z0UeVMlvlmfGxVkkdXMqWiqjERE\r\naxt9Gol25VVd4X3K2jB+xwuF/efu9/Nw44+fre/25zv33kfyhvH5g6H+soPkY/zTwzGi9osScvHm\r\n5vR30f5WVlYMWYmZmYuku6gS8vLwUHEjR48aJTyShCEkalKUZEREZmbAm+t7r0TWM7995H8oT5g6\r\nH+soPkY/zT5pmnRf7dnpO6Wl+l8VytGs7Qbnq5bioUK7CRsnQJGzNnpixNhUIsNQ67TKNTYEvChJ\r\nqsOnfWqzTC89cypZqXrax90XADFkw+EGiMyMiXLmfC6SWWZZFkdNJI98rVWX36pE9ViYq9FYxqt9\r\n6qHXLxgyFn4jamndMhZG9rGMZycqRtjYjF9571Fen1RU8Wq5Wu6oqG05s9o5is40s7P+j19GqtNf\r\nhcTc9fNVdLOUsBO3sXa2MvGXYqYuJmq7M2Yg2zoEC0MpR5qrHa6ROPFgwZiGmKo5OCZLcjQRkMEd\r\n4dt7C2tuvUttY+3lzGafkz46TpnoxJe5kdGr0Z6HJyo5WqqJzu6V1Uyl0Dsz5Gs6Hh6xNq/o7sqG\r\nOZYlxFcsfeMR/IrlyW2rbpfet6+SGsX8isVb9nHTv8XKZ/5cDbn0/kH7FXfwkn8xPrfSqP8At6n7\r\ny/8Awo2C9I50J1H6O/R+hX2Wi0tZK8SsVi2tAsNY+7+BcvGspM2lq1VRHqVRX9eqtVUvJ4UlTpSc\r\nm4kQ5KIlS0Q4BmhUZKy5b4LdqLK4ybw+dbC267DjjhknmyFzUlSJjOVrfqfokXMr5HsYic6KiKru\r\nqNVDYXEfghBw824uvZGsJkPWRkUcPo3drI5yqq+/9Ik5eVjXv+tW+Xl6XZwMduHiMtrOAQ2e8LJZ\r\ndUSxYbgFiw3LmFiwwWLDcPa3ELFhs8t4WLGrnvCxZWyTCWSz0SLJDVqtmqsNn5iiw2Hw9RCWCNuY\r\ngsWVvf6QsWGzuCxYbOIWLDdmeQKosNwCxZW9Hp7xLFn0sehh/wBrC0Q/6wa5/nBrA6M+0Z/Xw3L+\r\n7Hf5DDsz4Vf1udG/csf4jk+HCpyAaF6UH/a0aRH9gu9v/ICoD7u1v+U2nfurH/jWGh1P/i3I/vUn\r\n+Sp8oRt4/QwinUzY1fV7RbFlYLFhgsWGfv7QsXRhc5XLd2JqVk7z7qa1OWavXuithZy9G7S0FPby\r\nylWxsXUUVilRYKVebE1zhqhnBiEcOJrasRKkGZHxPxr2KziDw+zNFSPvJ4076JvirnsRyKxPbJGr\r\n2N9T1avkcicLt2fOhvHH1CV/LBL9SlXyRj1SnL7GPRrl/ao5PM+m70V3SQXW9Jzoo2Pv3sTHp1Ht\r\n/TpeSsxfrdjCnCjVK7K9CVkkqrFMXBiNGXTJ4yVPUOdWkimJRaSVqzEKZgwujzcGh5Ogak/AyEWk\r\nW2OquZl9F+HycnkqKh2TYeVHmQJNGvj4p6l/28PWhySj4hqgAAAADA7Q2ms9ZORlqnaet0ygU+cr\r\nlmrMyk7VpyBIy0zaG2VopWyNk6JAizBpJUzUapOychJwSPWix40OGgjUsiPyaxz1piWtKvT1Ilqv\r\nxIiqvsIqoniY4PEoAHWA+lHY6MejX/Z3q3+b+eGb/YQ/rm6t/wB1v/8AN4pjd2nv+ROD+7mfxGQd\r\nJFvaO1azBuztWfRnOlCs/QI1Z6LW/q0ktRbQ0Wu2gtnof16uTvUS1r7IWrn49qbSXNwJqbU31hTJ\r\n2LOz9HhazzECJNS0NKPIoCI3TF2meG2VtDiFqGbjRr6PPIs3ROiMlVXMelfqUtYnL/ZGLf1yHZBw\r\ni3ZDuXZmE9zrliYkT+vXvIkRrkX2r0kRPsXp6jugjGc5VAA0lvRuDuLvvlpaTvnuZuqvblZImkoF\r\n5d3tkrcw5ItfrC8iTaaUmuqMlGaiOGxkeO0bg0Hdu6trSLNtnUsrTnu8VxsiWBV+FYntv4z5mp6L\r\no2tRdzrGJDlsT9TNEyVPuPa5Dw3WaPdwlxsKag3LXJ3S3SQ59OpPldpd1ZGw6p9OtrtPLs1Jyyo2\r\nJEf4U1Dy17d+7N1PbJufVMvUVZ9auTkTT8v9z3r3V8VHjpmhaJokaxaNhwYjV8UhiZEi/CjGts1g\r\nG3T6oAHz1+n/ANPazWlzpxKuRusrUvaG6nQxoFZu9qNoaZNlM0e0N+dtqrAnb1IVPjwFHCjwaJBo\r\n9IoprZ0TkKfJJnDWlSuyjsK7TysCPWd0ZTFb37IImKqdeVXOf0Xx68qOVPsVjXzQxF7T+swyQ6Zo\r\nsbrcj5ZXIi/YtaxFVP8ACciL60chweNyHYZZiHZrXo06S1R0NdI64nSokJWYn5e5C9CzVrLT06UQ\r\na56pXdz8Vdkr06bIFrILyiYszUqvBlzUrVKIpJqJSXSfA/aV2zLuvg3q+nQJckTY5m/DFI1yqvsR\r\ntqvsRTlfgnrEej8R8CaZaZL3kKr/AHxjkanxvRqJ7VPqp2Ct3Y+9GxFkLybvrQ0y1thbe2botr7H\r\n2nosyicpNoLNWip8Oq0Wr06Zh4LhTEvFhxEHwPEiNyHSNLFJDI6GVFa5iqiovRUVOioqetFOx5rk\r\nc1HNW0UzaPAoAAAfK/07cdODTJM9+lXpDme7E73awZjvv4ROV3CfbDl89J01f/1OE6tt/wDTfmtp\r\n6s/M/wDMSG+3oDLp1Xn9Jnc1PxYaY1MuooV4F69WhKhdY5Uay0ezdCiJVsQcKsVamxiUZH9liYzI\r\ny4p7Xe4U0LgbqUDVqTUZMfEYt19fKkr/AIbhhkb8d+Rv3s/6Uup8S8WZV97hxzTqlXdM7pvwU+Vr\r\nr9ledn0Ux0zHYYepUJ+RpUhO1SpzcvIU2mykzP1Cem4qJeUkpGTgqmJubmo8QySiHDhpUta1GRER\r\nGZ4EKiKq0nioPlQaXOlNXNNzSy0jNKeoVGpTNmL07zqum6emT0aeTBodzFjEIsTdfLS9NnG8liTV\r\nKkIFQnUQ4aCXMx4sQ06yjM+6Dsq7UztqcJcRme96uynPlbGqryxtVVvlbdIr387lcn1zFjvoiHXp\r\nx713E1nf0sWI1v8ASrGxueiJb31zLbvFUY1WtRq/WuR/rU2/s/oYZJWcJ3QYQWNXOz0C8wsN8PYJ\r\naqLO5n9Fj/7F2mB/X9dP/k9Wh1h9vX/ldoH7jm/jkM2ey7/yY1L91N/imna3GBJk8AAAAAAAAHzd\r\nenEPW6U/SyNv/ly7Mj/tbkrNJ9g7q+yk/n4AbfXw97lp9zUMtDrj47JXFXVU9uP+HEgU4oW7MmMh\r\nrOI7PpI9CJ/tWuiX/W5eD/njtEOkXtN/19txf3+P/wAtCdl/B/8ArZ6P/eP/AI3nKuOCDkk0i0gP\r\n+wNfb/YivJ/yNnR9TRP+OsT+/wAX8Y002Z/wOX+4d/kqfJ0bbntH6HbOo+w3s7/SFizfB0aBf64V\r\noVctJq5z/LmTHEnHpf8AeY3N/wB35P8AkKcicJf65Ojfuln4lPqEDopOzUADq2fSkv8AsA6LX9mC\r\n1/8AkWQzm7B/9cLWf+7v/vmAxp7UH/I3A/drf4iY6Vbd3EdpSqYOWQ0kbkzke0jxIy37Q8UpepUc\r\nqdTn1+jq9LBQ9D29Ce6OPSYtNL2euIvVtZN2o0Wbwq7MplaFd5by10+cWt3XVqozCigytKrc6vrZ\r\nCKo0IlqmqIcV01TrIHUH2muEWRtLd+Rn6ZEvo8tysRE6OhVenL+2gW4np48jWPpEXr2KcHt9xbr2\r\nvAuS9FyIailRV6pI1Prl9kqU9F8OZXNtVad/MYlnMgAAAAAAAAdS36SN0vdNudsBV+jd0Y7VQqjp\r\nM37Uj9D19dobPziIv6Rdz9oZMlVqj1CcllH1FftFT4ioSZYj66UpcSNNL6mLM05cTmPg/wANtS31\r\nubEgijtj5ERlpaOVOrnqn9jhaivevny8qX1rZ+9N04O1tEyNSy3U2JiuXrS+prE/byOVGt9q2tId\r\nNii0mUoVIptFkUmiTpcjLSEuR/aOFKwigpUs96lM6j2mZmY7utG0vF0PScbRsFKhxY2RM9fKxqNR\r\nV9arVqvmqqp1iapqWTq+pT6rlrcuRI6R3qt6q5UT1Il0ieSIiGH2kh2olYNHtRYGsz1mrx7v7R0G\r\n8K7m0tLjFLVSz9uLHVFFZs7VabMm/Vx4caEXVRD+yoyUbkQ2Pxa2RHxA2PmaDyI+au8hRfORqKnJ\r\nfl3jHPiVbSue/I3Zw33Y7Z27cfVXuVIXL3c1f2N6pbq8+RyNkrz5a8z6QfQz9K/dz0o2jVTbQxZ2\r\nk2c0mrsadS7PaRt1MNRSU7R7TJhHKQ7d2dpcY+tVZ+uLhRJiTWnXKVjddIRVqiy+vE6Qd17ZzNsa\r\nm/EyGuSNVdyOVFRei0rXeFPYvRzVpb61SodmGnZ8Oo4zZ4XItoi9FtOqWioqeLVTqip0U5hhtg14\r\nAAAAAAGSbybybBXPWBtfeleja2h2Eu7sDQKjai2NsLSz8Gm0Oz1BpMuczPVGoTkcyJKUJJkpJ1LU\r\naUISpakpP2Qwy5ErYIGq971RGtRLVVXoiInrPFzmsarnLSJ4qfMJ6RvpD7QdKhpn2iv+k4NTo+jp\r\nc/JVS6vRbspVYC5ScRZ2YmkxrVXiVeSUZlDqlfiw0Rpki/nMuUrIqNa5E4q+zjse8Kn6LHPvPUWe\r\n/RFjjVfBZXJUitX7GKNVj5ktHOkk6+96Ye9o3fDJoYdpYT7V6pLKieTGr9Ta72venPS0qIxi+Dja\r\nM2dwzysxIs92l20tVdnWaDebYSJCg26uxtFZ28uxMSOla4MO2F31cl7YWYXFTCUhRpKekoBqJK0m\r\n2wyPEtj8TNDXc3D3WtCRFcuThzsRE8Vd3blaie1XIiJ7TdmxNUbou89L1SRabDkxK5fU1XI1y/E1\r\nVU+qXoj6Tt2umXo3XQaTN0tTgVKxV7ljKXaaUgw5mDMzVAq0SH5NaWyFYOCZkioUeow5qmT8L8SP\r\nAWWJMZ9CuoYORpubJg5SU+JytX/MqexUpUXzRUU7S4pWTRpLGto5LNxo0Z7AAAA+cF052PSpaVx7\r\n/rK6cvRcPZYiHdL2UHK7gBt+/Vm/g1DLQ64ePHTivqyfub/yeOaofR7C/wBc7uq/rCvh/wA304Ns\r\n9s5f95Gf92Yn+W4+/wBm5f8AfHT9yz/jjPoWjqAM/wAADpNfSiyfSW0av7BlZ/y+nB2Z9gta2zuH\r\n91Y/8U8wz7VC/wDtLRv71kf5cR1gWyWAz6sxPsNn4BYswmtfXsGRTU7KVKZotsLPT1NtTY2tyayh\r\nztFthZaowrQWXq0nFMjJEWXnpaBESpjLDEjJyPZXETa8O9Nk6ltuVqPXJhcjEXw7xqc0fXxRFeiI\r\nteSqhurZG4H7X3Xg621eVsMreev7G73snw+8cqp7URT6qOg/pMUPTH0RNHjSdoBQIUC+S62zFrKt\r\nT5aIiLDoVr1SZU63dl1LhmZdZSq3AqFNik+C4CiMiPAdC+q6fLpWpT6dOlOhe5i2ip4L0Wl69Upf\r\njO0zHmZkQMnjW0eiKnxobqB889wAAAdK36U3pMfopvZ0WdCehT5RKbYOm1TSqvYk4ZxVQzrlT8su\r\n2uSp0eIgyQUSFD/RTUIkBZGoiVKRWQRoNeZ/Yu2P83d/S7oyWXBpjFc1VpUWVaRietFRVa9q/tHJ\r\nZj72i9zpo2y/mRC6pdQekft7tPfSL8ConIv92h1b29HAdrtmAljVCxYYjIyYjI8DJtvcC9UpRaot\r\nnPh9HW6V+h6Hl6E90cekxaaWs9cRerayatRos3hV2ZKVoV3lvLXT5xK3ddWqjMqKFK0qtzq+tkIq\r\njQiWqaohxXTVOsgdQ3aZ4RZG093ZGoaZEvo8tysRE6OhVenL+2gW4np48jWPpEXr2McHd+Rbs2vA\r\nuS+8iGopUVeqSNT65fZKlPRfDmVzbtp38hiYcygAAAAAAAB1LfpI3S9U656wFX6N3RjtVCqOkzft\r\nSP0PX12hs/Ooi/pF3P2gkyXWqPUJyWUfUV+0VPiKhpliPrpSlxI00vqYszTlxOYuD/DbUt9bmxII\r\no7Y+REZaWjlTq56p/Y4Wor3r58vKl9a2dvXdWDtXQ8jUst1NiYrl69fU1ift5HKjW+1bWkOm7RaR\r\nKUGkUyiyKTTJ0qSlZCWI8VHClYJQkrWe9SmdR7zMzHdvo2l4uh6VjaNgpUOLGyJnr5WNRqKvrVat\r\nV81VVOsHVdSydY1KfVcxblyJHyO9VvcqqiepEukTySkNSrtLCVO8+8ewF2tEUSKzeHbWyth6Qs4a\r\nopJqdrK7AoEgo4STI1EUWYQeqRk+x8R4a7q8Gg6Hma7lJceFBLO9Lq2wxukd18ujV6nlo+nyavq2\r\nLpMS8r8qaOFFq6WV7WItedK7w8z6yNnaDTrLWfoVmKPBKWpFnKNTKDS5ciIigU6kSSKfIwSJJETJ\r\nhQ0pwLcPz45eVNnZcubkLzSTPc9y+tz1Vzl+NVU7aYYmQRNhjSmsRGonsRKT8BjI057DoE/SPNLW\r\nevz0/wCjaNtl67NKu20OLvIEjaqSkpubRTavfrfJLSlqq4mdhQzKXmio9nYFDl4TktUvMzE5D1kK\r\nNaR2JdhraeeybU93Pc9kDmtiRqKqNkdbuW6X3yMTvFVqp0V0bvGjE7tP69iM07B2+jWvne9ZbVEV\r\nY2NREWrT3qvVWojk8Wte3wVTgUbPiOxmzDIrdvMSyWVvHZ8gsWRgstlb2mFksEXeF9QG7AsWG3Z5\r\nBYsNxzyAWDLtziYWLPRbO31DVWaqytn1C2Sw3h8xLFhvh6xbLZG3e8PEe0rdnIQlhgvzFhvju5AL\r\nDbfgJYsNnuFuxZ9K/oYv9rC0Q/6wa5/nArA6Ne0X/Xv3L+7Hf5DDs24Vf1udG/csf4jk9HCpyAaF\r\n6UH/AGtGkR/YLvb/AMgKgPu7W/5Tad+6sf8AjWGh1P8A4tyP71J/kqfKIbbh6B+hezqWsN8xLLYb\r\nPeF9SWG9wliytntFsWG5egSxZ7Oj3pTaTXRoaQEHSs0SrQeRpnEJk71rt6lCmahYW31nDmfKp2j2\r\nws9LRIZzElEXrRoczAXDmpCOZx5aNDJStXBbtH8BYdQ7/dWjQK/GkVZJ2Rp7/HkX66eNE8Ynr1lb\r\n1RjrcvvFuPLTgtxYasUW19blRs8aIyB7197MxOjYnKvhI3wjX9WlN+vT3/fn6Oj6RhoA6dlFs/Zu\r\n2FuqPosaQc5BkpSq3S3y2gkKNQatW45JhLhXbXo1ApWk1mFFjH1cpKx1SdSiH/3AzLV1y65svWdF\r\ne56MWeBLqRiKvT9u1LVntu2+pymWeLqeNkoiXyu9S/5l8/x+w59JeZl5yXgTcpHgzUrMwocxLTMv\r\nFRHl5iBGQUSFGgRoRmlaFJMlJUkzIyNyG0PDop9A8wA2LaZfSVaE2gLZectFpO3+WJsRVIUlFnKT\r\ndxJVKBaK9q1RoJJQ4FmLtqKqLVZglriQ0Kmly8OVg66VTExBhusvqaZouqaxJ3enwuk9bqprf7py\r\n+9Tw816+R6J8mDHbzTORv41+BPFTpJ2r6Zq/rpfOlM0AbL2SotYuT0LLptOvRdtXZ27iNPQ49et3\r\naOj33UWNR7UXqT1PWctNVLV/2JSZVcSTpqIi1FFmpg0zMTJXZXBTNyNn7g3AqWzT9Nzppcil5Gui\r\nxZZGwQ2icz3q1Od3RWx2q8tta/i/c/ELA0nWNM0hVufPy8aKOK/fcskzGOlfXg1iKvL9k+kS6crf\r\noqjFY5XAA6wP0o3/ALWTRr/s71X/ADfzwze7CP8AXM1b/ut//m8Uxt7T/wDyIwv3cz/y+QdJRh2p\r\n2YM2aZ3jWHn7SQ6PaCy1Wm7M3gWPqEtW7H2lpk7NUupU6qSEwiek1S9UkVIjy8SHHhw40tMwVlEg\r\nRkpiIMvOfiLi7wvxeJGickPKzPx0d3LnJ717XJ76CTx+pv8AJaXkd1+tV6O5L4Z8QZ9jasqz8z8L\r\nIVEla365qp9bKz9s3zT9U3p4o1U7M/RlfSuK9dnJ0S4DpSbK2mrUSgJlqJTtJ2xVHKo2rhycvBKD\r\nLxr4bBSmqupqJJOuvUDWmI6dQ106ZiqiTa+pre3CDVNF1KbFxonY88Sqj8aX3qot/wDNvXorV8Wq\r\nq8qt6te5FQz90Ldun6vgx5uPK2aGRLbKzqip7U8UVPByVaL0VqKincv0cNNbRK0vbPwLSaM+kPdP\r\nfNIRYMONHkrGWwpU7aWkdZBTMFAtHY2OuHV6XHJCkqVL1GRgRUkZayCHDubpufp0ndZ8L4nftmql\r\n+1F8FT2oqobrimimTmicjk9i2bnxoj2gAbcNIjTA0WtEuzca1mkpf9dXcvR4cFcaXK3dsaRSKxVt\r\nSGcU5eztmlxFVKpzBpSo0S1OlI0VTHqoNhrMPT87UJO6wYXyu9TWqv3a8E9q9D1ySxQt5pXI1Pat\r\nHSi6Vj6UZaG/6lWg0Xei9pVr7L0a1kGas/avSgtBIzNmrb1OhTcE4FSl7obNxTTNUCDFhqNMS0VV\r\n6qfhoNZS0nIx0wpsubuHvBzVtf1iDDlh9IyJFTkx2dUTr1dM/wCtRjU6u68qJ1c6rauzNzby03Qt\r\nNl1DKlSGCNPfSO8V9TWN8Vc7walWq+CeZ1zbvrFy1hLMydEhxSmps1rnavPsetP1SZY5qYM1Y6pM\r\nUOHrY6iUu5uY7f8Ah5svE2FteDQcdUfIlvmkRK7yZyJzORPsURGsYi9eRrb62dde992ZO8twzazM\r\nisYvvImKt8kTb5W/CqqrneXM51dKM7kWe4b3VfI2jZ6s5Jy8/KTMjNwkx5Sdl40rNQVlrIiy8xDO\r\nFGhLLgpJmRjT5eLj5+JLg5bUfFMx0b2r4OY9Fa5q+xUVUPfjZM+Hkx5eM7kkic17HJ4o5q21U9qK\r\niKckPRSdPLfV0TM5KaNN/wBZi0N/GhdGqs9PWNh0ucl03k3SS1Tm1T0/Gu4mqtEhSU/IqjRFxZ2z\r\nU9MSyEzERUzKzcsS4iJrqT438Ccvbe4pWRWzvFV0Eyp9SyI76cyonvZmJTZKTxRF5eVzXr2IcNuJ\r\nOFuvRI8lip3rERJokX38T660i9VjcvVi+rpfM1zU70ei50wvRr6YNLpc1czpcXSKtBU4JxCu6vBt\r\nJKXWXnSsaGZImpVdhLwVU6fmDgrMkLjyEOYl1YKhRoiFJWeLuobd1vS3KmbjPaifqkTmZ9+22/Fd\r\nnLMOZizp9Seir6vBfuL1OR+n1Om1aWROUqoyNTlIhEqHNU+bl52WWR7DRHllKSZHyMfGVFTopqT3\r\nhAfLC06y/wCne0yP/Oq0hm/fcq477OEC/wC9Ntf/ALo03/ycJ1acQV/3e63+78z/AMxIdh36LVdP\r\n5VbnSvvzm5Ak/UNlLAXU0GprSkzinaurzdrrWSMuraXVlRqMuKWD9ZDZ2NsOe3ruHk03b+1I3/1W\r\nXIy5Gf3prIYXL8PezonwOMieyzpKrPq2uyMT3rYYGP6X75XSStTz/Uwqvr6eo7kA62TMI4K/pEWl\r\npM6MnRvXiWPspVVU69TSwq0loxWAVLLjlOyVOt9Jx416doUHKmmJCRJWUlquhMyS0lCmY8rjrKSl\r\nXJHCbZ+Tvjfun6BjpfeSsVy0io1qOT3yovi1q05yfYo5fI2zvHXsfbO28vWslfewxuciXVrS01F8\r\nlcvvU9qofPgp1PlqXISVNkoZQZOnyktJSsImaFLysIoMFBdiUkQ73dPwsbS8CHTcJvJDjxsjY31M\r\nY1GtT4kRDq1zczI1DMlz8p3NLM90j19bnqrnL8aqe63Is8xqrNLYbxFsWG9Qliw2748wsWdzH6LI\r\nTXX6YH9ft03+T1aHWJ29Fvd2gfuOb+OQzb7Ln/JjUv3U3+KadrUYFmT4AAAAAAAAfN26cEv9dN0s\r\nv/Lt23+ZSzQ7puyev+8Bt/4M3/7I5Z1xceF/319V+HG/8pjnFG3u9wyIs4hs+kf0Iv8AtWuiZ/W5\r\neD/njtEOkjtNf19txf3+P/y0J2Y8Hv62ej/3j/43nKsOCDko0i0gP+wNfb/YivJ/yNnR9TRP+OsT\r\n+/xfxjTTZn/A5f7h3+Sp8nhh+hqzqNsN3hYs3v8ARoF/rhOhX/5zVznhbiTHEvHlf95nc3/d+T/k\r\nKcicJV/3ydG/dLP859QUdFZ2bgAdW36Uj/2AdFv+zBa//IshnJ2EP64Ws/8Ad3/3zCY0dqH/AJG4\r\nH7tb/ETHSuZsdvvHaTZg1dhvaFizT+8e72l3iWfiUmdMpaelzXMUippQS4shO6jOpJMaoUQmTGhu\r\nWsTGTKSky2FxD2FpnEHQnaXmL3c8dvgmq1ikqvjY7wkbfVKVKc1qpvPY29NQ2TrLdRxfqkL6bNEq\r\n0kjL/A9vix3ktottVyLzYdF59Jc0gdBOBZ3Ro0+LMWq0gLi7PQZOjWOvMpE3BnL67v7OyxeTysvB\r\nna3Fgy1rqPAQUNEtAnZuWnpWGSoZTcZEODJQ+qLiZwR1Tb2ry4ssXomSiqvKt9xMnk+F6JVO9iUi\r\nryubG5HIdge0N+6VuTTWZ+ny9/EtIvlJG7zZI27RyfhTq1XNVFO8RomdJloJacFJkZ/Rp0mLsrfV\r\nebl4MxGsDHrkOy16VK64zh9XVrsbWFJVyCy0rhlG8hOCs0mcKJESZKPgDUdE1XSX8moQPj8rVLat\r\nep6W1fiU3/Dk4+QlwvR34/jTxQ31j5Z7wANvekDpZaMuinZmNa/SQv4uruWoMOEqJBj3g2zolAnq\r\nmpKTWUtQaJNRSnqjMKJKurlpCWjRVseqg2GrxMDNz5O5wonyu9TWq77teCe1T1ySxxN5pXI1PatH\r\nTZ6TT6WEdq5OtXD9FlZevTFYr0OaoszpQ25s7Ep87KwpmASFTVzt2lZhnMIj6qlGisWlgQTlzQoy\r\npavMmUcvbN4SaprGoQ4+ZG6aaRyIzGi9896+p7m9Eb5ryqqI21V7aU2vrW6sDS8KTMmkbDFGiq6V\r\n68rWp7L8V8kTxVaREVVo6udgLE1yQqVft/eJXqpbO9W3M/PVu19q6/VJyvVmdqVXmzqNTjz9cqS4\r\nkxNzczMKVHnpuNEUuNFNzUptZXavwc4S4nDrTPS81rHajOxGu5UTkgj6KkMap08URZHJ0cqIjfet\r\nRXYE8UuJc+985MPBVzNPgcqsR3R0r/DvXp5dFVGNXq1FVV985UTVRuA5ss4ksN7dnALFmSbKW2v/\r\nANEu+yz2lhohW4rd3l7dlY0SPPlQTREg1+nx1JOrU6qUOOS5WqSE8hCU1KkzcKJCmNVMQkHGSRjE\r\nbj7wIi3RHPuTQMfvnSe+ycZqe+c5P+kQInXvfN7U6v6uaiuVyPyX4O8XW6Q2LbW4Ze7jZ73Hncvv\r\nWIv/ADMqr4M+wevRn1rlRqNVvdI6OT6VzooX90qg3e6c8lC0Ub6kQ5OmTluoMrV6xo/2wqmr1MWe\r\ngVWCU1UbLKiRCNcSVrSIsnASZPVlm6U9aWvcOdW02R0mmouREir73wlbXkrenMqeHvevRbahmZh6\r\n1jZDE71Uaqp4+LV9qL6vh+6p2kbtb17rr5bLyFt7obyLCXp2NqkGDMU61d3draBbSzk9AmIfWwYs\r\nrWrOTEzLrJSTctWIeA4+mgmx5FiyGOY9Oio5FRUX2ovU+w1zXpzMVFRfNDP49R5H5WtENC4kRaYc\r\nOGlS1rWokoQhJaylrUrAiIsTMwBxH6bnTi9G9oI0uswby9ICzV4F5dMhRkS1ydyM9TLzbzJupol1\r\nTECmVWTokx9X0NUQiJotoahIw2UnVUo1JSrcOk7W1vWXJ6JCqRr/AM4/3rES6VbX66vU1HL7DR5G\r\nfi4yfVHdfUnVfueXx0h0Iekh6YDS26ZO1n6Co8tHuG0N7NV2FUaTdBZ2qTE6iuTUjEKJIVq8q0nV\r\ny5WhrCDLrJWWTLwpCnmaVQ5c46TmZjLvgh2f8rcGoNyERUgYtT5bm01qfqosdF+ukcnS+vKi8z6R\r\nUY7hXibxW0/aeCrHKkmU9F7nHReqr5Plrq2NF6+SuVKZaorm7XKPRqdQKXI0elSyJSnU6XRLSsuj\r\nEkQ0bVLUeKlqMzUtasVKM1GZmY7PdH0rT9C0yDR9LjSLHx2oxjU8kTzVfFVVbVzl6ucqqtqqmA2q\r\napm6zqE2qajIsk87lc9y+ar5J6kRKRqJ0a1EROiGJNn2j6VmgsurnjuMLFm6Xo4ul30h+hsvNrFG\r\np1n4t8mhpehaUrQWuudnamumxbM12bQmXqNo7ta6pEaHSqwiChBRJaPBVKVKBChQo3VxoaJuW6xO\r\n0XwJTTNek1XBYsWLkuc6CZrbYxXW5caVE8ORb7pfFY6rmVrmpntwc4nxbh0SPAy3oubjNRsrFX3z\r\n2tpEnZfjzJXeV4Pu6RzVXvgaIvTs9F/pk0ijxLDaT9h7trbVMoEGPdTf5U6dc9b+SqkaAUwqjykG\r\n1keHTKvGSTuugVOfhGZGRRHSoiwx1PamvaU5fScdzmJ+rYnOyrq7bfL8DkRfYc+QZ+JkInI9L9S9\r\nF+4vj8VnLFRbRWftJKQ5+ztdo1fkYqExIU7RanJVWUiIURKSuHMyK4iDIyMjIyVvG3la5q05KNZa\r\nL4GMiA+cJ05Zf66jpX/+U7qP8xFlh3Rdk/8ArAbf/wDq3/7I5Z1wcev67Gq//U3/AJPHNUPo9pN0\r\nnd1f9YV8H+b+cG2u2at8EZ/3Zif5Tj73Zt/rkJ+5Z/xxn0Kx1BHYCAB0nPpRJPpL6NX9gys/5fTg\r\n7MuwYv8AuZ3D+6sf+KeYZdqr/jLRv71kf5cR1g25d/YM+LsxNDbwsWCLkFizuF/RXNJc6jdnpMaE\r\n1fn1KnrnbcSl+t1ctMLhJ1rsL6osWHa2kUqCk9bqaTaqRnZqOak4Kq8IiUZHqo6de1nshNpcUsjN\r\nx2cuPqSd+z4XdXexER/MxqJ5M8jsc4Gbn+eTYOMkruabD+oP+GOkb8KrHyOVfW47agxfOYwAPDMT\r\nEvKS8ebm48GWlZWDFmJmZmIiIMCXl4KDiRo8eNEMkoQhJGpSlGRERGZmwePRAfKl0vdI+Ppk6Ymk\r\n/pWKmos3Q73L1qtL3bHEiR1Jl7mLvIabvbpYUGDMN1JTFIp8KpRoaEpSceajLbWWpSu5LsqbI+c/\r\nhZj5M7OTI1F3fPVURHcqKrWNX107vHNVfFrkOvTtBbn+b2+n4ELrh09iRp1tO8dTpFT1dORqp62K\r\naAsMl1U4LsEXp+AWSw3gAs0/vIu9pd4tAiUmdMpaelzXMUippQS4shO6mq6iwNUGIREmNDcnJjJl\r\nJSoth8Qth6bxA0J2l5i93NHb4JqtYpK/Cx3RJG+aUqU5rVTemxd66hsfWW6ji/VIX02aK6SRl/ge\r\n3xY7yW0W2q5F5rOi9+kt6QOglAs9o0afNl7VX/3GWegydGsdeZSZuDOX13f2dli8nlZeDO1uLBlr\r\nXUeAgoaJaBOzctPSsMlQym4yIcGSh9UvEvglqm3tWlxZIvRMlFVeVf6hMnk+F6JVO9iUiryubG5H\r\nIdg20N+6TuXTWZ+nypPCtIv9kjd5skbdo5Pwp1armqineH0TOky0EtOCkyM/o06TF2VvqvNy8GYj\r\nWBj1yHZa9KldcZw+rq12NrCkq5BZaVwyjeQnBWaTOFEiJMlHwBqOiarpL+TUIHx+VqltWvU9Lavx\r\nKb/hycfIS4Xo78fxp4ob6x8s94AG3vSB0stGXRTszGtfpIX8XV3LUGHCVEgx7wbZ0SgT1TUlJrKW\r\noNEmopT1RmFElXVy0hLRoq2PVQbDV4mBm58nc4UT5XeprVd92vBPap65JY4m80rkantWjptdJn9L\r\nBVayTrNw/RZWXr8xWK9DmqLM6UFubOxKfOysKZgEhU1c7dpWYZzCI+qpRprFpYEE5c0KMqWrzJlH\r\nL2zuEup6xqEOPmRummkciMxovfPevqe5vRG9LXlVURtqr20ptfW91YGlYUmZNI2GGNFV0r15WtT2\r\nX4r5Iniq0iIqrR1drvrEVyn1Gv3gXiV6qWzvVtzPz1btfauv1Scr1anKlV5s6jVI0/XKkuLMTc3M\r\nzCjjz05GiKXGim5qURayu1Pg7wmxeHem+l5rWO1GZiNdy1yQR9FSGOuniiLI5OjlREb71qK7Abin\r\nxMn3xnph4KuZp8DrYjrR0z+qd69PgtGNXq1FVV985UTVVs7BzZZxHZymdC1dP+m70lujBSpiQKep\r\nVjLV1S9arLWklwqeV2Nm5y2FBnopK4ViWpsKGZEbRFoPY5lwH2ndw/O7wQ1ydknJJlRMxWet3pMr\r\nIpGp8MDpVX9qinLfA3SfmvxO01rmc7Mdz8h11Te6jc5jvil7uq6oqovkfSRHSmdkxoxpF35WN0Zr\r\nhb4tIS8KYOWsXcxdva+8i0WoZlMTUhZOiRqudMkUkSjXMza4SZWVhJSalxoiEJI1KIj1OHiy5uVH\r\nhwJb5XNa34XLSHhI9sUbpH+DUVV+I+UTNWytlenaS3N895Mwc5eVfhby198dv5l4xpO1F4lbi2jn\r\nZSAmYUtaIMoiNDk4EI1GUOHCShLJSRF3kcE9mRbF4cadozWcsr40ml6Ii88jUpHV+qbGjGO/bNVf\r\nM6x+K+6Hbr3xm57Xc0MTu5i62nJGqoqp7HPV709jkK3yHK1nHNjVzs3BYsN7xVUWGz3CWgsrfL3B\r\nZLDBYsNn4i2LDZMS7FjVEvoLDZ9ot+sWei3LLDV36jVWGyRCWosrZ5ELYsjdnpEsWVvU/fvIL9Ys\r\nNn5iWSw3ZnAWxYYs9gWLDfDdv4hYsaoWWza5b26W9K0NrqzWaBayUp1InosuuTkoloK/JrgJhyUK\r\nBFJUtKS64aXiJUrzVG7ueJmMQ+I3AHdG8N65+49Pkwmw5TmK1JXypJ72KNi8yNx3pdtWqcvSvgMm\r\nNjcZ9t7Z2ph6FnRZTpcdr0csbI1Z76R705VdM1fByeLU62ZQ/SMvq/VzI/4U2o/0UbJ+lc3p/ZtO\r\n+/m/mpuz6YTaH9hzfk4f5wYpRLlr4JCtUienraSUxJSVUp83OQE2ltJGVHlZebRGmIKYUWWJKjUh\r\nJlqqMiN2MyIfW0Ds17v0rXcLVJ5dPVmNPDK5Gvm5lbHI168t4yJzUi1aol+aeJ83WePO1NQ0fL0+\r\nCHMR88MsbVcyJERz2OaiqqTqqJa9aRVryU3ftlhm2YmWG5enfgFksEXLaFiw2fiFlsNnkFiytnxC\r\nyWQ0kZG5Fi7vsMuBlvEWlSl6oVHKi9Db9bnR4sraeNGqNDinZaqxjVEilKwExqRMRDN1KiU50dWo\r\n9jwFpTtM0KMcBb27P21tyyv1DRHrpmU+1VGNR0D1XzWK28ir643Nb1VVY5TmfaPGzcWgRNwtWb80\r\nMdtInO5WzNT1JLTuZE9UjXL4Ij2oeawNrtPy4CQRRbh9Ju/K7ihyy4i5SmXQX/3i3bU+H1kQ4ilo\r\nptHqVMgw1KUZqVqltMzc9oxx1vsv7xZM57MLC1G/1TXRo5U8r9IbHS15Wqe1fE5w03j5s3Ijak82\r\nRhr5o+NzkT4FhWS0+JF9iGdatpO9LJbSViUi1+mvpjVelR0HCjydqtL29it0yLDWWqtEaSXaOaSo\r\njL7RHDN+Y+Rh9mPecsnK/RMXH/bPfh0nybpHfgPoZPHXY0LOaPUZZl+xZFkIv/1xjE/CaLUHRtna\r\njU49evJtRHrU/PTcafqUGTmZuamqnOTMY48zM1Ov1Fo8RcVZmqKooeuozM+sfE+a9o9mOLHeybd+\r\nW1zGV/S+Kio1UTwa6ZyNcja6KjI2r9i9PE4u3L2g3ysfBtbFVjnf89kUqp7WxNVyX5ornqnrYvgb\r\nhqhZqFL2Nq1mLKwZWinGoVUptIKAcSUl5OcnJGJAlphUaXJURJlFUS1xSJS3dWKhkTq21sRdk520\r\ndAhixmT4mRjxMrlja6WJ7EV1I5aVzre6nOW1VeZfHg3Ttx5KbsxNza3JJkOiyYZ5HXzSObHI16o2\r\n1RL5W0xttanREpDat+kVfV+rmR/wptR/oow8+lc3p/ZtO+/m/mplD9MLs/8AsOb8nD/OB+kXfV+r\r\nmR/wptRu/wDvUPpXN6f2bTvv5v5qPphdn/2HN+Th/nBq7dFd7byxtRq8za60EvWZedkoECThQavV\r\nqkcGNDjnEiRDRUoMIkkacHSZnxHNXBbhJrvDjU83N1d+K5uTExje4c9VRWv5l5ueGPp8Cr18jiji\r\ntxM0XfOn4mJpTMhiwSOe7vmsaioreVK5JZOvwonTzNd29PvGQ9nB9hnCy2ZPtbYKy1uJVMtaKlQp\r\ntcJKkys7DM5eoyesbn5NOQmWSXxNBmaDNtZJjaG7NjbX3tipj7hxmyq1KZInvZY7+wkb75EvqrVt\r\ni/qmqbm21vHcO0shZ9EyVjRy2+NffRP/ALpi9FXy5kpyJ4OQ24VDRqr1EqUvWbv7ZxJKfkJmFOUy\r\nLOxJqk1WnzMBfWQZiVrdH1lFFQoiUiIiDDMj2GW0Yz7i7L2UvOu29Qjljd/zWUxWrXqWSNr2v+SY\r\nnr9Zz9ofaHxVa1u4MF8b08ZMdyOS/WkcitVqf+8cprlR9I/pWLCy0OnWL00dLuiyEBJQoMrZHS2v\r\nYoElDhJLUSiFLQrQShJSRExESCw3DifM7MW8onqjNGxMj2sdif8A3VY1/AchYvHfY87bkz5ofY+K\r\ndf4tr0/CeWqaTPSw2wgRJC1emtph1SSmEmiYl7TaXd7NYk4iDLUNMaWVaKZJRMbNqHhgPHF7MW85\r\nHIj9ExIPa5+ItfJuev4C5HHbY8TVWPUJpfY2KdFX79rE/CaEy+jnay09Ym7QXlW5j1OqVKZVOVad\r\nRNT9frlUjxMFx56uVtlnFNsYi0RTNt45V252Xs5OT54s+KCJv/NYrVetepHvaxjF+CORDYGudofB\r\nRrm6BhPlevg/IcjGovr5GK9zk/w2KbkLI2DsvYaTVKWdpkOVVFJJTU7FM49QnTTiRzU4vzlERuZI\r\nSyEueqknGTu0tj7Z2ThribfxkiV1c8i++lkr7OReqp5o1KY1VXlalmPm5d4bg3dlJk63OsiNvkYn\r\nvY47+wYnRF8lctuXpblM3t2jd1m2bBFtw9IWSw2ebBYswiuWfotpafGpVdp0tU5COTrl5lGsSVER\r\nkmNBiJZcOIlz1Vw1EotxkPka3oWj7j09+l65jsyYH+LXpdL5OavRzHJfRzVRyeSn09J1nVdBzW6j\r\npE7seZng5q1afYuTwc1fNrkVq+aKbarQ6LVImYsSPZm0U3S0qUaikanLJqUBDnhDhTUJUKIlJbtc\r\noiuJmMcdf7MmkZMqzbb1B+MirfdzMSZqexr2qx6InlzJIvrVTnfRO0JqcEaRa9gsyFTp3kTu6cvt\r\nVio9qqv7VWJ6kQyOjRnvEp0yUzSLS2dgxoesUOag1Ct0+bSS06iiSqXlFGl0mZGRL2YbxsDJ7MW8\r\n1VWRZmDIz9u+dq/e+jvT8JvWDtC7TpFlxcxjv2rYXJ93v2r+AxD9Iq+v9XMj/hTaj/RRo/pXd5/2\r\nbTvv5v5qaj6YbZ/9hzfk4f5wbvqBIzdOoVFp8/GKYnpGk06TnZhMWJGTHm5WTRAmIyY0YiWolLSp\r\nRKUkjN3MnGa23NPl0fb2BpM6tV+LjwQu5b5eaONrF5bRF5bb0tEWq6J4GJuu58Wqa3manBaMyJ5Z\r\nW8313LJI56c1KqXSpdKvXzU+gZ9HGupRYHo7ZO28SCspy+y9+8S3JR4qCStVLs9Hl7r5GWhmxPCR\r\nGoM3FQ7+dFWbsZEXVB20dwLq/Gd+lovvdLxMaCk+ykR2U5V9tZDUX2NQzv7OelN0/hvHmUvNnTzT\r\nLfqa5IEr2VDfwqqnPcMSjng+ez9Iq0pD0jOkehXMUOoeWXc6ENg4diUw4RxFSczfpezKytrLyp+D\r\nFJXVrOQo8OgUdaer1oUxDm06x6xpT2J9iDYVy5u/cxn1id1Cqon1zrRVb5orWc6O9aStUxP7TW6u\r\n40/F2pju99O7vZUS/rGKnKi+tHPpU9sanCG2eY7GrMMrIwWWyt6OHyCyWGz4CWAwWLND737A24tp\r\nHoMSx9el6KinwqgifTHq1VphzC5lcFUuaSpsGIS9UkLc1sz4O5jgLjVwq1viRkadLpD8ZiYjZkd3\r\n7npfeLGqcvJFJ9gt3XlV+XNPCbiPo2xIM6LVWTvXJdEre5axyJyJIi83PJHX1yVV+fgaM/pE31/q\r\n6kP8KbUf6KODvpXd5/2bTvv5v5qcv/TDbP8A7Bm/Jw/zgv6RN9f6uZH/AAptT/oon0r28/7Np338\r\n381J9MNs/wDsOb8nD/OCfpE31/q6kP8ACq1H+ih9K9vP+zad9/N/NS/TDbP/ALBm/Jw/zgfpE31/\r\nq6kP8KbU/wCih9K9vP8As2nffzfzUfTDbP8A7Dm/Jw/zgv6RN9f6upD/AAqtR/oofSvbz/s2nffz\r\nfzUn0w2z/wCw5vycP84J+kTfX+rqQ/wptT/ogfSvbz/s2nffzfzUv0w2z/7Bm/Jw/wA4N1FgqJWL\r\nPWRotGr04ioVeQgx4c7Ow5mZnER1xJyJHQpMzOJREUyFJS6klsbYRDLrh3tzL2jszB25nLG6XFa9\r\nrliVVjVXSPf71XNYtU5Ltqdb+Exi3zr2LubdeZruEj2xZDmq1JERH02NjPfI1zk8WrVOXpRm9hvW\r\nzadm1u8K6W9G0lsKzWrPWslKbR51cmcnJRK/X5JcAoFOgy0YjlpKXXCTrRELV5qjd3PEzGJPEngJ\r\nufeO9s7cmBJhNhyViVqSvlST3kMca8yNx3p4sWqcvSvDwTJnYXGfbW1tpYeg58WU6XHSRHLGyNWL\r\nzSyPSldMxfByXbU638Jk39Im+v8AV1If4VWp/wBEGxvpXt5/2XTvv5v5qbv+mG2f/YM75OH+cGI0\r\ne5K+KSq1LnJy2sjHlJSoyUzNQU2mtLFONLQJlMWPCKHFlSSo1JIy1VGRHsM2H0tF7Ne79O1jE1Ca\r\nXT1ZBNFI7lfNzUx7XLV4yJdJ0tUS/NDQatx82nnaXk4UMOaj5opGNVWRIiK9itRVVMhVq160ir7F\r\nN4rDNyzEYMFizArUU2eq1m6/S6XHTKVKo0epSVPmlxYsuiXnZmUXBlo648uSloJKzI9ZCTUW0iMx\r\nt7dulT69tbUdExlakmZjTQtV6qjOaSNzE5qRy8tr1prlryXwPt7Z1OHRtxYOr5KOWPFnilcjKVyt\r\nY9rl5UVWoq0nS1RL8VTxNo36RF9ez9HUh/hVaj/RRhl9K9vP+y6d9/N/NTK36YfZ/wDYM75OH+cD\r\n9Ii+v9XMh/hTan/RA+le3n/ZtO+/m/mo+mH2f/Yc35OH+cGsV0F31urFztbj2vr8vWYM/KykKRRA\r\nq1WqRwIsGKtcZakVKDCJGsSkk6TMz3jmvgtwo1zhxn52Vqz8Z6ZUcbG9w56qisc5V5ueKPp1SqVf\r\ngOJOLHErRd94WHjaSydi473ud3zWNRUc1qJy8kslr0XxRDXZhkFZwjZG7ewLFlbPELFmA2hsvQLV\r\n09dMtDS5WqSajNSUTCDKJAiGWqcaVmIZlEgrbDXhqI9zsPibg23oe6cFdN1/GZkxLdI5OrVquZj0\r\npzHV+qYqO9tH2NE3BrO3M1M/RMh+PKnirV6OTxp7Vtr2/tXIqew2xWk0WkdcqbsbaRUmoldZBka2\r\nha0wohK10dVVZEtdJJP7Ly6lFt1jMY07k7MkErnTbUz+RFuoclquTr5JNGl8vlSxOWvFyqZAaB2h\r\npY2th3Lhc6pVy460q+1YnrSqvj0kal+DUQ1bs5fh0n92EnBpV3GmDpSWYpkpDTBlZGwGlPepZWnw\r\nIKEkhEOWlJatyCEJIiIiSSCIiwYcNZ/Zh3jE9eTSsPL9rHY/X5bul+6hybh8etkTtRZc2fH9j4pV\r\nr5JJE/CYxUtKLpbLWwF0+1Gm1plVKQikpMWWtHpg3sVaRWhf2krlDtJMkaccS6vuGlxezLvKR9O0\r\nPFg/bOfh1/8AW3vd+A1GRx22LE3mZqMsq+psWQi/+NjE/CaEI0d7a2vrc3aW9C30zVqxU5jyqrVG\r\nJO1K0toKpF1CQcSfrtcMlnFYiLrFlGwIix3cqbb7L+oJyJuDOixoU/5rFar3V6kc9sbGL7UZIhx/\r\nrnaI09rXN0HCkmkXwfkORjUX18jFe5yexXMU3FWNu7snYSWOBZ6mIgR4qCRNVKYPympzZFi0ecXi\r\nSXx6uGSUPiSSMZM7R2DtbZGOsOgYyMe5KfM/380n91IvWvPlajWIvVGoY+7o3tuPd86S61kK9jVt\r\nkTfexM/uWJ0v9s7mfXRXKZ2YbytDadhvj2i2Ww2/Zhw94iqSw3o5ekL6CzSa3Ny9irdLiTk3KLpV\r\nZiOaqxSThy8xHXuVPQVJVCj7CI1LTrtgSyHFu9eEGzd7PdmZUS4uY7xngprnL65Gqisk8rVyc9dE\r\neiHJG0eKe6tosbi40qZGK3whmtzWp/2bkVHx+xGryX1VqmkVnrpb9Loq6dpblb2a5ZGsphnCRXLH\r\nWqtLd3abqdfXTBKes/GSrVcnMvKiJ8WGN+4Oy9uFVVun5GLqESeCTNWN/wB65ssfx94nwHPGj9of\r\nb0rU+aeNkYki+Kxq2Vn3yLG/4uRfhNdpfS46YCkwSkKZpx6bkvJITqIhU7TNvZlZRKdjQ4H6KYer\r\ngW5BYYDj2Xs0bzY+m6BjSftkfg1/4pGr+A3jHx02G9nM7VJGL6liyr/8MTk/CZAtxa/pA78qfHot\r\n9Ok9fnb+izyTRPUu9fSEvIt/TZmGvCIiZp9UqNShRHLaSkmRj7ek9mHeDpWvXCwsFUVPfOdHae1O\r\n4ZItp/sp8vP4/wCy4GKkU+TlexkbkRflXR9P9qMvWR0YLPUyLCm7V1SPaGMgyWVPloa6dTCURkZJ\r\njqSpUeKTluXDI9hpMhzntXs3bf06RuVujJdnvTr3TEWKH4HKirI/4nRovgrVQ4i3Lx/1vPjdjbdx\r\n24TV6d49Ull+FqKiRsX4UeqeKKhuXkpCSpspAkKfKS8jJSsNMKWlJSDDgS8CGnYiFBhESSLsIZGY\r\nWHh6diswcCJkMMScrGMajGtRPJrWoiInwIcD5WZlZ+S/MzZHTSyLbnvcrnOX1qq2qqeyxDVWaeyt\r\nnjuEslhsuLZbPTqFNkKtJzFPqcnLT8jNQ+qmJSbgw48vGRt1VwohGRsZORtgZOWJDR5+Dg6phyYG\r\noxMnglTlfG9qOa5PUqLae1PUvVOpqcLOzNOymZuBK6GaNba9jla5q+xUpfyp08DbZafRdsxUYsSZ\r\nszWJ2zy1nreRTMIqtT0/tIHWLhx0FzXGiNuJsBjtuTs2bc1CV2RtzLkwFXr3b29/EnsbbmyN/wAJ\r\n768k8jnbQO0Dr+DG2DXsZmaidO8avcyL7XU10bl+BjL81s01Xou27lJmHHpVpLOHEgRExYEwuZrF\r\nPmYURB6yIkM5eWi6qiMiMjJeB7xxvldmTd6KrcbNwpG/t3TMVU+BIZE/Cb/x+0PtVWouTh5bHftE\r\nhen3VlYv4DEP0h77P1dSH+FVqf8ARB8/6V/efj3unffzfzU1f0xGzv7BnfJw/wA4N1F39DrNnLH0\r\nWi1+dRUaxIwppE7OwpqZnYcdUWeizEI0zM2lERbQ1oT5ySZmLAiMZa8Odt5ez9l4O289Y1mxkkRy\r\nxKqxrzyySJyq5rHeDku2p1vx8TGPfm4MTdG7MzXsFHtiyFYrUkREenLExi8yNc5E6tWqcvSvgPVv\r\nKs7XrUWQqNFs1Pw6ZV5mNILl52LOTcjDhIl56HMRyOZkURIidZCVJZKTd2NiMxpOKO1M7e+zMnbu\r\nnLE2WZ0SosyuSP6nKx62rWPXwatU1eteHianh1ubC2juzH17UWyOiibKipEiK9eeNzEpHOYni5Lt\r\nydPX4G2H9Ie+v9XUh/hVan/RBir9K/vP+y6d9/N/NTJP6YfZ39gzvk4f5wP0h77P1dU//Cq1P+iB\r\n9LBvP+y6d9/N/NR9MRs7+wZ3ycP84NwV0VjbWWMolTkbXViBWZ2aqhzctHg1Go1JMKV8khwSgnFq\r\nUOEtJ66VK1UkZYu7mYyM4NcPtU4daFlaZqzoHPnn71O4Vyt5e7Yz33PHGt21fJUquvkcD8V98aXv\r\nrWMbUNKZMxkMPdqkyNR3NzudaIx8iVSp5ot+Rqy3wx2jl+/WcWWGC/MWGwBFFmiV8F21oLbfUtQs\r\njVoNErdN8qk5mZjT8/TUzNKm9WMcBUxT4cSIZojQkKSgy1fOUbuREODuM/CrL4jQ4U+kugZk4rnt\r\ncs6uRronoi+LI5F5mvb71OVEp7+vkcxcJuJOHsOXLh1VssmPkoxyJCjXObIxVS6c9icrmuXmW1W2\r\nt6eKmiX6Q19n6upD/Cq1P+iDgX6WDef9l077+b+anNP0xGzv7BnfJw/zgfpDX2fq6kP8KrU/6IJ9\r\nLBvP+y6d9/N/NR9MRs7+wZ3ycP8AOClcHfPEMoce3Uh1Cz1IzWmtPFPqlHqxGhLlUkrB/NNREexy\r\nHmzswbw5055tPRLS1R8yqieaonoyWqeq0v1oeL+0TtBGKrIM1XV0RWQoir5Iq+kLSetaWvUpvMpl\r\nNlqRTZClSUMoUnTZKWkJWGRF5kvKQEwIKf7lJOM29NwMbStPg0zDbyw48bI2J6msajWp9xDEHPzp\r\n9SzptRy15pZ3ukevrc9yucv3VPdbZ6BrbNJZWz3hYsNkwslhs7gsWYDaKy1AtZT10u0NLlapJqM1\r\nJRMIPrIEQy1eulZmGZRIS2w14aknzYfE1/bmhbpwF03XsZmTEvgjk6tVUrmY5Kcx37ZiovldH2dE\r\n3BrO3M1NQ0TIfjyp4q1ejk9T2rbXt/auRUNr9pNFiH1ypuxlpVSakr6yDI1uGtaYUQj10dVVZEtd\r\nJJP7Ly6lFvUZjGvcnZmhke6baufyIt1DkpzIl+XfRpaInhSxOWvFyqZA6B2iJY2ti3Ng86pVy46o\r\nir7VietX59JGpfg1ENW7OX3dKBdhJwaVdvpg6UlmaZKQ0wZWRsBpUXp2Vp8CCgtREOWlJetyCEJI\r\niIiSSCYtw4b1Dsx7whevLpWHle1jsfr8t3S/dQ5Ow+Pmx52osubPj+x8Uq18kkifhMXqWlB0ttrY\r\nC6fajTZ0yqlIRiUiLL2j0wb2KtILQv7SVyp2kmSNOOJdX3DS4vZm3lI/ldoeLB+2c7Dr/wCtue78\r\nB78jjvsSJvMzUpZV9TYshF/8bGJ+E0Jh6OltbX1ubtLejb6Zq1Xqcx5VVqiudqVpbQVWLqkg4s/X\r\na4ZLOKxEXWLKNgRF2cp7c7MOoJyfN/OixoW/83itV7q9SOe2NjF9qMkT2dTj/Xe0VpzWuboGFJNI\r\nvg/IcjGovr5GK9zk9iuYpuMsbd1ZOwcsqDZ2mIgR4qCRM1KYPymqTZEbtHnFk+qZk/VwySgjxJJD\r\nJjaOwtrbJx1h0HGRj3JT5nLzzP8A7p69UTz5W8rL6o1FMfN0b33JvCdJdbyFexq22JvvYmf3LE6X\r\n5czuZ9eLlM7sN43RtOw2TYLFnZ4+i/3UorukhpE3yx4KosK7e6Ch2Gk1KQ8GDVL0rVlVETKVmX89\r\nTK2ZmoRMf2Iq3LEmwV7de4FxdmaLtpi0ublyTu9atxYuSvgV2U1V9rU9plR2WNKbPr+qa25FvHgj\r\nhT1XO9Xr8aJB9xy+s7sI6xDNs6qn0pvSkVZnR6uR0IrN1DUrulBbwrb3ny0E4ilQbi7kp2VtFNSE\r\n71SknCKsWmiUODAUslJiQ5Schmk8VJyH7M2w/n44m4rMhnPjYi97L4KnK3qqKi+TkRWWng57VOLe\r\nMW6/nS2Nl5kTuWeVvdReS94/3qKntZav9qMU6aLbvR7B3PeHQ6zbK3w2CWLDALDZw7gvzQWVs8ws\r\nWRuAWLDZ4uFiysCL5ISw3sCxYYEUWGzwEsWeizDWWaqwwX5CwZBYsrCWLDbAsWDLx3BYsMFiyNlv\r\nQFixnt5BYKwlksMLYsNhsEsWVgsWRuAWLKwWLDZ48QsWG+PwCxYbltywEsMFlsrCX6iWRhbLZWEs\r\nlhgsWGz8QsWGLPsCxYbELFhgsWVsO/4hYsNuEsWGFsWGCyWGz2iWLDBYsurxCxZGz4BYsN7wsWVu\r\nQl+oWGz4C2LDBYsNn1uJYsN7BbFlb0ljy7BLJZG357wstlb4/Mwsln1JNAS6mJchoUaLV10zLolK\r\nnZa4+75FoJeGk0oh2pq1n4NetYSSMiM3qU1Nm5kRm7mRGZjoX4s7gbunibr2vxqro8nOyFjVfHum\r\nyOZF/wDW2sO1bY+ku0LZ2l6RJXPBjQtfXhz8jVf916uUz5pVaQlkdE/Rtvw0k7dLL9C9yt2drLwZ\r\n+U6xMKNV5igUmJNUmzskpZkRzNTnPJ6fKpMy1o0ZCXJxsfBxJc/NiwofrpXNan+EtX8CeKm5pZGx\r\nRuld4NRV+4fKSgV+19t6jai8y8WdOp3k3t2xtVezeNUzQcJVQtxeLXI1qrRRlQ1KUaSTGmThJTrH\r\nqpQknNh3qcH9nQ7F4e6doLWckiRpJKi1zd5IiLTq8XMbyRqvnyHWDxN3O7dm9c3VEdzRNesUXq7u\r\nNVait9j3c0n+Ge83tHJlohsGyN6cQsWGztEsWVgslhvYFiw3eFiwxhaCw3L47wsWGzh3BYsNyILF\r\nhgsWXV9QliyNnsFsWVhBYb1tiFksN2AqlsNy5BZLDewAGEuhZWxFsWGz8gv1CwwWLKwlksjcgstl\r\nbHv8Av1EsjBZbKwl34EsEXuFv1Cw3Bm+Aliwwtiyt6AFkbPELUWGLPpEsWVtmfAPaLDe1sPQFgNy\r\nz2iWQNnuFsthm9/wC7JYbgFiw3d6wsWVt+4SxYbAEX1Cw2e8WxYbDOwRVQlhs/ABZWC/IWRvD5hY\r\nsMXYFlsrYuF+RLDewQWGFvyFhhLFhvjycLFlb4gLBE4WRVDBfkWwwEsMF9RYbPtE6Cwziiwwliyt\r\n8wvzFkbOACyty8XFsBuPh6hLFhuzPaHXyIGD4RYblnkJfqFlbHPrFuhfQNniF2LDd/p9QWLDZ9hi\r\ne0WGCxYYLFnem+jRXUxLIaE94d507Lohzl7999ciU+OlJ68zZawVBkbN0/rFmRPqVRVaSRE5EWLu\r\nZkXVP23NwN1LijiaHEqq3TcGNHJ5JLO98rq+GJYf/wCVGffZk0l2FsGXUpKvNypHN/uI2siS/wDD\r\nbJ8SnYvGGpkWfMT6U7Si+7Q6SHSYvnp8+VSu9u9raNGW5SMgyiSqrv7mp+Zp9oa3ToyVKKJLVu1E\r\natVWBELVeDEgkafNc+1nsbbETQNkS7pymVNqLuVirV922lcqLXg53K1UX9VCpgt2md1/NDcOPtjH\r\ndceG3vJET+yPSmovtay3IvqlNi7eIzIsxhsNxCxYb2mF+QsEWfeAsNn3BYsNh8wvqLDZ3BYsN6ws\r\nWVs+wSyWGfsztFsXQZwstnotlxq7NVYbuCyWGEsWGCxZWCxZGPO4LFhnCxZWwCxfUMFiwwKvkLDZ\r\n9oliw2fcLZLDBZbDCWLK3r7wslhtvb6gsWGCxYYBZWCxZG5FnsCxY1RL6iwx52C31FlblkuwSyWG\r\n8fALoWG5eIWAwX6xY1cmFiysAsjcA8RZW7RLsWG7hUUWGz2iWSwRZ8CBVFhnCxYYPMWG5Z2h7BYb\r\nPrC/IWVs9+8AGDoLDB0QWGz6gsWU059ol2SyN2e0wv1FsMFizbdXKZpcVStVepS999sJWXn6nPTk\r\nvKw71reQYctAmZpcaDLQ4MJWqhKEmSEpTgRExYEMG9e7N27dY1zM1ZItPRMmeWVE5l6JI9z0Tpj0\r\nlItUnRPLoZg6Px52jpmkYunSLmudBDHGruRq8ysY1qutZrW1S7Xqt9T1qdYnSGrdQp9PvIvZtNaa\r\nxSp+Sm69QaleHa+vSNUg0yaRUpWVmaTVTOBGScxBhH+E+y2unzkkNbtHs0azpu5sLUNaZhJiwStk\r\nk7pVV7ms99yIiwt6PVEY73ye9cppNzcftBzdAy8PRkykypo3MjV7Wta1X+95lVJXKisRVc3ovvkR\r\nDc22747d4zXsxIsNswEsWCLPcKtCw2dnYYliytnD2gq+QsNwCxYbPzCyWGwz6MQsWNXPvCxYYPhF\r\nlbPuCxZGy3oxEsthhbJYYFUWVuOewLFhvUJfrFhs+AWSw3vwCy2GCyWVu3xAWGz2BYsNn4BYsN7N\r\n3eJYsNvCxYbxFsWVs/AS+pLIzAqrZbLq5IL9ZLDcgsWGCxYb2CWLDZ5C35iw3DPpEVRY1c7g5vIW\r\nVs7BbFjVEsWGz7Rb8hYb24iKosMCKSw2WCxZW5bRL6iwZb9gtiw2TEsWGBVFhgsWNV34mFiw3u8A\r\nsWGy2wLFlbJcRFJYYWxYbw7RLFhhbFhhLFhtwWA2fALUWGCxZWDmJZGC+pbKRBYsNy8MQsWGEsWV\r\ngslkb3c9oWLK2faFiyN3hYsrBdEsNkgsWG5eAX6i2GywWSytt9gX5iw3h8xLFkbLBYsreIWLDZPt\r\nFsWGPPYwli0NErx5LSKq1clv0vb0bR2TsrIUyBJyVHpl4FrLPSiJhUzGnp2YTTKQZQUqiRIytZRY\r\nqZzGLvF/gzuDiDuxNbwI8PumQRxIsqqj1VqucquqJ/m7lReZV5Wp4IiIZIcLOLW3Nk7X+Y+pLlOl\r\ndNJIvdtRzGo5GojWqsrfseZURETmcq+Kqpp/+hvS/wD19rZfvt2//hDi36V/dn9j0775383OSPpi\r\ntm+rN+TZ/LG4+y1n5ey9naNZ+VPWhUmny8ocRmOPGQh5maWzedFimuIrmoxmxtvRMbbWgYeg4v1m\r\nLExl/ZORPfv+F7lc5faqmIG4tan3DrmVreT9fkyOfXjyoq+9ansY2mp7EQx9sB9uz41hgslkbu9e\r\nGwLLZWIWyWGwz2hYsNnfwEsWGCxZWCxYYSxYbHAWxYYSyWehq4fIxq7NXZWbPAWxYbxEtUFhg6gp\r\nlnkFksjcgv1lsMF2Syt6feFiwwWLDbvfsEvoLDfDEL9QsMLYsGWT4iWLK3o9YXRLDZ9QXYsNnBws\r\nWNUL8hYYLFhuHj2hYsNyCxYbuC+osrZ+JCXYsNn4hfqFhvafYFiw2SCxYbb8mC6IG5eoSxYbLmLd\r\niw2faJ4qA2X5i2LK2/jv2CWLDbefeFiw3z2C2LDZ27RLFhgsWGztILJZW9XpCxZGz6gv1FsrBa+Z\r\nLDBaiwzBdCxq4MQXXUWG7hLFhi7QsWob4cAsWXVC+pLDBYsN7PcFiw3qEvzFlbO4L6CyNn2hYspl\r\n6OIX7RYb47fALJYbt94WhbDZ2CWSwzhZbI3pzwFvzFlbgWeYl+ZLK2Pw9wWLDYc8kLYsNu9nPgHg\r\nosN2bRLFhgsWNXLBYsNnv3OCr5Cw24LFlbwziFksNntCxYbYJYsN2+kWxYbl4egLFhgsWG9ziCyt\r\nnwC/WLAWAwWLDcfiF+olhhBYbLi30Flb4ZILsWG2CXQsN2vwMLFkbPwCxZWCxYb2hYsMFiw3LJiW\r\nLDZILFlb5hZLDcvWF+QsN38+4LFhgsWGwCxYYLFhs7gFhgsWG+QWLKwWLDCWSw3y3BYsMFiw3LwC\r\nxYbPYFiytn5BYsMFiwzBYsapZILFgQgb3/ILFhs+AWLKzBYsNnaFixqhYsMWfEwsWG9OdoWLDGJY\r\nsN8wsWG4hYsrYGWeIX5ksGRbuXiFhFDBYsM+WCxYbtPuCxYbPyCxZWwzgJfmLDZ+JhZLGrn3hZbD\r\nZf1BYsMFksMFiwx59gWLK2WILFhvDOIWLDY/P0hYsN7/AA2hYs9BuTby7hq7NVZWz4hzCw2fgFiw\r\n3H2iX5iwRcvR6QsWG+G0LFhs+0LQllYLvxFhs+oL6Cw3iIq+sWGz27xbFjV9XsC/MWG2d4liysF+\r\noWTV3/EwsWGCxZW5Y+IcwsEWe4L6ksNnb6QvyFhg8xZWL07i9Yl+sWRssFiytlwVRZGLl4kFoCts\r\n+HrCxYbPeFiw3DELJYbJBaCw3ywEsWG+Itiyt6hLFkYLFlbPrCxYYuAWLDZwxCxYYLFhsmFiymXH\r\nDiCKSyN8OwLLZW5CWSwzhdCwwKtiw2GXFu1F9Rq59piWLDe5guhZW9QWSw2eHMLLYJOdvoDmUWGE\r\nslgiz8QVfWLKSQ5hZGwyQWLDetgsWVvcAsGXvBFFhs8AsWG44fIL6iwwWLK2fkFksNx5iX6hfqDe\r\nz5C2LDYn6vUJYsNjyf18QsWNXOwLFgi+IWLDPtzgFiw3HHbiFiytngJYsEWe0LFhvTxCyWG9gtiw\r\n2HiJYsrbvgAsNnALFkYLFlbw8AsWG7QsBvUJYsMFksMFiwzBYsMFgrZ+QWLDGFiw2IWLDbs+gLFh\r\nuXjsCxYbPALBW5d5fESyWG4BYsEW30eja4WAwWLDZ2bgsWGCxYbPyCxZW5bxLBG9OTFsWVss4liw\r\n3b6fALFhgslhgstlbkFksN8+0LFkYLFlYLFhgsWGfuCxYYu0SxYZ84BdCys4WSyNs9oWWysFkDbx\r\nLFhveLYsNwCxYYS6AbPwAWUizj4hZLDZcC2RsAsWVs8wslhgsWCLj6AVRfqDekSxYbPrC+gsrZ39\r\nwXYsMLYsjZYS/MWVgRepLDPtC/UWw3uCyWGyYX6y2Vs9whA3oLOIXYsMFg9BhrLNVYbaCiytncJY\r\nDBYsMffyCwG9RBYsN8ebgosrZ7wVSWRgvoWw3LeCKLK3jh8gslhhL6Cw2SCxYbPYFiw2fcF0LK3w\r\nCxYb5BZLDOF9S2RvWFiz9NnwCyWRsn7gsWGw2chLoWGzuCxZW+G8L8hYbaF2LDBYsN68QsWDISxY\r\nbD38QJZW9IWLJqmLYsrBYsMJfmLDC2LDFhyHjYsEWeTC2AwWLDcdueIWLKx9mdglktA3DiLYsMJY\r\nsNhn0mFi+oY+PbgLYsNntEsWGCxZWCxZGzgFiythnfuCxZW9AlksjBZbDcc9oWSyt2BYsNnl3BYs\r\njBYsrBYsNtCxYbPILFgiEsKoYLFhs/EWxYbH3e0S+gsrYhZLDBYsN44/ALFhsPQFiysFiyM4liyt\r\nkwsWG2BYsrcAslkbbn1BZbDBZLDBYsMFiysFiwwWLDZP0CWLGrnltC/WLDZ5BYK28vlgFksjbt3g\r\nCKWwzbAu+ov1jV8OwLsllbsCxYYLFhuBe4SxYIs7+0WwqlYSyWG9HELLYbPvCyWGywWLDHn4hYsN\r\nn1hYsNh6xLFlb0YfELFhuYX6xYbLAqoLDcuPoCxYYLFht3tCyWG9TewLFlbPDsC/MWRtuW4BYsMJ\r\nYsNnDEW/MWVuXvxEsWGCxZW2YZfgFksjZ8QuilYLFhs7wslhs9gliw3j4sLYsMFiw3rdgvzFhhFU\r\nWGFsWVs7RLFhjCxYbJdgWSwxY7fYHUWobO1gsWVvYJYsjbs94JYsrYbM8gsWGywWviLDZxC/IWG4\r\nNy+YWLDbXz3hdiw2d/gFiwwX6hZWEslkY+ItoW0K2fiFksMfhknCxZ6DZ5jVWaqytnELFhs7gsWG\r\nIL9QsNnwCxZG9AWLKRBYsrBZLDbcBLLYbO0Ulhs94liw2SCxY1XbAOYXQbPuCxYbJBYsNnwCxZWb\r\n18RLFhveLYsMFiwResRVIqhgsWVtvoCxYYwsWRvYFiyt6PcFiyGQWLLqhYsNn1iWLDcgsWGy3HcL\r\nYsNnkF+QspEJZLDd/rCxYbkYWLDBYsMQWLDBYsNn5BYsNwdwsWVhL6Cw2ePaFiw2doWLDe8wslhg\r\nsWVs9u0LFjVCxYbeJYDC2A3v2CWLDcs7AsWCLgFhVDN7OAWLDcAsWVvaFksMwXYuwzZ9QWLDGFiw\r\nwWAwWLK2fcJZLDBZbI3ILBdULFhs/AL8iWG2c/cF0LDcvYCqLK2AWLI3b7AsWVhLFhs9gqKLDcnE\r\nFhgv1Cys5h4EsjZ5cAsWVgsWGC+gsN7wtKFhgsWGywl9RYYPEWG9+3uCxYbAi+AX1FlYL9RLDeog\r\nVRYbvCxYb1seAl+aCxq/H4i2LDBYsMQgKRbQsWGzuCxYb3hfqFhvj2iX5EsNvYW/UWw3HPeJdkv1\r\nBhbLZdUSyWG+XIVVFhvltEvyQWG+YCw23wCxYYLUWGz7wsWG9Hr7QsWVu4S0olkY9+TCxYY2zwCx\r\nZdX4BYsMFqLDd/o9oWgsNh8AsWGyXtDxUWVuAWLDZ8SEvyJYbBs7Rb6iw2HIwsWG8fES7Fhi4kCq\r\nLUrBdiw25s94WLDcd4WosETiWLDBdksrBaCyMLYsurxEsWGCxYb194WosN6ue0S0Fhs+8WxYIt+W\r\nEsWG5eoLFlbkF0Sw2IWLDC30Fnot88BqrNVY1fX4BYsjZ5C2WysJZLDbQsWGz7AsWGCxYYLFlbPr\r\nEsWRvSLYsrbQsWYlRaPPV+sUqhUuEmPUq3U5Ck06AuJDgoiz9SmkScpDVGimSUEqItJGpRkRO5mw\r\n0+XlQ4WLJmZC1HCxz3LV01qK53ROq9E8EPfiY0ublRYeOlySvaxqKtW56o1EteidVTqcyn8j9dJ1\r\n+tBYv9+G7X84jGr6b7gf+v5/3nkfmHOf0t3E/wDsOP8Avhn5B/I/XSd/rQWL/fhu1/OIfTfcD/1/\r\nP+9Mj8wfS3cT/wCw4/74Z+Qv8j9dJ1+tBYv9+G7X84h9N9wP/X8/70yPzB9LdxQ/sOP++GD+R++k\r\n6/WgsX+/Ddr+cQ+m+4Hfr+f96ZH5hPpbuJ/9gx/3wz8g/kfrpOv1oLF/vw3a/nET6b7gf+v5/wB5\r\n5H5hfpbuKH9hx/3wz8g/kfrpOv1oLF/vw3a/nEPpvuB/6/n/AHpkfmD6W7ih/Ycf98MH8j9dJ1+t\r\nBYv9+G7X84h9N9wP/X8/70yPzCfS3cUP7Dj/AL4Z+Q4oL37p7a3F3n25ufvHp0vSbd3c2jqFlbVU\r\n2TqElVpaSrNLi9VNwIFSpy4kCOlJ7IkJZpPcYyB23uLS92aDi7k0V6yYmbG2WJzmqxVY7wVWuRFa\r\nvsVDhzXtE1DbesZGhao1G5GM7kejXI5LpF6OToqUqGnDZ8R9yz5FhvZ6AsWGwEsWUiBVJZGyez0h\r\nYsNyzuEsWViIW7FhgsWG5b8RLFhuAWL9Ybw2hdCwwWLK2zD0Aqiw2eQWSw3j6QsWGCxYbB/WF+Rb\r\nDBZLK27OOGIgsjejnxFsWVuXj6BLFhgvqLDdwX5Cw3sx+AWgsMFksNnvCy2VgslhhLsWG289wWLD\r\ncvXsCxZWPJeoLJZqVdVcxe3fnamXsVc3dtbe9C1cwUNZUKw1mqtaWfgS8SKUDy2eh0uFEKWlkqMu\r\nsmpg0QoZOpa0pIzL4W4Nz7d2pgLqe5c6DAgS/fzysjRVRL5W8yor3KngxtuXwRFU+xouga5uPL9B\r\n0HEly5eltiY5/La0iuVEpjfW5yo1PFVRDmGuq+jv9IveJJStQtNQ7prmIMypKjlLzLxUTVWhyxm/\r\nXKkLtJO0RIUacUwY0SGsj82IUM3bHLXu2Pwb0eV0OBJl6mrU+uxsflYq+rmyX46163I1U80s5s0j\r\ns0cSdRjbLmJjYKKvVs0yueiX41AyZt11RFei+S8vluwkvovmkBElkqqOk9c5KTZoI1wJGyttZ+WK\r\nKxuhM1HTLKNOxlHBI9vm8ePpe3VtVH1DoOW5vrdNC1a+BEcl/H8ZvNnZP1hW3JrMKL6kgeqfdWRv\r\n4jTu230ZfTNo0JcxYi9/R5tsiGkz8jnqxbyyNVjGzkmWgx6HOSh//dZ1A+zpfbg4cZK8mq6bqGKq\r\n+bWwTNT4V76N33GKfK1HsrbxhS9M1DEnTzR/exL8VMlRfjchxb6RvRiac+itJT9bve0erZSlj6b1\r\n8Sbt7ZFMjeDYmVkpcjUdSqtoLFRp6FToCklrJOqFLK3GklYDnfZnHXhXv2VmLt7WIVyX1UE3NjzK\r\n5f1DGTIzvHX5RLIntU4m3Pwk4hbRY/I1bTpFgZdzQ1NGiIlq5yxq5Y215yNZ7TYW3vHLdnG1hs4i\r\nWLDe3gLfQWGyQliyt3fMLFkb2hfrFlYOb1iw2GTfeCr6xYYLJYbO/sAWGz7HEstlbb8gslhvly7w\r\nsWdhv6OncrcxfbpFX9UK+i6W7K96j0i5WSq1Ho959grLW/pdLqR25kJOJU6bI2rlJuDAjnCiKhHG\r\nhpSs0KNL6pmQw37ZW6tx7X2po822tRydOlmy5Gvdizy47nsSFV5XOiexXNRyotKqpfXyMnezLt/Q\r\n9f1nVI9cwoM1kcMStSeGOZGuV7ktqSNciKqJSqnwKdvD73/oHfsJtEb/ABbrm/zMOvX6LnFf9k+r\r\nfwjmfyxmH9Dnh99otO/eWN/JD73/AKB37CbRG/xbrm/zMH0XeK/7J9W/hHM/lh9Dnh79odO/eWN/\r\nJHR56dG7O7S6XpBrbWKunu+sPdjY+Su9uwm4FkrvLJ0GxVmZWeqFmkTU9NQKFZuXlpVEWOpRLjRE\r\nQtZasVGZjtA7Ke4NZ3Jwjh1DX82fPyfSsljpciWSaSmubytWSRznKjUVKS6S6QwT7Q+j6XofEJcP\r\nR8WLEgXGhckcMbImWqvRXckaNba11WrWupw9t2+HcMkvacFWRgv1CxqiWWytyy4XaEsNnb3hYspF\r\ny5/ELFkbPrBF9YsMFiyty2BYsNnwCxYYCWNVu3PARVFhs8AsWGFsWGzy7hLFlbHLdoWLDZ5i2LNw\r\n+jBorX16Yd6EO564Sy0C1luFUCr2ojSU5WaVZ+QkqDRDhIn6jPVatRYMvCQUSPAgo1luqJFQhJGa\r\niGy997/2xw30Jdx7snWDF7xkSK1jpHOkfata1jEVyrTXOXyRrVU3Vs/Zuu761f5ibejbJOjHSLzO\r\nRjWsaqIqq5fa5rU87VDkc/kf7pOP1obGH/8Azhu2/OI4Y+m84Ifr+f8AemR+YcpfS2cUf7Bj/vhg\r\n/kf7pOP1obGfvwXa/nEPpu+CH6/n/emR+YX6Wzij/YMf98M/IZZtp0FXSR2Csfau3Ndues5Eoljb\r\nN1y1VZRSLz7AViqqpNn6bFq1RKm0iQn1x5qP1MFfVS0BCokRTIQlSlER63Te1ZwX1TUYNMxdQlSX\r\n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\r\nTfxyGevZI/5Kar+62/xLDtNjCAyyAA+al0pZf64jphf2cLYf+0pHcz2elrgxt/8Acy/xsh1Y8dV/\r\n32da/vrP4iI2DNy9o5ls4lsN45MLFmEV6HWlUidi2aqMzRrTyUNFUsvWZKKcCcpFpqRFTVLO1WUj\r\npxRElp2DAjw1liRpIyG2t46Gzc21dQ0B6I70qCSNEXw5lavJfs5qs3Ns3XF21uvT9dtUTFnje6vH\r\nkRyI9E9qsVyH0xujK03LLdIRoWXLaS9BjSkG0Vo7PQbPXs2blz1Ytib5LKwkUq8ay0zKrSiJCQif\r\nSqbkOsQlUWRjyswSSRGSOj7X9HyNC1efS8hFRYnKiWlKrf1KqnkteKeS2i9UO3jCy4s7FZlQqjmv\r\nRFtFtOvqXzT1L5p1Q37j45qjSi++5G7HSMuttfc1fDZaSthd/bemnTq3R5w1woiThxUzMhU6ZOwD\r\nTFlZ2TjohzMnNwFpiQYyEREKIyH3ts7m1vZ+uY+49uzuxsvFdzMe34Kc1yL0cx7VVr2ORWuaqtVF\r\nRT5GvaDpO5tIn0LXIW5GLkN5Xsd8NoqKlK1zXIjmOaqOa5Ec1UVEU6jOkL9Gnv5oVp56c0Zb3Lv7\r\nwLCTExHi06j3pTlSsXb2kS61EctITM5R6fO0qomgnSucJUjrGxlKpIzbsE2h21NrZOC2Pe+nT4uU\r\n1ERz8VGzQPXzcjZJGSx+VM+q119+YU7n7J2vQ5iybPz4Z8ZyrTMpXRysTpSc0cb2SeduqLy96vim\r\nEXFfRqdJW0Vp5CLpCXsXY3bWFgzEvEqsCwE9V7eW6qEqiIS5mSpsCdkZCmSqoiCNCJyNNx+qUZLO\r\nVjEk0K1G6e2ps3EwXt2hp+TmZSoqNXIRkEDVro53LJJI9EXqrEazmTp3jVW09O3eydubIzGu3Tnw\r\nY2Oioqpjq+WVyX1anPHGxiqng9e8pfFi117edwlw92OjPdLY25O5+zsKzNgrD03yClSJL8onZuYj\r\nRlTdTrVZnlESpmfnpmJFmpyZWRGuKtRkSU6qS69t1bp1vemv5O5txTLPl5TuZ7vBERERGsY3waxj\r\nURrGp0a1EQzZ29t/SdraNBoOhxJDjY7eVjU+G3Ocvi573KrnuXq5yqq+JrCNvH2jT69m9Owlx92N\r\n4F8V59fk7LXeXYWQr9ubaWhn1pRLUmzlmqbEqtUmjIzI1rKFCUUKEh1xFmmGgjWpJH7YIJcmZmPA\r\n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\r\nRseWS/ayNzv8x85Zs+0d5dnTlZ2WPozenBTbDXwX2dHleJWkSMK86ajaRujYuozJpg1Cuw6LBo19\r\nd3VMVHNjjnCp0taSUk4P4iarHUWsbq6ve1vsqbSd+P3Njs+o5zGPcqJ0R1ciqq+aq9rr9SOjRfrk\r\nOyLs1bpi1rh7DpUjrm0974VS+vLfOzp5JyPaietWurwU7pQxHMiQANhGnF0cGjXp8WdkJO9+gz9H\r\ntxZ6ViSlkL17GRpSl27s9LRIio50uJNTUGPL1CnKiKUtUhPwIqEKUtcA4EVaoo5V4Y8Y96cKM182\r\n3JmyY0yosuLMivgkVOnNyorXMkROiSRua5UREdzNTlOO+IHC/afEjDbj6/ErZokXusiJUbNHfkjl\r\nRUcxfNj2ubfVER1KnAhVfovlb+uoqaJpkUorOrmFqgRarclNqrUtKqW8OHFgSlpygR4iEsRrTEhE\r\nsyckII9UsroO3FB6MnpW3HLMideTNRGKvmqXiq5qKvl76vC18TGyfsgPWd3o2vokSqtc2HbkTyRV\r\nTJRHKieKojUXxpPA5b9BHoZdFvQgrsjePCXV76L65BCipl49vZOny8nZSNFgeTzMxYKx0l1ktTY0\r\nROsXlkxHm5xCVLRCmocOItCsfuKfaP31xPxXaNJyabpjvrsaBXKstLaJPK730iJ0941I41VEcsau\r\nRFTm7h1wK2Zw8yE1OBH5ue2+XIn5bjtKXuY2pyx2l++Xmkpzm95yqqHLuMfTmkADr4fSNNOuT0YN\r\nCWf0ebF1tMC/7TcXUbkLGSElMIKq2duuqcFEtfdeJHgoiQ4sOXlqLHiUmXjoPWTOVCBFQlaYEYk8\r\nmcJtm5O9d64WmRtVY+9ZzrVonvunkqUlK9yL+oY42jvncuPtPa+breQqJ3ET3Ii+aonvW+u3OVrE\r\n/bOQ6NMCXhSsvAloCCRBl4MOBBQX2UQoKChw0FyIiIiHdTDGyCJsMSUxiI1E9SIlIn3DqFmnkyJn\r\nzzLbnqrlX1qq2q/GqnZZ+jK/9tFpCf2A4Hd/0Q6UMJu25/yW0P8Adcv8Shl92Qv+Ota/vEH8ZId0\r\nwdcZnUAB0C/pARP0lF4n9jy6Xh+o6CO1bsgL/vPs/dmT/wDczrj7U6/757f3FB/lzHB1aOTqk7Q6\r\nnBodQmqRX0Sypuz1Xko8SVnaRaCQUU9QarJzUI0rhRZabhwY0OIhRKSpJKIyMnGQO7dFZuTbGfoT\r\n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\r\ndG7eF0qHRjRoCZhHSK6DJQ1JNZJi6WNw8COxE7Klo9eTEI/2pofkNB872v8A6xyPkZPzT2+mYn9l\r\nZ98n5TQO9rp3uiMuapczVLS6dVylpSgERQ6fdLU6pfVVJuKrCHBlpO6aVrJ+cbF1kQ0Q07VrSkjM\r\ntVjbS3JlPRkeHK1V+zb3afdfyoeD9QwmJayt+Jb/ABWdfDTW+mHWNlZSqWJ6PrR8r1rbSzRx6dT7\r\n3r/4CKNZ6UmFGmDAn7NXT2Vm49QqZRNZSpc6nVacpC0p62TjJUqGN76LwtzcmVnzUk5eZURI4vfv\r\nVVWuW6pFXy5UfdnyczcOPjxOkZSNaiqr3qjWoiJaqt+Sed1R1b7d1jSd04b3JnSM047zrWXlWrn+\r\nrOn0i00yiDDk6clfXStDpNmKcmDT6BSIavPTSqdKwErWpa4kNC1rVFzc4U8Ao8NkWfuDH9FxW05u\r\nN/zsyp1RZ18Wt/aOXnXwVGNSlxA4r9oSCOOXRdmTekZLra/KT+pRJ4KkHk9/qenvG+LVeq23XOFB\r\nhQYUODBhw4UGDDRChQoSUw4cKHDTqQ4cOGjAkkRERETEWwhl2xrImJHE1GtaiIiIlIiJ0RERPBET\r\noiJ5GGMksksjpZXK5zlVVVVVVVV6qqqvVVVeqqvVT9s487Q8LOZroVtOrRS0Cr7r27wtLS9uSugs\r\ndbO6uDYyzVanbLW6tVDqlpitdI1s6WmUsHS6rMQleSy0eL1kaCiGyG19YyI8Oe2PouqaxtXR102F\r\nZe7y5Oalalc0K14ql3yr4XVdfFDLrskZ+Jjbg1iCd/K6THic1FReqMkVHLaJXRXt8Vtb6eC12RP5\r\nI66Fr9m9Z/8Aed0jP+R46+vnL3R+s3fdZ+cZ1fNLB/sifh/IP5I66Fr9m9Z/953SM/5Hh85e6P1m\r\n77rPzh80sH+yJ+H8h1Seli0p7g9MvTLtdfvo1Xgy9591FdsfYKjUm10pQbVWbgTlSs3Z9FJrcsil\r\n2ykadPJ6iYQuEa1yqUqMnQak4js57KulahpHCaLH1GNYnuysl6Iqoq8qq1qL0Va6tclL16eqjrj7\r\nUGbjZnFBfRno/u8XHY7x6O9++uqJfvXtXpada8bONhtu0ZI36jHezCq3Q6VaOkz1DrclBqFLqMBc\r\ntNykdLoiw1YkaTLFKkqZSFpMlJURKSZKIjLQ6lpuDrGDLpmpRpLBM3le13gqfjRUWlRUpWqiKioq\r\n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\r\ngsWVs7wsWGEsWGCxYbuBVFhvmFiw3Lhh47wsBgsWViz2CWSwwtiw3ALsWGzh4iWLDcgsWXVw2fML\r\nFkb5+IWLK3pCxYYLFhmwE8SWNX3i36i2GfPqEuiWVgFkb2BaCysAsN2+gLFlbBwvyJZ7EpJTdQm5\r\naQkJaYnZ6cjwZWTk5SDEmJuampiIUKBLS0vBI1xIi1GSUIQkzMzIiIzGkz9QwNKwZtT1SePGxsdj\r\npJZZXtjijjY1XPkkkeqNYxjUVznOVGtRFVVRD3Y8GRlzsxcVjpZZHI1jGNVznuctNa1rUVXOVVpE\r\nRFVV6Icrujh0Rd/N7UORtFevMw7j7HTHVx0SlakVVK8KoyymWXUWTTEhJkNYiNBqqcxCjQzZXksR\r\nO3oy7Xvu9XZg4Ey5O0uBkLuJW4IuZiy4kyY+hQSJae/1NWSuzeVVRyJp0E+PK1FZ6bC/wzw4O9gL\r\ninv1kWsb8em2dOfTuSZneZ8jV6+9xeZqQX1RVyXxyMWl7h6HNxcl0b+ibchDlJqn3cylvrSy2oo7\r\nV3n+TWwqBx0YpjytJmYSKVKrSp1IiStPhxCweIoyIx+bztIe699urtJyz4Wq7ul2to01ommbc7zS\r\noOReislyo5H6lktc2kezJzpYXdaiajlReyzhr2O+A3DNsc+Jo7dVzWV/TWpcuXJzJ4ObE5qY0Sov\r\nVro4GvTzctIpvogwYMtBhS8vChQIECGiFBgQYaYUGDChp1YcOFDQRJSlJERERExEOs3IyMjLnflZ\r\ncjpZZHK573uVznOctuc5yqqucqraqqqqr1UyejjjhjbFC1GsaiIjUREREToiIidERE8EQ8g9J5gA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB44sKFHhRIEeHDjQY0NcKNBioTEhRYU\r\nROquHEhrIyUlRGZGRkxkPbBPPizMycZ7o5I3I5r2qrXNc1ba5rkpUcioioqKiovVDwkjjlYsUrUc\r\n1yKioqWiovRUVF6Kip4opsdvr6ObRPvuhzczUruJOwtpJrXWVq7svJ7H1Mo8TFcxNUyUhLpc0tSm\r\nNcSbkIizxZZGZmfZZ2cfddO3T2bZYMPR93y7n0eHlT5mbi7zVcdWN6JHHkSyN1HGY1OjGYubDEnS\r\n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\r\n0hU73KzGjRbnLPTyTVCiw7NQKZFhTNpY8JRYx4MeXkCM0LhTE4nXhl+l7sB/oebiDxW0/B4o9s3M\r\nydoaLOjZYdvYqNbrmTGtOaufLI18WlRyJ4wd3PncqubKzCkRFXHXfXHvT9Kkfpm0WNy5m2izu/qD\r\nV/aIiosqp67az1K9DqaaSGnTpbaW1SnJ2/2/a3tuadNxkxodjlVZdDu8p5wpg5mXKm3fWfKVo8FU\r\nNWrqxik+uVqoNcRZpIx+qfs89i/stdlXSotM4DbI0zQJI28rsxmOk2pzJy8qrkank99nzcyXbZMh\r\nzE5ncrWo5UMYtf3jufc8qya5myToq3yK7ljTrfvYm0xPibfrU2mDJ820AB5YEePKx4MzLRosvMy8\r\nWHHl5iBEXBjwI8FZRIUaDFhmSkrSoiUlSTIyMnIeuWKKeJ0MzUex6K1zXIitc1UpUVF6Kip0VF6K\r\ngRVaqOatKhzV6C3To6YGiVV6LZy8S09W0kbkYUeDL1KxV5FZmqlbKiU04ijixrCXjT/Xz8vFhkpP\r\nVSdRXNyRQ0FBhQZfW65HTt23vcT+yN2ttKzNf2fpcHD7er2ufDquj47IcSeakpNT0qLusXKY9U+q\r\nTwJjZqudzuyZERY3cubM4y7r2tKyDMkdn4adFilcqvan/Zyrbmqnk13MyuiNTxTvVaKelhcppm3P\r\n0K+u4q1CLQWWqqlSVUps2hEnaax1o5eEiJUrJ2woxLWqTn5bXQakayocWGqHMS8SNLxYUVf4du1b\r\n2TeNPYz4uZnBvjdpvoeoQJ3uNkRK6TC1HEc5WxZuBkK1qTY8nKqLbWSwyNfDkRxTRvjbmhtjdGj7\r\nu0pmr6LJzxu6OavR8b08WPb15XJ8aKlOaqtVFNyIxqNxAAdJr6UZeZBrOkbo1XRQlrWq765y0lu5\r\nlmOFCmL0rYHRigf+M6qysKIsm+yuGe/D9p/6GU4bSaJ2aOIPFWaPkXcO4oMBi/qnw6Np8crXe1iT\r\natOxv7Zknx4e9o/UUm3FgaWi33GO6RfYs0ip92okX4FQ6vI/S4Y5nYP+jW3aHbDpAa1bmYp/XyN0\r\nlxVurQy9RWhKochaC1FUplhKfBQo8UxY8jUarqGRYoREIz3H0Kfoi/iQzZ3uf0ezI5eWbdu49KwV\r\njRer4MRuTq0jlTzYybAxkX9u+Pp6ucuz7py5e+nZipaYuPK+/U56tiT41a93xIp33B+D8zcPnufS\r\n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\r\nVUBveAGW9glkDMFlP//Z\r\n');
INSERT INTO `oto_banners` (`id`, `banner`) VALUES (4,'/9j/7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB\r\nAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMD/9sAQwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMD\r\nAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgCdASwAwERAAIR\r\nAQMRAf/EAB8AAAIBBQEBAQEAAAAAAAAAAAABBAUHCAkKBgsDAv/EAIkQAAAEAwUFAwgEBA4JCBMD\r\nHQECAwQABQYHERIh8AgTMUFhCVFxFCKBkaGxwdEKFeHxFhgjMhcZGkJSVldYYpOX0tTWJDNUVXKU\r\nlZa2JUNTgpLT1dcmJzQ1NkRFZ3N3g6anqLKztcLYKDdGR2NlZnaYorfnOEhkaHSlaXWEhYajuMPo\r\nOXiHpLT/xAAfAQEAAgICAwEBAAAAAAAAAAAAAQQICQYHAwUKAgv/xAB7EQABAwMCAwQDBwoOCgwK\r\nARUBAAIDBBESBQYHITEIE0FhFCJRCRUycYGR0RYYI0JSkpOh0tMKFxkzU1RVVldYYnKUsSRzdIKi\r\nsrO0wdQaNENjZGV1lZajwuElJic1NkRHg6Ti8EWEpcPWN2Z2tdXl8UbjKDg5SGeGtv/aAAwDAQAC\r\nEQMRAD8AmKqfGMp42L5HGMVPVU45xejZ0VxjOipyqnH166xcjZ09itxsVPVU+Ou+LsbFcYxU5VT7\r\novRsVxjFTVVIusZ4q7GxU5VTWusXo2K5GxU1VTrF6NiuxsVNVU45698Xo2K6xipqqnH7ovRs6K7G\r\nzoqYqpxzi9GzorrGdFTVVOMXo2XsrsbFTVVeMX42K6xnRUxVTL56zi/GxXY2KmKqdfXF6OP2K9Gz\r\nyVNVUzHWuMXo2WV2NipiqnX3Xerxi9GzyV2NipqqnWL8bFdjZ5LFy3ayBKrWy1VU62AtUM0cT1qi\r\nUAGftEC3YMJQ86aNki3JG/OVIG7G8QJh794ScSZNuTxbe1ucnQJXeo8n/a73Hrf9icfhDo0nMW9e\r\n/enCriI/b88eg6zNfQpHeo4n9Ye49b/sTj8IdGk5i3rXwGEhiiJTAJTFEQMUQEDFEBEBAQEAEBAQ\r\n4RmCHAgEG4KyyDgQCDcFK6F1N0XQul0AF8LpdFw+mF0ui4YXS6LoXS6LsoXS6eGIuoujDrXOJul0\r\n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\r\nfd017I87bXXmb181/9k=\r\n'),(5,'/9j/4gxYSUNDX1BST0ZJTEUAAQEAAAxITGlubwIQAABtbnRyUkdCIFhZWiAHzgACAAkABgAxAABh\r\nY3NwTVNGVAAAAABJRUMgc1JHQgAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLUhQICAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFjcHJ0AAABUAAAADNkZXNjAAAB\r\nhAAAAGx3dHB0AAAB8AAAABRia3B0AAACBAAAABRyWFlaAAACGAAAABRnWFlaAAACLAAAABRiWFla\r\nAAACQAAAABRkbW5kAAACVAAAAHBkbWRkAAACxAAAAIh2dWVkAAADTAAAAIZ2aWV3AAAD1AAAACRs\r\ndW1pAAAD+AAAABRtZWFzAAAEDAAAACR0ZWNoAAAEMAAAAAxyVFJDAAAEPAAACAxnVFJDAAAEPAAA\r\nCAxiVFJDAAAEPAAACAx0ZXh0AAAAAENvcHlyaWdodCAoYykgMTk5OCBIZXdsZXR0LVBhY2thcmQg\r\nQ29tcGFueQAAZGVzYwAAAAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAABJzUkdCIElF\r\nQzYxOTY2LTIuMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAWFlaIAAAAAAAAPNRAAEAAAABFsxYWVogAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAA\r\nOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z2Rlc2MAAAAAAAAA\r\nFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAAAAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZXNjAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAZGVzYwAAAAAAAAAsUmVmZXJlbmNlIFZpZXdpbmcgQ29uZGl0aW9uIGluIElFQzYx\r\nOTY2LTIuMQAAAAAAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2\r\nNi0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZpZXcAAAAAABOk/gAUXy4AEM8UAAPtzAAE\r\nEwsAA1yeAAAAAVhZWiAAAAAAAEwJVgBQAAAAVx/nbWVhcwAAAAAAAAABAAAAAAAAAAAAAAAAAAAA\r\nAAAAAo8AAAACc2lnIAAAAABDUlQgY3VydgAAAAAAAAQAAAAABQAKAA8AFAAZAB4AIwAoAC0AMgA3\r\nADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQAJUAmgCfAKQAqQCuALIAtwC8AMEA\r\nxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEyATgBPgFFAUwBUgFZAWABZwFu\r\nAXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIUAh0CJgIvAjgCQQJLAlQC\r\nXQJnAnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOANDA08DWgNmA3IDfgOK\r\nA5YDogOuA7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTEBNME4QTwBP4F\r\nDQUcBSsFOgVJBVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAadBq8GwAbR\r\nBuMG9QcHBxkHKwc9B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjSCOcI\r\n+wkQCSUJOglPCWQJeQmPCaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtp\r\nC4ALmAuwC8gL4Qv5DBIMKgxDDFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4O\r\nSQ5kDn8Omw62DtIO7g8JDyUPQQ9eD3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFt\r\nEYwRqhHJEegSBxImEkUSZBKEEqMSwxLjEwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAV\r\nEhU0FVYVeBWbFb0V4BYDFiYWSRZsFo8WshbWFvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6\r\nGSAZRRlrGZEZtxndGgQaKhpRGncanhrFGuwbFBs7G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcd\r\ncB2ZHcMd7B4WHkAeah6UHr4e6R8THz4faR+UH78f6iAVIEEgbCCYIMQg8CEcIUghdSGhIc4h+yIn\r\nIlUigiKvIt0jCiM4I2YjlCPCI/AkHyRNJHwkqyTaJQklOCVoJZclxyX3JicmVyaHJrcm6CcYJ0kn\r\neierJ9woDSg/KHEooijUKQYpOClrKZ0p0CoCKjUqaCqbKs8rAis2K2krnSvRLAUsOSxuLKIs1y0M\r\nLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+RL8cv/jA1MGwwpDDbMRIxSjGCMbox8jIqMmMymzLUMw0z\r\nRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3NnI2rjbpNyQ3YDecN9c4FDhQOIw4yDkFOUI5fzm8\r\nOfk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1hPaE94D4gPmA+oD7gPyE/YT+iP+JAI0BkQKZA\r\n50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUSRVVFmkXeRiJGZ0arRvBHNUd7R8BIBUhL\r\nSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1KTZNN3E4lTm5Ot08AT0lPk0/dUCdQ\r\ncVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYPVlxWqVb3V0RXklfgWC9YfVjL\r\nWRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19hX7NgBWBXYKpg/GFPYaJh\r\n9WJJYpxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlDaZpp8WpIap9q92tP\r\na6dr/2xXbK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4dBR0cHTMdSh1\r\nhXXhdj52m3b4d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7CfyN/hH/l\r\ngEeAqIEKgWuBzYIwgpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opkisqL\r\nMIuWi/yMY4zKjTGNmI3/jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaf\r\nlwqXdZfgmEyYuJkkmZCZ/JpomtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopaj\r\nBqN2o+akVqTHpTilqaYapoum/adup+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+L\r\nsACwdbDqsWCx1rJLssKzOLOutCW0nLUTtYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9\r\nFb2Pvgq+hL7/v3q/9cBwwOzBZ8Hjwl/C28NYw9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3\r\nyzbLtsw1zLXNNc21zjbOts83z7jQOdC60TzRvtI/0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZ\r\nbNnx2nba+9uA3AXcit0Q3ZbeHN6i3ynfr+A24L3hROHM4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy\r\n6LzpRunQ6lvq5etw6/vshu0R7ZzuKO6070DvzPBY8OXxcvH/8ozzGfOn9DT0wvVQ9d72bfb794r4\r\nGfio+Tj5x/pX+uf7d/wH/Jj9Kf26/kv+3P9t////7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEB\r\nAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMD\r\n/9sAQwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD\r\nAwMDAwMDAwMDAwMD/8AAEQgCWACgAwERAAIRAQMRAf/EAB8AAAEDBAMBAAAAAAAAAAAAAAABCAkD\r\nBgcKAgQFC//EAGUQAAAFAgQEAwILBQMFBg8RAAECAwQFBgcACBESCRMh8DFBYRRRChUicYGRobHB\r\n0eEWGSMy8ReW1yRCUlZYGCUzQ1doGkZTYmZykpSVl6WmtdPVJio0Njg6VFVzd4OGtrfH1Nb/xAAf\r\nAQABAwUBAQEAAAAAAAAAAAAAAQcIAgUGCQoDBAv/xABsEQACAQIFAwEGAAYIDgwJBw0BAgMEBQAG\r\nBxESCBMhMQkUIkFRYRUjMnGBkQoZGkJSV5WhFhgkM1VWYnKTlLG01NYXQ1NUdYKSorPB0tUlKDRj\r\nZWaD0eFFdKOywtPiJjU4RFhkc5aktcPE8P/aAAwDAQACEQMRAD8A1Sdvf9MdZROIKb4Xb7vtwb4T\r\n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\r\n'),(6,'/9j/7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB\r\nAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMD/9sAQwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMD\r\nAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAlgC0AwERAAIR\r\nAQMRAf/EAB4AAAEDBQEBAAAAAAAAAAAAAAIBCAkDBAYHCgAF/8QATxAAAAUCAwUEBAgMBAMJAQAA\r\nAQIDBAUGBwAIEQkSFCFhEzFBUSJiofAVFlJWcYGR1hcjMkJylJaxwdHU8QoZleEkM0MlN0VHVYKG\r\nprLG/8QAHwEAAQMFAQEBAAAAAAAAAAAAAQIHCAADBQYJBAoL/8QAWBEAAQMCBAUBAwQMCgYIBQUA\r\nAQIDBAUGAAcREggTFCFhCSIxQRUyUXEWI1JVVmKBkZKUsdMKFxlCcpOh0dTVGCQzwcLSNkNTVGRz\r\ngpUmREVGdaKjw8TF/9oADAMBAAIRAxEAPwDlq4fTXlj6sedjn5zvOC4fp5+HiHXA5/v0PfA53nC8\r\nPgc7A52HM2fybZhr4RwT9C28ehSW+dMa1qh7HUdRu+mBROVKo6mdxkc7MUDhqCB1R7w7w0xHPNni\r\n1yEyWlLpd838wm4E6awoqHJkwa66BbEZLimydOwd2EjQjt3w7lh5H5q5lRjUbUtGQ5RgSDLdKY8Q\r\nEaajqHy20T39wUcb/R2YV8TlDtLjZaW6n5yS19qQA6ZvEhxKoYgmL46CIdcRyl+qFw+RVLCbVvt1\r\nI9ykUGSoK8j2tdD9Q+rDlnhEzWABVVLbB+j5WiEj8yzi+T2Wt8VNNLo5XA11/Lv/AEaTl/7jBjAy\r\nPVg4d4+u+xMx1afc21NV+w487nCbmk376lbx+qqRT/xYvCbKi+h9NLrZUg8fTzEUQT7d5UMYV/1e\r\n+HCPruy2zTV/RtOoq/YMeVfCvmgn3zqEfqqUY/8AFi7Jsnr8H7rt5SQ/SzIUGT964Ywr/rLcNLHz\r\nsqs3lf0bNqiv2Jx5lcL+ZqffJop+qoRz/wAWKy2yavsg3Xcq3iygESboqrqibMxb4m6miQyhx1M5\r\nAPRKUfHTGPa9aXhpflxoTGTedC5DriW0hNj1hWqlqCUgaIJOpIGg9/wx45HDZmPFZefekUdLLaCp\r\n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\r\n'),(7,'/9j/7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB\r\nAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMD/9sAQwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMD\r\nAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgA+gEsAwERAAIR\r\nAQMRAf/EAB8AAQABAwUBAQAAAAAAAAAAAAEAAggJAwQGBwoFC//EAF4QAAAFAgIHBAQIDAMGAgMR\r\nAAECAwQFAAYHEQgSExQhMWEJQVHwcYGRoRUiMrHB0eHxChYYGSNSV1iUl9TVVJKWFyQzQmLSJUM0\r\nNqImKTdTVWVncnN0hIaVo6bCw//EAB8BAAIBBAMBAQAAAAAAAAAAAAABCAMGBwkCBAUKC//EAGIR\r\nAAEDAgQEAwMDDggJCAYLAAECAwQABQYHERMIEiFhCTFBFCJRMnGRFRYYGSNSVoGSlJXR0tQKM0JU\r\nV5Oh0xckYnKChLHB1UNVY4W0teHwJUZmc3WyJic0U2V0oqTCxMX/2gAMAwEAAhEDEQA/APKnsvPf\r\n6/GvrC3KgZz07LpzHl9fjRuUc9Oy8Aypbnelz1Nn5+ajco56my6d/dxo3KOenZUtyluU7L6KOejn\r\np2XTyPp60tz40tzvU2Xr9Gfnvo56Oepss+77/bRuaetG53p2XTPp7vopblG5U2XTyNLc9daW5Tsu\r\nlG5S3O9Oy6eefso3PLrRz96dl0+ylz9aW5U2XPl5+YKNyjcqbLpS3O/Sjcp2XHjRuDpS3Kdl59PS\r\nluefWjcqbLpRud6OfvU2XTiNG5S3O9Oy6dKW53o56dlx9vn10bneluVNly4CPn6KNwfjo3O9Oy6e\r\nfI0tyjc71Nlx5Ubnelz96dkP2cKW5RuU7Ljy8+mjcpblTY9KW5RuU7Ljy8+nKjc6edG5U2Xn00ty\r\nluU7KluUblOy8/N3UbgpblQEh8PPqo3O9G53p2XD7KW59NLcqbLPu8fpo3KNynZdKW5RuU7Lp6+O\r\nXs9FG53pbnetPZefornuVz3KgJd/30tyluUglw5UblG5TsvdS3O9LcqbLx40bnWjcp2Xnxo3aNyp\r\nsuns5BS3O9Lc707Hp6KRco3O9Vbuf9Q3+Ua476Pvh9NHOfgad3P+obl+qOfzUb6Pvx9NHOfhU3c2\r\n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\r\nPtguOfwDtP8AWSP26+1CdlPgsyeJOJu+cRptskcpzMEV7fiUXAAP/DcLpQzp1sT9+yOkfwMFdSXx\r\nG4qdaUiJaILLhHyiHFkfMC4Br84I+IrzLpx+5myYzjNrwrZYr6hpuFMh0p7pSXkJ1HpzBSfik1f9\r\nhrhJh9hBbqdrYc2tHWzDlOCy5GZFFXkg5AgE3yWk3Si8jKPRIAF2jhVQxSgBQyKAAGGL9ie9YmnK\r\nuN8uLkiVpoObQJSPghA0ShPZIAPmdT1qIuN8w8YZjXld+xpfnp1yI0SVkBDaddeRppAS20jXrytp\r\nSCdVHUkk9hbHpn6ArxNzvVnbnenZeAUtyluU7Hzyo3NPWjcqAj08+6lud6NynZd2XH6KNzvS3O9T\r\nZdOPf57qW5Rud6dl0o3O9Lcp2XT6vZS3O9G53rT2XT3Vz3O9c9ypsaN3vS3Kdj4efOVG5RuVNl07\r\n/DzwpbvprRud6djRuUtynY/NS3KNykEfOXIffSLneluVNjwo3KNynZB4eetG5S3Kmy6d/n30i53o\r\n3Kdl0ypblLcp2XT2c++jco3KmxHw8e6jcpblOy8+ygudKNypsunn66W5rRuUgl9dG5S3KgJegfdS\r\n3aNykEg8OdBcpbnenZdPPkaW53o3O9QEvt88+VLc70tynZdPbRud6NzvU2XQaNyjcp2Q+H0fNS3K\r\nW53qbLz56Ubnejcp2X2UtyluU7Lp8w0blG5U2XTp5DKjc70bnekEvt9Ps5Utylz07Lp5+yluUtyp\r\nsvHlRudelPcp2XQPfRuGluVNl9n0+FG5Rz07LpS3NNOtLnqbLp5H1UblHPU2XkaW5RuU7Lp6/rpb\r\nnfrS3O9Oy6efXQXNfWlz1Nn58jRuetPnra+z1egedVx+Oq301PDlz+ij0p0+Pye7z9VBpfTT7Pp7\r\n6PppU9w8uY/T7q4/TR6jzp8OXMfPooFL41O7/l5euj9VHr60h3cuQfT59NHxpfGp3d3f6K4+vr/5\r\nNH00+zv5c6Z8qVQPV38qXx8/Og/jqezu9Hqo9aKq/wAvPu+jr40D0pfTT7O/56PX1pUB3cufrrif\r\nx0z60+HL1c+Xf0pn1pVPZ6+Xfy6UUVV3d30cq40vWoPLu7/o91Hp60VO7u5jSNKkPV6+dB9KD+On\r\nu7vpo9aKn1fVSNFPj8nn30vQUvppH1cu/n91HpSo7u718uY8qKfrT3d30UqXrU7v+Xl9VP4edH00\r\nh6uXd9HWkfOlT3930c6Xxoqezl3UqVTx5d/kKdHw86fZ3fTy6+FKikfV3c+X30UqfZ9PfSPlSqdw\r\n/J5+c/POl6jzo+HnU9nq5+uj4+dFVezn59VFKv/Z\r\n'),(8,'/9j/7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB\r\nAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMD/9sAQwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMD\r\nAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgCWAEsAwERAAIR\r\nAQMRAf/EAB8AAQAABgMBAQAAAAAAAAAAAAQAAQcICQoDBQYCC//EAHUQAAAFAgMFBAUJAwQLCAoK\r\nEwECAwQFBgcACBESEyEx8AlBUWEUInGBkQoVMqGxwdHh8RYj0kJUk5YXGRokJjNSWGJy1BhDU4KG\r\nktXWJTZERkhjc5SVojVXdIOEpLXF09cnKDQ3R1ZkZmh1dpmmp7K0wsbY/8QAHwEBAAEEAwEBAQAA\r\nAAAAAAAABAADBwgJAQUGCgIL/8QAaxEAAgEDAwIDBQIFDAsIDwMNAQIDAAQFBhESByEIEzEJIkFR\r\nYRQyFSNxkdEKFjNCUlOBkqGx09QYJFRicoSTlJXB0hcaVldYhaKkGSUnNENGR2VzgrKzwsTwSGN0\r\ntNXhJjU3daNERVVkg//aAAwDAQACEQMRAD8Ap0ofzxnOi18qyLQlD93twpF3pKLQzm/LCkX0pKrQ\r\nlD88KRaSi0JQ/Xh9uEolJVaEofn0GFItJRfShqHAOGvtwpF+NJRaEofr8/PCkWkqtCUPxHvwpF9K\r\nUi0JQ+vn+IYWi0lFoShx5YUi0lFoSh+eFItKRaEofn1w/PCkWkotCUP9/DCkX0pKLQlD88KRaUi0\r\nFQ/X4YWi0lFoSh/y9uFotJRaGc+Eon0pKrQVD93XnhSLSkWhHP19gYUi0lVoSh/v7+HfzwtF3pKL\r\nQlD9c8JRfz0pFoZz8/f9344Ui0lVoSh+f69ccKRfSkotCUP+fjhSJ6UlFoah/q68dMKRfSkotDOb\r\nX7/r54Sq9qQq0I5/swpF+QpKrQ1DefXfhKLSUWhnPz9/38MKRaQq0M5+f2YSi0lVoihuuXtwlFpC\r\nChnP+GEotIVaIc3QeeEotIVaIc3v68MJVaQoohzefDCVWkKtEObT7/uxXVaQq0faDXv+P3a+GK3H\r\ntVbbtWcBQ/h1+WNUSL9K1fotCUP17O7C0XekotDOfr69cJRe9JVaEc/n9nhhSL6bUlV+lDUPhSLv\r\n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\r\n'),(9,'/9j/7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB\r\nAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMD/9sAQwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMD\r\nAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAMgFAAwERAAIR\r\nAQMRAf/EAB4AAAEEAwEBAQAAAAAAAAAAAAYDBwgJAgQFCgEA/8QAWBAAAAYBAwEEBAcICwsNAAAA\r\nAQIDBAUGBwAIERIJEyExFEFRgRUyUnGhwfAWIiQzYZGx1CNCQ1aDhJXF0dXhGDRERlNiY5SipMQK\r\nFyUmNlh0goWGlsLx/8QAHgEAAQQDAQEBAAAAAAAAAAAABQIHCAkDBAYBCgD/xABSEQABAwIFAgMD\r\nBwYKBwUJAAACAQMEBQYABwgREiExCRMUMkFSFSJRgoWV0wojQldh1BYzYnGBkZKh0dIXQ2N1scHD\r\nGDVyhpQkJSdHd4eTo7P/2gAMAwEAAhEDEQA/APKF3KnyR19aHmB8WIMeYH04+9wr8nXnnN/Fj95o\r\nfTj76Or8nXnnN/Fjzzm/px99GV+T+n+j16889v4seee39OMvRVfkj+bXnqG/px557f04y9CW9n0a\r\n89S39OPPUt/Tj6DFYfV9GvFlN/TjxZTeMgYK/wD4A+/SfWN48WW3jII9X2D+bXizW/pTCfWN/TjL\r\n4NV/LpKzm/pTHnrQxkEYp7Dfm8dJWe2n0YT64P2YyCLU9g68WoB9KY89cH0pjL4KP7DfT6v6dI+U\r\nR+lMJ9eP0pjP4IP7B/tHXnykP0phPygP04zCIP59I/T9vXpPykP0phPyiP04zCHN8kfzezSVqY/F\r\nhK1FPixmEMb5I/m0haoPxYStST4sZhCm8+n1ezSVqifFhC1JPixmEKYf2nPH29mkLVE+LHi1JPix\r\nmEKb5OkrVE+LCPlNPiwoEIb5H0fYdIWqj8WErU0+LGYQg+sg+fs+3q0haqnx4QtUT4sKBBj8j8wB\r\npHysPx4StUT4sZhBG+R/s/2aStWT4sIWqJ8WFAgjeHBPo+3lpC1ZPjwhaqnxY9K+0DHCOKtu+PYI\r\nW4N5SZjAuM8IkAiykragJKAm5AAD8Ij4xRszH18Ng1RfqUvd3MLOm86sjynAiyPRR+u4ozE3a3H+\r\n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\r\n'),(10,'/9j/4gxYSUNDX1BST0ZJTEUAAQEAAAxITGlubwIQAABtbnRyUkdCIFhZWiAHzgACAAkABgAxAABh\r\nY3NwTVNGVAAAAABJRUMgc1JHQgAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLUhQICAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFjcHJ0AAABUAAAADNkZXNjAAAB\r\nhAAAAGx3dHB0AAAB8AAAABRia3B0AAACBAAAABRyWFlaAAACGAAAABRnWFlaAAACLAAAABRiWFla\r\nAAACQAAAABRkbW5kAAACVAAAAHBkbWRkAAACxAAAAIh2dWVkAAADTAAAAIZ2aWV3AAAD1AAAACRs\r\ndW1pAAAD+AAAABRtZWFzAAAEDAAAACR0ZWNoAAAEMAAAAAxyVFJDAAAEPAAACAxnVFJDAAAEPAAA\r\nCAxiVFJDAAAEPAAACAx0ZXh0AAAAAENvcHlyaWdodCAoYykgMTk5OCBIZXdsZXR0LVBhY2thcmQg\r\nQ29tcGFueQAAZGVzYwAAAAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAABJzUkdCIElF\r\nQzYxOTY2LTIuMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAWFlaIAAAAAAAAPNRAAEAAAABFsxYWVogAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAA\r\nOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z2Rlc2MAAAAAAAAA\r\nFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAAAAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZXNjAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAZGVzYwAAAAAAAAAsUmVmZXJlbmNlIFZpZXdpbmcgQ29uZGl0aW9uIGluIElFQzYx\r\nOTY2LTIuMQAAAAAAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2\r\nNi0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZpZXcAAAAAABOk/gAUXy4AEM8UAAPtzAAE\r\nEwsAA1yeAAAAAVhZWiAAAAAAAEwJVgBQAAAAVx/nbWVhcwAAAAAAAAABAAAAAAAAAAAAAAAAAAAA\r\nAAAAAo8AAAACc2lnIAAAAABDUlQgY3VydgAAAAAAAAQAAAAABQAKAA8AFAAZAB4AIwAoAC0AMgA3\r\nADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQAJUAmgCfAKQAqQCuALIAtwC8AMEA\r\nxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEyATgBPgFFAUwBUgFZAWABZwFu\r\nAXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIUAh0CJgIvAjgCQQJLAlQC\r\nXQJnAnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOANDA08DWgNmA3IDfgOK\r\nA5YDogOuA7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTEBNME4QTwBP4F\r\nDQUcBSsFOgVJBVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAadBq8GwAbR\r\nBuMG9QcHBxkHKwc9B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjSCOcI\r\n+wkQCSUJOglPCWQJeQmPCaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtp\r\nC4ALmAuwC8gL4Qv5DBIMKgxDDFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4O\r\nSQ5kDn8Omw62DtIO7g8JDyUPQQ9eD3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFt\r\nEYwRqhHJEegSBxImEkUSZBKEEqMSwxLjEwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAV\r\nEhU0FVYVeBWbFb0V4BYDFiYWSRZsFo8WshbWFvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6\r\nGSAZRRlrGZEZtxndGgQaKhpRGncanhrFGuwbFBs7G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcd\r\ncB2ZHcMd7B4WHkAeah6UHr4e6R8THz4faR+UH78f6iAVIEEgbCCYIMQg8CEcIUghdSGhIc4h+yIn\r\nIlUigiKvIt0jCiM4I2YjlCPCI/AkHyRNJHwkqyTaJQklOCVoJZclxyX3JicmVyaHJrcm6CcYJ0kn\r\neierJ9woDSg/KHEooijUKQYpOClrKZ0p0CoCKjUqaCqbKs8rAis2K2krnSvRLAUsOSxuLKIs1y0M\r\nLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+RL8cv/jA1MGwwpDDbMRIxSjGCMbox8jIqMmMymzLUMw0z\r\nRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3NnI2rjbpNyQ3YDecN9c4FDhQOIw4yDkFOUI5fzm8\r\nOfk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1hPaE94D4gPmA+oD7gPyE/YT+iP+JAI0BkQKZA\r\n50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUSRVVFmkXeRiJGZ0arRvBHNUd7R8BIBUhL\r\nSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1KTZNN3E4lTm5Ot08AT0lPk0/dUCdQ\r\ncVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYPVlxWqVb3V0RXklfgWC9YfVjL\r\nWRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19hX7NgBWBXYKpg/GFPYaJh\r\n9WJJYpxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlDaZpp8WpIap9q92tP\r\na6dr/2xXbK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4dBR0cHTMdSh1\r\nhXXhdj52m3b4d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7CfyN/hH/l\r\ngEeAqIEKgWuBzYIwgpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opkisqL\r\nMIuWi/yMY4zKjTGNmI3/jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaf\r\nlwqXdZfgmEyYuJkkmZCZ/JpomtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopaj\r\nBqN2o+akVqTHpTilqaYapoum/adup+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+L\r\nsACwdbDqsWCx1rJLssKzOLOutCW0nLUTtYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9\r\nFb2Pvgq+hL7/v3q/9cBwwOzBZ8Hjwl/C28NYw9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3\r\nyzbLtsw1zLXNNc21zjbOts83z7jQOdC60TzRvtI/0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZ\r\nbNnx2nba+9uA3AXcit0Q3ZbeHN6i3ynfr+A24L3hROHM4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy\r\n6LzpRunQ6lvq5etw6/vshu0R7ZzuKO6070DvzPBY8OXxcvH/8ozzGfOn9DT0wvVQ9d72bfb794r4\r\nGfio+Tj5x/pX+uf7d/wH/Jj9Kf26/kv+3P9t////7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEB\r\nAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMD\r\n/9sAQwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD\r\nAwMDAwMDAwMDAwMD/8AAEQgAPAHUAwERAAIRAQMRAf/EAB8AAAEEAgMBAQAAAAAAAAAAAAIGBwgJ\r\nBAoAAQUDC//EAF0QAAAGAQICBAYLDQQFBw0AAAECAwQFBgcIEQASCRMhMRQVQVFhoRYiJDJSYnGB\r\nkZfwFxojQlNXWLHB0dfh8QoYktYzY4aH0hklR4KToqYnKENGVWd2d5XCxMbU/8QAHwEAAAYDAQEB\r\nAAAAAAAAAAAAAQIGBwgJBAUKAAML/8QAWhEAAQMCBAMEBAgKBwQIAgsAAQIDBAUGAAcIERITIQkU\r\nFTEiQVJiIyQyUWGV1NUKFhhCV1hxgZGTFxkaU1aDljOFscQlNHKEkqHF5SimOENERXR1gpSitvD/\r\n2gAMAwEAAhEDEQA/AFu9dd/b5/o9PEh4sfy6Y4/ozHl0wjnzv33b5fp4UsSN5dMKKLH8umEY/ee+\r\n7Q+nbff0cKiJG8umFLEj+XTCIkHnvu37dvZwq4cXy6YU8SN5dMIaQe++7fP5e3hWQovl0wqIcby6\r\nYQ8g7MPMIbiG+24b/s7O/hVw46QUgkb4VcKIogEIJH7MIaRdH9t2GHv7eUf3cK2Ewj0fSH8cKqHD\r\nV09A/wAMIaQcnHcdjeX8Ue31cKyEygbekP4jCphw19PQP8MId+4UHm9qf5ijwq4bTfT00/xGFPEi\r\nK6egf4Yh3e6oDCxOztUDFaSBhfIlKmPKmZYxuvSKABsBSLgYSh+KUwBxJe0rjEyixkvvgyWRy1Hf\r\nzCduE/tKdtz6yCcSMtWtOy6PHS+SZDI4FH1kD5J/enbc+sg4R/iVXsDqVP8Aszfu34UnirX98n+I\r\nwou/HBBCLb/6FT/szfu4A1dn++T/ABGA78cdBEjv70ft8no4N4iPawTxD6cd+KR+CP0fy4L4iPaw\r\nHfx7WHOxTgnI+a7Uzp2NqpJ2WXdLIJrmaNlPF0S3XUBPxhNyXKLSKjke0x1VjFDYogXmNsUUHmFm\r\n5ZWVtBkXFetfZhwkpUUJJBefUkb8thrfjdcPQcKRsN91lKd1BeZdWBfebFxRrXsG3ZNRqrikhXLS\r\nS2ylR25j7m3Ay0nqVLWQNgdtz0x5GQMXTuNbxa6BYSs1p2nT0lXZZSLWO8jjyEU5O1cnYujIIHcN\r\nhUTHkOJCCIeQONlZ9/Ui+LVt+8KOp1FKqcRuQyHQEOht1IUkLSFKCVbHqAo7H1nGovOgVaxLsuOz\r\nK2WjWKXMdjPFpRW3zGVlC+BeyeJO46HYbj1DCR8SK/kVP8Bv3ejhR+KtefNT/EYTHfVfMcF4kV7+\r\npU/wG/dwXxZv+9T/ABGA76r6cEEIr+RU/wAA7fq9HAGrNet1O/7cFM1XzHBBCq/kVP8AAbu+jgDV\r\nW/70fxwUzjgvEiv5E/zkHzfJ2cENWa/vU/xGA78fpwXiRX8if/APf9HAGrNf3yf44L34/TgghFPy\r\nJ/8AAby/NwU1Zr++T/EYAzz9OCCEU/JH8n4g/R3engDV2v71P8RgpnnBeJFPyR/8A930cF8Wa/vU\r\n/wARgvfzjsYYxewUxD5SiG/o2HbvDgRU0q6hYI/bgpqH044EOPwfV9uwOA8THtdMB4iPawQQ4/A3\r\n+by/u4A1Me1gpqPvYMIcfgj9Hp/VwXxP1cWC+Ij2sEEP8X1B9uzgpqXvdcAaj72FzjfDeQcwXSCx\r\nzi2k2TIN7s7sGMDU6nEPJuclHPKZQ4NmDFJZYySCRTKKqGAEkUimOcxSFEwaiuXhRbapcut3BVmI\r\nVIYTxOOvLS22gfSpRA3J6JHmokAAk7Yy4BnVWWzApsZx+a4dkoQCpR/YB/EnyA6npiSuoDo3dael\r\nmstrnnvTrfse1Fyq1bjZnaEXNQbBw+NyMm81J1iTm2cC4eK+0SI9O3Mqp7QoCbs4QlnZ+ZV5gVBy\r\nk2ffEKbVEgnkgqQ4oJ+UUIdShTgHmSgKAHU9OuN9XLXu63IyJtboT7EQkDjICkgnyClIKgkn1BRG\r\n5xDgIYfg+XzcOaamPawkTUh7WFfQsU3bKNwr2PscVKfvF4tckhEVuq1iLdTE5NSTjcU2rCOZJLOF\r\njgUpjnEA5U0ymOcQIUxg1lYuyk29TJtZrlTZiUmOgrdedWENoSPWpSiAOuwA8ySEgEkDGVCXMqct\r\niDT463pjquFCEAqUo/MAOv7fmHU4mNnzordeGmGkFyPnHTjaqXSurSVcTqUzSrWjGIq8oFXnGtLs\r\n9if19ADHKUx3yTchDjymEB7OGstLUpk5fNaRb1sX5FkVpZIQ0pD7JcI36NF9ppLqum4DZUSBuARh\r\nV1qx74t+Aqp1a33moCeqlhSFhI+dYbWsoH0qAAxBAIb4vq4eI1MdfSwhjUvewXiYfgergvig9rBf\r\nEh7WCCGH4Hq4KaoPawBqXvYPxL5eT5Q+3ZwXxT3sF8S9XFgvEo/A7B9HBfFPe64L4l72CCGHu5fV\r\nwBqfvYDxL3sF4mH4Hb8nBfFB7WC+JD2sF4mH4H0B3+rgvifvYDxIe1gghfier+XAGqe9gpqXvYMI\r\nX4nZ5ezu+fby8E8U2/OwXxP3sEEKPwPV9PAeKAfnYA1Me1gghfiDv8nBfFPnVgviXvYMIUfgb/T8\r\n/BfFN/NWCmp+9gwhR+B6vT+rgPFfewBqY9rBBC9vvPl7P5cFNV97BTU/ewQQvxPV+35OC+Kj2sFN\r\nT97BeJPier9fZ2cF8VHtYDxP3sGEJv8AiD9HBTVfewXxP3sGEJ8TzeTz+j5OCmq+9gvifvYIIQfg\r\nCPzfy7B4L4r5+lgvifvYIIQfgD5fJ2cFNV97AGpj2sGEJ5eT6Q7vVwXxX1cWC+J+riwXiQdveery\r\n8Aar72C+J+9jvxH5eT1eX+vAeK+/gPFPVxY2IXzvv7fp9Ho34pZiRvLpinuLH8umEW/ee+7fOPf2\r\neXhUQ43l0wpYkfy6YRUg97x5vp4VUKNvt0wpokby6YcXHuGXtzYL3G3y6NGxtHgc7yzyRkkVH3Io\r\nVIW8Mi4MUFzGWMBBWEBTA/tSAop+DFub1zdiW3MNsWjTzVr0Kw3yW0rW2y4U8QQ5y/Sce4RxmO0Q\r\npKAVvrYb2WqxLTNoYrua1pS8683btj2Hpug786tzk7rlKCuHkUyKSlcpxSt0JWByysFDfOcSpoPL\r\nWJKDZkUDTrpWmsslYAAmv9whJKUQeqj+DFdigszMUqYqE7ATUaD5RRJxE/NPMO2qBOTTdSesu37K\r\nqLxP/RTc1kymk/KAejRZDSWhsfRU+iYD0AfWd9p9ZbvZU2vAbkaPOz8q990tk7Jua6GVKRKWNgpU\r\nZpxruuwI34GVsupSd3G0nqc6yZ11l0yJfTklpfhoWAim67p46WxzMGZR7Jsio4cOHByP1BRatm6J\r\njqKG2IUpRERAOG4tSh6BMzrlpNqW/rzam3VUX22Y7CJtMbckPurS00yzzYg43XXFpbaaC1OLUoJQ\r\nFHphzKzqR1vWpRKjW6podtmJb0Jlbzqm6W84lhhpBcccWliWooaabSpTjhQEISN1FIxHc3SX5hIq\r\nRFrjzEThZU5EkUQqDpZRVVQ3ImRNMskJznOYwABQ3ER7u3iWcnsvsslR3pdQzqu9mK2hS1rL1PbQ\r\nhCQVKUpRhgJSkAlSiQAASTthi4naaZl1B5mMzkZY65DiglKUQpRUpSiAlKUiUSpRJAAA3JOwxJ6m\r\n5l6Su+xaU1S9HFQlI1dMqyDl7j5CH61IwFMRRNGesMYuYhynAQECdoD2cV7Zk0bskssq5Jty/O0X\r\nrDVXaWUOIhPmpJQsEhSS7S6RMZBSQQRzOhGx64lbbmZ2ta6oDNRY0j2dEjuJCkie5HpThSQCCGan\r\nVoj2xB3HwfUdRhjcra/Nb2DHBG+UtMmNaR1phTQc2HFT1KNcKgYSikhKkklYxdYBDtIRYxgAQHbY\r\nQHiQmRmg7s+9UjD72RuuG5LlfaSFOMQqxCEttBHRbkJyE3LbQfILWwlJIIB3SQEBf2pjUblgll3M\r\nLTBb1NguK4USDFkuRFqHmhuYxLdirWOhKEPFWxB22IJRFD6T3WhlubWrmJNNuF8hT7JkrJvIyCxK\r\n5lnDSLSUSQVeueqlAK3Q8IWTJzHMAGMcADtEOFfnJ2VmhTT/AG1EvHPzWZfFp2xKlJjMyJtbiRkP\r\nSVJW4lloGGVOOctDiylCVFKEqUrZIJxi5eaq84c0KnKo9k6fbfqU9ljnOIjsSvg2wpKeNxRlBCE8\r\nSgkFShuogDcnbCsyF0g3SN4fro27JOjzEVLrJXzWNNOT2FXDaOTfvQVFm3VcDLnIko5FEwE5tgEw\r\nAADuIALU5S9nj2V2oi8U5fZOdoXeVxXsuK7ITChXFHVIWyzw81aEGCkrDYUFKCd1BO69uFKiFheu\r\ndWf9gURy470000iBQkuIbU8tqQUJU4dkBZblq4Qo+iFK2SVFKd+JSQWOHpstTgJqERxDpkSUMmci\r\na33KE1DInEolIqBDyokMZMwgIAbsEQ2HiTJ/B89LTrzTkrUFm44yFgqR462kLSCCpBKYm4ChuNx1\r\nG+464ZZ/W5W3G3UoyutpDhSdlBMs8JI6HbvOx2PXY9DtscVgw2Msy6m8jWaSpWP5m9XK0TUpZ5xj\r\nRKomhGMnc0+XfOVQj4Vo2hK7GGdLGKinsggQNiE8gcW33hnTp10Y5UWfT80c2aZa9hUqCxT4TtZq\r\nRXJkNxGUNIQlyU45NqEgNoCnVJ57yvScc6bnEerZtfMbOG4KqqzbTl1SqLWp6R3VjhZZ5iieJ1SQ\r\nliM2VHhSXFNo32SnrsMP3P8ARe66azBjY5jTRkBGJKgRwKrMkJLO+qOmCpR8VxEu+lRNyG7S9TzA\r\nPYIb8RTtntq+zGu+402pRdXtvisFwo+Mx6pCj8SVcJ+OTYEeHw7+S+fwEekFFOxw607STqQgQu+q\r\ny9S+nbflxqjSpknqN9u6RZz0riHkU8niB6EA9MSV0e6247TdFo4Yy3i32LxsM4WTdWGvV88Ta0Xx\r\njKrmNd4Bym3eSr/8KBPCAErgqfKUUzAHNwk9RGme/M3KrLzxyAzVh3jblcWh80ybNaXH5RCGi5b9\r\naYDjSGAEFaYEsPRSsL5MmMVEGXGlHXZRNP8ATEZOZu5amlQoa1JXLixCzNS56S/+k4iwh15z0gnn\r\nAh1KeEFpQ9IBbelHyGNssatPxbil3VlJqQUrzm0VV2pYV4gzk4sVZo7acM3NIqNwAVeQeXn324UF\r\nK7O2ky6NTTX86rljVcspLzMXw4x2nCN1NsKcglxTaD6KVOErUBuoknCbu3tN7lk3NX3bayuth23V\r\nS3TGXLiu96UxxnlqkFEng5yk7Fzh6cRO2OV/pMdRFjk20LWMF4fsMy7MJWcTC48nZiSdH7xK3YMZ\r\nRw6XMHmKQR4Sl69n5kxZtCnXTf2qK46LbUZO70ubLo8KK0D5FyQ/EbabH0qWMa2i9oTm5ddTj0S2\r\nsi7ZqNZeOzceLT5j76z8yGmXlrUf+yk4kkjqR6SEGKUmnoerYs1lCpJnNhay9aJzJiqUDNTyQOiB\r\nyB3mIAB3b79nEJJdqdl07Un6S/2nI74hJUeGu0bl7BXCdnkxCyo7/mpcKiPSA4Rvh3VZ56xnWUvK\r\n0g04bnbhNNlhwdPNTRkc1I9W6kAA+iTv0wy1n6TrVLQZlxXbpp8w3Up5sUp14iy4smIaSTSOY5SL\r\nCzkZFuuKCpkzchwASH2HlEQ4kZY3Zq6ZM47ajXnlnq4uu4rTfUUomUyrUqZGUtIBUjnRorjYcQFJ\r\n42yoLRuAtKT0wzF265M3bKq7tBvXIKgUmtoSFFiXBmx3eBW/CsIdeSooVseBYBSoDdJIx5afS85+\r\nTAOXEOncflx6sPd8sv8ATxuJHY1ZMSd+ZqBzIH7J0Qf8IWEgvtCLtXvvlRaf8mV9pxmp9MLqFT97\r\niDTlt2j7bG6g77bd+8v5ONHI7EvImT/tNQeZ2/0VOMP+EPGKvX9c6/PKi1f5Ur7TjNT6ZPUWT3uI\r\nNNu3xsZCP0/8678aKR2FmnqTvzNQuan7qtHH/J4xV69bjV55UWt/Ll/acZyfTP6kUwDlw/pp7PhY\r\nuA3fv55XjSyOwP02SCS5qGzZ/dWmR/ymMVeuuvL34sqbY/8ABL+04yydNTqWJtth3TH5O0cUkHu7\r\nu+VHjTP/AIPtpgf349ROb37q62P+ETGMvXHWVb75U2z/AOGX9px9/wDlr9TA/wDQ7pi+qkny/wDt\r\nbjBP4PPpZ3J/KLzh+vm/smPl+W/WP0U2z/4Zf2nHrx/TNX+ZEsflnSnpeyNXFh6p9FqY8aR51Wxw\r\nEqxEjOyy6JVBKPYPIG3Ceq/4P/ZdvpVVMjtcWb1rXY2OJl9VUW+kODqkq7uqE5wg+eyz+zG0ga17\r\nfmqTGvXIyjS6ao7K7u6tpYSfPYSW5jZPzApT+0YcqGxj0XPSGt1Ymjw7jRLqMlEFBi49gv1+Mpia\r\nMVUrdu4rrpUIorFdcCicY07FUhREx+7lFlrizv7ZDsqpjFXzinNZ+6UYryUvzlpPjEaLukrX35CO\r\n9tPJTulPiTcthagENr6hQcimZcaZdTUN4ZQ1pdBzHLSl+GPBLL6lJBJDLPEqLOQPMiE41JCfSVHA\r\nBGKh9TWj/L+krJLvGeXq8WOkep8PgJ+NOo9q1whDnEiE5WZcUkSPmZzByqEMUi7dTciqZDdg3z6Q\r\ntb+Ret7KaDm7kXdBlUrj5MyG+EtVCmSwN1RJ8YKUWXQDxNrClsvt7OMOOIO4ghmRY125V3E7bl2w\r\nS1I24m3E7ll9vfbjaXsOIb9FJIC0K9FaUnpiPIQQ/A9X28/EpjVh58WG9NU97BBB/E9Q8FNW9/BT\r\nVPexs3f2at7iihZdz3bbb4vSvZqtWa/WXTrwcHTCvSD2Tdz5o8yodaQXzxi0KtyCACVIoDxXPr2u\r\nGtPIy+oiFrTby+8PK234Vvo5aEhXqJbbWSnf+8URiXOltFOlm7KgVJVVW+S2N9t0tK41Ej17KUkA\r\n/wDZGL3ekEzfjazQ40d8LCYr1xipCn2qMcCis2lq/NNlmzxs7RUBRI+4H3SMICKagAcogYoDxXzQ\r\nqxVLfrVLrlFkLaq0R9DrK078QcQoFO22xO56EfnAkHocSwqUGHU6fNp9QbSuC80pCwdtilQ2Pn5b\r\neYPqPX1Y/PLlK02aSci1ZK+Fs2z92g0c8ol8JaouFE0HHKIiJeuSKBtvTx0HQq47IhRH5COW+tpK\r\nlJ8+FRSCU7/Qdx+7FS8qottSZDTL3G0lagFe0ASAf3jri/j+zxu8bUXVLe7hcQZEsrKks4uqrvCI\r\ndazaS0mYLAuyVVKJ266xGrZI5yCURSOYgiJTiAwI143LW1USxKFHUtNAkSJDrxBPCt5lLYZQrboe\r\nFLjiwD5n0h1TiVOlpumzqjdVRcUlVVYaZQ2DtultwrLik+vqUISSPIdPzsbOHSKZxxrL4RsddWcs\r\nHyT+LeoqEcdUoCqC7c6a6ShBEwGRURMYhijuBymEo7gO3FbcKTKhzIkyC6tuc06lbakkhSVpUFIU\r\nkjqFBQBBHXfExpDTD8d9iShKoy0KSsK8ikghQO/qI3B+jH50EtANCS0oRgT3CWQelZeX3IVyoDbc\r\ne3f8CBeOg6kVuW9SaW9O6TlRm1OD5nCgFf8A/LcYqQqNRYaqE5uK5vFS8sIPzpCiEn+G2MHxF8T1\r\nfy7uM81ce1jB8V97BhBD8D1bcFNX97AGq+9jLZ1Z3IOkGLBk4fPXaxEGrNogq5dOV1DAVNFu3RKd\r\nVZVQw7FKUBER4wp9zQKVClVKpz2o1PYbK3HXVpbbbQkbqWtayEoSkdSpRAA6k4OxNflPNR4za3JC\r\nyAlKQVKUT0ASkbkknyAG5w/DHRpqkkW6byP005+ftFigdF0yw5kR03VIPcZNdCuHSOUQ8oCPEZaj\r\nr30V0iW9AqusHK6LObOym3broTbiSPUpC56VA/QQMOMxlTnLLaQ/Eymud1hXUKRS5ykn9hDBBxmf\r\n3JtWPZ/5rmofs/8AcpkkP/1njAPaFaGuv/xo5T/6ut/7wx9f6IM7f0P3V9Uz/s+CDRNqx/Rd1Dh/\r\nuUyT/lrgP6wnQ1t/9NDKj/V1A+8MF/ogzu/Q9dX1TP8As+DDRPqw/Re1D/Upkny/7NcF/rCdDf65\r\n+U/+rqB94YL/AEP53foeur6pn/Z8EGifVh+i9qG+pTJP+WvTwX+sJ0N/rn5Uf6ut/wC8MB/Q/nd+\r\nh66vqmf9nwQaJ9WH6L2ob6lck/5a4D+sI0N/rn5Uf6ut/wC8MFOT+d36Hbq+qZ/2fBf3KNV/6L+o\r\nb6lckf5a4Ke0I0N/rn5Uf6uoH3hgP6Hs7/0O3X9Uz/s+DDRRqv8A0X9Qv1K5I/y1wX+sI0OfrnZU\r\nf6uoH3hgv9D2d/6Hbr+qZ/2fBBop1Xfov6hfqWyR/lrgP6wfQ5+udlR/q6gfeGA/oezv/Q7df1TP\r\n+z4INFOq79GDUL9SuSP8tcE/rCNDv652VH+rqB94YL/Q9nh+hy6/qmofZ8GGinVb+jBqF+pbJH+W\r\nuA/rB9Dv652VH+raB94YKcnc8P0OXX9U1D7Pgg0Varf0YNQn1L5H7P8Aw1wX+sH0PfrnZU/6toH3\r\nhgP6Hc8f0OXX9U1D7Pgg0VarP0YdQn1L5I/y3wX+sG0Pfrm5U/6toH3hgpyczx/Q3df1TP8As+DD\r\nRXqs/Rh1B/Uvkb5v/Vrgp7QbQ9+ublT/AKtoH3hgv9DmeP6G7r+qah9nwQaK9Vf6MWoP6l8j+ret\r\n8FPaC6Hv1zMqf9W0D7wwU5OZ5fobuv6pqH2fCTtumzNtAYnk73hrKlJjU9hUkLbj221xiTfbYTu5\r\nmIZty77h3m4XliasNN+adSbo2WOoOyLjrCvksUuu0uoPHb5mokp1Z8vUn1YT1fsfMm1Yypt0Zf1y\r\nmwx5uSoMqOgftU60hI/jhrQgfierz/Rw9hq/vYQpq3vYMID4nZ8nBfGPewHi3vYIIAfger5PR6OC\r\nmr+9gpq3vYPxD8Ts7+79nBfFx7eC+Le9i5J+87+3isiHG8umK4Ikfy6YRUg8992+v+nCqhxfk9MK\r\naJH8umFbhzHxsoXhtGOuclfik/G1jVIfkOMeioAAzRP+KvILCCQD3lKJjfi8N3nRf0mxbeplKobv\r\nBeNcfVGiL4eJMZCGy7LnOAgjhhx0qWgKBS5JXGYV0dJFhvZ46Sjqvz5plt1slrLWitio1p3i4N4j\r\nawExkr6FK5bmzXECC2yH3k9WgDK7CTKH1harK1il4YpMK0ZlIzpKyx3ZR8+wqwIMyqKpJ9UIJPHD\r\n8pESiAAm0DlAoGUVE1fPaAZn3JoX0OVzNKxW1w837gqEajQpavhHqZ4gl+U6tBWV/GSxDeW88VKc\r\nVMcC1OuBlraw+NmlQdeOrp+0BDQjSll1SZEqkUJKeTDlohvRabGkyI6AlJ58maw8WiNkQWxDASFu\r\nrXsUzEpQ8N0lxKPSxlQptaZpAYrRsm2aNUEwIgikk3bkAVFT7AUOwTGHtEe8eOJ+DEvHNC7URWnJ\r\nNVuyovqUVOLU4664sla1rWsk9SSpSifnOLS6FSbgvatQKFR46pFTdAQ0gbJShCBsEpHRDbTaQAlC\r\nQEISAlKQABiEmo3WLgOc065tRgMgxi0z9zm0Ejo10Ry3dSDoYxUE27NIQTMuqoJtigBgERDicGkP\r\nSfnXN1Z6baRMsSWYci86SHXGwlaWmhMaU664r0koQ22lS1qUkpSlJJG2NxmrlbmHlbltmPfNzUAt\r\nUSmW5VJDjoWkoSW4EkthWxB3W5wNpCfSUpaQkgkHDB9Gd0e1Pxbj+u5pytW2s7le4xzWZjWE60bO\r\nm9HinRQcMGzRoqCyRJVVExTrKDuYDDsA7AUCze7Y7tUb/wBR2bd25B5P3c9T9O9uTnYZMN1xs1yS\r\nyS0/KlLTwKdjcwLTFZI5YbAcILi1HEJdKmnuh5D2bSa9UKYlecFTitvS5LqUFympcHMRAhn0uQ4h\r\nBR319BDzj3EwFJZb2ctwmbXVKwKCE7YYSDMoUAboSEkzZHMmUNg6tFVQhurKAbAIBtxRXTbfr9cD\r\nrlJo8qUEn0lNtrWAT85APX/zxLqm0K4q6HXqVR5UpIPpKbbWsbn51AEb/v3x4l6x9j3MtMlKld4G\r\nDu1OsbBdk8ZvU20gyctXJBTOds4Lz9UqUe0iqRgMQwAIDuHCly9zHzEyXvmg37l3c0+g31SJSH48\r\nmOtbL7LrZ3Sem248wpCgUrSSlQKVEHVTWlpj1OhVeCFwJLZakxX0EtvNnzbeZWNlJPQ7KG6SApJC\r\ngCKktHOhdpoz16Za9jCfNi/I+NUZvGnO5dOHUQ2ZTKydmrTpR0ZVRUYty8ZGTVMooY6agb8u2w3S\r\n69e0iruv7s8NOsO/ZRXnLZd1yYlfXymm25ypMNo0upISylCEKfbYntvNobaSl1sqCVBYKW8yqySt\r\nrKydnLc9qwUMW3Wk0oRGQ44sw1tuy1T4o5ilLUzxqiOsLWpxXLVyyvibXxOn00rMXmgHJKWwjy23\r\nGJ9u/uvMOX/7uG3/AAf6T3btUdPjm/8A9guMf/LdVwkNTcvkaaM8V7//AHbTR/8AMNFxqq6L9H1h\r\n1c5zr2K4hUYqIBNSduVgM3WWShavHqog9VKCYFKZ68OsRFAhjk3McTbiBBDjtq7RrXpbGgnTPc2d\r\nFWiJn3U86mBRoPGlBl1J9DimuPfciPHQ2t+QpKFHhQlvYKdScVUadcq5WeGYTVvOS1R7bhMGXUHw\r\nCSiM2tCOW35DnyHFoZaClAAqU6d0NLxvK4K0+Ym01Y+iaBi2rxlagoVmIOnxUGyclKuBKCj+WmpE\r\nE0zuHb1YoqqmEQIA9wAUAAPzcdRGpLOXVZmlcObOdN4y6zeFSe3+EWtTTDY3DMWK0VKDTDCCG2W0\r\n+SfMqUVKN3FBptOtyhUyz7WpqIdtxTsxFZGyAtXynFBIHNfdPVx5QLjivM7BKQ40bdafMPlIyKtM\r\nBIyKZjkOyZS7Fw55kzCU5SopLGOcSmKO+wD3cNJNtm46bFROqFClsw1AELWytKdiNx6RSB1Hz4VM\r\n227mpsVM6oUCYzDIB41tOJT18tyUgDf6dsV9dIJ0dmL9XOPJuWjIGNrmaoNg5kKncoxm3bO5N21Q\r\nE5IOf6oqPjOPkASBL8IbmTMIGKIGABC0Hswu1Kzl0EZs0Fhy4ZdV0/VGU2zV6K+6tbCWHF7LmQkq\r\n4hGmR+IupW2kB3YtOhTaiMMrnDlNbWedsO2/cCG2blabPh9S4Rz4r23oNOudFOwXCAh5lwqDQPOY\r\n4HEnj0lpelSVfl5SCmWC0fMQki+iJVg4KUF2MlGuVWb5msBBMUFWzpE5DbCIcxe/j9Ha276od4W7\r\nQLttmqNzLbqkJiXEkNk8t+NJaS8w8jcA8DrS0rTuAdlDcDFDFZTUrfq9VoFairj1iDJdjvtL24mn\r\nmVqbdbVsSOJC0qSdieoPXG7V0ZukHGOANOONbIzq8G7ybeKtH2e3XRWOaLTS7icISTTim8ioQ7gk\r\nbFEUIkgUokDlJzCXmMYTfnC9rhrizd1Xauc46XW7vqSMpbdr8qnUekd4cEKOxBWuIJPdgQ0JUvgU\r\n/JcIUsrdLfMLTbSU33ZL2NR8qMs7TtyhQ2WqrJpcZ+oykISmRMkymkSXEPPD4RceOpwMRmSoNBtl\r\nLvLDzjilSotOqTBFLtj+lWa+xsVPRZyIySDgiwIsVz8g+DuHAJiQixSHAwh27FHfiBFAyDzbui3Y\r\nl00GzZMmjvgltSNiVpG44kp33I3BG/zjbEoaJklmfcVCiXHR7acepr6eJshSQpafUpKSfknyG+2N\r\nfjWVoyyp0jWqrKeSNPNixpOVLHrGlY6fP5y2uI8y0knAls20emzgpAFmiTWxJlOcTbFX509+chyl\r\n6ouzm7RnI/sntFOUuV2puxL3YvS9ptWuaM3T6ZGdSITkoUhpbypdRhkOOuUp1baUIPExyntuW8yt\r\n2uPU3pqv3O/NGS9R7roFKateDGokhuoOzg6malBq7zYRBp84JDbdXY4lOKSFOKcQjdTTqW4E0rol\r\ndVN5yplDEMWwojKx4lJBnscjLWhdrXnpbCgdzGDAyCEM7cSHOgQxj86CPJtsPbsHFqmYfbx6Isuc\r\nkslM9al+N823L7VPEKHEp0ZdRjGmupZleIMvVBiOzs4tKW+TKkc3fiRukFQiTRtEub9Xuy87VeuG\r\n3oTdFEQqmPvTjEld+aU+x3TkU9+Ur4NCi5z4rHKI4F7LKUklOiW1TpZ1bafVGNCLcXdIc5AbS/sq\r\nWGpqQTR4iwcE8aFiBfkkU3bghOqM0AB33AwgAjwVvt4dEj2miXqjbTeBs5i6G6Cun+GxxV0zXY7k\r\nptfJNQ7mYymGnF80TiQU8CkBZCSB0SZv/j8ixPxit3lKo66iKjz53cOSiQ3EW3t4f3/nh95tHB3H\r\nhIVzAsthSw2eobo8876ZrnjKhZAbVKSsWXHKjGmtqfOrzRHT1OUjIfwV0LiMjVmyp3sugBdkzlED\r\nD27htw9WkztZdMGsfLvPPNDLhNx0q1cu4iJdZXWIbEVTcZcaZKDzRjTJjTiQ1Bk8QU4hYKB6Gygo\r\nojNPS/mVlZX8tbdlVej1iddc5cKAac5LUlUptyI2plxMyHCdSrebGIUltbZC/l8SVJD25Q6HfVti\r\nPGdkypZ2OPXUBUoNawzkfBWp5Jz7WObIeEOxJHDAt0l1mae/WFIsOwgOwiAb8RwyX/CBtC+eeclm\r\nZJ2tHvWFcFfqrdOhy59OhMU9ch90MscbyKo882h5akhClxxtxDjCD0C9uzQ5m3alpVy7Dd9sVAU6\r\nC7LeiRHqkqVyo7Snn+DnUtiM4pptCyUpkkL4TyyvpvHzSroVzDrDlLjE4j9iSTmjsIiRm1LZNuIR\r\nDqJtw9bMSMzN4yTO4VMpHqiYBKUClAO3t24lprq7TLIHs9qXlvVM84Fxy0XTImtQm6REjynAYCIy\r\n5C3u8zISG0DvbATsta1KUdkcKVENHkNkBemoNF2SLWuCjU6DRjFS+7UHJaElyZ3ksNtphw5rqlKT\r\nEfUoqbS2kIAK+JSUmZxugq1npkOcFsOHEpTGAhL1Jic+wCPKUDVUpRMbbYNxAN/LxXY3+Ez9n+44\r\nhCrRzNQlRAKjSKXsNz5nauk7DzOwJ28gTiQC+z4zVCSU5p2SogeQergJ+gE0EAb+XUgfOQMQ+ddH\r\ntqnaZh+4YOI51a/C2RkioNharwviNZ14InPjPlW8WJxPWbiJjqFVAA26vm9rxP6D2suhadp8OpgZ\r\n809rLQSVxCl1t5FR7+hrnKgCnFBlKk8GxHAhTBBCw/yvhMMbI0rZ/M3+Mu02WXKoYyZIkofZNP7o\r\npzlCUZ3GGEthYKChakyAsFosc74PEukehK1uRDNGyMi40ayEcVKTatWV9doTjZy2MVZEWygQKLdF\r\n6goQDFMDgoFEN+YOIETPwj7s57hly7OrFvX4/QJnHGedfosFyC4y4koXzW/FVvrZWklKkGKpSgSC\r\n2QcPlB0F530pcOtUfMy02rgjrQ6yhmXVm5KHkKCkct7whEdDqVAFKxJSkEAhzfbErsLuXPSMaaMg\r\n6OM0na/3jcHklJrEtskOUr9Gerp1WK0Qu5SL1ZoyUTbqsnpCmEiYfhSl9q3KSFOdUCJ2RusfKXXF\r\np6S+5oyzQbjs1mnslSmhDnJRI3QhZ4w7GDjU+nqWAtQ4oylkGQpyQTNSOsvJK9LOvdDTGo6zJamJ\r\niuFKOe6ha2WKgeABAU862qBUQgcBdLMrYKcSBr5v6g9iX72LkWazKRjXblg/ZuExTcNHrNY7d02X\r\nIPaRZBdMxDAPcYB46wKZdlOrdMp1ZpM9EilS2G3mXUHiQ606gLbcQfWlaFBST6wQcU5ypsiHJkQ5\r\naFNymnFIWlXQpUklKkkeogggj58YwQHxPLxmeMe/jG8W97Du4WyNeMG3dldaK78HfJkFpIMVhODC\r\nXjFDkUXYvwIdMwJ7pgcqgCBkjlAwD2CAtdm5bdnX9Z0+Deb4YgRkqfRJBSlcZSEndxKldNiNwtCv\r\nRWOnRXCpLiZXZiXVaN20+RaTRkT5K0smNspSZAWobNlKeu++xSpPVB69RxAzX1F6yiZJqNfa4+GT\r\nYzsvCCheVJ9os3la7JumoIPGtYcEePo+Xh3aaqpW8iBknJCB7ds3UFMwwT00WTYt0XpNl1qoOPTK\r\nYsPxYqkBKXkIWAl5xW5B5aiglkeZIJKkBSTNvUpf96WZZ1PbpVOQ1DqKSxJlJUVKZWpBJZbTsCOY\r\nkLAePkAQAlZBFagQA/k/V3/LxZuaz7+K2jVvfw4ONMhWbBVrYZDq0qjEPosRRWF5zDHyLRcQFWLf\r\nIkMmZZF11YbAUSnKYoHKJRLzAxeoOp5eSMvpTOYfNMNTo7tyOHvIkbHhUxxejuE8XHx+hy+IK80j\r\nD2ZAy8wZd/Rhl8GjLS0TI53F3bu+44g+Ugq2KuHg4PT49inoFbTt1X62YfKsLAVDD87OS8VLVKC9\r\nnl4mIkYVB7aH8eDibhaAm7lPGqVSbOjC1RePGiLx4coiUiQCAGgpp/TlyrMemtXaxIdcVIHcePli\r\nPzQSWu8o6lS1KCQ2kKLfMICgoEbTgz9k5hw8ualMtVyO203HJncHGX+V0Dvd1dAEJSVKcUoBzlgl\r\nPCQd62QgPieri1jxj38VW+Le9ggr/wAT5uCms+9gDV/ew4mKsJ2rMeRKhjGlMSvLLcphvExxFRMR\r\ns2A4HXeyb9QhFDoxkRHoqunJwKYxG6JzAURDYWnzyz+sbTzlJf2dOY9SVHs23qeuVIKQC44QQhmO\r\nwklIXIlPrajR0FSQt91tJUkHcK2wLdr+ZV527YtrsB2uVOSllsEkJTuCpbiyASltptK3XVAEpbQo\r\ngHbbG4NpS0UYX0nVZiyp8Cxmb6syTJaMny7BuraZx4omAPU2LhQFj16AMp2JMGpypgmUorGWW5lj\r\n/n/a4u0Y1Da572qdSv255NOyvbkKNNt2K8tNNhspUeSp5CeATpoT1dmyUqcK1LDCY8fgYR0NZH6d\r\nsv8AI2hxY1Dpzcm6FNgSai6hJkvLI9MIJ3LDG/RDDZCeEAuFxzicVMDiA2H7xGTVXrB0/wCinH0N\r\nlDUZc3NIplguDChxEizrNntjh5aJKGnrA0YBGVOImpFFI0TWXipl1EiNyCkBDHA6iZTSb0qaQM+d\r\naV/1rLLT5ajFWu2n0hypyEPS4sJtuG1IjRVr50t1lor58thKWkqLigpS0pKG3FJTlz3ZQ7PgM1Kv\r\nyi1EcdDaSEKWSspUoDZAJ24UKO+23q33IwsLJqLwtScJx+oq+3+Ex/h6SqtcuKNwvSi1UbpQ9tYs\r\nX9eSdR80k0lW83KEkUUko0yHh53SgIFRFb2nCWt3TZnZemeNX042FYMy4M4YVWm05yDTeGZ8PT3n\r\nGJa0vtKLHdWVtLUuYXExUtDmqdDZ4sZMi4aPDozVwTpyGKStpDgW56HouAFA2PpcR3ACNuLfptv0\r\nxXBWOnp6MC1W2OqTXPr+IPKyJI1nY7PjXItaqRVllQSQcSM7L1pqjBxypjAJnL4rZBAvtljJlARC\r\nxm5ewb7Su2bSnXW7k5T5q40cvLhQ6xTpM8gDiUhpht/hkOpG+zUdx1bh9FkOKIBb+Nndl1JlIiis\r\nLRxK2C1suJR9BKin0R9KgAPXtiw7UJqbwtpcw9J56zPbwr2LIpavIObLGRUvayqmtUkzioI7GPq7\r\nGXkpJF+7fpcp0ElCFSMKgiBAEwV7ae9LudWqDOGNkNlDagl5oONy1mJJeag8sQUKclB5yWtlDK2g\r\nhSShxSVcz4PbjO2F7Xrko9tUldcq0rgpoKBxpBXvxkBOwQCSDv5gHp18sMLljpMdHOEcIYb1E5Ly\r\nXI1/FGfW6LvFk4WiXiVkLE0cRXjtFyeuRFffWGJQPFmIqJnbZHk6whT8pzFKL/ZW9mLrBzmzszm0\r\n+Ze2FBm5m2AtCK0yanBZYjLWstBCZTz6I76uYlSdmXF78CyndKSrGiqeY9p0ejUivVCetFNnDdlX\r\nLcJUNt9+EJKkjbr1A8xv1xIyW1D4ghtP7vVE7uDZXBzTGP3YT3aOZSMogvj80AWzJzTONj2jmXeK\r\nLRBynI2TQM5McQT5Of2vEcaTpwzhrOoWPpZi2ktGd7lyqoPh7rjTPDUkyDGW0t91aWEtpcSol4uc\r\notjmJUUEEqF24KSzQVXKqUDRhH5/MAJ3b4eIEAAqJ29W2+/TbfHmaatTWHdXGLGGaME2F/asdSst\r\nMwkdOSFbsNWO8fwDrwGVKjGWeMiZQyDZ6BkutFEEznIYCiPKPGw1M6Yc39ImZ7+TueNFi0+/moMe\r\nWthiXGmpQzKClM8T0Vx1oLUlPHwcXEEqSSBxDHzt25KTdVNTV6K8pyApakhRQpG5T0OwWAdgem+2\r\n2++GazJ0jekLAGoOj6Xsr5QXq+ZciqUpKr14addJOMcGyDYF6xVRkLTEwD6swqb+YbGIod46QI2T\r\n2VWFNIefh58m+zf1c5+6fbu1O5WZdMVLKOiIqKpL/f4TUkilRxJmhiE6+iVIUho/BpZaWp5YLTQW\r\n56ONPV8wbVoVeiW3U6gW6s+W+FPAsp+FVwo3WElKdz5kkbDqdh1w4+qvWDp/0U4+hsoajLm5pFMs\r\nFwYUOIkWdZs9scPLRJQ09YGjAIypxE1IopGiay8VMuokRuQUgIY4HUTKZsdKmkDPnWlf9ayy0+Wo\r\nxVrtp9IcqchD0uLCbbhtSI0Va+dLdZaK+fLYSlpKi4oKUtKShtxSdlc92UOz4DNSr8otRHHQ2khC\r\nlkrKVKA2QCduFCjvtt6t9yMKa36mMG47wfG6jsjZChse4dlaxXba0tl1K8rgnjLZGtZWvtPEsi2S\r\nnjWGTavCFSiiNjSR1xFIEBUAS8aC0tMGemYOetZ025dZfS7gzhgVSbAehU8tyUpep7640twykr7q\r\nmI04g8U1x5EQIKVl4JUkn7yrjosCitXDUJ6GKSttCwtzdPRxIUkcJHFxkHogAq36bb4rwpfTxdGJ\r\nd7jGU1pn91X15iQ8WsbDdMe32o04FzqdU3Wk7NN19rH16PcD2+FSItGyJR3WOkG+1hN59hF2lFl2\r\ndUbwdyZhVJMSPznIVOqsCZUCkDiWlmK29xSnUDccmKp510jhYQ8ogFBw87cupktuImsqbK1bBbjT\r\niG9/Vuop2SD86uED84jE6tUesDAWjXGsPl3UBcHlUx/PWyKpUXOxNYs9zKvYJuGnZ+MQMzp8TNvU\r\nGbqMrjo4OjplbAYpCCfnUTKaC+l7R9nzrEzMrmUORVrMT7+ptKfqMiNKlxqfwRo0mLEfPHNcZQXU\r\nPzGElkHm7FauHhbWQtLluyh2lTmarW5Sm4LjqW0qShTm6lJUodEBR2KUHr5eQ36jHnXjWtpwxxpe\r\nh9ZFyvi0Pp+sFdpFphreasWh2/kIjIrmJaVFRCpModzaxdSas03EyAswWbpic6xUyJqGLtbK0R6j\r\ncw9UNc0dWjZbMvPimzahFkwxMiIYZdpiHXJhXOW8mIG2w0pKXObwurKG2ypbiEn5zLyt+n20zdsu\r\nYUUNxDa0r4FlRDpARsgAr3O46bbgbk7AHGRiTWbp0zdp3mtVePr+R9gmuR11l527y8LO1pOKjceJ\r\nPF7c8fRNhjo2ZbIxSDBU487coqkKBicxTFEfhm1or1E5J6iLb0rX5ZKW87qu9TmokCPJjyw85VXE\r\ntQkofjuOMEurUEkhezZ34ynhVsNKvCgVmgSLngzd6K0lwqcUlSNg0CVkpUAroB83X1Y5pY1f4B1t\r\n0GfyHp9sMrdaHC2N1SZSZl6Va6kycTyEXHykhFNW1xhYZxKFaxsw2MudJNREvXlIJubmKBNU+j/P\r\nnRJfNtWLnxS4NJvmdT01GOxFqMSa63G57jLUhxUJ50Mcx5h5LPGpK1FlakjZIJ9bd00G9YEqXRnF\r\nPU9Ky0orbWhJVwgqTs4kcQ4VDi6EddjitnpGujko7upWHPuCq0yq1grbdxN5ApEE1I0gZ+CQKK0p\r\nZIOLbkK1iJqHQAzh0igVNu7bEUUAhXBR8Iu67ITtdcxod/2lpW1O3hIrVqVl5uHQqzNcLs2DNWQi\r\nNT5klZLkqHLWUsRnXlLfiyFtNFaoix3WtjWto/oH4r1vODKejohVantqfqEFhISxIjpHE7JYaTsl\r\nl5lO7jqEBLbrSVrCQ8n4bX3Cv/6v1eTjrENZ9/FMRq/v4MK/8T1eb6PJwU1n3sFNX97Bex/s/wBH\r\n6u3z8B4z72A8X6/LxPuQed/b5+IfQ42+3TES4kby6YREg9992+fy+by8KqHF24emFRDjeXTEr8Bq\r\njC4KzZdGQ8kok3mWaKwbc6QQ1ZI/bmKfvASrywm/6vERMyZBruq23LLmgKp0S06etIPl/wBM1uSx\r\nJ6fS3R2U7/MdvLHQn2bdNNh9nZrmzhop4LqeaqMFLgHpoRBorTzRSodRsuquqG3kpIPqwxejnUWw\r\n01aiqTk2cSdOaqid5BW9FiUTvBrkymVJ2ugkXcywsXKaLgyYAYyhERKUBMJeFl2guk+Tq+0vXblT\r\nRmo6rwYlRqlTEvKCGlzIalbslavRbVJiuyorbqilDTr6HHDykrGK1tH2cEDIzOOmXRXVOptOdDep\r\n1QLaStaI0ngUh4IG5cEaWzGlLbSCtxDKkNjmKSRufxTPEue8eJuo19A3ug3WFRWEqS7d6yfxkgiV\r\nVMFQSOYyRxKPnASmDsHy8ccVNyKhWJdq3Ic2RRb9oc8pWglUadAmR19UOIPC6w+y4nqlQBBG43Gx\r\nPQqmp1SlqjTY7iVxJMfiaebIcYkxn2+i2nBu2/HfZXuFJKkONr+Y4qA1M9DbjRpIVPIWnp1K1OMh\r\n7xWpTJuNVZx85rlipIT8WpaXMWk7XU8EesYVBUQagIIrJAIAAnKUprdMve08zysrLXNSgZ11mJeM\r\nlVp1RqjVZ2JFTV6XUhT5Saevnx2mu8xzKW0XXHUKlNHdwPqQVgRrf002bUbltNOXj8y2aY7W4a6n\r\nTosyWml1KIqTH72hyK484ht4sNqSlKCmO4AlssghBN37eqRrGPRbswIdJozTRaJlMXlMm3QKRAhT\r\nBuGxikAAHinB3T1Z7gcfMhpbit1b7j0ievn9JxIt6sy5c116Uohx10qWSPIqVuon95OPz9Nc2qvO\r\n9p1M5jbTNhmK17F8hW2sMYRIDIHZMoSbexrVQ/haRnAGeNWyagFLyogQS8hdvbG7UOzg7PTSPbGk\r\nXI2v/wBHFHuSt3HbVOqsydMaRJ4pM6I1IdZZQd22Wozji2EpCeaChQeUXOICEefWuvUnSczbnsbL\r\nm9plo2RQJj1PjRIASwt5MV1bXfJbxb5zz8vbnEKXym0rShpPQuObAPQBZwyZnPGeYKxkJ+5mIjG8\r\nzANoCYcJJkIoeZbOnLhgUyaZESuGaaJROUnKApqJiJQHcTUc9tToL0/ZQajMv6jllTGKXGuigyJk\r\nuAlRUiO9GlNsJda41KWhqWFr4W1EhLkd7lq4Nm25JZOai73z7y28WzIabk31R54iLqaW0NLqEdxo\r\nut94baShpUmMUlC3UIRzG3Gi4ku8xx2+aXp8We3098JEhcoN7I1IvsTrCN3LRkqqkBtubkOq1TEQ\r\n7tyhxTc9kZa8V2JRm5iBClqUpaAr0SplJKFEb7Ep41BJ8wFKA8zh46dW5SbduOPueWpUdW30hah/\r\nwJ//AMMVv9M3W24aA8mijsYwWjGO4BsPtRvsEAj2eTcQ4sQ7KPLG38u+0P0z1ulOtmQ7JrzB4SN+\r\nFVp19w/+bYxGfVNVnU6Zc7uPoDApv/8AYKNiA/8AZ/MbwIs9QVvXSRGeUd1avJqqCQyzeLaIOZHZ\r\nEpgE6JHLmQNzmLtz9WADvyhtPLt7Q5mbmZp8y3q80otmnUGoVJCCeFDkmXLZjLUrrs4ppqI2E77l\r\noPL4duardkuz7hNxcpcxLvZ2MufcTEJR23UluDDL6QD6krVUFFQGwUWkFW/AnadvTE3XIGJdJS0h\r\njKQdw7yx3OCrc9Ox4E8Li4N2C6ywJKGTUIj4xXQI2E4hzF63cglOBTBAPsw9I2Q976yLDouZ1Fh1\r\nW32KZUprUN47sypkVpBYadSlSS4ltLjsvl78LndeF1K2S4hT+6h84b7ygybuW+cvZvc7sblw47co\r\nNtuLiNSHFc19pLqHG0uHgRGS4pBLYkqU2UPBtadWTCmcMp0/IVbfoz8o/XWl49u2OAgV82eOHiCb\r\nVw1XbEScqbLiXnRERKoUR2AD8pg6MdX2gfTjmXkpeqLdsKlUC4afTZEll6M2mOw4GGVuKYlNj4Et\r\nuJSQHyjmsK4VpWUBbbkfNHfae6gYOc9nWNnZesy8srLlqMemzI04NvPR++OojImQ3igOpcjqWFKY\r\nKlMvt8xBQl1Tbre+ZRYtaWpdUlJovUy0hXYd5JJmJ1RivXDBBVxzJmDchhVMIiHkEeOMCk5A2bUq\r\nZAqBW0kvspXt0HygCOn7Diwe6ZLNPuWvwaad6ezMeQ2R1HAlagnY+vYDbfGj10lNFia/rn1GxcIg\r\nRKOJdGbxMqQkMTwiUrEDKyBt0ylLzKSD1Uw+UBHt7d+O2Hsp7jqb+gTICPVJSnX4LdYgNqO/WNTr\r\ngqsCGBuTuBEjMpSR0KQCnZJAxRdrXlRYOpjMZETYJdbpkhe23V+TR6fJkHp61SHXVEeYJO/XfGzF\r\n0W2oyiZq03Y9pcxOsWWSqBBNajLxT9wgg9lEoMgsWkq2AxilcmetUCqnKQAEvPtt2Dxy19ofout/\r\nKnWHnFEq8MRLeuKrv1mlPKHCw/GqS1Slx21ncByFIW/DLa1cxaGEujiSokXD5G3PUMz9PGWOaNFQ\r\n5Kiop7VMqJTstcepUxtER4SAjcNmU2hmc3v5tSkb8JPCHz1H9HLgLUepKTsyWw0y/vWJm7W8UmxS\r\nkG/QdFBQUHb2PaO0ouXMmdTcSuEjgb5QAeA07ZvZp6Zoke37HuWjVLL8Si89RazToNVpz/EEpcQR\r\nKZVJjJcSkAmFJjK8zuQpYUprinVK54UWNIua4abOjR+THmUqrVClzIyApS08tUSQ2w7wLUVJTKYk\r\nJ8gAOFBTDzo1NO940w571T4CyFKrWJEEKPkOpXFZJwklboeZ8awoPCgqYUResE4NNFwUu/IYodoF\r\nMUoPZ2ht2ZUaxrQ0mZi0S1oNu1OBSa5Q6hSo6mjHp0imSKXKZRHKEtkw5jVWckwypCPQDjakpead\r\n3abKCnZhWhWc86He11zLhVIrNMq8aqyuMyZzdSizIrpkLWpZMiOqlNMPpC1JCglaSW3G8Wl1DEEF\r\nA37KdvQaN0Xdykaz17oCpgs5LDVxo32OYCgYUyqrjtvv278Vyzcp2LgpVJtOtVsOWxQuY3T2SvdD\r\nQkqEmQpKSdgVvL6kbbhKRtuCS/tRrEbwqiiJHCak4la5KwOrhSossBR9YbZb2SDvtxK9R2APsPw7\r\njM1cyJyJg4jseWmrmWKAgYQfT1YfJEVMU5SGDkRUEnMUwhsO23bv9msqYES2p2WzU9BtCdNZqLie\r\nMcKZcJt6O0Qkg7Fxqc7xFKhvykhQVsko+SashVFU6obVJl1TSenUsyeU44N9+oQ5CZIBB2Liikp4\r\nlBVd2TsGoZv6UfFx3qJXNR034dTv8kYyZlGvsjuUtJxtcYriDYUAOoeHWcAAq8xTNiiAeebuVE2k\r\n5L6Ac+sp7YqCI9XzPvqPSnlhQSrwqg02DU6i436W6gt6rQICyEcBbmPJLnGnhDI12mvXHn1lxXJS\r\nCqn2ha0uegbbp8QrUyTTooPTYKQxTpMtHpcQXGaUEcJKjaFP0Wr26IsdQkvBXjSSinEVMMlCFVKD\r\nSYaLocqyY8pTAoiJhAN9+zydnED6Lkda9ErUSq0GuJjV+nvNPtOtr4XGHUq5jLiSPJSVJCkkHfoD\r\nh42qlMi91mSInHDcKhwrG6HUj0XEKB33SoEoUCNiCR164ol6JDT+7wVqn1x4ml0jJewo1Hjo9RTm\r\n3cwy01bX1fd8yhlBMLqEcoqG9sfYwiHMIgI8XH9qnmBRdZGSPZ337VpDQlzqJdbsxII4G6pDdtmB\r\nUmk7BI4W5qJKWzwICmwlYSEqAxDbSnZ72U15atbBa4jBhV23lRVHfdcJ+PX5EJw7lXpLivMqWOJX\r\nCsqSVEg4tulXeYm+oeEp8XRkH2FHcALuavCqaSJoyZBssbxeiqZ2RVwJzgmYBKiYgCIkE3MIAFL3\r\n5PmXnIkNGoDxtM5ttDHIlcK4ymeYuT3rkdySG3AWi0ZQkKURwsFO6xYfC/ER3LedUZtQkt34hRLS\r\nQtksrSHUoDam+Z3gOFBUsHlcrgTuXArZKnZUrVRbZBagp4vSsstVHRWxzdQR86i4eUQOumQR2WVS\r\nbLSwGEA3AvMPdv2/VzI61ErjW25U/iJ430N8R5QcPAhRA34A4tCR7y0NKPUNnZHt1Csu2pKebQs0\r\n1qc2FkA7Ba218viPzDhXwg9AVHbqo4iJqfeaucfEtNlxNUKJkGhNYldVGDRK6C5IkJGHF0c7YXDc\r\nH/IuQwgVuoCpgEoEKJh2BY5e6a8k6jeFv0jMS5VUO3Hp7CXqkClyOwwt5tLinAlt11laUKWrnONq\r\niNhHMkOtNg4cOi1zKaNl/VKhLplclZnxIkh6PHZ5ampUhpDjkdpIUtBIcWltsoRxvKKtm0LVsDrE\r\n9HZZLBXtbtAnV+uSkbXZZZjYESlUb9cpMrqupFNVA+5i+6CmDlN2l3246nO2Fy/tKt9mnelFp6W1\r\n0q2Y1Mep690ucLcfghslC07A8TDo9JPRQ2I6bYo57PfMGtztVtahVR1YkXNR62iYnYpBdSy5UwVI\r\nPUFEmIkgHqk9Pnw1muzH0bWNYGoSJiECJMPujzEoikmUAIkpYCt59ymQPIVN3JnAA8m3EmOzNzGq\r\n976BtKlfrr6nKmbRix1KUeqkwSuC2on1lTUdBPz74jDqfbiW7qAzXpUEBMZNXccAHkC+EvqA+gKc\r\nIxE/2PfE9W/d3cTmNZ9/DCeL+9j6W3EmRxxqfJ8fSrSvjBnbGlOsd+YsR9jURNP0Wp2kJJyYmL4O\r\n9fkkURSKQph5zEARKJiAaKOqO9iaJRbSjSSHZL3PdSFebTYKUJWPWlTiuIA9OJrfzGJ16IrXcq1f\r\nua+pUYKhQmRFYUpO/wAO6QtxSCRsFNtJCVEHcJf2PRXWPkGtbWNoPSY6XZLkckdnhX84wUkV0mbV\r\nFu78WOVSbFWEwc5iLH2UKBdi77iARkysFwOXpTYlr17w2sPodQh7h4gBy1LKVJIVuFBG3kdjsfVi\r\nZWeU+1aRltXKzeltGrW9EWy45HSvgUd3kNpWlXEnYoLgO3ENxuN+uJl1MMSRuKDBkms2iZy+Wyyj\r\nRMKNLMmUW+hHTZqesqN4uWbICgDNwVx4e4Dwgh0w5B8FMBFV1TeObmsOyc1KLYVGp8OsQJLIW06u\r\nMVsv8WwcK320sloRz1VxKRw7hS+NsgGPlt2JowzFyzreZb1bl0BuGvgfY70lL8dSSVICWFqkc1Uk\r\nei2EcfH1S3wuJVtFbJlcmDVcj6xS5GbdCTizowcC3I3bruRcpFRbu5JRMX7xFP2yqmwJiYCbCIlA\r\nQFxM17PribUk3fmHeTlQryCltiO0kIjNLeWncJOw4glAUo7NoKuFO5IHXRZDZw2tV8w4OXWUdgN0\r\ny2HEreky31lyW81HbVsVjdQSVuFCRu64EhaiACejcyzVvAW+mIMHBkGE7V5OFdpnWMDTkrsItMQz\r\ngvMoCSLhm6ZByn335TGARHcOIrRnnI0mPIaXwutrSoH5ikgg/uI3xPSYw3KiSorzfGy42pKk+0FJ\r\nII/eDtiWDeC61FJXlA3WJJn5gDYDcxANuAD3b778W4Ra6XYsd1Tm6lNpO/z7gHfHPrUKiI86bHTu\r\nlLbq0gb77cKiNt/Xtttj7hX/APV9vyfYOPqaz0+X0xhGr+/i2Log6VFK6gbrYnqKSkjXMYSHiUqh\r\nQEzdxL2CBYPH6IiHMVZJgCjcRD8R0YPLxQj+EH5hVqnaUcsbNp0haKbW71ZMvhJ2cahQZjzbK/UU\r\nF9TT+x/PjoI8sWadlvS4VaznvSvSUBcimUBQZ3/MXJksoLifmPKQ43v7Lih68bG/HHli9/HOPY9j\r\nVj/tL07K3YmhTS9XwSGUyzlq0zpVlXB+RnKsQp+PKoCzFNI53CT5xkl+PWc5RTBsJSlP1giTqX/B\r\nrrcgWmzra1HV0EUq36BToY2SN1tEVCqT9nCQEltECJ6OxCi4Cop4Bxxo1EPuSzZlusf7SRIcV5+R\r\n+DaR09e5cV19W3r36Nh0j0R/fg6XXSX0Xju2y0JgPE9bgl7ZAwr5RFy6mkMXzeWbK5c+6jMxnl8S\r\nQEfGRTlZA60Z4wcqpFOVyoRR0+z1uKPow7J7VR2nTdrRJuel4VOc7GkPt8SEoXW26FAYGyQ73NNd\r\nkSJkxptxKZIbaQ4tBYbW3rL+YN4ZpWxluqStFEiNoCkpPUkMl9Z89uMsJShBI3TuSAeIgzJ6Vnow\r\nNA2OujwzNcqJhCgYateE6hH2WiX2psFY+zOppjKxsTHV20zp1nEpdULipJBGn8bKu1PCHSa5TlWT\r\nIcsOOyu7TrXdmh2gmUdjZhZz1i7rRvOoyYtRpswtKitMmJIlLlQWENttQFQe795AiJaQplt1lSFJ\r\ncIwrszct7Ip1h1aZBo7MSVDbSptxAIWVcSUhK1EkuBfFw+mSdyDvuMU4ap85XWV/s8+gapWGaXcv\r\n7hnG1VhNddu266TxnhSfzPB12HE5kh5WteWQhGqSqIJqdXHJkOc26vW3BaZMkrOpnb368b4t2AhE\r\nWl2NTH3W0KPCzV7ij0OTJe2TtsuS2xLkLQ4VArmOOJSByg201yVmW5kZY8OQ4St2a4kEjqWo6n0p\r\nH7EkoSCNuiAD693h6ZPD7+z3rofOjjoztZrZIDDtNojZs4beEjFqZEksc4lj7RONWixVlk2S+MZB\r\ny7UOJE000FzgoACqYGm7IrNWjW9Z/a59oReSQ9bc6+qrUHHULPwsaiMVKtmLHKgUjdqsstMJSCtw\r\nrZQUEpaB2ua9LdkTMqrBhnaQiE22AR5F5TbIUrb5iyoq36DZR388NdjnWxb6r0Kmt7RTkVw6hs36\r\ndbpXMOsImXfivJN8c5EzAwjLbXAcJOVySC1NkY2xRR00VzIN2TpmQgGQT5RdPMHRRbVz9sfo31sZ\r\nfMNSsn71oU6synmGxyXKtTaE54dL2ISWxUI8mmy0LU1xLehSVLKXngrGsgXjJjZRXfZ09RTV4TyG\r\nUpUeoacfHMT9PLUlxBAOwCkgeiNsbM3Q0Y4Rxf0ZmkyET5zLT+P3mR3ayhuZRZbKVpn8hJcw9Q2A\r\nCNmVkRQTACjskkUBMoICobmc7ZbMJ/MjtKtUdTcc3jU2rxqS0kAAITSafEp6wNlK+U+w86ok78bi\r\nvRQNm0yLyjgCnZd2y0B6TjKnT9PNWpwfN5BQH7B6/M6m3SqUHJOrzpPNfTzHjhSSV0uYijr8WNQQ\r\nIRyhScMV3E8Fe27By0FJYruMmbVJypTqCssc6YtycvMmCfV12Xd3Ze6UezV0IU2/loipzGuBUBDq\r\n1eiuo3HKrM+nBaVggpeZjxoYSkISApLqidnCuL+ZcOfdOYt7uQN1GnRw5sPMNx0soc2I9YUpS/Wf\r\nV82zwdI/rTlukF0QdFtQYh22ksq5Nv8AbK7lEXrwG/geaMctqRihm6k2LFGQFJteVMkqziRyiKjd\r\nm7IUEjGOYibU9nhotpug3Wj2mV7zoBi5VUuk02ZQ+WgEGhVNVUrL7LKllsDw1VORTuE9HHI5UVhK\r\nUqXtb/vBy+LPy4hNr4qm884h7c//AF7QbZBIG/8AtOYXN/UFeXXYSz1q1RTpB+mWwv0cM5O2GM0z\r\naZqfAHtVdjJbxanLqx2LGeSbJKtTprLHWmZiLlIisFdCmVywTK5UQAgGUUUino6vBvQb2P2dPaLU\r\nu3IMjUhmRVpkhiQ8yHS0qVXXKRT2F9EEQ47yZVYLHM4JBcQhwlXAhtT3dEN85s0fL92QtNvU5pAU\r\nkK234WQ6sjz9NQKGeLbdOxI9ZMpemP6NbQjijo7MqZKxxhPH2FbthxGiPaPcafCvGszKPJO91ioD\r\nWLO5ZrqSVxJZmc+dt4TJndKNXJ03h1AIioIxS7H/ALSbXNm92geWuWeZmcdavGx7uFUTUYU1TBYj\r\nJj0yZPTNhpDSGoHdnYqCWowaaeaUuMlouOtcKnzYy8sqlWHUajTqQzEmxOWW1oB4lFTiEcC+pK+I\r\nKI3VuQdlE7A4ibqLlLpkr+zJ4JtWQRfnsNXkMftWyhk1xMtVanm60YtoDh+dyo7WFBxQfFpyq85Q\r\nVUMmJQKUwJ8Sz07060svPwk7UVbVktR26JU6VPWtIKQBNnUCk1qpcsICE8zxLvZWnhJSnmcXEpJX\r\nhLV9yXUNO9BkzSovtuNgf9hD7jLe++/Tl8PX59v2YaDVZO2fVfp16IXozcZzXit5MaWMd6istTBW\r\nruRZ16CrOG5Qa8vINGrpkg7NGVyBsL0WayyXWrrR+x0xVIYXw0tWnbOmPUX2rXaL5lUvmxxmZOtS\r\nhtKUhpcl2TWYqJCWXFIWpKZdRlUuIHUIVwCPL3QvlqSNPc0mTctAyuy+pzuyjTW5T56kJCWVcJIB\r\nG/ChLqtiRuVI6jcYjzjLVW8oPQD27CFWbvkchZx1lWzT/As4dTxhMzlYNVsVZUvD9pGkalcdQ/Zz\r\nrWtKt0QcKqDKEMUQFXlTerMLTDGzA7dm0s7bjW0uxrEyZgXC848OWyxPeqNwUanNuLKuElAjy6oh\r\n1ZbQgwyCDy+Jelp9yqg5Iy6NHBE2bV1x0gdVKQG2HnCBt6+JLRA3J4/p6bjHR9aYGmjvR7g3ARUW\r\nxJ6qU9vIXxy1MdVN/ke0rLWa9uSOFTHWctkrLKuG7UxhDlZopEKUhSlIXj77QnU5I1e6wc7M8USH\r\nF23Pqqo1JSo/7OkQAIdOASAkIU7HZTJdQAdn33SVLUStUsbDttNqWnRqJwjvDbQU6R63V+m5+3ZR\r\nKR7oHl5YmK5bN3jZwzdopOWrtBVs5brkKoi4brpmSWRWTOAlUSVTMJTFEBAQHbiHEKZLp0yJUIEl\r\nbM5h1LjbiFFK23EKCkLQobFKkqAUlQO4IBGFTIjsS2H4splLkZ1CkLSoApUlQIUlQPQggkEHoQds\r\naZdzpbKEuNsho4BUj4iyzsWwUEecTs2Eo6aNTicdxMJkUijv5eP0isrr8nXjlll1d1TATUqrQoEx\r\n0AbAOyYjTzg29WylkberHHtf7DNrX1etsRnN49Oq0yKk777pjyHGk9fX0QMJ0K/8T5ez+Xo4XJrP\r\nv4SBq/vYL2PdnvPV+3bgvjXvYL4v72HfkHnvu37efht4cby6YbyJH8umENIPffdv7uFbCi/J6YVE\r\nON5dMTF0iSjG11vKeJny5UzT0c4ftCCIbnTk440FIqFAR3MLflbD/wBbiEGpVtWXef8AlBmatoiD\r\nXKY5RC5+aifAkmr0xtR8h3hC6k2j53AlI6qG/QV2QdXo+ZGTWqjSlWpKW11qA7LYSduqJsPwyW4B\r\n6yypuCoj3h6t8QgpGLLFkDNNUwkdQtesdlvDCkOVpJFc5IZ25kSsXrl03blOsqRiQDqCBewwF98B\r\nR5gmVnJnRbuSeQGZGoKXEcqVu29bsmqhplaErkpZYLrbTa3CEJU8rhbClblPF8lSgEmpu1sm7nqO\r\ncNNyWrMdVMutdbFNfS8hW8Z4Pcp0rQncnl7KVsOigBsoJPFjYPwf0eWWtOl/r03i/WXNM6IwsTSV\r\nmaU9oi20jGNlUFXEWKyN28XqKyZEzoiqDZEjcFBUBJQwco8gOpDtdtP+q2xrgOa2gCI1niqluR4N\r\nwQLgUw7HkqStDUhaU0lLzjUXiQ4mO+/JD3ByeYyhXEm+nJXIzOXIxmLadu58OVTKDnKU5RqpRmZa\r\nG21EKWiFJVM50JbiuJRXEMZsOKLrjD6uJKrm1r0kq3VRUcgYqiKianMYoFMU6YlPzAPtQKICO/k4\r\npTGY+YbygyaktSVnbbqdwem307+WH+Ztd9EhpxtkhQWCOh6bHcYYTTRq2oOoPGDO30a2x1iThpKR\r\np9hOwconOzn665UYLC4bpnOZshMNkU37MR9quycpKkExTAPEoNXWTupPR/my5lpmXRp9KMqnxajT\r\n+ehYD0CY0l1vhcUAHHIqyuFLA6tTIz7KwlaCMJCz6rbeZlHXdNoVNidTTKfYcW0QUpkML4XkbAqK\r\nQrdLzPF1XGeYeHoOoJi/qX6OPRlqou58j5Ep0pF3Z4O83O0qwu62rYgKmmmmaaaIAswcrkKn/pip\r\nEXMIjzHHfh69LfbGa+dI1lyMussb+gyrG4itiHU4LM5uGtalLcVEWvheaDilEqaLqmNwCGgrclK3\r\nxpqy5zFqTVaum2FLrKQEqfZdcYcdSkBKUvcJKF8IACVcAc26FZGwEuMBY4w9pkx3F4swrV2FNqEY\r\nYywNGqirl7JP1tvCJWak3Z1pCYlXQgHWOHCiihgAA35QAAiRnZq31I6iMy7izczfv2TWL6qak819\r\nYShCGmwQ1HjsNBDEaKyCQ1HYbbaQVLUE8a1qUvqFlxS7WolPty3KM3DocUHltNhW26tita1qKluO\r\nrIHG44pS1bJG/ClICHreqaAyHqkvGKKzJnfJ4LorU13etnLRxFkul6fs1UK4JkudZGaq8HEkUdkE\r\nwATxqRMxQUTMAPRfeTmdGWGkPKXUtfalxZF+3HKYobTiHW3/AAqmx1CRP2UQhUaoynw3HVwkkU1b\r\niFFp5JVjUeuUGpXFemWlNcDtfpkWBKl7bENiYuUI7R9YWERluq9XC636woBW6kMf0/U5iSwYbvE1\r\nORVasjuDdv31cXj0ZlE8BMsZ1mDJaUYSjFLrHkemVQTt1N0hMBeUwgcrYacNYOcmmbOqyM9LThU2\r\nqXPQDMVGj1FEhyGpU2ny6a4p5EaRFeVwx5jym+B9vZ0IUriQFNr1mYeTVIzPsS6Mu7lVNaoVWaYQ\r\n6uIttqQkR5kaagtreYktjd2MhK+JlW6CoDhVsoR90z6ZsT6G/ZRPUG+3uRh7SrCMrK1uj6suWDcp\r\nn6Ucxkkl4qBrwsQZuJApllVTqJlQA4iUBADBITVX2i+onXxW7H/HaxbZpdz0GHPTDcorFRaceadS\r\n3JfZeTLn1DmjaIC0loNKCydyoHbGFkHpptnJi1rjy9sqRV5cOpzkzkmoPx3ltyWWFNlEfu0KID3l\r\nsJQpCkuKU42yGyj00rmVez0/JNVm6NfIlhZKvYGa0dMQsqiRdq6bqlEhinIcN01Sb7lOXY5DdoCA\r\n8QqtfPLOSyrloN4Wndcqn3RS5bcmLJZUpDrD7R3Q4hQPQjqCOqVJKkLCkKUkrKoWLErFNqNGq9La\r\nl0eYwpl9h1AW080sbKQtJ6FJ6EHoUqAWkpUlKhA3HXRz6M8a3hjfIqmykxJQ8ihKwMfZbLJTENDP\r\n2jojtk5QYrqgD1RmomXqxdmccolA3vwA3E982e2X7QPOLLioZY3FmLBiUKfFXGnOwKdFiSZzDrZa\r\neaeebRu0h5Klc1MQRgsKU2fglFssBZWiTIywLqh3nb1kOmuRH0vRTIlSZDUR5tYcbdZbW5sVtKAL\r\napBfKCAsfCALE48k6gqhiWjzt7uM2jEV6vMjLKqmEplF1xKJGUZHtSiU7yRfr7JIIJ+2UOOwbBuI\r\nRDyOt3URqGzOtXKPKuG/Ubuqr4bbQkENtNjYuyJDnVLEaOjdx55eyG0D1kgF18w65aWVVqVe+8wa\r\nsiDbUJHG64rqtaj8lplHm6+6r0Gm07qWsjyG5Glzlu0TOYMm3rJ9hSKSWvFmlbC5QIYVE2ZHzgx2\r\nkciof26iEayBNumY3thImAj278foY5EZeUPIXJvLbJy3Za36VbtIYhh5YCVyHW07yJTgHQOypCnZ\r\nDgT6IW6oJAGwxzEZnZp1LM/MG78wKqhLcyrTnH+WkkpZQo7NMIJ6lDDQQygnqUoBPXfFlOjbQbP5\r\nAxVDZlhs3usaS81NTIQ8WlVXEw08BgnzmDF+o6QstbfIyC0izXAqjVUvVkIBRMcROQKHe1R7SfKq\r\nxs8q3pizF0tM3rRKPTYjjs8VdNOmsSZ7Dcvlxz4dUEchMdyOXGpKFJecPEpoJQ0tVx/Zq2JnrZ2X\r\nzWdOVedho8OuyX2pFHlUpNVo89iI6uOkzYzk2Gouh5DvLfjOtPNIHAHilbreL5MBlueLseR9SvuT\r\nF8lTbJZY4T7hsqzMm1U5RSYlF2+kHrkqAgP4VZY6ht+3jmjzizcp9x31VKrk1bc+27EWE8mFJlIl\r\nuoIGylFxiPEYTxHqG2Y7bafUCdybSLlaqN4PU+sVa3qXCuFUdIlinMux4br4J3cYjvPSXGUFPCOW\r\np90gg+ltsB4E7kuLQ1UY3Zou25ZSSwnlN1IlT6kHSjWNt+M0oAzkwJCsdAwu5bqR6wCAKKwbb8Oj\r\nbMHMuo6Ns4c133pJap2YdsQY754+WO8Uq51z0o9PgCwU0vnehxkORvS4RthmJ9RYiZt2llql9sTJ\r\nts1mc416HM2jT6A1FKhtx8Oz8/lDcJ3D52J3KVlnTUAyxfh/It9dvgIWuVeSdNS9cmmd1KuEvAYW\r\nPROocpQcycu6QbpdvaooHCS0y2hm1qPz8yrySo9Wf51w1dmO6tCVqLEQbuzZRCdzwRYbb8hwjyQ0\r\no9MbLMGt0HJ2ybmzRu5pJoFDiLlOIUtLfPW3tyYqFLITzZb5ajMgn0nXUIG5UAV5WsvR9mrsDY42\r\nQBxHT8PGzDFfmIAqtZFok7QOYCnMBTiRUOYu48ptwHtDhrrxqubljXbc1l3DNej12kz34khpQPE2\r\n9HdU04g/9laCN/X5jphZG1mZBEinrQ/T3AFtOIPEhxpYCm3EK29JC0FKkq/OSQR0OExVTM65csiX\r\nFRwkvM32VhlevFISO2sJCwUfGR0QZU5zGVQI/K7dk2ApQF2OwD3jsrnzhviqW7l7b0CY6y1SID6X\r\njx8SX5cua/JdkgADgWqMqFFWCVKIhN7kAJSnEYshbMqrTAAtUp1pW/CQUNsx2mUskkniSh4SXkkA\r\nAGU5sOpUcavaicTz1odw9autVk7c8BVJ+wjJFm4mVghElxWI7SROZwJYxMqgCB+xPtDs349VaVn7\r\nblLeuar0edEpKw2VSFtKQhXHsls8Z+VxbgI6np5dMLyrZSX7TaJHm1igTWqC1sULcQoNJ5xGxQSO\r\nH4Q8Pl8rocY0HD16Ay7eswxypEZi/VKmVSeImBSEVNTX9oeR745gP+EcuULEZIwiADyNido+TY1f\r\nP3Mys5UWJlnKnq5NvVuszo7u5KuGtsUduQyBt6LaHKM08AFEFx91WwJJU3cXLeJErdw3I00RValE\r\np0Z4bbBSKauprZcJ36rIqa2j0GzbTQ3IACWN1Ha+ovTxZYmuyVdPOnm674/YuU51lGhyg/fR526q\r\nLkp1RKC7LfnIB+wwhy7h2yn0q6RdTurS06xd2XVQkuU+BU+5PlLaVJS5ymnh6a3m0g8t1J2VsB0P\r\nF16eqlwabLBaSznZqBotoVtSC6iLMDin3o4PDz2W2kLW4CtK0BKUlRWggA74r2xplrNWuvUlOXuI\r\nyW+w1XcUU/lqqUTHGnSsns7JFRTIcXC0KDs0l4GZRwZwAkUI0KUrchjConZjqmyPyu7PDRNY9r5p\r\n2Qb1zxve50uyZgndyXEbp8VxSWmVobk8TUUSSgNshBL8150zCGmErjTpw1Uxc49Wt7RsmnzUNMFv\r\n22mHKiVGEQquvyJgWqpNpC2n6W8stJTFU4t5bcWKEuREuSpCWrmqDaLdC1ttE3y6MbzPJqLkWnWU\r\nEWupvW6qhhQSVigk5YgLJpm5DGBXY+2/KXu4oDuvMqt1CrvSLQbm06iKSNmH5He1JVtsr4bltFSV\r\nHqApJI324jiZ12UOhVKsuz7Vt12mUwpTsyt7nlCgOpDnA2dieoHD0+c+eKLNOuL61NdI9mHIUUEY\r\nwxtiKy328y8ogQEoSPUaOFkFATW2BummEydc/tfwYkTOYm5AAeOl/WPm7elE7H3SrkxXxMk5zZgU\r\nyg02PEWeKa8yltDzfE3vzFEs9zaAV6fG6hLnwnEMVC6bqFQ1a4tVGacJTEexLXFVbU+ElMdEyctU\r\nd8BWwQngZTU3lbeiA36PoqTvWNnGxqZYzFkvJBynElyuk/ONOsIJTkjXT9bxWkcg9pTIxpUiCHk5\r\neL2NMuX7eRGnrJnJ9BSHbetyDDd4TuDIaYR3lQPrC5BdUD6+LfFR+bmZRzEzPv2+As8mp1WQ+3v0\r\nIaW4rkgj1FLQQNvVthrQr/8Aq/J5vL3cPgaz72G5NX9/DlZXyweU0cJ6dXOPqol7GMoxmT4fJrM8\r\nqzujcVHqbaXgnQJuzxTyPeNFxIBxRKqRMgF3HYpix7zds+JU267eqp61S24iEhogFI4VpHElW+49\r\nHiO2x6knfE9NJGomdT6pYmSqaKyiBKqzy1SkuEOL5jLqg2tspKVfCBsBYUDwpSnhO2+K2qLCgvmu\r\nMmFXS6yQvpGCSQcqnXBNX2PuVkVSGObYhjbmJ3bjz7cMrlLKRDzBt55zYDjcAJ9RU04B+/c7D9uJ\r\nw6tWpDunzMRUcq422Y7hA9aUS2FL3+gJBUfoGJxhX/8AV+Tfu34nOaxufl4olNX9/DW5opLaYx7L\r\nt3JeQiTmIcEXLsVRsonKNE+vSN3kUIRY3b5hEOGyzeeRVLBrTS9itvluJ+gpcTuR/wDpKh+wnElt\r\nIF1uU3UDY7SXiGphkR1jfooOR3SkH5wHEoUB5cSUn1YT2hC8V/DGprB+SbnTofKXsMd5FZsa/cI9\r\ntYa6pJOYiQiSTEjFyoOWpBi4M7wzVUiKqrd8dA5SGAo7Q9tuiO3FVmqUySHVtuqG23VSG1LSOuw6\r\nqAHUgdfMeeLi81cw6flbZku8qoB3BiTFbcJ4tkofktMrWQkKUeBC1L2SlSiUgBKvIzNzY7rF5yzf\r\n7fTYNvAViw2R/JxES1ZJRzdug4MUTnQj0PwDBJ04A6wIk2KkCnKHYHE4LKkVak2tRabXJPMqbLXC\r\ns8XFsOJRQkq9ZQ2UoJ6glPQkdTRVnZeln3PmpelfsKOWbUlSgthJRy9zy0B5wN+aEvPh11CSAUpW\r\nApKTukNgFf8AierhTms+9hq/F/exI/SVm6L0w5/ot4tjpKLx3bFlsVZBmnJgTYVqHuzhiMBZ36h+\r\nVFswjb7ERCTtwoYpGrBy4VMPKQQGuLtT9Otb1UaSLrt6zYK5mYVtymq9TY7YKnZa4TTzUuI0Bupb\r\nrtPkSlsNJClPSmo7SRxKBFgPZtZy0vLvUM3BrkxLNIrtNdhKWo7JS5zG3mlHfoAC0eJR+SgrPz42\r\nmCmKYoGKIGKYAMUxRASmKIbgICHYICHHDypKkqKVAhQOxB8wcdMIIIBB6Yp36Z2u69XWAaZddA9k\r\nyOwudBtsjIZEquKnKhrra6TIwx0iKQsEgg5eWp3ByzRIwMGhFHyhHBhRTUEpijcd2Mlz6EoOd1/W\r\nVrqtu137Zr1LjopE6vstKpsKdHfWXEPSniGoIlMu/wDWH1Nx92EodcQVI3abN6Ne66LCmWTIkpks\r\nOqLqGCeYttSehSkdV8Kh8lO6uu4B64qlwXiHX10qOu/TJqb1aae7BpuwhpIRrT1KNt8DaqY6uFvp\r\ncwncm6tehbq0YW6de3C5px4yLgEgh2sZGnQBY7spiOLWM9c4dB3Zc6HtSunLSpnvAvzObNJ6ekdx\r\nmQah4fHqkbuCjJepxXChsU2nl4w2VkzJEqQhzlCOvmMNjRKTe+Zd6W7cNz0NcCj0wIOy0Lb5im1c\r\nz0UubLUXHOHjPyEpSRvxDZTx9LFow1i4t1uY26UXQjSTZKu9eiolhfqNXqytZbWE5A1mVpJ5t3VI\r\nxw3nL7WbljV4nAPEI3/nZoRuXqx5VCKNmT7KbWTo+zR0TX/2Zut+8GLctGS/JXTp86YiFAdiS5rd\r\nSDLc98GNTp9Oq4VUY65REV1S0q2Utp1Dm3zPtG7KbeUDMey4hkS0JSHG0IK1hSUFviKE+k4hxrZt\r\nQT6Q2+YgiMmUHPTHdNA3qmCLnp3/ALn2m1OzxExkOyWim3ejR8itCnMqEpIo5AftrbkJvEqnFSNh\r\n4homyPKESF45IKJXLWTeWkHsgOxscvDOyz8/jmlqGXTXo1OhxqlTarMaRICT3ZhNKaEKlmQEo71U\r\nKgsvJiFYjIUl4xpKcqK82M3RFo0uheF0AOBTi1NuNJJT+ceaeN3h/NbbHDx7cRG3El5OlA0SXOUz\r\nr0RulLB+DMw3nT5gJSs1a2XeGxpcbhS6zXLlkzGVcsErkG7xEI5qka9UhqEvKzHhSrYiCCwuFQTQ\r\nUIINF2ZWt+w6fkt2p2rHPLOy0KHn9fMmZNh0yRWKfBqMtyl0WoyoEal05+Qic+0h6opgU/ktvLec\r\nb5CC5IQ5vtsx7NmuVnLG16LRpb1ChBCFuJacW2hLjzSVqdcSkoSSlsrc3IAB4jskjDsZOwVm/NP9\r\nohxRlF5hLKjLAmCKPDsfuxzWNrYhi2ZewWJLbb44tdvDuKGqSLtDIt/RjwAjoh03jRfkKY6Ic7S5\r\nY59ZJ5L/AIPnmXlnCzntV7Pi8p0wqt9is09VaZRPr8anumRTWnzObT4PCVMUFMkGO40HChDh4NpU\r\nqJWaxnzTakujyhQ4bafh1MuclRQwtwcLhTwE81YR0PygdtyOtePTx9GpnJXV/wDd100YQy3lir6h\r\nq346vsfiLHV4yCNZyLVTxUXPHsDeoQ0wSHYW5l4tkWvhIpg7fpvjJlHqREJ89h32kmSB0gxcldSG\r\nd9p2rduX8/uVPcrtWptK77SJIdehGKqc/G564J7zCdDIWWY6YfNVu+N0LnTl5WfxrVWbeo0qVFnt\r\n8bgYacd4HU7BfFwJVwhforG+26uPbyxuSYaobLFmH8U4xjGxWUbjjG1GocezL1fK0ZVCrxdfaNi9\r\nSRNHlQQjilDkKUvZ2AAdnHHxnjfbuaOdecGZsiRzn7iumq1RTnUcap89+WV7KJV6RdJ6knr1JOJZ\r\nUaEmmUilU5Kdkx4zTYHzBtCU7fu2xrs9C7p1yp/fT6TDUVnPA2T8aN8q2iYQpL3L+Kbdj9S4VjMO\r\nV8iXm2tq+N1hYteUjxJXYg8ki3FUqYrNeu2EyW/Q72zGo3KRjR32d2n3IPPS2LimWqzFdlpoFbgV\r\nQU6TbtEp9NgLk+HSH0sOcUyUIi3Q2V8qRyQQh3hYPKK36obuzAr1cokmOmUpQQX2VtcxMh5xxYTz\r\nEjiHoI4wN9t07+YxWFjLoms44Z6Y7GtBZYczM+0t4/1MQWUqhlxhRLjI4va0KAVb5XqsVL5EXjZa\r\nspu2wQzKvSh3Dwjpw8RMTcip0trLsxu1VyKzg7JHMa/3s57Oiala9lnMpcuguVSns1nxeSy5R5a2\r\nKTzmZqkF15+owgiOpoR1odAW0F7t1T8sK1Sc1afBTSJarcYqKHUPhpws8pJDyAp3Yo32Slte6tyo\r\nEdDtixbpPNHutjT1r3g+lE0F0h3lSZkYeOb5Ix/Bwkra5RGaiaYnjyQJLY+hZBlN3OlXGmM2ZVE4\r\nkfDWsk3O5EElepchXr2ZWr3RhqD0G1nsztcl7R7Zp0V94UyozZbMFl6K/UFVWOqNVJKFR4FRps9x\r\n0NpmfAOxSyyjnNF+Mle5j2pd9BvdnMeyoapLqkjmtoSVkKS3ylcTSSFLbcbA34PSCgVdDsrDB5Ai\r\nOl56ayTpOIsq4HdaN9KkPbI6fvMjPVW40QJVaHIQFJFZlf3SNuyO+aISSoxDJkxQhSvylO6VBVt4\r\nQi/thVLskuxgpN85p5ZZ3N5ramZlNdiwGGKhT6rIbS/6SYyFUpoQaQw4pltU2VKcVNLBKWErQ8iM\r\n7o5zeamb7sKl1KimlW2hwKcKm3GgeH87Z08bpAJ4EpARxdVEFPELg+lI0qPSdENkjTDpux3a7k5x\r\n3TcF17GdBqbGQtFuk4bHOUcaqvvBo9mk4lrJLo1KJevFwTIq6dKkOcpTqGABp97MfVexK7W6xdTG\r\nojMGkUWJctUuWRWKnPeahQI7tTotVLCS+8tDMRjvq4sVgrWltpsobKkp6h2MyLYUnKudblvwHXlR\r\n2o6WW0ArcUGnmt+gBUtXAFKOwJJ3PnivboDtE+b4eYzvqZ1UY8yLjjIwY+pelvEkTlaj22j2SJx/\r\nVqVWY6UmGFatbOFVcw3iSBrsYyepo7HOwfpFVKJ1ymsL7dXXDktUKNkJp40w5hW7ctifjHMvKuu0\r\nKpwqhEenu1CQ/HivS4LklCX3JUmpzZDC17o5kF5TKgGSlBZJWbWG3q5cFywJEed3dENgPtrbWG0t\r\npClBCwklISlpCVAddljfzxWX0PvRzapbjrHwsnqTwLnTGeBNPk7bNQjdnl7FF5olUk8ig2pkTDx8\r\nM6t0NCM307L2KtV147bkFwLiOr5ynS6sDHCxztZu0V0w2Xo9zne0659WPcmet8wIdrpVQa5TalPZ\r\npzipzj77yafIkPMx4sOVVUR318pLMyoNlDnMWhKm9yssC5Jl2UcXBQ5seiQVrk7PsuNoLgCAkJ5i\r\nUgqUtDRUBvuhs7jYE43zOOEvE2cR61Taga7plwhdMsTp27h/GMgiaPXVFQK7uuRpzmj6RTY1EpgX\r\ncOp2dUSIp1YGFBoVZwbZNE5iyL0oadbr1UZ82Dkza0d3gqEtK58lKd0wKWypK5891W3ClMePxFHG\r\nQHX1Mx07uPISW/zRzDomVdh3LfVflIagwIrjg4jtxuJQpSED1ncjdW3yUBSz6KSRrGs4B4DRsEk4\r\nM/kAQRB++OHt3rzqig6dn7A9s5X5jj2d5uO+OFJg0qFEplLZSzTIzSWmWx5NtNpCG0D6EoASPoGO\r\nMu4btfuCv1uvSnCZM2W9IWT58TzinFb/AE7qOMkID4nqH5OMk1gj8/GmNW97B+IOz3nz7cF8YPt4\r\nL4t72EHIPffDv5/l/nwr4cX5PTCrhxvLCGkHvvu39X28nCthRfk9MKmHG8umMen5GmscW+GuUCry\r\nv4Z2VYUDHMVF81P+DeR7nkHcUHjcxiG7xKIgYPbFAQTma+T1v515dXBl5canGY8xCVsyWgOfCmMr\r\nDsSbHJ+S/FfQh1HqVwlCt0LUDITT/m5d2QGado5rWU9w1mlyApTaiQ3JYUOCRFe4epafaKm1etJI\r\nWnZaEkWcxrSDylbqBq607tYiaynQJiMlrNjOXfJxIWcY5AyDiPduEz7xNkSYqCRBybnbuCFIYQNy\r\nhz1lXDVapWss82tCeqaU/bq7ho8mKioxGlPtBtxQKKrSkujabTVuhLkmIFCXBdU6w7wJKXhfvfWW\r\nVgatplla49J6YsnNilSI7lUokh1EdUxbCeFUeSQT3Wooa+DZkK3jy2UtqBPCCp4J/phaDT5F7CXb\r\nT7m2qWFgodNzCPrRWDOCCQNgMoo/rUMumVRQBABBucolADAY2+wVWw/wcXPm44sGq2LqWy7qlCfR\r\nuH+VU2x1J2CAy3LSr0did3EEKJSUjbiOVWu0CyYs+sS7cvzL6/KTcDCgHGHqFAbcQfI7oduRtRTu\r\nDwKHorHUEDEMtSPTKXS+02dpGGKQ4xm3skc7ipK1zM547uDNg8KRFyhEO2KEdFtFXbYyiZliNiLJ\r\ngb2phATBxYTo1/B17CykzHtfM7UZmaxd71HlNSmKVDiKj016Q0orbVMU+pbz7LbgQvu+wQ6Rs4eD\r\ndCmOzc7Ry3anbU+i5L2bU2q/KaW2KjUhGjiIFDh5kanxnpvHJAUotOvTy3HcShzu7yti3Vrp11b5\r\nk0nXZe54ksQMQlEUWVorMkgSRrFsjEFhVIzmolcDIKLICY/g7onI6aGUMKRy8xgNd7q+0K6fddOW\r\nzOXWe9qGT3RbjtOqMdXIqNLkOI4FPQ5IBISvZBfjOByLJ5bfPaWWm1Ig5kPnheuRdwrq1tKbkUmQ\r\nUCXBfK+7yUIVukngUlbTyAVBqQ2QtAWtCuNlx1py52q9Phj48Yj90bAl5YzoI8zo+PrlDOII7kOU\r\nBTas7SyGSboH3MbnO7VMQAAvKbtNxzZZifguGbLVafOTupq2pltqe+DFagzIspDR3IK1wBLZccT6\r\nKdktspX1Xu30Ri0i3e0HyYmU+O5cdo3JBqRQONpmLBqKAr1lMlVRpJUk+YBhoI323O25jFqD6cvM\r\n+RmJ6NppoZ8Srzx0Y1C2yMolbsjgu9XBBJrBHIxZQMU7UMJCkcpNjLgY4gXkEANxNbST+DUZBZQ1\r\nyNmJq0zL/HwU74cUqPHXTqL8GkqUuaovOTJbQPpFjjYaIQObzkLU3hsM2Nf0F6i1CNlla7sIchRc\r\nqVS5ILKQFFamae0ZDKFpQAoOyZktvqR3ZKkJcLmaIMp2LSIxm1XEcS7zN2jUlrw8lnr5Z/K2ZxJL\r\nzklMKTAO03rh4eSdHIKyxlRWSD24CcQOVZdpfo/t3X/SLEtynXQi1KRa85ZpqGIqFsMwRGREaiIi\r\npU0202lpppSUI4UtkcKNkbpNYWlntBbeyMzKzlvS/rSq9wR7lEXkqYlstPtriOSSHHzKZf5xfRKc\r\nW4eJK+eeIqUCRif/APyk8sP/AEWMf/rcp/8A18VF/wBQLD/WRV9VJ+04nJ/XSZJ/oNuf/wDf077J\r\nhtcu68bbkigWGhxVGia8naGicdIzJ5GUevWjIj1q8VJHN1HItiOXAtQJ1qnP1ZDG5S8wlOWQml7s\r\nYrDyHzjtfNq7825NxIoynHGICYLMeO+64y6we9qUt5TjCUOlXJQEc1fCHF8sKbcjzqT7WxvMiwFW\r\nhktYVTtytyH2nHKlImtLkRe7utPsqgCIywpuRzWwe8Ld+CCfg2ytQca8zDuunJuPYttX7YxLfIFm\r\nQCNSvnS6E20SDlKVvHTYK9Y3bkKTsTdJv0iCYQTImXs4xdTHYq5SZpXBPu3Jy7fxWqklZUuK40Xo\r\nfEfWOHdYG+52ACzuOJ1QAGHUyb7aeiv0WLTNSuVUuVdDLQSqs0AxULmEE+nNo8kx4vPKSnjfhzYa\r\nXFJJVHBVuH8kOkkhyx5jw2JbKeXMH4NCavseeIQNzF365SNqLV++JyiI7F8FHcA7e3silZ3YG3s/\r\nVUDMLUJRI1CSob+G02TIkOJ9YT3p+M0yo9AFEPgb78J24Svb+7ZvIeDTnlZY5ZXNVarsAhNTjwKQ\r\n3uSAVFyNVK4ocI3UE8lXMICONvi5iYA5yztlPUFItVr1Jt0oOKXXcQNQg2ox9bhVFyAmdZJA6rh9\r\nJPhSAS+FPl3ToCGEhVCpjyBeDpQ0bafdGtCnU7KC23PxinNIROq01zvFSmhs8SUuO8KGmGQrZXdo\r\nbMaMVJS4ppTo5hpi1C6us29S1cZqWYVaQmjxlqVFp8ZPKhReIBJKG91LddUAeJ59bjg4lJQUNENh\r\nkWtPkHqLxwzjnjtCOb+FyC7ZouukwaiqmgDl6okmcjVuK6pCc5xKXmOAb7iHEp515UemSabCqVYj\r\nR5k10tR23XUNrfcCVLLbKVKCnVhCVLKEBSuFKlbbA4YKKapOjT5sGnyHocVIU84hta0MpJ4Qp1aQ\r\nUtpJ6ArIBPTffFimB9ZrPE2K6tjeYoLiaJUyS7aMeQdvUrCh2crYJexqjKNXlLtiLl4L+aW2URUR\r\nL1YFAyfMHMPPz2gnZeZnagtS1152ZZ1Rb8S4IsJctL4grDMqJEZp4bY5tRp6wx3aJHUONLyuap30\r\nwnhTjoR7N7XHpNy500UrLzP/AD0h2ldlIqs1EaP+L9eqvPgvuCWiQuRTm3WUvGS/KQtvdOzaGVBP\r\nEpeHamOkIYIpuE6/jpYj5InMg5st3Xmo1U4kA5Snja3U4BY+xh2ECyZANt2mIO4BECzuxVz6rE2K\r\nm56kxBpi1ekraIyUjiIJ4hNnujp16wz59AobEzku/tIuzms2NNed1KP3BNYTv3OiW3VQ+6eEKCWZ\r\nlRQ3TipQIG6nQlC90rIKTiCUrnnKUlmAuZyWCQZWxu1WjGblgdJkRGHOm7InElZmSeMPFKZnYmBq\r\nomslsAAbnOAqDehbOgjJuh6PpWkaRHZdtya+3MlSVMhxaqil1h1UtAKkLDvDHbjpdDiHCyCCQFKR\r\nii26O0ufqWuKiarablkhyxaLBdpUKgPTXGS/SVR5jSG58xptzikrlTHKo4pDS225YbS0NmW3R98p\r\nag8wZerqdVuNqlH8GD1F+vHCEY0aO1m24thdN4eIiE3fg6ogcnXAr1Zg3JyiJt8PSn2emRWk++ql\r\nmRaUdMy7XISorD7jJSqK24Rzy0XH5BSt5IDaloKDy+NB4krO2VrS7UWoasMuaVlhbOSsCyLd7+mT\r\nPUxUpFRen8kbxo6lvsRwzHadJkLbSlfOfbjLUU93SFe5RNUObseVWJp9dt0o1hYVAzaPaGTg3iTR\r\nvzmOVu18bQEm4bNy82/VlV6vnExgKAmNw3mfXZaafc+M1brzYqrncq1WXQ9JQ2wopW/whLjxLclj\r\ndTyhzFlSCorUd1EbBLtad+2UdyYyasTKq9NNVMu6pUCGIbNTXWJVOddhskphsvMMxHm1KiR+XFQ6\r\nFArYZaCk8SSpSkLrJ1EptFmyV8nAFQHXVOF/Ebl2iZydVQolkFq+MoUG51dkuRwQyJClKmYgFLsk\r\nXOx/0uP3vCuqRAY8IalRnDT24qmo7jUcNJLCgJZQQ8GzzllpRcK1rWFLUpRUKu2zdZywq1nQNMdP\r\nTfL8Ca21WXq7LfUxLlF9TUsQu5NsrTEW6gtRS4lopaQ2SEdBHylW650S0xNugp2WQmYZZdwzcC9U\r\nVEirhq4aHMZN6R21WAU3BtyqJKEMA7GAQHbidecWnHJnOTLO7MsqzY1Hi0yqx0tl1iEw260W3G3m\r\n1oU0lpwFK207hLiOJO6SeEnEDskO0I1DZT5p2hf91Zm3TeFs099ZlUWp12puQagw6y4y4w8l16Qh\r\nJAc5jLvJcUw+20+2A42lQkd/fO1ECqVUbvK7kIdMpCtauVEQUMQxzKti1UGqypeqDkUOQVEgE4EE\r\nAUOBq62+xk02Ip0yAahxLdeZcDhiucxAaS+lSEq7/uEO81KlpBAKmkFQUUp4bKHe3Zt1dUgzkaLa\r\namI3HfbWz+M00pcW4uOpp0q8O40qZS06gJBKVh8lWxbTuwGULzeMw2Mlnvc0+nJBuwbRbIXhmwJM\r\nGDbmU8FZtmTRiyapKulVVjAmiTmUVMY25hERsZ01ZCZbaWss4eWeWtJjx4PeHJEl5tstuTJLh2L7\r\n5U46tbgaS0ynicUEttISnhSAkVHardT9T1Q5z3HmtLoiqNSZKGWodLEtyYzTo7TKEFhh91tpSkOP\r\nh2SrdtJ5j69+LbcqHC2VL5g6ZkpWky5ows00SaSzRSMjJdlIFamVOxM5YyiSiBzszuFBTOUSHIJx\r\n7RARAW01qaTrK1l2HbVpXS6zHqFJqXeo8pSHVONoW0pt9lCmnmVIS+QwtZ3WDyEpKevEl3NAes+1\r\n9IOaV13dfdgzrns6r0JcJcKLP8PW3KTKjSI03mcp0OlltqTG5SuAcM1bnHxNpQqZNQy3rA1IufYZ\r\nQ13wR7wDoT1ija5B0+GhmSnKmu6nLXGMBdtI9BuZQVEUXSKixfagRUeUoVIXtoO0NaK0N5l6gcxI\r\n81UUpch0Vvmuz6m8g8SI8aK9LeKy6sJQVmPwtg8RkMAFRuRoPak1rUDzbT0maQH6ddD6FIcuCvVV\r\n2fTaIk7DvhiJjIjSHmgS60h58nmNoCY76VLTjxM13WgYRxG/0s4Lmk7VIT74j/OeWmYJlTtkgQRF\r\nSqwrhJRY6kO1VIQiolUOnyFMnucyq4hKTSxkxm5qY1CQdfGqy2VUKLT4vIsu1neIqpUbbZuoym1p\r\nRwSFJU4tpK20Ol1YkFDSGoqcVbal9QOX+UmU6tJGQlxKqrTklb9x1wLSo1GW4QqS2l1KlB1Ti0No\r\necStaEMNIiJcePPcVXmECHwPV5vRxceav7+KxTVT7WC8Q9w8nq7vVwXxf1cWC+K+9hrMyl8SUWRE\r\nqACMg6jYwTnJzJkSdvCGeGD2wGBQrFFXlH8Q2xvJwjL/AK4W7Tq6Ad1OIDf/AI1BJ/8ALfbEndHN\r\nONz6isuIxdIRGkOyjsdj8WYcdTv7pWlIV843HrxAOqTkVU7dQJ6yzzBilYbOnZSFeKkSTSil5uxV\r\ndVUgCJjKt2rOHFQT7e1OPkEAHhhqEY9vVu1KrKc+BWOaokdE7rcQD069AAo/Ti2/NCfWs4Mr9Rlj\r\nWrC463Tn1U9htKgFvrRFhS1JJUQkFxbrjSdyElPDuR1OLKavNVe4RKU3WZdnYYtZdw2TkIgqrtod\r\nwzUFF0iVUiYlE6CobGDfs4kzCuiJUI6JUOSHGFb7Eb7HY7Hz2I2OKILzta7LAuCba930dyn12OEF\r\nxl1TfElLiQtB3SpSSFIIIKSR1+ffCOy+EY3olrYyTxpGqPK1NuI0jty3aPHD1gxVeMDNWqinhC/L\r\nIIpAIFIbcRAveIcaW6azCeotTgzpLaEvMOABagkk8JI2BO52Vt5YcfT5HvB3NKx7htChT566bWIa\r\n31RWHX0NNKfSlzmrbQpLYU0XOqyBsFHyBxDjAyzZfK1RIVy2XSdS9zRRVE5Dl2cVmRkxKmIG7FRc\r\nJ8vZuOwiXbceGKy1kiLdkJ3cf7N0fxQcW6a8g4NN11OthR5c2Ao7b+Xem0nf6Bxb9em+2LLiwQD2\r\n8nf6N/o+fiSxq/v4oMNVPlxYMIH4gfRwXxc+fFgvivvY8+YpUZYImSgplgk/iZdk5j5BkuURSctH\r\naRkV0j7CU5eYhx2EBAxR2EBAQAeDs112M81IYdKXkKBBHqI6jGXTbnnUeoQqrTJamahHdS42tJ6p\r\nWg7pI9XQjyPQjoQQSMLXBOuzVroai2mPbXRJfVtp0hila0+SZSqzfNON4JMAI1r7hyLOTC2wcM3I\r\nJGpFm26aRQIDtqgVNsSrrV72SOn7VjcFUzMyyuxrLrOKatTk1sR0vUSpSFElchcdK2VwpTyjxPPM\r\nOKQ4rdxcR59bj67z9LHafU5qiU20synGe9sISgB93knYAD4vKc4m1N+xHkFLiNw226ttI2mG1/tA\r\nmkPqilmMSaqIWRIAFdx6+O6OsZBYPfkKqTJ5DKEAe4TETMId5Q7uKxp34PtrKZkOJp2ZGWsqFv6D\r\ngqVVRxD1EpVRDwn5wFKA9Sj54sVia3Mm5TDb4bqWyhv6KYi0/uUmZsR9PT9mMn74D0Yfm51Q/VtS\r\n/wCKHGH/AGfvWv8A43y2+tan9yYyPy1MnPYqn8uL9rxz74D0Yfm51Q/VtS/4oce/s/etf/G+W31r\r\nU/uTHvy1MnPYqn8uL9rxz74D0Yfm51Q/VtS/4oce/s/etf8Axvlt9a1P7kx78tTJz2Kp/Li/a8c+\r\n+A9GH5udUP1bUv8Aihx7+z961/8AG+W31rU/uTHvy1MnPYqn8uL9rxz74D0Y/m41Q/VrS/4oce/s\r\n/etf/HGW31rU/uTHvy1MnPYqn8uL9rxz74D0Y/m41Q/VrS/4oce/s/etf/HGW31rU/uTHvy1Mm/Y\r\nqf8ALi/a8c++A9GP5uNUX1a0v+KHHv7P3rX/AMcZbfWtT+5Me/LVyb9ip/y4v2vHPvgPRj+bjVF9\r\nWtL/AIoce/s/etf/ABxlt9a1P7kx78tXJv2Kn/Li/a8c++A9GP5uNUX1a0v+KHHv7P3rX/xxlt9a\r\n1P7kx78tXJv2Kn/Li/a8c++A9GP5uNUX1a0v+KHHv7P3rX/xxlt9a1P7kx78tXJv2Kn/AC4v2vHP\r\nvgPRj+bjVF9WtL/ihx7+z961/wDHGW31rU/uTHvy1cm/Yqf8uL9rxz74D0Y/m41RfVrS/wCKHHv7\r\nP3rX/wAcZbfWtT+5Me/LVyb9ip/y4v2vHPvgPRj+bjVF9WtL/ihx7+z961/8cZbfWtT+5Me/LVyb\r\n9ip/y4v2vHf3wFox/Nxqi+rWmfxQ49/Z/Na/+OMtvrWp/cmPflq5N+xU/wCXF+14Ts/0+GIZlqqw\r\nwVpg1K5Rt5yiVlGTkBXKdBCsYNkxezUJPX+RaNyGHdQ4x/KUvbzbdoLSzPwfPUCupMLzaz7sOg21\r\nxDmOwnJ9SlBO/Xgjvw6WyokfJBljr5j50heGv3Jq16a9OPNSpKSQZb8SK2T6hxh99ZPupaJPkATi\r\nElgndRuqXI0Xm3VXIxsapWfCRxNgmprKmomLwepmQcTj0DOnpJ+9OmphId6qq4MmAjyHIUEUG12u\r\nm3TBp/0Z2PMsXI2lvSazUAnxWvTQhVSqZQd0tcaUIEeE2rq1FZShsfKWHHS487RVrO1717UE85a1\r\nAmqRaCVbKKAtppaQd+Wy2s8zgUQC686A67tywltkcK18EGHwN/m4fc1U+XFiujxT3sEEGHwPN5OC\r\n+LHb5WCmqe9gvEnxP+7wXxX18WC+Ke9iGMi99927d/l4lFCi+XTElIcby6YQkg9992+ff18K2FF+\r\nT0wqYcby6YQ0g9997bz+XhWwovyemFTDjeXTHwquTbljSdSstHsL+uzCAcvhLJQORdHmAxm7xsqV\r\nRs8bmENxIqQxd+0O0AHjR5i5MZdZz23+KmZVrMVOkhwON8RW29HeAIS/FksqbkRn0gkB1hxtexKS\r\nSkkF78pM0sxsmLnYu/LK65VJryU8KltEFDrZO5afaWFNPtHzLbqFJ32UAFAETLZ9ItE2qKRg9ROB\r\nqJlpugl1JZYGzVnJlTARMHVkftHwt1OYdxMiuiAj+KHENXtAWaNjVJ6pae9SdTpcdSuIRqkhxxQ6\r\nbbGbBdjF1IHQd6hyXfadVizim9o5b+YdGjUXUpp4olzLQnh70wltte2++4YktvhCt+pLD7KSfJCc\r\nJ11qU6OFQ5l32jW0Csf2yibW4u27cph7wSTTtCZCF37dgKAegON23kN2mAQlmHqatpKE9AVBxSiP\r\np4qIok/tUr9pxgKzm7PqY4Xk6YayytXUhD+yQfoAqSRt+xIH0DHkq6mejCJv1+iO5recAv0iXf8A\r\n8WBtvwCtO3arvf8AVNXNrtf5BV/xoeMhGa2gpX+y07VxP+d/7pjz1dUvRUk36/Qfdldu0dsjSZPl\r\n7rb2b8fBWmPte3Qe663LWbP/AODCv/RMZSMzNDiv9lkNW0/5gP8A6nibWEEuj/k2EHk6G0JTVNeK\r\n9Y6rxbFkKdcSngiyQppS5WJ5l+2akdJKGFuY4daJBBQoFAxDDEPNy3e1GhzatYU/XVQajFTsiR3a\r\nC0GuNJ3LJc8KbUsoIHMCfQ4vQJJCgIx5n6xuzfhS6pY9SyFuWpRk7Jkd3dQlrjB3LXGKw2pRSQOY\r\nE+hv6BJIUBKlPI+kou3NpdeKf7dyxf1LefiNMjJjtG3N+TrAo6P+4Nn/ANPwwq9R/ZWK34dJ91D/\r\nADx9+YzE8maQQEOfSm8P5/8AygzBfm7FNg40kjIvtMHN+TrYo6P91sn/AIwcYy9RfZZHfh0rXUP8\r\n4ffuM1PKWjkA9tpKen/3jTYb+nsOPk40z+n7tRVk8nXdR0f7nYP/ACIxir1Ddlwfk6XbqH+an79x\r\nkBlbRp+iI7H/AHlTn/HxrVadO1RJ3Gv6kAf/AJLG+xY+H5QXZd/qxXX/ADE/fuC+6to1/REd/WVO\r\n/wDHwQ6dO1S/X/pH1JG+xYD8oPsu/wBWK6/5ifv3BBlbRt5NIjr6yZz/AIuA/J07VH9f6kfUsb7F\r\ngDqD7Lr16Yrr/mJ+/cSf04Z+0lVX2ePmeMmOG2Z4DqpDxlZJK3urago6aAaCYwLhNwZ0Y/VgceUg\r\nhsUebYomHiAOszRz2j1/3TlDSbgzQkZj1pMhxUWTBhN0yNSFA7l+TPS3GaYUT1RxL4yB6AKgkGcm\r\nmvVdoDs7JzNKqWehFm26apGEuk1NbL86pq7rICH4kJM2fKkMtJUuO4lDYZC3klzbfcVy5+lsXXrI\r\nchPYkx+pj+sLJgQ0cdcolkXwKqmWlk4pEVWcAm4TMUAaIKHTLy83YJhKF6mkKys+sqcm6RaWonNx\r\nF3340sqEhLZ3jMFKQiIqWsJenqbUFEy320OK4uA8SUJWqkLUvmbk5mFmhU7iyQy7XbdnLQAWVLHw\r\n7oUoqkpjJKmoaXAUgR2lrQOHj9FSykMp4j+J2fJ9vNxKDxb3sR98U97Dn41Ux3Xn711kGkPLq3Vb\r\nAiwYoSisWi2VMYDHcqCiZNRZUCl5SgJhKAGEdtwAeGGzqgZ7XGiiM5N33S6LHRzDKMhpSnlq3Ryu\r\nW5yZCEtgcfGgtJUolJDmwKTL3Spmdo/sZ27JeqPKO4LrmO8lNPTBlIajMp2c7wX2e8Q3FuqPKLLg\r\nfUhKQtJa3IXh7E7zpjKHttO703+2EgX/APIHiOEnLXXe5vyNRtGR/kA/+nDEwl6meyWPydH11D/v\r\nP/vmM5O/6WS++02PD/7ayYfqW40L+U3aCub8nVNR0f8AdEH/AI0/GIvUp2TxPo6RrqH/AHj/AN9x\r\nmp5G0olAObTC7OP/AMdyofqUHjRv5Mdo25vydX9HR/u9s/8AIYxV6j+ylO/DpOuof5w+/cZqeS9J\r\nBdufSu8OP/zBmC7/APfHjSyMiu0wc4izrXo6P91sn/kRjFXqL7Ks78OlW6x/mj79xmEyhpAL77Sc\r\n8N2/nGmQ7vn7ONM9p+7UNZPK12UdH+52D/yWMZeobssVfJ0uXWP8xP39j7fdU0eh2f3SnX1kTf8A\r\nxd/GCdO/amnr+XxSPqWN9ix8vyg+yz/Vguz+Yn7+wYZs0yQwC5q+kCuqyRNjN1bZcJecYJKFHcpl\r\nY1dFVJcgDtuURLv5+Do0m9obdRTBzB7RKXGoi+jgpFLZjyFJPQhL6ExVIO3kdzt82MKTqs7O21wq\r\nbYujifUasnqgVOS2hniHlxJXJqaSN/P4HDc5K1NZeyNEKVRB7G0ChGIZElEx1HEq9f8ABjFAp2zv\r\nwM3jCSQU5dzJrrHSMYd+QO4H8yJ7P7T1krcTGYlUi1C884AoLVXbhfVUZgdBJDjCHd2I6077IcQ3\r\nzkgD4U9TiPudOvvN7NaiSLGt9mBZ+VqklApVHbEdtbRA3bkPpCXHUq29NtAYYXvspg4jMEKHwPR3\r\nfbfieJqu352IVGpn2sGEL8T1eTgpqvT5WANT97BBCh8Du9HBTVfewU1P3sNdmPCkfmGju6TJSs5B\r\nNXT+NfjIV1Zo3kk1I1yDlEhVHrV4iCRlChzhycwgHYIcaqsciswXIMlxQaJB3SQD0O48wf8Ahh2M\r\nlM7K3knf0G/rfiRJFTYYeaCJKVqa4XkcCjs2ttXFwk7EK6esHDBUvQ3WK9OR8jZrNLZGh45o5atK\r\nvcK7TnMQmdyHIV6qCMKVdV41IY/VCAlADHEwgI7cJyBblNgyUvqeW8kJKQlzhUkA/Rt/Dy64kvmX\r\n2gmYmYFrTbdh0Wm0OQ9IQ8uVTly2ZC1tjYAr53VKxslfEVFSUhO42BxLyAokJV4xvDV2Hj4aKa9Y\r\nLePjGaDFmiKqhlVRSbNk0kCCdQwmHYobiPn4VzM5qO2llkBLY8gAAP4DEIK3d1WuKov1at1J6VUX\r\nNuJx1anFq2Gw3UsqUdgNhuT0wg8i6fMd5SdR7+6V88q7imq7NksjKzcUqRsuqC6qAqQ8lHGOQ6pA\r\nH2/MAD3bca2pM02qqbXOjpcUgEDffpv+wjDkZZahszsoo9ThWDdsinRZjiVupQGylSkgpSopcbcG\r\n4BI6bYj3hrSDN45ytJWyRcUJKkMW882qNcgIJ+vPCEs/VMydWKwTIncHXjYlXqNiGXOqoImFUC+1\r\nMnqNRkUqrP1DnILRCghAB9EKO46n5gNum/7cSfz+1wxs4clLXyziUOoN3CyuI5OnPvt/GHY7KkOF\r\nDbASFB91RdIWEJQAAEFWxTN4kGQhQIVMCgUNgAA2AA8gAAd3Cy8UPT0sV/qqilEqUvcnH0CGDb3n\r\nq4A1T3sF8S97BBDAH4nq/l5uCmqe9gviR9rBBCh8H1DwHih8+LBfEj8+C8TB8HzfLwU1Q+1gPEve\r\nwYQwdntPV5uCmpn2sF8S97BBDAH4vp7v5cF8T97BfEt/zsF4m+L6uCmp+9gPEvewfib4vq+jgPE/\r\newXxL3sEEN8T5tt+Cmp+9gPEvewQQ4fA9X9eC+Jnp6WC+In2sEEP8T1ev5uANT97AeI+9gwhw+B6\r\nuCmpH2sF8RPtYIIcPg+r7efgpqZ9rBTUT7WCCHD4Pq4DxL3sB4ifawXicPg+bycF8SPtYDxH3sEE\r\nOHdyer+nfwHiR9rBfEfXxYIIcPg+TzcF8SPtYKaifawQRAfA9X9OCmpe9gDUT7WC8UB8H1fRwHiR\r\n9rAeIe9ggiQ+D8u4f14L4kfawXxD3sF4o8nL8vZwBqXn6WA8Q97BeKQ+D6h9HBfEfewXxA+1gvFI\r\nfBDu79g4L4ifnwHiH04rfyD4g8euvYt4R4s3Hm63bqPCOY3WeL//AEvgXdy8/b37e124nDZnjHhM\r\nb8YeDv30fK4em3M9XH8+3Ty39LfEzbR8W8LY8e4O+/R8rh9XM9XH8+3Ty3674ZyQ6/t2/Z5/Lw5s\r\nPldPmw48TldN8IaQ67t3847/ACcK2Hyum2FTE5fTbCHkOu3N/Pz+T0fYOFXD5ewwp4nL6YRL/re3\r\n+fp83Cqh8rphTxOX0wjX3Xe283z/ANe/hTxOV0+fCki8vphIPet7f57+rs4UsXl9MKGNy+mH80qf\r\ncX+6gy+7J13+kbexLw/wb2H+O+tHk9lHW/hNubk8G6z3H1m/X9nLwzuob+lL8QZX9GPD5K75y+Lv\r\nnI2G/ddunlxc3h+G4duV13w0+fX9JX4jSf6OOHyV3vl8Xe+Tt17rt09rmcPw3Dtyuu+L5A8B2Dbb\r\nl7O7l227NttvJxUOrvW5388VSnvW5333wXuL9Xm33/fwU96wHxnB+4/X5du7gvxnBfjOOw8D8v7P\r\nX5e/gD3r1YD4zg/cX7t9vR6uC/GsF+M4L3H2/wAv6cFPesF+MYMPA9/o7ttuC/GcB8YwQeB/q83o\r\n/bwB7ztgp7zgvcfl/Z/TgvxrY7YL8ZwQeB7eTy+bbbbgPjP048e8YIPA/UPm7/18EPecFPecF7j7\r\nd/n+w9nAHvXqwX4z6sGHgf8AXb+nAHvWA+MYL3J+7u+fgh7zgvxjBB4J6u39vAfGfXgp7xgg8D7d\r\n/n7u/fy8FPecAe8Y79yb9v7Ntv18B8ZwHxjB+5N/T/MfVwU95wX4xtgvcf2+Xy7dnBT3nb6cF+MY\r\nIPBN/J6v2cAe89ce+MYIPA9/o7u/fgD3n14L8YwQeCfbbz8FPeMFPeMEHgnr7O7bv4L8Z9eA+MYL\r\n3J83zeYd/VwB7xvgPjH78EHgfl/Z6+CnvHT58FPeMd+5Ptt8/o4A9426YD4xgw8E+23o8/o4Ke8e\r\nvBT3jBe5Ptt39nAfGNzgPjGCDwT1+j1cB8Y3wHxjBe5P1/y24Ie8erBfjGC9y7+jb0fb6eA+MYD4\r\nfbBe5ez+X7OCnvGC/D479y/q/b82/AfGP3YD4fB+5fttwX4x1wHw+OB4L9ttvn4D4fAfD4MPBvxv\r\n2f04A949WC/D+rBB4J6vR5uC/GMAe8YL3Lt2/s9G/wA3AfGN8F+H36Y79zej1cB8Pj3w+CDwb7d3\r\nq4Kefgp5+CDwXfyfYPJ5NuPHn7YA8/HfuX7ergp7x6sB8Pgvcu/9N99v38FPPwHw+CDwbf8Ap3+j\r\ngDz8FPPwXubs+T0fbu4L8P6vLAfD4IPBvJt3+jzce+H9eA+H9eO/c3l/ZwU8/Bfh/Vgg8F7Pt9vJ\r\nwB7xgPh8EHg3o4A8/wDdtgDzsdh4N6PL5t9tv18B8P1wHw2C9zbejb5/378F+G/dgvw2P//Z\r\n');
INSERT INTO `oto_banners` (`id`, `banner`) VALUES (11,'/9j/4gxYSUNDX1BST0ZJTEUAAQEAAAxITGlubwIQAABtbnRyUkdCIFhZWiAHzgACAAkABgAxAABh\r\nY3NwTVNGVAAAAABJRUMgc1JHQgAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLUhQICAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFjcHJ0AAABUAAAADNkZXNjAAAB\r\nhAAAAGx3dHB0AAAB8AAAABRia3B0AAACBAAAABRyWFlaAAACGAAAABRnWFlaAAACLAAAABRiWFla\r\nAAACQAAAABRkbW5kAAACVAAAAHBkbWRkAAACxAAAAIh2dWVkAAADTAAAAIZ2aWV3AAAD1AAAACRs\r\ndW1pAAAD+AAAABRtZWFzAAAEDAAAACR0ZWNoAAAEMAAAAAxyVFJDAAAEPAAACAxnVFJDAAAEPAAA\r\nCAxiVFJDAAAEPAAACAx0ZXh0AAAAAENvcHlyaWdodCAoYykgMTk5OCBIZXdsZXR0LVBhY2thcmQg\r\nQ29tcGFueQAAZGVzYwAAAAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAABJzUkdCIElF\r\nQzYxOTY2LTIuMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\nAAAAWFlaIAAAAAAAAPNRAAEAAAABFsxYWVogAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAA\r\nOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAAGNpYWVogAAAAAAAAJKAAAA+EAAC2z2Rlc2MAAAAAAAAA\r\nFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAAAAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAA\r\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZXNjAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAC5J\r\nRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFjZSAtIHNSR0IAAAAAAAAAAAAAAAAA\r\nAAAAAAAAAAAAZGVzYwAAAAAAAAAsUmVmZXJlbmNlIFZpZXdpbmcgQ29uZGl0aW9uIGluIElFQzYx\r\nOTY2LTIuMQAAAAAAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2\r\nNi0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZpZXcAAAAAABOk/gAUXy4AEM8UAAPtzAAE\r\nEwsAA1yeAAAAAVhZWiAAAAAAAEwJVgBQAAAAVx/nbWVhcwAAAAAAAAABAAAAAAAAAAAAAAAAAAAA\r\nAAAAAo8AAAACc2lnIAAAAABDUlQgY3VydgAAAAAAAAQAAAAABQAKAA8AFAAZAB4AIwAoAC0AMgA3\r\nADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQAJUAmgCfAKQAqQCuALIAtwC8AMEA\r\nxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEyATgBPgFFAUwBUgFZAWABZwFu\r\nAXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIUAh0CJgIvAjgCQQJLAlQC\r\nXQJnAnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOANDA08DWgNmA3IDfgOK\r\nA5YDogOuA7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTEBNME4QTwBP4F\r\nDQUcBSsFOgVJBVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAadBq8GwAbR\r\nBuMG9QcHBxkHKwc9B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjSCOcI\r\n+wkQCSUJOglPCWQJeQmPCaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtp\r\nC4ALmAuwC8gL4Qv5DBIMKgxDDFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4O\r\nSQ5kDn8Omw62DtIO7g8JDyUPQQ9eD3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFt\r\nEYwRqhHJEegSBxImEkUSZBKEEqMSwxLjEwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAV\r\nEhU0FVYVeBWbFb0V4BYDFiYWSRZsFo8WshbWFvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6\r\nGSAZRRlrGZEZtxndGgQaKhpRGncanhrFGuwbFBs7G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcd\r\ncB2ZHcMd7B4WHkAeah6UHr4e6R8THz4faR+UH78f6iAVIEEgbCCYIMQg8CEcIUghdSGhIc4h+yIn\r\nIlUigiKvIt0jCiM4I2YjlCPCI/AkHyRNJHwkqyTaJQklOCVoJZclxyX3JicmVyaHJrcm6CcYJ0kn\r\neierJ9woDSg/KHEooijUKQYpOClrKZ0p0CoCKjUqaCqbKs8rAis2K2krnSvRLAUsOSxuLKIs1y0M\r\nLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+RL8cv/jA1MGwwpDDbMRIxSjGCMbox8jIqMmMymzLUMw0z\r\nRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3NnI2rjbpNyQ3YDecN9c4FDhQOIw4yDkFOUI5fzm8\r\nOfk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1hPaE94D4gPmA+oD7gPyE/YT+iP+JAI0BkQKZA\r\n50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUSRVVFmkXeRiJGZ0arRvBHNUd7R8BIBUhL\r\nSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1KTZNN3E4lTm5Ot08AT0lPk0/dUCdQ\r\ncVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYPVlxWqVb3V0RXklfgWC9YfVjL\r\nWRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19hX7NgBWBXYKpg/GFPYaJh\r\n9WJJYpxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlDaZpp8WpIap9q92tP\r\na6dr/2xXbK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4dBR0cHTMdSh1\r\nhXXhdj52m3b4d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7CfyN/hH/l\r\ngEeAqIEKgWuBzYIwgpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opkisqL\r\nMIuWi/yMY4zKjTGNmI3/jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaf\r\nlwqXdZfgmEyYuJkkmZCZ/JpomtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopaj\r\nBqN2o+akVqTHpTilqaYapoum/adup+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+L\r\nsACwdbDqsWCx1rJLssKzOLOutCW0nLUTtYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9\r\nFb2Pvgq+hL7/v3q/9cBwwOzBZ8Hjwl/C28NYw9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3\r\nyzbLtsw1zLXNNc21zjbOts83z7jQOdC60TzRvtI/0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZ\r\nbNnx2nba+9uA3AXcit0Q3ZbeHN6i3ynfr+A24L3hROHM4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy\r\n6LzpRunQ6lvq5etw6/vshu0R7ZzuKO6070DvzPBY8OXxcvH/8ozzGfOn9DT0wvVQ9d72bfb794r4\r\nGfio+Tj5x/pX+uf7d/wH/Jj9Kf26/kv+3P9t////7gAOQWRvYmUAZEAAAAAB/9sAQwABAQEBAQEB\r\nAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMD\r\n/9sAQwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD\r\nAwMDAwMDAwMDAwMD/8AAEQgAWgLYAwERAAIRAQMRAf/EAB8AAAEDBAMBAAAAAAAAAAAAAAIGCQoA\r\nBAcIAQMFC//EAHYQAAAFAgMDBQgHEAsKCAoLAAECAwQFBgcACBESITEJE0FioRQVIlFhcYHwChYy\r\nV5HB1RcYGiNCUlVYgpKVl7HR1+EZM0NTVJSW09TW8SQlJyg1NjdHSIMmNGRlhYaTtURFVmdyc4Si\r\nxcZjdHeHpKWms7TDxP/EAB8BAAEDBQEBAQAAAAAAAAAAAAIBBQkABgcICgQDC//EAG8RAAEDAgME\r\nBQQLCwQIEA0EAwECAwQFBgAHEQgSITEJExRBYSJRYtMKFRYyV3GBkZSV1BcYGSNCUlZYktLVGiRT\r\noTNDRkdygoXRJScoNDdUVWNldHWElrHB8CY1NkVIZJOio6Wys+Q4RGjWc8Px/9oADAMBAAIRAxEA\r\n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\r\n');
/*!40000 ALTER TABLE `oto_banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_barmods_ajaxin`
--

DROP TABLE IF EXISTS `oto_barmods_ajaxin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_barmods_ajaxin` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_barmods_ajaxin`
--

LOCK TABLES `oto_barmods_ajaxin` WRITE;
/*!40000 ALTER TABLE `oto_barmods_ajaxin` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_barmods_ajaxin` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_barmods_ajaxout`
--

DROP TABLE IF EXISTS `oto_barmods_ajaxout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_barmods_ajaxout` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_barmods_ajaxout`
--

LOCK TABLES `oto_barmods_ajaxout` WRITE;
/*!40000 ALTER TABLE `oto_barmods_ajaxout` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_barmods_ajaxout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_barmods_body`
--

DROP TABLE IF EXISTS `oto_barmods_body`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_barmods_body` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_barmods_body`
--

LOCK TABLES `oto_barmods_body` WRITE;
/*!40000 ALTER TABLE `oto_barmods_body` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_barmods_body` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_barmods_extensions`
--

DROP TABLE IF EXISTS `oto_barmods_extensions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_barmods_extensions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `state` tinyint(1) NOT NULL DEFAULT 0,
  `rank` int(11) NOT NULL DEFAULT 0,
  `modtype` int(11) DEFAULT 0,
  `modname` varchar(200) NOT NULL,
  `moddescr` text NOT NULL,
  `filename` varchar(200) NOT NULL DEFAULT 'None',
  `html` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `state` (`state`),
  KEY `modtype` (`modtype`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_barmods_extensions`
--

LOCK TABLES `oto_barmods_extensions` WRITE;
/*!40000 ALTER TABLE `oto_barmods_extensions` DISABLE KEYS */;
INSERT INTO `oto_barmods_extensions` (`id`, `state`, `rank`, `modtype`, `modname`, `moddescr`, `filename`, `html`) VALUES (1,1,1,2,'Status and Menu','Shows the status text, plus links to report a site, open in new window, etc.','surfmenu.php','');
/*!40000 ALTER TABLE `oto_barmods_extensions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_barmods_framesite`
--

DROP TABLE IF EXISTS `oto_barmods_framesite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_barmods_framesite` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_barmods_framesite`
--

LOCK TABLES `oto_barmods_framesite` WRITE;
/*!40000 ALTER TABLE `oto_barmods_framesite` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_barmods_framesite` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_barmods_header`
--

DROP TABLE IF EXISTS `oto_barmods_header`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_barmods_header` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_barmods_header`
--

LOCK TABLES `oto_barmods_header` WRITE;
/*!40000 ALTER TABLE `oto_barmods_header` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_barmods_header` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_barmods_topbar`
--

DROP TABLE IF EXISTS `oto_barmods_topbar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_barmods_topbar` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `state` tinyint(1) NOT NULL DEFAULT 0,
  `rank` int(11) NOT NULL DEFAULT 0,
  `modtype` int(11) DEFAULT 0,
  `modname` varchar(200) NOT NULL,
  `moddescr` text NOT NULL,
  `filename` varchar(200) NOT NULL DEFAULT 'None',
  `html` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `state` (`state`),
  KEY `modtype` (`modtype`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_barmods_topbar`
--

LOCK TABLES `oto_barmods_topbar` WRITE;
/*!40000 ALTER TABLE `oto_barmods_topbar` DISABLE KEYS */;
INSERT INTO `oto_barmods_topbar` (`id`, `state`, `rank`, `modtype`, `modname`, `moddescr`, `filename`, `html`) VALUES (1,1,1,1,'Surf Icons','The icons members click to get credit','surficons.php',''),(2,1,2,1,'Surf Timer','The surfbar timer','surftimer.php',''),(3,0,3,2,'Classic Layout','Aligns the surfbar in a classic layout','classiclayout.php',''),(4,1,4,2,'Banner and Text','Displays a member banner and text ad','bannertext.php','');
/*!40000 ALTER TABLE `oto_barmods_topbar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_bonuspages`
--

DROP TABLE IF EXISTS `oto_bonuspages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_bonuspages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pagerank` int(11) NOT NULL DEFAULT 0,
  `accid` int(11) NOT NULL DEFAULT 1,
  `showtype` int(11) NOT NULL DEFAULT 0,
  `shownum` int(11) NOT NULL DEFAULT 0,
  `url` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_bonuspages`
--

LOCK TABLES `oto_bonuspages` WRITE;
/*!40000 ALTER TABLE `oto_bonuspages` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_bonuspages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_bonusprograms`
--

DROP TABLE IF EXISTS `oto_bonusprograms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_bonusprograms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rank` int(11) NOT NULL DEFAULT 0,
  `hits` int(11) NOT NULL DEFAULT 0,
  `clicks` int(11) NOT NULL DEFAULT 0,
  `progname` varchar(100) NOT NULL DEFAULT '',
  `refurl` varchar(100) NOT NULL DEFAULT '',
  `progdesc` text NOT NULL,
  `bonusp` int(1) NOT NULL DEFAULT 1,
  `lastshown` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_bonusprograms`
--

LOCK TABLES `oto_bonusprograms` WRITE;
/*!40000 ALTER TABLE `oto_bonusprograms` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_bonusprograms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_cboost`
--

DROP TABLE IF EXISTS `oto_cboost`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_cboost` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `starttime` int(11) NOT NULL DEFAULT 0,
  `endtime` int(11) NOT NULL DEFAULT 0,
  `surfboost` float NOT NULL DEFAULT 0,
  `buyboost` float NOT NULL DEFAULT 0,
  `acctype` int(11) NOT NULL DEFAULT 0,
  `surfimage` varchar(200) DEFAULT '/images/cboost.jpg',
  `surftext` varchar(200) DEFAULT 'Surfing Ratios Are Doubled Today',
  `buytext` varchar(200) DEFAULT 'SPECIAL: Credit Purchases Are Doubled Today',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_cboost`
--

LOCK TABLES `oto_cboost` WRITE;
/*!40000 ALTER TABLE `oto_cboost` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_cboost` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_cronjobs`
--

DROP TABLE IF EXISTS `oto_cronjobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_cronjobs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `priority` int(11) NOT NULL DEFAULT 5,
  `filepath` varchar(200) NOT NULL,
  `lastcalled` int(11) NOT NULL DEFAULT 0,
  `lastcomplete` int(11) NOT NULL DEFAULT 0,
  `day` varchar(50) NOT NULL,
  `hour` varchar(10) NOT NULL,
  `minute` varchar(10) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `filepath` (`filepath`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_cronjobs`
--

LOCK TABLES `oto_cronjobs` WRITE;
/*!40000 ALTER TABLE `oto_cronjobs` DISABLE KEYS */;
INSERT INTO `oto_cronjobs` (`id`, `priority`, `filepath`, `lastcalled`, `lastcomplete`, `day`, `hour`, `minute`) VALUES (1,2,'spotlight_mail.php',1782450190,1782450190,'*','5','3'),(2,6,'solomailer_cron.php',1782432130,1782432130,'*','0','2'),(11,0,'piggybank_cron.php',1782432310,1782432310,'*','0','5'),(12,0,'pmarket_cron.php',1782486012,1782486012,'*','*','0'),(5,1,'geniuxs_groupmailer.php',1782434170,1782434170,'*','0','36'),(6,1,'geniuxs_newmemmailer.php',1782433570,1782433570,'*','0','26'),(7,0,'geniuxs_quarterhourly.php',1782486910,1782486910,'*','*','*/15'),(8,2,'lfm_plugins/puzzlehunt/cron.php',1782486189,1782486189,'*','*','3'),(9,7,'surftarget_cron.php',1782432189,1782432189,'*','0','3'),(10,2,'trackercron.php',1782432069,1782432069,'*','0','1');
/*!40000 ALTER TABLE `oto_cronjobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_customfields`
--

DROP TABLE IF EXISTS `oto_customfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_customfields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rank` int(11) NOT NULL DEFAULT 0,
  `name` varchar(50) NOT NULL DEFAULT 'None',
  `type` int(11) NOT NULL DEFAULT 1,
  `options` varchar(255) NOT NULL DEFAULT 'None',
  `required` tinyint(1) NOT NULL DEFAULT 0,
  `onsignup` tinyint(1) NOT NULL DEFAULT 1,
  `onprofile` tinyint(1) NOT NULL DEFAULT 1,
  `searchable` tinyint(1) NOT NULL DEFAULT 0,
  `onipn` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `rank` (`rank`),
  KEY `required` (`required`),
  KEY `onsignup` (`onsignup`),
  KEY `onprofile` (`onprofile`),
  KEY `searchable` (`searchable`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_customfields`
--

LOCK TABLES `oto_customfields` WRITE;
/*!40000 ALTER TABLE `oto_customfields` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_customfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_customipnvals`
--

DROP TABLE IF EXISTS `oto_customipnvals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_customipnvals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fieldid` int(11) NOT NULL DEFAULT 0,
  `ipnid` int(11) NOT NULL DEFAULT 0,
  `fieldvalue` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `fieldid` (`fieldid`),
  KEY `ipnid` (`ipnid`),
  KEY `fieldvalue` (`fieldvalue`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_customipnvals`
--

LOCK TABLES `oto_customipnvals` WRITE;
/*!40000 ALTER TABLE `oto_customipnvals` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_customipnvals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_customvals`
--

DROP TABLE IF EXISTS `oto_customvals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_customvals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fieldid` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL DEFAULT 0,
  `fieldvalue` varchar(255) NOT NULL DEFAULT 'None',
  PRIMARY KEY (`id`),
  KEY `fieldid` (`fieldid`),
  KEY `userid` (`userid`),
  KEY `fieldvalue` (`fieldvalue`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_customvals`
--

LOCK TABLES `oto_customvals` WRITE;
/*!40000 ALTER TABLE `oto_customvals` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_customvals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_datestats`
--

DROP TABLE IF EXISTS `oto_datestats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_datestats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL DEFAULT '0000-00-00',
  `messsent` int(11) NOT NULL DEFAULT 0,
  `mailsent` int(11) NOT NULL DEFAULT 0,
  `crdsearned` int(11) NOT NULL DEFAULT 0,
  `hitsdelivered` int(11) NOT NULL DEFAULT 0,
  `perbanner` int(11) NOT NULL DEFAULT 0,
  `pertext` int(11) NOT NULL DEFAULT 0,
  `persqban` int(11) NOT NULL DEFAULT 0,
  `permbrand` int(11) NOT NULL DEFAULT 0,
  `perpeel` int(11) NOT NULL DEFAULT 0,
  `perwidgetad` int(11) NOT NULL DEFAULT 0,
  `memsurfed` int(11) NOT NULL DEFAULT 0,
  `signups` int(11) NOT NULL DEFAULT 0,
  `queuemax` int(11) NOT NULL DEFAULT 0,
  `queueavg` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1459 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_datestats`
--

LOCK TABLES `oto_datestats` WRITE;
/*!40000 ALTER TABLE `oto_datestats` DISABLE KEYS */;
INSERT INTO `oto_datestats` (`id`, `date`, `messsent`, `mailsent`, `crdsearned`, `hitsdelivered`, `perbanner`, `pertext`, `persqban`, `permbrand`, `perpeel`, `perwidgetad`, `memsurfed`, `signups`, `queuemax`, `queueavg`) VALUES (1,'2022-05-28',2,40,1,1,1,1,0,0,0,0,1,23,25,0),(2,'2022-05-29',1,10,3,3,2,3,0,0,0,0,2,20,10,0),(3,'2022-05-30',2,86,50,14,5,4,0,0,0,0,10,8,52,0),(4,'2022-05-31',2,68,20,11,3,3,0,0,0,0,6,13,35,0),(5,'2022-06-01',1,68,123,15,4,3,0,0,0,0,10,6,68,0),(6,'2022-06-02',1,77,92,11,2,2,0,0,0,0,7,3,77,0),(7,'2022-06-03',2,66,67,13,2,2,0,0,0,0,10,5,33,0),(8,'2022-06-04',0,0,20,2,1,1,0,0,0,0,1,15,0,0),(9,'2022-06-05',0,0,1,1,1,1,0,0,0,0,1,8,0,0),(10,'2022-06-06',2,70,42,6,2,2,0,0,0,0,5,4,50,0),(11,'2022-06-07',2,96,23,14,3,3,0,0,0,0,8,2,50,0),(12,'2022-06-08',1,100,32,5,2,1,0,0,0,0,5,0,100,0),(13,'2022-06-09',1,114,66,10,2,2,0,0,0,0,9,3,114,0),(14,'2022-06-10',1,48,110,17,3,3,0,0,0,0,13,5,48,0),(15,'2022-06-11',3,360,257,32,7,5,0,0,0,0,15,0,120,0),(16,'2022-06-12',1,50,101,18,3,3,0,0,0,0,8,1,50,0),(17,'2022-06-13',2,144,201,23,4,3,0,0,0,0,12,1,122,0),(18,'2022-06-14',4,263,87,15,3,2,0,0,0,0,9,0,122,0),(19,'2022-06-15',2,172,140,23,4,3,0,0,0,0,11,0,122,0),(20,'2022-06-16',1,15,26,8,1,1,0,0,0,0,4,0,15,0),(21,'2022-06-17',1,122,107,13,3,2,0,0,0,0,8,2,122,0),(22,'2022-06-18',1,50,39,10,2,1,0,0,0,0,5,0,50,0),(23,'2022-06-19',0,0,47,12,2,2,0,0,0,0,3,1,0,0),(24,'2022-06-20',6,744,588,75,13,8,0,0,0,0,17,1,124,1),(25,'2022-06-21',1,125,78,20,3,2,0,0,0,0,9,1,125,0),(26,'2022-06-22',2,175,103,16,3,2,0,0,0,0,10,0,125,0),(27,'2022-06-23',1,125,280,36,6,4,0,0,0,0,14,0,125,0),(28,'2022-06-24',2,249,271,34,6,4,0,0,0,0,13,0,125,0),(29,'2022-06-25',0,0,64,12,2,2,0,0,0,0,6,0,0,0),(30,'2022-06-26',1,50,23,5,1,1,0,0,0,0,5,0,50,0),(31,'2022-06-27',3,375,168,51,9,5,0,0,0,0,12,0,125,0),(32,'2022-06-28',0,0,90,18,3,2,0,0,0,0,8,1,0,0),(33,'2022-06-29',2,252,211,36,8,5,0,0,0,0,15,1,126,0),(34,'2022-06-30',0,0,29,11,2,2,0,0,0,0,4,1,0,0),(35,'2022-07-01',1,126,21,3,1,1,0,0,0,0,3,0,126,0),(36,'2022-07-02',2,141,44,13,2,2,2,0,0,0,9,0,126,0),(37,'2022-07-03',2,181,101,20,3,2,1,0,0,0,11,1,127,0),(38,'2022-07-04',2,181,110,20,3,2,1,0,0,0,10,0,127,0),(39,'2022-07-05',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(40,'2022-07-06',3,379,162,19,3,2,12,0,0,0,7,0,127,0),(41,'2022-07-07',2,254,94,18,3,2,2,0,0,0,11,1,127,0),(42,'2022-07-08',0,0,63,19,3,2,2,0,0,0,9,0,0,0),(43,'2022-07-09',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(44,'2022-07-10',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(45,'2022-07-11',1,128,32,5,1,1,4,0,0,0,5,0,128,0),(46,'2022-07-12',1,54,15,6,1,1,2,0,0,0,6,0,54,0),(47,'2022-07-13',1,126,57,12,2,2,2,0,0,0,9,0,126,0),(48,'2022-07-14',1,128,100,15,3,2,3,0,0,0,13,0,128,0),(49,'2022-07-15',0,0,23,5,1,1,2,0,0,0,4,1,0,0),(50,'2022-07-16',2,258,132,24,5,3,12,0,0,0,15,1,129,0),(51,'2022-07-17',0,0,66,12,4,2,3,0,0,0,6,0,0,0),(52,'2022-07-18',1,130,59,10,2,2,4,0,0,0,8,0,130,0),(53,'2022-07-19',0,0,77,8,2,1,0,0,0,0,6,2,0,0),(54,'2022-07-20',2,265,695,29,5,3,0,0,0,0,15,2,133,0),(55,'2022-07-21',1,134,215,13,2,1,0,0,0,0,7,1,134,0),(56,'2022-07-22',2,193,215,18,3,2,0,0,0,0,9,4,135,0),(57,'2022-07-23',0,0,186,11,2,1,0,0,0,0,4,1,0,0),(58,'2022-07-24',0,0,55,11,2,1,0,0,0,0,2,2,0,0),(59,'2022-07-25',1,65,51,9,1,1,0,0,0,0,7,2,65,0),(60,'2022-07-26',0,0,34,5,1,1,0,0,0,0,2,1,0,0),(61,'2022-07-27',1,67,24,8,1,1,0,0,0,0,7,1,67,0),(62,'2022-07-28',2,288,65,24,3,2,0,0,0,0,14,3,144,1),(63,'2022-07-29',0,0,38,14,2,2,0,0,0,0,6,2,0,0),(64,'2022-07-30',2,197,26,10,2,1,0,0,0,0,9,1,125,0),(65,'2022-07-31',3,372,99,30,4,3,0,0,0,0,15,1,150,1),(66,'2022-08-01',1,70,54,26,3,2,0,0,0,0,7,2,70,0),(67,'2022-08-02',1,153,48,16,2,2,0,0,0,0,13,0,153,0),(68,'2022-08-03',0,0,3,3,1,1,0,0,0,0,2,1,0,0),(69,'2022-08-04',2,308,63,27,3,2,0,0,0,0,12,0,154,0),(70,'2022-08-05',2,229,84,32,3,3,0,0,0,0,14,1,154,0),(71,'2022-08-06',0,0,23,15,2,1,0,0,0,0,8,0,0,0),(72,'2022-08-07',1,154,58,22,2,2,0,0,0,0,11,1,154,0),(73,'2022-08-08',0,0,31,7,1,1,0,0,0,0,3,2,0,0),(74,'2022-08-09',1,157,60,20,2,2,0,0,0,0,14,0,157,0),(75,'2022-08-10',2,240,42,14,2,1,0,0,0,0,12,4,158,0),(76,'2022-08-11',0,0,17,14,1,1,0,0,0,0,8,0,0,0),(77,'2022-08-12',1,82,1,1,1,1,0,0,0,0,1,1,82,0),(78,'2022-08-13',1,80,16,15,2,2,0,0,0,0,7,0,80,0),(79,'2022-08-14',3,337,55,22,2,2,0,0,0,0,12,1,161,0),(80,'2022-08-15',3,327,46,22,2,2,0,0,0,0,14,2,163,0),(81,'2022-08-16',1,84,33,13,1,1,0,0,0,0,8,0,84,0),(82,'2022-08-17',0,0,6,2,1,1,0,0,0,0,2,0,0,0),(83,'2022-08-18',1,164,31,15,2,1,0,0,0,0,8,0,164,0),(84,'2022-08-19',2,248,74,29,3,2,0,0,0,0,12,1,164,0),(85,'2022-08-20',0,0,39,27,3,2,0,0,0,0,9,0,0,0),(86,'2022-08-21',2,333,23,9,1,1,0,0,0,0,8,1,167,0),(87,'2022-08-22',1,86,48,17,2,2,0,0,0,0,8,0,86,0),(88,'2022-08-23',2,172,7,3,1,1,0,0,0,0,3,0,86,0),(89,'2022-08-24',2,189,60,23,2,2,0,0,0,0,17,1,169,0),(90,'2022-08-25',1,87,12,8,1,1,0,0,0,0,6,0,87,0),(91,'2022-08-26',0,0,12,12,1,1,0,0,0,0,6,1,0,0),(92,'2022-08-27',0,0,6,2,1,1,0,0,0,0,2,1,0,0),(93,'2022-08-28',0,0,2,2,1,1,0,0,0,0,2,0,0,0),(94,'2022-08-29',1,170,27,11,2,2,0,0,0,0,11,0,170,0),(95,'2022-08-30',3,349,39,15,2,1,0,0,0,0,10,0,171,1),(96,'2022-08-31',0,0,8,4,1,1,0,0,0,0,3,0,0,0),(97,'2022-09-01',0,0,12,8,1,1,0,0,0,0,3,0,0,0),(98,'2022-09-02',2,178,13,5,1,1,0,0,0,0,4,0,89,0),(99,'2022-09-03',1,88,12,8,1,1,0,0,0,0,6,0,88,0),(100,'2022-09-04',0,0,5,5,1,1,0,0,0,0,3,1,0,0),(101,'2022-09-05',2,260,39,19,2,2,0,0,0,0,9,0,171,1),(102,'2022-09-06',1,171,42,17,2,2,0,0,0,0,12,0,171,0),(103,'2022-09-07',0,0,10,6,1,1,0,0,0,0,3,0,0,0),(104,'2022-09-08',1,171,37,13,2,1,0,0,0,0,13,0,171,0),(105,'2022-09-09',1,15,0,0,1,1,0,0,0,0,0,0,15,0),(106,'2022-09-10',1,88,3,3,1,1,0,0,0,0,3,0,88,0),(107,'2022-09-11',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(108,'2022-09-12',0,0,1,1,1,1,0,0,0,0,1,1,0,0),(109,'2022-09-13',0,0,0,0,1,1,0,0,0,0,0,1,0,0),(110,'2022-09-14',1,90,6,6,1,1,0,0,0,0,5,0,90,0),(111,'2022-09-15',2,263,33,17,2,2,0,0,0,0,10,0,173,0),(112,'2022-09-16',1,90,10,6,1,1,0,0,0,0,4,0,90,0),(113,'2022-09-17',0,0,5,5,1,1,0,0,0,0,5,0,0,0),(114,'2022-09-18',0,0,5,1,1,1,0,0,0,0,1,1,0,0),(115,'2022-09-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(116,'2022-09-20',0,0,0,0,1,1,0,0,0,0,0,1,0,0),(117,'2022-09-21',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(118,'2022-09-22',0,0,4,4,1,1,0,0,0,0,3,0,0,0),(119,'2022-09-23',4,533,27,7,1,1,0,0,0,0,7,0,266,1),(120,'2022-09-26',2,103,25,17,2,1,0,0,0,0,7,0,530,5),(121,'2022-09-27',1,96,22,14,1,1,0,0,0,0,6,2,96,0),(122,'2022-09-28',1,180,25,12,1,1,0,0,0,0,7,0,180,0),(123,'2022-09-29',1,180,39,11,1,1,0,0,0,0,8,0,180,0),(124,'2022-09-30',0,0,21,9,1,1,0,0,0,0,8,0,0,0),(125,'2022-10-01',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(126,'2022-10-02',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(127,'2022-10-03',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(128,'2022-10-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(129,'2022-10-05',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(130,'2022-10-06',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(131,'2022-10-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(132,'2022-10-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(133,'2022-10-09',1,178,26,10,1,1,0,0,0,0,10,0,178,0),(134,'2022-10-10',1,95,3,3,1,1,0,0,0,0,3,0,95,0),(135,'2022-10-11',0,0,2,2,1,1,0,0,0,0,2,1,0,0),(136,'2022-10-12',1,97,5,4,1,1,0,0,0,0,3,1,97,0),(137,'2022-10-13',1,180,24,8,1,1,0,0,0,0,7,0,180,0),(138,'2022-10-14',0,0,6,6,1,1,0,0,0,0,4,0,0,0),(139,'2022-10-15',1,181,26,6,1,1,0,0,0,0,6,0,181,0),(140,'2022-10-16',0,0,16,8,1,1,0,0,0,0,6,0,0,0),(141,'2022-10-17',1,95,3,3,1,1,0,0,0,0,3,2,95,0),(142,'2022-10-18',1,96,5,5,1,1,0,0,0,0,4,1,96,0),(143,'2022-10-19',0,0,3,3,1,1,0,0,0,0,2,0,0,0),(144,'2022-10-20',0,0,3,3,1,1,0,0,0,0,1,1,0,0),(145,'2022-10-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(146,'2022-10-22',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(147,'2022-10-23',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(148,'2022-10-24',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(149,'2022-10-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(150,'2022-10-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(151,'2022-10-27',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(152,'2022-10-28',3,292,2,2,1,1,0,0,0,0,2,0,98,0),(153,'2022-10-29',0,0,10,10,1,1,0,0,0,0,4,0,0,0),(154,'2022-10-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(155,'2022-10-31',1,184,29,9,2,1,0,0,0,0,9,0,184,0),(156,'2022-11-01',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(157,'2022-11-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(158,'2022-11-03',1,98,3,3,1,1,0,0,0,0,2,0,98,0),(159,'2022-11-04',0,0,4,4,1,1,0,0,0,0,3,0,0,0),(160,'2022-11-05',0,0,2,2,1,1,0,0,0,0,1,0,0,0),(161,'2022-11-06',1,99,5,5,1,1,0,0,0,0,5,1,99,0),(162,'2022-11-07',0,0,0,0,1,1,2,0,0,0,0,0,0,0),(163,'2022-11-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(164,'2022-11-09',1,99,4,4,1,1,3,0,0,0,4,0,99,0),(165,'2022-11-10',0,0,2,2,1,1,0,0,0,0,2,0,0,0),(166,'2022-11-11',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(167,'2022-11-12',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(168,'2022-11-13',0,0,0,0,1,1,2,0,0,0,0,1,0,0),(169,'2022-11-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(170,'2022-11-15',1,100,5,5,1,1,2,0,0,0,4,0,100,0),(171,'2022-11-16',0,0,2,2,1,1,1,0,0,0,2,0,0,0),(172,'2022-11-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(173,'2022-11-18',3,386,19,11,2,1,2,0,0,0,6,0,186,0),(174,'2022-11-19',3,368,34,17,3,2,3,0,0,0,10,1,187,0),(175,'2022-11-20',1,101,27,19,2,2,1,0,0,0,8,0,101,0),(176,'2022-11-21',1,187,25,12,2,2,2,0,0,0,9,0,187,1),(177,'2022-11-22',0,0,2,2,1,1,3,0,0,0,1,0,0,0),(178,'2022-11-23',0,0,10,2,1,1,2,0,0,0,2,0,0,0),(179,'2022-11-24',2,288,15,7,1,1,2,0,0,0,7,0,187,0),(180,'2022-11-25',0,0,21,8,1,1,1,0,0,0,8,0,0,0),(181,'2022-11-26',1,101,4,4,1,1,1,0,0,0,4,0,101,0),(182,'2022-11-27',0,0,6,2,1,1,0,0,0,0,2,0,0,0),(183,'2022-11-28',2,202,5,5,1,1,3,0,0,0,4,4,102,0),(184,'2022-11-29',1,191,21,9,1,1,2,0,0,0,7,1,191,0),(185,'2022-11-30',3,407,12,8,1,1,5,0,0,0,6,2,193,0),(186,'2022-12-01',0,0,0,0,1,1,5,0,0,0,0,0,0,0),(187,'2022-12-02',0,0,0,0,1,1,1,0,0,0,0,0,0,0),(188,'2022-12-03',3,404,26,10,2,1,2,0,0,0,9,1,195,0),(189,'2022-12-04',2,214,6,6,1,1,3,0,0,0,3,2,109,0),(190,'2022-12-05',0,0,5,1,1,1,2,0,0,0,1,1,0,0),(191,'2022-12-06',0,0,14,10,2,1,0,0,0,0,2,0,0,0),(192,'2022-12-07',0,0,0,0,1,1,2,0,0,0,0,0,0,0),(193,'2022-12-08',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(194,'2022-12-09',1,197,22,10,1,1,2,0,0,0,6,0,197,0),(195,'2022-12-10',3,413,38,22,3,2,4,0,0,0,12,1,195,0),(196,'2022-12-11',0,0,10,6,1,1,3,0,0,0,5,0,0,0),(197,'2022-12-12',1,194,38,15,2,2,2,0,0,0,10,1,194,0),(198,'2022-12-13',0,0,7,7,1,1,0,0,0,0,6,0,0,0),(199,'2022-12-14',0,0,5,1,1,1,2,0,0,0,1,0,0,0),(200,'2022-12-15',1,195,20,8,1,1,2,0,0,0,8,0,195,0),(201,'2022-12-16',3,498,44,16,2,1,2,0,0,0,10,0,303,1),(202,'2022-12-17',0,0,30,10,1,1,1,0,0,0,9,1,0,0),(203,'2022-12-18',3,333,7,7,1,1,2,0,0,0,4,1,111,0),(204,'2022-12-19',2,111,217,21,2,2,1,0,0,0,12,0,198,0),(205,'2022-12-20',1,0,234,17,2,1,2,0,0,0,12,1,199,1),(206,'2022-12-21',1,0,376,16,2,1,2,0,0,0,12,0,199,1),(207,'2022-12-22',1,0,200,8,1,1,2,0,0,0,7,0,199,1),(208,'2022-12-23',3,224,283,19,2,2,3,0,0,0,10,0,224,1),(209,'2022-12-24',2,198,260,12,1,1,2,0,0,0,9,0,199,1),(210,'2022-12-25',4,594,252,28,2,2,2,0,0,0,11,0,199,2),(211,'2022-12-26',5,685,147,35,3,2,3,0,0,0,13,0,199,2),(212,'2022-12-27',3,396,373,49,4,3,2,0,0,0,15,2,199,1),(213,'2022-12-28',5,710,234,30,3,2,3,0,0,0,11,0,200,2),(214,'2022-12-29',5,711,353,53,4,3,3,0,0,0,12,1,201,2),(215,'2022-12-30',3,309,113,26,2,2,2,0,0,0,10,0,201,1),(216,'2022-12-31',1,0,341,25,2,2,0,0,0,0,10,0,201,1),(217,'2023-01-01',3,314,197,17,2,1,3,0,0,0,10,1,201,1),(218,'2023-01-02',2,201,388,25,2,2,2,0,0,0,11,0,202,1),(219,'2023-01-03',3,402,412,49,4,3,3,0,0,0,12,1,203,1),(220,'2023-01-04',3,319,371,32,3,2,2,0,0,0,11,1,204,1),(221,'2023-01-05',4,726,529,57,4,3,3,0,0,0,17,1,203,1),(222,'2023-01-06',1,0,238,15,2,1,2,0,0,0,11,0,204,1),(223,'2023-01-07',4,420,409,34,3,2,2,0,0,0,15,0,204,1),(224,'2023-01-08',5,642,473,50,4,3,3,0,0,0,18,1,205,2),(225,'2023-01-09',2,204,362,35,3,2,2,0,0,0,13,0,205,1),(226,'2023-01-10',6,853,558,51,4,3,4,0,0,0,15,3,206,2),(227,'2023-01-11',4,531,429,60,5,4,3,0,0,0,16,0,206,1),(228,'2023-01-12',1,0,322,23,2,2,2,0,0,0,10,0,206,1),(229,'2023-01-13',3,410,206,19,2,2,2,0,0,0,13,1,207,1),(230,'2023-01-14',1,0,160,9,1,1,0,0,0,0,9,0,207,1),(231,'2023-01-15',2,120,562,37,3,3,2,0,0,0,18,0,207,1),(232,'2023-01-16',5,652,350,39,4,3,5,0,0,0,15,1,207,2),(233,'2023-01-17',3,321,378,25,3,2,2,0,0,0,14,0,207,1),(234,'2023-01-18',0,0,104,8,1,1,2,0,0,0,5,1,0,0),(235,'2023-01-19',1,207,18,6,1,1,2,0,0,0,6,0,207,0),(236,'2023-01-20',1,207,67,19,2,1,4,0,0,0,12,0,207,0),(237,'2023-01-21',2,414,22,10,1,1,3,0,0,0,9,0,207,1),(238,'2023-01-22',1,207,20,8,1,1,3,0,0,0,7,0,207,0),(239,'2023-01-23',3,449,33,21,2,2,2,0,0,0,9,0,207,1),(240,'2023-01-24',1,207,55,23,2,2,3,0,0,0,11,0,207,0),(241,'2023-01-25',2,220,8,8,1,1,4,0,0,0,5,0,121,0),(242,'2023-01-26',4,659,94,42,4,3,3,0,0,0,13,1,208,1),(243,'2023-01-27',1,208,20,7,1,1,2,0,0,0,6,0,208,0),(244,'2023-01-28',2,238,45,25,3,2,2,0,0,0,14,0,208,0),(245,'2023-01-29',3,546,66,24,3,2,2,0,0,0,15,0,208,1),(246,'2023-01-30',2,330,55,43,4,3,2,0,0,0,11,0,208,0),(247,'2023-01-31',4,743,77,40,4,3,3,0,0,0,16,0,208,1),(248,'2023-02-01',1,208,55,27,3,2,2,0,0,0,13,0,208,0),(249,'2023-02-02',2,330,26,18,2,2,2,0,0,0,11,0,208,0),(250,'2023-02-03',0,0,16,8,1,1,2,0,0,0,8,1,0,0),(251,'2023-02-04',2,419,66,26,2,2,2,0,0,0,12,1,210,1),(252,'2023-02-05',3,544,42,21,2,2,4,0,0,0,13,0,210,1),(253,'2023-02-06',2,334,32,16,2,1,2,0,0,0,8,0,210,1),(254,'2023-02-07',3,545,76,32,3,2,3,0,0,0,13,1,211,1),(255,'2023-02-08',3,426,73,43,4,3,2,0,0,0,14,0,211,1),(256,'2023-02-09',2,422,66,26,3,2,2,0,0,0,13,0,211,1),(257,'2023-02-10',2,338,29,13,2,1,2,0,0,0,10,1,212,1),(258,'2023-02-11',4,677,122,41,4,3,3,0,0,0,15,1,213,2),(259,'2023-02-12',1,214,36,19,2,2,2,0,0,0,13,1,214,1),(260,'2023-02-13',3,556,37,19,2,1,2,0,0,0,10,0,214,1),(261,'2023-02-14',1,128,39,18,2,1,2,0,0,0,11,1,128,0),(262,'2023-02-15',2,428,50,17,2,1,2,0,0,0,10,0,214,1),(263,'2023-02-16',1,214,34,21,2,2,2,0,0,0,8,0,214,1),(264,'2023-02-17',1,129,4,4,1,1,2,0,0,0,3,1,129,0),(265,'2023-02-18',2,428,71,33,3,2,2,0,0,0,13,0,215,1),(266,'2023-02-19',2,428,79,33,3,2,3,0,0,0,12,0,215,1),(267,'2023-02-20',2,215,165,10,1,1,1,0,0,0,7,0,216,1),(268,'2023-02-21',0,0,91,11,1,1,0,0,0,0,9,0,0,0),(269,'2023-02-22',1,215,15,6,1,1,2,0,0,0,6,0,215,1),(270,'2023-02-23',1,215,8,3,1,1,3,0,0,0,3,0,215,0),(271,'2023-02-24',0,0,17,8,1,1,0,0,0,0,8,0,0,0),(272,'2023-02-25',3,556,49,13,2,1,2,0,0,0,6,0,214,1),(273,'2023-02-26',4,768,94,40,4,3,3,0,0,0,13,0,214,1),(274,'2023-02-27',2,214,285,33,4,3,2,0,0,0,12,0,215,1),(275,'2023-02-28',2,336,129,14,2,1,4,0,0,0,10,0,208,1),(276,'2023-03-01',2,258,86,20,2,2,3,0,0,0,9,2,129,0),(277,'2023-03-02',1,216,9,6,1,1,2,0,0,0,5,0,216,1),(278,'2023-03-03',0,0,7,2,1,1,2,0,0,0,2,0,0,0),(279,'2023-03-04',1,130,3,3,1,1,0,0,0,0,3,0,130,0),(280,'2023-03-05',2,432,30,20,2,2,3,0,0,0,11,0,216,1),(281,'2023-03-06',1,216,24,16,2,1,2,0,0,0,8,0,216,1),(282,'2023-03-07',1,216,17,10,1,1,2,0,0,0,7,2,216,0),(283,'2023-03-08',2,351,21,15,2,1,3,0,0,0,7,2,218,1),(284,'2023-03-09',2,352,51,20,2,1,2,0,0,0,11,1,219,1),(285,'2023-03-10',1,219,32,11,1,1,2,0,0,0,10,0,219,1),(286,'2023-03-11',1,133,18,12,2,1,2,0,0,0,10,0,133,0),(287,'2023-03-12',2,438,25,14,2,1,2,0,0,0,8,0,219,1),(288,'2023-03-13',3,488,46,27,3,2,2,0,0,0,12,1,220,1),(289,'2023-03-14',1,221,16,10,1,1,3,0,0,0,5,1,221,1),(290,'2023-03-15',3,576,31,17,2,1,3,0,0,0,11,0,221,1),(291,'2023-03-16',0,0,38,13,2,1,0,0,0,0,8,0,0,0),(292,'2023-03-17',1,221,28,11,1,1,2,0,0,0,9,1,221,1),(293,'2023-03-18',1,222,31,10,1,1,2,0,0,0,10,0,222,0),(294,'2023-03-19',2,358,13,8,1,1,2,0,0,0,8,0,222,1),(295,'2023-03-20',0,0,18,9,1,1,2,0,0,0,8,0,0,0),(296,'2023-03-21',1,136,11,6,1,1,3,0,0,0,6,0,136,0),(297,'2023-03-22',0,0,5,5,1,1,2,0,0,0,2,0,0,0),(298,'2023-03-23',1,222,15,6,1,1,3,0,0,0,6,0,222,1),(299,'2023-03-24',1,215,15,6,1,1,1,0,0,0,6,0,215,1),(300,'2023-03-25',1,222,24,8,1,1,1,0,0,0,8,0,222,1),(301,'2023-03-26',2,444,30,13,1,1,2,0,0,0,11,0,222,1),(302,'2023-03-27',1,137,34,20,2,1,2,0,0,0,10,1,137,0),(303,'2023-03-28',2,328,12,6,1,1,3,0,0,0,5,5,228,0),(304,'2023-03-29',2,456,36,15,2,1,3,0,0,0,10,0,228,1),(305,'2023-03-30',2,284,16,15,2,1,2,0,0,0,7,0,142,0),(306,'2023-03-31',0,0,4,4,1,1,1,0,0,0,3,1,0,0),(307,'2023-04-01',1,229,14,5,1,1,2,0,0,0,5,0,229,1),(308,'2023-04-02',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(309,'2023-04-03',1,229,9,4,1,1,2,0,0,0,3,0,229,1),(310,'2023-04-04',0,0,22,6,1,1,2,0,0,0,3,0,0,0),(311,'2023-04-05',1,229,18,9,1,1,3,0,0,0,9,0,229,0),(312,'2023-04-06',1,229,0,0,1,1,2,0,0,0,0,0,229,0),(313,'2023-04-07',1,229,48,19,2,1,3,0,0,0,13,0,229,0),(314,'2023-04-08',4,504,33,23,3,2,4,0,0,0,11,0,229,1),(315,'2023-04-09',2,229,139,15,2,1,2,0,0,0,10,0,230,1),(316,'2023-04-10',2,262,88,20,2,2,3,0,0,0,11,0,229,1),(317,'2023-04-11',1,230,100,12,2,1,2,0,0,0,7,1,230,1),(318,'2023-04-12',1,230,7,2,1,1,3,0,0,0,2,0,230,0),(319,'2023-04-13',1,144,22,13,1,1,3,0,0,0,10,0,144,0),(320,'2023-04-14',1,230,11,7,1,1,2,0,0,0,5,0,230,1),(321,'2023-04-15',0,0,7,2,1,1,0,0,0,0,2,0,0,0),(322,'2023-04-16',1,231,0,0,1,1,2,0,0,0,0,1,231,1),(323,'2023-04-17',0,0,27,10,1,1,3,0,0,0,10,2,0,0),(324,'2023-04-18',1,233,8,4,1,1,2,0,0,0,4,0,233,1),(325,'2023-04-19',0,0,13,4,1,1,2,0,0,0,4,0,0,0),(326,'2023-04-20',1,233,23,7,1,1,3,0,0,0,7,0,233,1),(327,'2023-04-21',1,233,11,3,1,1,2,0,0,0,3,0,233,1),(328,'2023-04-22',1,147,27,14,2,1,2,0,0,0,11,1,147,0),(329,'2023-04-23',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(330,'2023-04-24',1,235,18,9,1,1,1,0,0,0,6,1,235,1),(331,'2023-04-25',0,0,6,2,1,1,0,0,0,0,2,0,0,0),(332,'2023-04-26',1,235,20,8,1,1,2,0,0,0,5,0,235,1),(333,'2023-04-27',0,0,11,6,1,1,2,0,0,0,5,0,0,0),(334,'2023-04-28',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(335,'2023-04-29',2,384,9,4,1,1,3,0,0,0,4,1,236,1),(336,'2023-04-30',0,0,11,5,1,2,4,0,0,0,4,1,0,0),(337,'2023-05-01',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(338,'2023-05-02',1,237,10,5,1,1,2,0,0,0,4,0,237,1),(339,'2023-05-03',0,0,7,2,1,1,3,0,0,0,2,0,0,0),(340,'2023-05-04',0,0,3,2,1,1,0,0,0,0,1,0,0,0),(341,'2023-05-05',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(342,'2023-05-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(343,'2023-05-07',1,237,12,4,1,1,2,0,0,0,4,0,237,0),(344,'2023-05-08',1,237,26,9,1,1,2,0,0,0,8,0,237,1),(345,'2023-05-09',0,0,2,1,1,1,2,0,0,0,1,1,0,0),(346,'2023-05-10',1,238,0,0,0,0,2,0,0,0,0,0,238,1),(347,'2023-05-11',1,150,23,10,1,1,0,0,0,0,7,0,150,0),(348,'2023-05-12',0,0,0,0,1,1,0,0,0,0,0,1,0,0),(349,'2023-05-13',1,150,2,2,1,1,2,0,0,0,2,0,150,0),(350,'2023-05-14',1,239,2,1,1,1,2,0,0,0,1,1,239,1),(351,'2023-05-15',1,239,19,6,1,1,2,0,0,0,5,0,239,0),(352,'2023-05-16',0,0,5,1,1,1,0,0,0,0,1,0,0,0),(353,'2023-05-17',1,239,26,13,2,1,2,0,0,0,9,0,239,1),(354,'2023-05-18',1,239,19,7,1,1,2,0,0,0,6,0,239,1),(355,'2023-05-19',1,53,2,2,1,1,1,0,0,0,2,0,53,0),(356,'2023-05-20',1,239,30,13,2,1,2,0,0,0,10,0,239,0),(357,'2023-05-21',2,390,25,8,1,1,2,0,0,0,8,0,239,1),(358,'2023-05-22',0,0,5,4,1,1,3,0,0,0,2,2,0,0),(359,'2023-05-23',1,241,13,8,1,1,2,0,0,0,6,0,241,1),(360,'2023-05-24',1,241,45,12,2,1,2,0,0,0,10,0,241,0),(361,'2023-05-25',1,0,180,6,1,1,0,0,0,0,6,0,242,0),(362,'2023-05-26',1,241,92,4,1,1,2,0,0,0,4,0,241,1),(363,'2023-05-27',2,482,70,24,3,2,2,0,0,0,10,0,241,1),(364,'2023-05-28',0,0,5,1,1,1,0,0,0,0,1,0,0,0),(365,'2023-05-29',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(366,'2023-05-30',0,0,5,1,1,1,0,0,0,0,1,1,0,0),(367,'2023-05-31',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(368,'2023-06-01',1,241,2,2,1,1,2,0,0,0,2,1,0,0),(369,'2023-06-02',0,0,0,0,0,0,2,0,0,0,0,2,213,213),(370,'2023-06-08',0,0,0,0,0,0,0,0,0,0,0,0,195,195),(371,'2023-06-17',1,0,19,9,1,1,1,0,0,0,9,0,1047,834),(372,'2023-06-18',1,249,13,7,1,1,3,0,0,0,6,0,798,19),(373,'2023-06-19',2,498,49,19,2,1,4,0,0,0,13,0,249,1),(374,'2023-06-20',1,249,52,23,2,1,3,0,0,0,14,0,249,0),(375,'2023-06-21',2,410,35,12,1,1,2,0,0,0,11,1,249,1),(376,'2023-06-22',0,0,23,9,1,1,2,0,0,0,5,0,0,0),(377,'2023-06-23',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(378,'2023-06-24',2,254,14,5,1,1,3,0,0,0,5,0,249,0),(379,'2023-06-25',0,0,20,10,1,1,2,0,0,0,10,0,0,0),(380,'2023-06-26',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(381,'2023-06-27',0,0,0,0,1,1,3,0,0,0,0,1,0,0),(382,'2023-06-28',3,665,42,21,2,2,2,0,0,0,9,1,251,1),(383,'2023-06-29',0,0,23,6,1,1,3,0,0,0,3,1,0,0),(384,'2023-06-30',0,0,13,4,1,1,2,0,0,0,2,0,0,0),(385,'2023-07-01',1,200,12,3,1,1,2,0,0,0,3,0,200,0),(386,'2023-07-02',2,301,48,21,2,2,3,0,0,0,12,1,253,1),(387,'2023-07-03',0,0,9,4,1,1,2,0,0,0,3,0,0,0),(388,'2023-07-04',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(389,'2023-07-05',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(390,'2023-07-06',3,759,54,20,2,1,4,0,0,0,13,0,253,2),(391,'2023-07-07',0,0,36,10,1,1,3,0,0,0,7,0,0,0),(392,'2023-07-08',0,0,7,5,1,1,0,0,0,0,2,0,0,0),(393,'2023-07-09',2,508,47,16,2,1,3,0,0,0,11,1,254,1),(394,'2023-07-10',0,0,7,2,1,1,2,0,0,0,2,1,0,0),(395,'2023-07-11',0,0,10,2,1,1,2,0,0,0,1,0,0,0),(396,'2023-07-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(397,'2023-07-13',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(398,'2023-07-14',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(399,'2023-07-15',0,0,1,2,1,1,2,0,0,0,1,0,0,0),(400,'2023-07-16',2,514,56,18,2,1,1,0,0,0,11,0,257,1),(401,'2023-07-17',0,0,2,2,1,1,4,0,0,0,1,0,0,0),(402,'2023-07-18',0,0,7,2,1,1,2,0,0,0,2,1,0,0),(403,'2023-07-19',0,0,1,1,1,1,2,0,0,0,1,1,0,0),(404,'2023-07-20',2,220,7,6,1,1,4,0,0,0,6,0,171,0),(405,'2023-07-21',1,100,5,5,1,1,2,0,0,7,5,1,100,0),(406,'2023-07-22',1,260,3,3,1,1,3,0,0,0,3,0,260,0),(407,'2023-07-23',1,260,56,21,2,1,3,0,0,0,13,0,260,0),(408,'2023-07-24',1,171,7,6,1,1,2,0,0,0,6,0,171,0),(409,'2023-07-25',1,29,1,2,1,1,2,0,0,0,1,0,29,0),(410,'2023-07-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(411,'2023-07-27',2,342,8,7,1,1,2,0,0,0,5,0,171,0),(412,'2023-07-28',1,3,5,4,1,1,0,0,0,0,2,0,3,0),(413,'2023-07-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(414,'2023-07-30',1,5,0,0,1,1,3,0,0,0,0,0,5,0),(415,'2023-07-31',2,344,14,12,1,1,2,0,0,0,7,1,172,0),(416,'2023-08-01',0,0,4,4,1,1,0,0,0,0,2,0,0,0),(417,'2023-08-02',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(418,'2023-08-03',3,783,72,26,2,1,2,0,0,0,15,0,261,2),(419,'2023-08-04',1,261,29,12,1,1,2,0,0,0,10,0,261,0),(420,'2023-08-05',1,261,37,9,1,1,2,0,0,0,7,1,261,0),(421,'2023-08-06',1,262,19,9,1,1,0,0,0,0,8,0,262,0),(422,'2023-08-07',0,0,11,7,1,1,0,0,0,0,2,0,0,0),(423,'2023-08-08',0,0,2,1,1,1,3,0,0,0,1,0,0,0),(424,'2023-08-09',1,262,27,9,1,1,0,0,0,0,9,0,262,0),(425,'2023-08-10',1,262,44,13,1,1,3,0,0,0,9,0,262,0),(426,'2023-08-11',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(427,'2023-08-12',1,262,10,5,1,1,2,0,0,0,5,1,262,0),(428,'2023-08-13',2,265,9,6,1,1,3,0,0,0,3,0,263,0),(429,'2023-08-14',1,263,21,8,1,1,0,0,0,0,7,0,263,0),(430,'2023-08-15',0,0,26,9,1,1,2,0,0,0,9,0,0,0),(431,'2023-08-16',2,437,9,8,1,1,3,0,0,0,8,0,263,1),(432,'2023-08-17',0,0,32,19,2,1,3,0,0,0,13,0,0,0),(433,'2023-08-18',2,437,16,11,1,1,3,0,0,0,9,0,263,1),(434,'2023-08-19',0,0,26,13,1,1,1,0,0,0,11,0,0,0),(435,'2023-08-20',1,265,6,6,1,1,2,0,0,0,1,2,265,1),(436,'2023-08-21',0,0,8,4,1,1,0,0,0,0,4,0,0,0),(437,'2023-08-22',2,315,23,11,1,1,2,0,0,0,8,0,265,1),(438,'2023-08-23',1,265,24,11,1,1,0,0,0,0,7,0,265,1),(439,'2023-08-24',1,265,21,8,1,1,3,0,0,0,7,0,265,1),(440,'2023-08-25',0,0,6,2,1,1,0,0,0,0,2,0,0,0),(441,'2023-08-26',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(442,'2023-08-27',2,265,186,22,2,1,3,0,0,0,14,0,266,2),(443,'2023-08-28',0,0,40,1,1,1,0,0,0,0,1,0,0,0),(444,'2023-08-29',1,176,29,4,1,1,2,0,0,0,4,0,176,0),(445,'2023-08-30',1,265,78,13,1,1,2,0,0,0,9,1,265,1),(446,'2023-08-31',0,0,6,2,1,1,2,0,0,0,2,0,0,0),(447,'2023-09-01',1,28,31,4,1,1,2,0,0,0,2,0,28,0),(448,'2023-09-02',1,266,19,7,1,1,5,0,0,0,7,1,266,1),(449,'2023-09-03',0,0,30,2,1,1,2,0,0,0,2,0,0,0),(450,'2023-09-04',0,0,5,1,1,1,2,0,0,0,1,0,0,0),(451,'2023-09-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(452,'2023-09-06',1,267,25,8,1,1,2,0,0,0,8,0,267,1),(453,'2023-09-07',0,0,0,0,1,1,4,0,0,0,0,0,0,0),(454,'2023-09-08',1,266,27,11,1,1,2,0,0,0,7,0,266,1),(455,'2023-09-09',2,446,19,10,1,1,1,0,0,0,9,1,267,1),(456,'2023-09-10',1,179,14,13,1,1,3,0,0,0,7,1,179,0),(457,'2023-09-11',2,537,25,16,1,1,2,0,0,0,8,0,269,3),(458,'2023-09-12',1,269,7,3,1,1,3,0,0,0,2,0,269,20),(459,'2023-09-13',1,269,6,2,1,1,3,0,0,0,2,0,538,440),(460,'2023-09-14',0,0,0,0,1,1,1,0,0,0,0,0,538,538),(461,'2023-09-15',5,1345,10,2,1,1,3,0,0,0,1,0,1874,737),(462,'2023-09-16',1,180,0,0,0,0,2,0,0,0,0,0,2054,1969),(463,'2023-09-17',0,0,0,0,0,0,2,0,0,0,0,2,2054,2054),(464,'2023-09-18',2,541,0,0,1,1,4,0,0,0,0,0,2595,2229),(465,'2023-09-19',2,364,0,0,0,0,5,0,0,0,0,3,2959,2836),(466,'2023-09-20',1,274,0,0,0,0,2,0,0,0,0,0,3233,3080),(467,'2023-09-21',0,0,0,0,0,0,2,0,0,0,0,0,3233,3233),(468,'2023-09-22',1,274,0,0,0,0,3,0,0,0,0,0,3499,3377),(469,'2023-09-23',0,0,0,0,0,0,2,0,0,0,0,0,3499,3499),(470,'2023-09-24',1,185,0,0,0,0,3,0,0,0,0,1,3684,3530),(471,'2023-09-25',1,193,136,57,4,3,2,0,0,0,12,0,3684,631),(472,'2023-09-26',2,456,48,22,2,1,1,0,0,0,9,0,273,1),(473,'2023-09-27',1,183,47,18,1,1,2,0,0,0,8,0,183,0),(474,'2023-09-28',1,6,11,7,1,1,1,0,0,0,3,0,6,0),(475,'2023-09-29',0,0,32,4,1,1,3,0,0,0,1,0,0,0),(476,'2023-09-30',0,0,1,1,1,1,1,0,0,0,1,1,0,0),(477,'2023-10-01',0,0,2,1,1,1,3,0,0,0,1,0,0,0),(478,'2023-10-02',2,368,5,4,1,1,2,0,0,0,4,0,184,1),(479,'2023-10-03',0,0,9,7,1,1,2,0,0,0,5,0,0,0),(480,'2023-10-04',1,0,125,5,1,1,0,0,0,0,5,0,275,1),(481,'2023-10-05',1,272,151,5,1,1,2,0,0,0,5,0,272,1),(482,'2023-10-06',0,0,9,4,1,1,0,0,0,0,4,0,0,0),(483,'2023-10-07',1,183,3,2,1,1,1,0,0,0,2,1,183,1),(484,'2023-10-08',1,273,31,11,1,1,2,0,0,0,8,1,273,2),(485,'2023-10-09',0,0,3,3,1,1,2,0,0,0,1,0,0,0),(486,'2023-10-10',0,0,0,0,1,1,2,0,0,0,0,0,0,0),(487,'2023-10-11',3,744,61,22,2,1,3,0,0,0,10,2,275,2),(488,'2023-10-12',0,0,3,3,1,1,2,0,0,0,1,1,0,0),(489,'2023-10-13',0,0,5,5,1,1,0,0,0,0,1,0,0,0),(490,'2023-10-14',2,369,38,15,2,1,2,0,0,0,12,0,276,2),(491,'2023-10-15',1,195,14,14,1,1,3,0,0,0,8,0,195,1),(492,'2023-10-16',0,0,2,2,1,1,3,0,0,0,1,0,0,0),(493,'2023-10-17',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(494,'2023-10-18',4,1018,74,28,2,2,2,0,0,0,14,0,276,4),(495,'2023-10-19',0,0,27,14,1,1,2,0,0,0,9,0,0,0),(496,'2023-10-20',1,186,7,6,1,1,3,0,0,0,6,0,186,1),(497,'2023-10-21',1,276,22,9,1,1,2,0,0,0,8,0,276,1),(498,'2023-10-22',1,195,22,9,1,1,0,0,0,0,7,0,195,0),(499,'2023-10-23',1,276,30,13,1,1,2,0,0,0,10,0,276,1),(500,'2023-10-24',1,186,5,4,1,1,2,0,0,0,4,0,186,1),(501,'2023-10-25',3,482,40,19,1,1,3,0,0,0,12,0,276,2),(502,'2023-10-26',1,276,35,13,1,1,2,0,0,0,10,0,276,1),(503,'2023-10-27',0,0,16,12,1,1,2,0,0,0,6,0,0,0),(504,'2023-10-28',1,276,27,11,1,1,2,0,0,0,8,0,276,1),(505,'2023-10-29',1,5,20,14,1,1,1,0,0,0,5,0,5,0),(506,'2023-10-30',1,186,1,1,1,1,1,0,0,0,1,0,186,0),(507,'2023-10-31',1,276,28,14,1,1,2,0,0,0,10,0,276,1),(508,'2023-11-01',0,0,0,0,1,1,2,0,0,0,0,0,0,0),(509,'2023-11-02',3,649,22,9,1,1,3,0,0,0,6,1,276,2),(510,'2023-11-03',2,473,35,18,1,1,2,0,0,0,8,0,277,2),(511,'2023-11-04',0,0,23,14,1,1,0,0,0,0,6,0,0,0),(512,'2023-11-05',0,0,2,2,1,1,2,0,0,0,1,0,0,0),(513,'2023-11-06',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(514,'2023-11-07',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(515,'2023-11-08',2,189,10,8,1,1,1,0,0,0,5,0,186,0),(516,'2023-11-09',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(517,'2023-11-10',1,194,5,4,1,1,1,0,0,0,4,1,195,0),(518,'2023-11-11',1,186,7,6,1,1,1,0,0,0,6,0,186,0),(519,'2023-11-12',1,195,3,2,1,1,1,0,0,0,2,0,195,0),(520,'2023-11-13',1,195,14,13,1,1,1,0,0,0,7,0,195,0),(521,'2023-11-14',1,186,9,9,1,1,2,0,0,0,4,0,186,0),(522,'2023-11-15',0,0,2,1,1,1,0,0,0,0,1,0,0,0),(523,'2023-11-16',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(524,'2023-11-17',1,186,5,4,1,1,2,0,0,0,4,0,186,0),(525,'2023-11-18',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(526,'2023-11-19',1,276,11,3,1,1,2,0,0,0,3,0,276,1),(527,'2023-11-20',1,186,26,12,1,1,2,0,0,0,9,0,186,0),(528,'2023-11-21',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(529,'2023-11-22',0,0,2,2,1,1,0,0,0,0,1,0,0,0),(530,'2023-11-23',1,186,1,1,1,1,2,0,0,0,1,0,186,0),(531,'2023-11-24',0,0,2,1,1,1,0,0,0,0,1,0,0,0),(532,'2023-11-25',2,381,15,13,1,1,3,0,0,0,6,0,195,1),(533,'2023-11-26',1,186,4,4,1,1,2,0,0,0,3,1,186,1),(534,'2023-11-27',0,0,7,5,1,1,0,0,0,0,3,0,0,0),(535,'2023-11-28',2,471,38,17,1,1,1,0,0,0,10,0,276,1),(536,'2023-11-29',1,186,12,9,1,1,2,0,0,0,5,0,186,0),(537,'2023-11-30',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(538,'2023-12-01',0,0,6,6,1,1,0,0,0,0,1,0,0,0),(539,'2023-12-02',0,0,2,1,1,1,0,0,0,0,1,0,0,0),(540,'2023-12-03',1,195,2,2,1,1,1,0,0,0,2,0,195,0),(541,'2023-12-04',0,0,4,3,1,1,5,0,0,0,3,1,0,0),(542,'2023-12-05',2,463,34,10,1,1,4,0,0,0,8,0,276,1),(543,'2023-12-06',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(544,'2023-12-07',1,41,5,4,1,1,2,0,0,0,2,0,41,0),(545,'2023-12-08',1,187,7,7,1,1,3,0,0,0,4,0,187,0),(546,'2023-12-09',0,0,3,2,1,1,2,0,0,0,2,0,0,0),(547,'2023-12-10',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(548,'2023-12-11',2,341,16,10,1,1,2,0,0,0,7,0,186,1),(549,'2023-12-12',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(550,'2023-12-13',1,3,2,2,1,1,2,0,0,0,2,0,3,0),(551,'2023-12-14',1,186,1,1,1,1,2,0,0,0,1,0,186,0),(552,'2023-12-15',1,277,35,17,1,1,2,0,0,0,11,0,277,1),(553,'2023-12-16',0,0,8,4,1,1,3,0,0,0,3,2,0,0),(554,'2023-12-17',4,932,68,21,2,1,3,0,0,0,13,0,279,2),(555,'2023-12-18',1,197,27,11,1,1,1,0,0,0,9,0,197,0),(556,'2023-12-19',0,0,10,9,1,1,0,0,0,0,4,0,0,0),(557,'2023-12-20',1,188,3,2,1,1,2,0,0,0,2,0,188,0),(558,'2023-12-21',0,197,25,8,0,0,0,0,0,0,7,0,0,0),(559,'2023-12-22',2,193,4,4,1,1,1,0,0,0,4,0,188,0),(560,'2023-12-23',1,188,8,6,1,1,2,0,0,0,5,0,188,0),(561,'2023-12-24',0,0,2,2,1,1,2,0,0,0,1,0,0,0),(562,'2023-12-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(563,'2023-12-26',1,188,3,3,1,1,1,0,0,0,3,0,188,0),(564,'2023-12-27',0,0,4,3,1,1,0,0,0,0,2,0,0,0),(565,'2023-12-28',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(566,'2023-12-29',1,188,8,7,1,1,2,0,0,0,6,0,188,1),(567,'2023-12-30',0,0,3,3,1,1,0,0,0,0,1,0,0,0),(568,'2023-12-31',0,0,2,2,1,1,0,0,0,0,2,0,0,0),(569,'2024-01-01',3,746,48,19,1,1,1,0,0,0,10,0,279,1),(570,'2024-01-02',1,188,8,5,1,1,3,0,0,0,5,0,188,0),(571,'2024-01-03',0,0,5,3,1,1,2,0,0,0,1,1,0,0),(572,'2024-01-04',1,190,3,2,1,1,2,0,0,0,2,1,190,0),(573,'2024-01-05',0,0,5,4,1,1,0,0,0,0,4,0,0,0),(574,'2024-01-18',1,190,1,1,1,1,2,0,0,0,1,0,190,1),(575,'2024-01-19',1,190,9,8,1,1,3,0,0,0,7,1,190,0),(576,'2024-01-20',1,191,2,1,1,1,2,0,0,0,1,1,191,0),(577,'2024-01-21',0,0,1,1,1,1,1,0,0,0,1,0,0,0),(578,'2024-01-22',1,192,4,4,1,1,2,0,0,0,4,0,192,1),(579,'2024-01-23',0,0,9,8,1,1,2,0,0,0,5,0,0,0),(580,'2024-01-24',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(581,'2024-01-25',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(582,'2024-01-26',1,193,8,7,1,1,2,0,0,0,7,1,193,0),(583,'2024-01-27',0,0,0,0,0,0,2,0,0,0,0,2,0,0),(584,'2024-01-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(585,'2024-01-29',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(586,'2024-01-30',0,0,1,1,1,1,2,0,0,0,1,1,0,0),(587,'2024-01-31',2,392,12,10,1,1,2,0,0,0,7,0,196,1),(588,'2024-02-01',0,0,3,3,1,1,5,0,0,0,2,0,0,0),(589,'2024-02-02',0,0,2,1,1,1,1,0,0,0,1,1,0,0),(590,'2024-02-03',1,197,7,6,1,1,1,0,0,0,6,0,197,0),(591,'2024-02-04',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(592,'2024-02-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(593,'2024-02-06',1,197,6,5,1,1,1,0,0,0,5,0,197,1),(594,'2024-02-07',0,0,2,2,1,1,0,0,0,0,2,0,0,0),(595,'2024-02-13',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(596,'2024-02-14',1,199,0,0,0,0,3,0,0,0,0,2,199,23),(597,'2024-02-15',0,0,0,0,0,0,0,0,0,0,0,0,199,199),(598,'2024-02-16',1,200,11,11,1,1,2,0,0,0,6,1,200,9),(599,'2024-02-17',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(600,'2024-02-18',0,0,0,0,0,0,2,0,0,0,0,3,0,0),(601,'2024-02-19',1,204,6,5,1,1,2,0,0,0,4,3,204,0),(602,'2024-02-20',0,0,2,2,1,1,0,0,0,0,2,0,0,0),(603,'2024-02-21',1,296,11,3,1,1,4,0,0,0,3,0,296,0),(604,'2024-02-22',1,205,22,12,1,1,3,0,0,0,8,1,205,0),(605,'2024-02-23',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(606,'2024-02-24',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(607,'2024-02-25',2,503,3,2,1,1,5,0,0,0,2,0,297,0),(608,'2024-02-26',0,0,0,0,0,0,4,0,0,0,0,1,0,0),(609,'2024-02-27',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(610,'2024-02-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(611,'2024-02-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(612,'2024-03-01',1,209,3,2,1,1,2,0,0,0,2,1,209,0),(613,'2024-03-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(614,'2024-03-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(615,'2024-03-04',2,418,6,6,1,1,2,0,0,0,4,1,209,0),(616,'2024-03-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(617,'2024-03-06',0,0,0,0,0,0,2,0,0,0,0,2,0,0),(618,'2024-03-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(619,'2024-03-08',1,209,3,3,1,1,2,0,0,0,3,1,209,0),(620,'2024-03-09',0,0,3,2,1,1,2,0,0,0,2,1,0,0),(621,'2024-03-10',0,0,0,0,1,1,1,0,0,0,0,1,0,0),(622,'2024-03-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(623,'2024-03-12',1,211,4,4,1,1,2,0,0,0,4,1,211,0),(624,'2024-03-13',1,212,5,4,1,1,2,0,0,0,4,0,212,0),(625,'2024-03-14',0,0,0,0,1,1,2,0,0,0,0,0,0,0),(626,'2024-03-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(627,'2024-03-16',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(628,'2024-03-17',3,435,10,8,1,1,5,0,0,0,5,0,212,0),(629,'2024-03-18',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(630,'2024-03-19',0,0,2,2,1,1,1,0,0,0,1,2,0,0),(631,'2024-03-20',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(632,'2024-03-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(633,'2024-03-22',1,212,5,5,1,1,2,0,0,0,5,0,212,0),(634,'2024-03-23',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(635,'2024-03-24',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(636,'2024-03-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(637,'2024-03-26',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(638,'2024-03-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(639,'2024-03-28',0,0,0,0,0,0,3,0,0,0,0,1,0,0),(640,'2024-03-29',1,214,3,3,1,1,2,0,0,0,3,2,214,0),(641,'2024-03-30',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(642,'2024-03-31',0,0,0,0,0,0,0,0,0,0,0,2,0,0),(643,'2024-04-01',0,0,0,0,0,0,1,0,0,0,0,2,0,0),(644,'2024-04-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(645,'2024-04-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(646,'2024-04-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(647,'2024-04-05',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(648,'2024-04-06',1,216,4,4,1,1,2,0,0,0,4,0,216,0),(649,'2024-04-07',1,216,7,5,1,1,2,0,0,0,4,0,216,0),(650,'2024-04-08',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(651,'2024-04-09',0,0,2,2,1,1,0,0,0,0,1,0,0,0),(652,'2024-04-10',0,0,0,0,0,0,0,0,0,0,0,2,0,0),(653,'2024-04-11',2,527,19,10,1,1,2,0,0,0,7,0,309,0),(654,'2024-04-12',0,0,12,7,1,1,2,0,0,0,5,0,0,0),(655,'2024-04-13',0,0,2,2,1,1,0,0,0,0,1,1,0,0),(656,'2024-04-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(657,'2024-04-15',1,218,2,2,1,1,1,0,0,0,2,1,218,0),(658,'2024-04-16',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(659,'2024-04-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(660,'2024-04-18',0,0,1,1,1,1,0,0,0,0,1,1,0,0),(661,'2024-04-19',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(662,'2024-04-20',3,754,11,11,1,1,2,0,0,0,7,0,312,1),(663,'2024-04-21',0,0,5,1,1,1,0,0,0,0,1,0,0,0),(664,'2024-04-22',0,0,0,0,0,0,5,0,0,0,0,2,0,0),(665,'2024-04-23',1,313,33,12,1,1,1,0,0,0,10,1,313,0),(666,'2024-04-24',0,0,3,2,1,1,0,0,0,0,2,0,0,0),(667,'2024-04-25',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(668,'2024-04-26',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(669,'2024-04-27',1,223,6,5,1,1,2,0,0,0,5,0,223,0),(670,'2024-04-28',0,0,5,4,1,1,0,0,0,0,4,0,0,0),(671,'2024-04-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(672,'2024-04-30',1,100,1,1,1,1,1,0,0,0,1,0,100,0),(673,'2024-05-01',0,0,3,2,1,1,0,0,0,0,2,0,0,0),(674,'2024-05-02',1,314,22,9,1,1,0,0,0,0,9,0,314,0),(675,'2024-05-03',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(676,'2024-05-04',1,223,5,5,1,1,2,0,0,0,5,1,223,0),(677,'2024-05-05',0,0,2,1,1,1,0,0,0,0,1,0,0,0),(678,'2024-05-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(679,'2024-05-07',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(680,'2024-05-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(681,'2024-05-09',0,0,0,0,0,0,1,0,0,0,0,1,0,0),(682,'2024-05-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(683,'2024-05-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(684,'2024-05-12',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(685,'2024-05-13',2,412,14,12,1,1,2,0,0,0,8,0,224,0),(686,'2024-05-14',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(687,'2024-05-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(688,'2024-05-16',1,313,14,6,1,1,3,0,0,0,6,0,313,0),(689,'2024-05-17',2,548,30,15,1,1,1,0,0,0,10,0,315,0),(690,'2024-05-18',1,223,16,9,1,1,2,0,0,0,7,0,224,0),(691,'2024-05-19',1,223,13,10,1,1,3,0,0,0,5,0,223,0),(692,'2024-05-20',0,0,2,1,1,1,0,0,0,0,1,0,0,0),(693,'2024-05-21',2,537,10,8,1,1,2,0,0,0,7,0,314,0),(694,'2024-05-22',0,0,9,8,1,1,2,0,0,0,2,0,0,0),(695,'2024-05-23',0,0,0,0,0,0,3,0,0,0,0,1,0,0),(696,'2024-05-24',1,313,25,9,1,1,1,0,0,0,9,0,313,0),(697,'2024-05-25',0,0,2,2,1,1,2,0,0,0,2,0,0,0),(698,'2024-05-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(699,'2024-05-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(700,'2024-05-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(701,'2024-05-29',1,313,17,8,1,1,3,0,0,0,8,0,313,0),(702,'2024-05-30',1,224,15,10,1,1,1,0,0,0,8,1,224,0),(703,'2024-05-31',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(704,'2024-06-01',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(705,'2024-06-02',2,540,21,12,1,1,3,0,0,0,8,2,316,0),(706,'2024-06-03',2,214,14,11,1,1,3,0,0,0,7,0,200,0),(707,'2024-06-04',0,0,5,5,1,1,2,0,0,0,3,0,0,0),(708,'2024-06-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(709,'2024-06-06',1,225,7,6,1,1,2,0,0,0,6,0,225,0),(710,'2024-06-07',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(711,'2024-06-08',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(712,'2024-06-09',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(713,'2024-06-10',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(714,'2024-06-11',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(715,'2024-06-12',1,225,5,4,1,1,2,0,0,0,4,0,225,0),(716,'2024-06-13',0,0,3,3,1,1,2,0,0,0,3,0,0,0),(717,'2024-06-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(718,'2024-06-15',0,0,1,1,1,1,1,0,0,0,1,1,0,0),(719,'2024-06-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(720,'2024-06-17',1,225,6,5,1,1,2,0,0,0,5,0,225,0),(721,'2024-06-18',0,0,1,1,1,1,3,0,0,0,1,1,0,0),(722,'2024-06-19',0,0,2,2,1,1,1,0,0,0,1,0,0,0),(723,'2024-06-20',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(724,'2024-06-21',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(725,'2024-06-22',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(726,'2024-06-23',1,319,9,5,1,1,3,0,0,0,5,0,319,0),(727,'2024-06-24',0,0,0,0,1,1,3,0,0,0,0,1,0,0),(728,'2024-06-25',1,40,2,2,1,1,3,0,0,0,2,0,40,0),(729,'2024-06-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(730,'2024-06-27',0,0,8,1,1,1,2,0,0,0,1,0,0,0),(731,'2024-06-28',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(732,'2024-06-29',1,229,3,3,1,1,3,0,0,0,3,0,229,0),(733,'2024-06-30',0,0,3,2,1,1,4,0,0,0,2,0,0,0),(734,'2024-07-01',1,320,6,5,1,1,2,0,0,0,5,0,320,0),(735,'2024-07-02',1,320,16,7,1,1,2,0,0,0,7,0,320,0),(736,'2024-07-03',0,0,2,2,1,1,3,0,0,0,1,0,0,0),(737,'2024-07-04',2,549,11,7,1,1,2,0,0,0,4,0,320,0),(738,'2024-07-05',0,0,0,0,1,1,2,0,0,0,0,0,0,0),(739,'2024-07-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(740,'2024-07-07',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(741,'2024-07-08',1,229,2,2,1,1,2,0,0,0,2,0,229,0),(742,'2024-07-09',0,0,0,0,1,1,2,0,0,0,0,0,0,0),(743,'2024-07-10',0,0,0,0,0,0,3,0,0,0,0,1,0,0),(744,'2024-07-11',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(745,'2024-07-12',1,229,2,2,1,1,3,0,0,0,2,0,229,0),(746,'2024-07-13',1,229,1,1,1,1,2,0,0,0,1,0,229,0),(747,'2024-07-14',1,320,1,1,1,1,2,0,0,0,1,0,320,0),(748,'2024-07-15',1,229,2,2,1,1,3,0,0,0,2,0,229,0),(749,'2024-07-16',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(750,'2024-07-17',0,0,4,3,1,1,2,0,0,0,1,0,0,0),(751,'2024-07-18',0,0,2,2,1,1,3,0,0,0,1,0,0,0),(752,'2024-07-19',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(753,'2024-07-20',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(754,'2024-07-21',0,0,5,1,1,1,3,0,0,0,1,0,0,0),(755,'2024-07-22',1,229,2,2,1,1,1,0,0,0,2,0,229,0),(756,'2024-07-23',1,230,3,3,1,1,2,0,0,0,3,1,230,0),(757,'2024-07-24',0,0,2,2,1,1,3,0,0,0,1,1,0,0),(758,'2024-07-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(759,'2024-07-26',1,231,0,0,0,0,2,0,0,0,0,0,231,0),(760,'2024-07-27',1,1,3,2,1,1,2,0,0,0,2,1,1,0),(761,'2024-07-28',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(762,'2024-07-29',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(763,'2024-07-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(764,'2024-07-31',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(765,'2024-08-01',1,231,6,6,1,1,2,0,0,0,5,1,231,0),(766,'2024-08-02',1,1,3,2,1,1,2,0,0,0,2,0,1,0),(767,'2024-08-03',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(768,'2024-08-04',1,231,5,5,1,1,2,0,0,0,5,0,231,0),(769,'2024-08-05',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(770,'2024-08-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(771,'2024-08-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(772,'2024-08-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(773,'2024-08-09',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(774,'2024-08-10',1,231,2,1,1,1,2,0,0,0,1,0,231,0),(775,'2024-08-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(776,'2024-08-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(777,'2024-08-13',1,231,2,2,1,1,2,0,0,0,2,0,231,0),(778,'2024-08-14',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(779,'2024-08-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(780,'2024-08-16',2,553,13,10,1,1,2,0,0,0,6,0,322,0),(781,'2024-08-17',1,2,5,4,1,1,0,0,0,0,2,0,2,0),(782,'2024-08-18',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(783,'2024-08-19',0,0,3,3,1,1,2,0,0,0,1,2,0,0),(784,'2024-08-20',2,433,5,5,1,1,2,0,0,0,3,0,233,0),(785,'2024-08-21',2,234,4,3,1,1,3,0,0,0,3,1,233,0),(786,'2024-08-22',1,324,2,1,1,1,1,0,0,0,1,0,324,0),(787,'2024-08-23',1,233,5,5,1,1,2,0,0,0,5,0,233,0),(788,'2024-08-24',0,0,3,2,1,1,1,0,0,0,2,1,0,0),(789,'2024-08-25',3,561,20,7,1,1,4,0,0,0,7,0,325,0),(790,'2024-08-26',0,0,6,5,1,1,0,0,0,0,4,0,0,0),(791,'2024-08-27',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(792,'2024-08-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(793,'2024-08-29',1,1,1,1,1,1,1,0,0,0,1,1,1,0),(794,'2024-08-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(795,'2024-08-31',1,323,22,9,1,1,2,0,0,0,9,0,323,0),(796,'2024-09-01',0,0,6,5,1,1,0,0,0,0,3,0,0,0),(797,'2024-09-02',1,1,0,0,0,0,3,0,0,0,0,0,1,0),(798,'2024-09-03',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(799,'2024-09-04',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(800,'2024-09-05',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(801,'2024-09-06',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(802,'2024-09-07',1,323,2,2,1,1,2,0,0,0,2,0,323,0),(803,'2024-09-08',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(804,'2024-09-09',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(805,'2024-09-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(806,'2024-09-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(807,'2024-09-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(808,'2024-09-13',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(809,'2024-09-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(810,'2024-09-15',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(811,'2024-09-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(812,'2024-09-17',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(813,'2024-09-18',1,235,5,5,1,1,2,0,0,0,5,1,235,1),(814,'2024-09-19',1,1,3,2,1,1,1,0,0,0,2,0,1,0),(815,'2024-09-20',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(816,'2024-09-21',1,235,2,2,1,1,1,0,0,0,2,0,235,0),(817,'2024-09-22',0,0,0,0,0,0,3,0,0,0,0,2,0,0),(818,'2024-09-23',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(819,'2024-09-24',1,236,7,7,1,1,2,0,0,0,7,1,236,0),(820,'2024-09-25',1,1,3,3,1,1,0,0,0,0,3,0,1,0),(821,'2024-09-26',0,0,1,1,1,1,2,0,0,0,1,1,0,0),(822,'2024-09-27',1,238,2,2,1,1,4,0,0,0,2,1,238,0),(823,'2024-09-28',1,238,1,1,1,1,2,0,0,0,1,0,238,0),(824,'2024-09-29',0,0,2,1,1,1,3,0,0,0,1,0,0,0),(825,'2024-09-30',2,476,7,6,1,1,2,0,0,0,6,0,238,0),(826,'2024-10-01',1,1,3,2,1,1,2,0,0,0,2,0,1,0),(827,'2024-10-02',0,0,3,2,1,1,1,0,0,0,2,0,0,0),(828,'2024-10-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(829,'2024-10-04',0,0,2,2,1,1,1,0,0,0,1,0,0,0),(830,'2024-10-05',1,325,0,0,0,0,1,0,0,0,0,0,325,0),(831,'2024-10-06',1,239,5,5,1,1,3,0,0,0,3,1,239,0),(832,'2024-10-07',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(833,'2024-10-08',0,0,1,1,1,1,0,0,0,0,1,1,0,0),(834,'2024-10-09',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(835,'2024-10-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(836,'2024-10-11',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(837,'2024-10-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(838,'2024-10-13',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(839,'2024-10-14',1,329,3,2,1,1,2,0,0,0,2,0,329,0),(840,'2024-10-15',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(841,'2024-10-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(842,'2024-10-17',0,0,2,1,1,1,3,0,0,0,1,0,0,0),(843,'2024-10-18',2,478,5,4,1,1,3,0,0,0,3,0,239,0),(844,'2024-10-19',1,2,3,2,1,1,3,0,0,0,1,0,2,0),(845,'2024-10-20',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(846,'2024-10-21',1,239,2,2,1,1,2,0,0,0,2,0,239,0),(847,'2024-10-22',0,0,2,2,1,1,2,0,0,0,1,1,0,0),(848,'2024-10-23',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(849,'2024-10-24',1,240,1,1,1,1,2,0,0,0,1,0,240,0),(850,'2024-10-25',2,576,31,17,1,1,1,0,0,0,12,0,330,0),(851,'2024-10-26',1,1,6,4,1,1,0,0,0,0,3,0,1,0),(852,'2024-10-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(853,'2024-10-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(854,'2024-10-29',0,0,0,0,0,0,4,0,0,0,0,0,0,0),(855,'2024-10-30',1,239,1,1,1,1,2,0,0,0,1,0,239,0),(856,'2024-10-31',4,1144,35,21,2,1,1,0,0,0,12,0,329,1),(857,'2024-11-01',1,4,12,10,1,1,3,0,0,0,4,0,4,0),(858,'2024-11-02',1,239,0,0,0,0,2,0,0,0,0,0,239,0),(859,'2024-11-03',0,0,2,1,1,1,3,0,0,0,1,0,0,0),(860,'2024-11-04',1,1,0,0,0,0,2,0,0,0,0,0,1,0),(861,'2024-11-05',2,478,8,8,1,1,2,0,0,0,7,0,239,0),(862,'2024-11-06',0,0,3,2,1,1,1,0,0,0,1,0,0,0),(863,'2024-11-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(864,'2024-11-08',2,241,2,2,1,1,2,0,0,0,1,0,239,0),(865,'2024-11-09',0,0,4,3,1,1,2,0,0,0,1,0,0,0),(866,'2024-11-10',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(867,'2024-11-11',1,239,1,1,1,1,2,0,0,0,1,0,239,0),(868,'2024-11-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(869,'2024-11-13',1,329,14,5,1,1,1,0,0,0,5,0,329,5),(870,'2024-11-14',2,216,12,7,1,1,3,0,0,0,7,0,215,7),(871,'2024-11-15',0,0,3,2,1,1,3,0,0,0,2,0,0,0),(872,'2024-11-16',1,326,11,3,1,1,2,0,0,0,3,0,326,0),(873,'2024-11-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(874,'2024-11-18',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(875,'2024-11-19',0,0,1,1,1,1,3,0,0,0,1,0,0,0),(876,'2024-11-20',1,239,5,5,1,1,3,0,0,0,5,0,239,0),(877,'2024-11-21',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(878,'2024-11-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(879,'2024-11-23',2,478,3,3,1,1,3,0,0,0,3,0,239,0),(880,'2024-11-24',1,1,6,5,1,1,0,0,0,0,3,0,1,0),(881,'2024-11-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(882,'2024-11-26',0,0,0,0,0,0,1,0,0,0,0,1,0,0),(883,'2024-11-27',0,0,2,2,1,1,2,0,0,0,1,0,0,0),(884,'2024-11-28',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(885,'2024-11-29',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(886,'2024-11-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(887,'2024-12-01',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(888,'2024-12-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(889,'2024-12-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(890,'2024-12-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(891,'2024-12-05',1,239,6,6,2,2,1,0,0,0,6,0,239,0),(892,'2024-12-06',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(893,'2024-12-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(894,'2024-12-08',2,568,2,1,1,1,2,0,0,0,1,0,329,1),(895,'2024-12-09',0,0,3,3,1,1,1,0,0,0,3,0,0,0),(896,'2024-12-10',1,200,0,0,0,0,2,0,0,0,0,1,200,0),(897,'2024-12-11',0,0,3,3,1,1,1,0,0,0,3,0,0,0),(898,'2024-12-12',2,241,9,8,1,1,2,0,0,0,8,0,240,0),(899,'2024-12-13',0,0,2,1,1,1,0,0,0,0,1,0,0,0),(900,'2024-12-14',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(901,'2024-12-15',1,1,0,0,0,0,2,0,0,0,0,0,1,0),(902,'2024-12-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(903,'2024-12-17',1,240,0,0,0,0,1,0,0,0,0,0,240,0),(904,'2024-12-18',0,0,0,0,0,0,4,0,0,0,0,1,0,0),(905,'2024-12-19',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(906,'2024-12-20',1,240,4,3,1,1,3,0,0,0,3,0,240,0),(907,'2024-12-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(908,'2024-12-22',1,330,24,8,1,1,2,0,0,0,8,0,330,0),(909,'2024-12-23',1,1,5,4,1,1,2,0,0,0,4,0,1,0),(910,'2024-12-24',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(911,'2024-12-25',1,330,10,5,1,1,2,0,0,0,5,0,330,0),(912,'2024-12-26',2,241,9,4,1,1,2,0,0,0,3,0,240,0),(913,'2024-12-27',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(914,'2024-12-28',1,330,13,5,1,1,1,0,0,0,4,0,330,0),(915,'2024-12-29',0,0,7,5,1,1,3,0,0,0,5,0,0,0),(916,'2024-12-30',3,481,7,6,1,1,3,0,0,0,6,0,240,0),(917,'2024-12-31',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(918,'2025-01-01',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(919,'2025-01-02',2,570,6,5,1,1,5,0,0,0,5,0,330,0),(920,'2025-01-03',1,1,2,1,1,1,2,0,0,0,1,0,1,0),(921,'2025-01-04',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(922,'2025-01-05',0,0,0,0,0,0,3,0,0,0,0,1,0,0),(923,'2025-01-06',1,241,1,1,1,1,2,0,0,0,1,0,241,0),(924,'2025-01-07',1,331,11,6,1,1,2,0,0,0,6,0,331,0),(925,'2025-01-08',1,1,9,4,1,1,1,0,0,0,4,0,1,0),(926,'2025-01-09',0,0,0,0,0,0,3,0,0,0,0,1,0,0),(927,'2025-01-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(928,'2025-01-11',0,0,5,1,1,1,1,0,0,0,1,0,0,0),(929,'2025-01-12',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(930,'2025-01-13',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(931,'2025-01-14',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(932,'2025-01-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(933,'2025-01-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(934,'2025-01-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(935,'2025-01-18',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(936,'2025-01-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(937,'2025-01-20',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(938,'2025-01-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(939,'2025-01-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(940,'2025-01-23',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(941,'2025-01-24',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(942,'2025-01-25',2,572,16,6,1,1,2,0,0,0,6,0,331,0),(943,'2025-01-26',1,2,11,6,1,1,0,0,0,0,5,0,2,0),(944,'2025-01-27',0,0,5,1,1,1,2,0,0,0,1,1,0,0),(945,'2025-01-28',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(946,'2025-01-29',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(947,'2025-01-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(948,'2025-01-31',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(949,'2025-02-01',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(950,'2025-02-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(951,'2025-02-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(952,'2025-02-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(953,'2025-02-05',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(954,'2025-02-06',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(955,'2025-02-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(956,'2025-02-08',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(957,'2025-02-09',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(958,'2025-02-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(959,'2025-02-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(960,'2025-02-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(961,'2025-02-13',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(962,'2025-02-14',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(963,'2025-02-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(964,'2025-02-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(965,'2025-02-17',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(966,'2025-02-18',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(967,'2025-02-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(968,'2025-02-20',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(969,'2025-02-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(970,'2025-02-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(971,'2025-02-23',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(972,'2025-02-24',0,0,0,0,0,0,1,0,0,0,0,1,0,0),(973,'2025-02-25',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(974,'2025-02-26',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(975,'2025-02-27',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(976,'2025-02-28',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(977,'2025-03-01',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(978,'2025-03-02',0,0,0,0,0,0,5,0,0,0,0,1,0,0),(979,'2025-03-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(980,'2025-03-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(981,'2025-03-05',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(982,'2025-03-06',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(983,'2025-03-07',2,670,5,1,1,1,2,0,0,0,1,1,335,0),(984,'2025-03-08',5,1078,19,16,1,1,3,0,0,0,12,0,335,1),(985,'2025-03-09',0,0,5,4,1,1,0,0,0,0,4,0,0,0),(986,'2025-03-10',0,0,2,1,1,1,5,0,0,0,1,2,0,0),(987,'2025-03-11',1,1,0,0,0,0,2,0,0,0,0,0,1,0),(988,'2025-03-12',1,336,0,0,0,0,2,0,0,0,0,0,336,0),(989,'2025-03-13',0,0,2,2,1,1,1,0,0,0,2,0,0,0),(990,'2025-03-14',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(991,'2025-03-15',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(992,'2025-03-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(993,'2025-03-17',0,0,0,0,0,0,6,0,0,0,0,2,0,0),(994,'2025-03-18',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(995,'2025-03-19',1,249,1,1,1,1,2,0,0,0,1,0,249,0),(996,'2025-03-20',1,1,2,1,1,1,2,0,0,0,1,0,1,0),(997,'2025-03-21',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(998,'2025-03-22',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(999,'2025-03-23',1,249,2,2,1,1,1,0,0,0,2,0,249,0),(1000,'2025-03-24',1,1,3,2,1,1,0,0,0,0,2,0,1,0),(1001,'2025-03-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1002,'2025-03-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1003,'2025-03-27',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(1004,'2025-03-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1005,'2025-03-29',1,339,0,0,0,0,0,0,0,0,0,0,339,0),(1006,'2025-03-30',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(1007,'2025-03-31',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1008,'2025-04-01',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1009,'2025-04-02',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1010,'2025-04-03',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1011,'2025-04-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1012,'2025-04-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1013,'2025-04-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1014,'2025-04-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1015,'2025-04-08',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1016,'2025-04-09',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1017,'2025-04-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1018,'2025-04-11',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1019,'2025-04-12',1,100,1,1,1,1,2,0,0,0,1,1,100,0),(1020,'2025-04-13',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1021,'2025-04-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1022,'2025-04-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1023,'2025-04-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1024,'2025-04-17',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1025,'2025-04-18',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(1026,'2025-04-19',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1027,'2025-04-20',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1028,'2025-04-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1029,'2025-04-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1030,'2025-04-23',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1031,'2025-04-24',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(1032,'2025-04-25',0,0,0,0,0,0,3,0,0,0,0,1,0,0),(1033,'2025-04-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1034,'2025-04-27',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1035,'2025-04-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1036,'2025-04-29',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1037,'2025-04-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1038,'2025-05-01',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1039,'2025-05-02',1,342,0,0,0,0,0,0,0,0,0,0,342,0),(1040,'2025-05-03',0,0,2,2,1,1,0,0,0,0,2,0,0,0),(1041,'2025-05-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1042,'2025-05-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1043,'2025-05-06',1,252,1,1,1,1,2,0,0,0,1,0,252,0),(1044,'2025-05-07',1,1,2,1,1,1,2,0,0,0,1,0,1,0),(1045,'2025-05-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1046,'2025-05-09',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1047,'2025-05-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1048,'2025-05-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1049,'2025-05-12',0,0,0,0,0,0,4,0,0,0,0,0,0,0),(1050,'2025-05-13',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1051,'2025-05-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1052,'2025-05-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1053,'2025-05-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1054,'2025-05-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1055,'2025-05-18',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1056,'2025-05-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1057,'2025-05-20',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1058,'2025-05-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1059,'2025-05-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1060,'2025-05-23',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1061,'2025-05-24',0,0,0,0,0,0,4,0,0,0,0,0,0,0),(1062,'2025-05-25',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1063,'2025-05-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1064,'2025-05-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1065,'2025-05-28',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1066,'2025-05-29',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1067,'2025-05-30',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1068,'2025-05-31',1,342,10,2,1,1,2,0,0,0,2,0,342,0),(1069,'2025-06-01',1,1,10,5,1,1,0,0,0,0,5,0,1,0),(1070,'2025-06-02',0,0,1,1,1,1,5,0,0,0,1,0,0,0),(1071,'2025-06-03',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(1072,'2025-06-04',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1073,'2025-06-05',0,0,0,0,1,1,2,0,0,0,0,0,0,0),(1074,'2025-06-06',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1075,'2025-06-07',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1076,'2025-06-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1077,'2025-06-09',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1078,'2025-06-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1079,'2025-06-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1080,'2025-06-12',1,342,13,5,1,1,1,0,0,0,5,0,342,0),(1081,'2025-06-13',1,1,4,3,1,1,0,0,0,0,3,0,1,0),(1082,'2025-06-14',2,684,12,4,1,1,2,0,0,0,4,0,342,0),(1083,'2025-06-15',0,0,4,3,1,1,0,0,0,0,3,0,0,0),(1084,'2025-06-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1085,'2025-06-17',2,253,1,1,1,1,0,0,0,0,1,0,252,0),(1086,'2025-06-18',0,0,5,4,1,1,4,0,0,0,3,0,0,0),(1087,'2025-06-19',0,0,3,3,1,1,2,0,0,0,1,1,0,0),(1088,'2025-06-20',1,1,0,0,0,0,0,0,0,0,0,0,1,0),(1089,'2025-06-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1090,'2025-06-22',1,253,0,0,1,1,0,0,0,0,0,0,253,0),(1091,'2025-06-23',1,253,4,4,1,1,2,0,0,0,4,0,253,0),(1092,'2025-06-24',1,1,2,1,1,1,2,0,0,0,1,0,1,0),(1093,'2025-06-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1094,'2025-06-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1095,'2025-06-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1096,'2025-06-28',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1097,'2025-06-29',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1098,'2025-06-30',1,253,2,2,1,1,2,0,0,0,2,1,253,0),(1099,'2025-07-01',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1100,'2025-07-02',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1101,'2025-07-03',1,254,0,0,0,0,3,0,0,0,0,0,254,0),(1102,'2025-07-04',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(1103,'2025-07-05',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1104,'2025-07-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1105,'2025-07-07',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(1106,'2025-07-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1107,'2025-07-09',0,0,0,0,0,0,3,0,0,0,0,1,0,0),(1108,'2025-07-10',1,345,7,3,1,1,2,0,0,0,3,0,345,0),(1109,'2025-07-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1110,'2025-07-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1111,'2025-07-13',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1112,'2025-07-14',0,0,5,1,1,1,3,0,0,0,1,0,0,0),(1113,'2025-07-15',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1114,'2025-07-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1115,'2025-07-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1116,'2025-07-18',1,255,4,4,1,1,2,0,0,0,4,0,255,0),(1117,'2025-07-19',1,1,2,1,1,1,3,0,0,0,1,0,1,0),(1118,'2025-07-20',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1119,'2025-07-21',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1120,'2025-07-22',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1121,'2025-07-23',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1122,'2025-07-24',1,255,3,3,1,1,2,0,0,0,3,0,255,0),(1123,'2025-07-25',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(1124,'2025-07-26',1,345,1,1,1,1,2,0,0,0,1,0,345,0),(1125,'2025-07-27',1,342,26,10,1,1,1,0,0,0,7,0,342,0),(1126,'2025-07-28',1,2,4,3,1,1,0,0,0,0,2,0,2,0),(1127,'2025-07-29',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1128,'2025-07-30',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1129,'2025-07-31',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1130,'2025-08-01',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1131,'2025-08-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1132,'2025-08-03',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1133,'2025-08-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1134,'2025-08-05',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1135,'2025-08-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1136,'2025-08-07',1,255,0,0,0,0,1,0,0,0,0,0,255,0),(1137,'2025-08-08',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1138,'2025-08-09',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1139,'2025-08-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1140,'2025-08-11',0,0,0,0,0,0,1,0,0,0,0,1,0,0),(1141,'2025-08-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1142,'2025-08-13',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1143,'2025-08-14',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1144,'2025-08-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1145,'2025-08-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1146,'2025-08-17',1,80,1,1,1,1,2,0,0,0,1,1,80,0),(1147,'2025-08-18',1,1,2,1,1,1,3,0,0,0,1,0,1,0),(1148,'2025-08-19',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1149,'2025-08-20',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1150,'2025-08-21',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1151,'2025-08-22',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1152,'2025-08-23',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1153,'2025-08-24',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(1154,'2025-08-25',1,346,0,0,1,1,0,0,0,0,0,0,346,0),(1155,'2025-08-26',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(1156,'2025-08-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1157,'2025-08-28',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1158,'2025-08-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1159,'2025-08-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1160,'2025-08-31',1,256,2,2,1,1,2,0,0,0,2,0,256,0),(1161,'2025-09-01',0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1162,'2025-09-02',1,256,1,1,1,1,2,0,0,0,1,0,256,0),(1163,'2025-09-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1164,'2025-09-04',1,346,15,6,1,1,1,0,0,0,6,0,346,0),(1165,'2025-09-05',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(1166,'2025-09-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1167,'2025-09-07',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1168,'2025-09-08',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(1169,'2025-09-09',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1170,'2025-09-10',1,346,6,2,1,1,2,0,0,0,2,0,346,0),(1171,'2025-09-11',0,0,6,2,1,1,0,0,0,0,2,0,0,0),(1172,'2025-09-12',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1173,'2025-09-13',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1174,'2025-09-14',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1175,'2025-09-15',1,256,0,0,0,0,2,0,0,0,0,0,256,0),(1176,'2025-09-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1177,'2025-09-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1178,'2025-09-18',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1179,'2025-09-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1180,'2025-09-20',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1181,'2025-09-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1182,'2025-09-22',1,256,3,2,1,1,1,0,0,0,2,0,256,0),(1183,'2025-09-23',1,1,3,2,1,1,0,0,0,0,2,0,1,0),(1184,'2025-09-24',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1185,'2025-09-25',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1186,'2025-09-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1187,'2025-09-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1188,'2025-09-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1189,'2025-09-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1190,'2025-09-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1191,'2025-10-01',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1192,'2025-10-02',1,256,1,1,1,1,2,0,0,0,1,0,256,0),(1193,'2025-10-03',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1194,'2025-10-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1195,'2025-10-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1196,'2025-10-06',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1197,'2025-10-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1198,'2025-10-08',1,245,2,2,1,1,2,0,0,0,2,0,245,0),(1199,'2025-10-09',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(1200,'2025-10-10',1,256,0,0,0,0,2,0,0,0,0,0,256,0),(1201,'2025-10-11',0,0,4,3,1,1,2,0,0,0,3,0,0,0),(1202,'2025-10-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1203,'2025-10-13',1,1,0,0,0,0,0,0,0,0,0,0,1,0),(1204,'2025-10-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1205,'2025-10-15',1,256,1,1,1,1,0,0,0,0,1,0,256,0),(1206,'2025-10-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1207,'2025-10-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1208,'2025-10-18',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(1209,'2025-10-19',1,256,0,0,0,0,5,0,0,0,0,0,256,0),(1210,'2025-10-20',1,1,6,5,1,1,0,0,0,0,4,0,1,0),(1211,'2025-10-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1212,'2025-10-22',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(1213,'2025-10-23',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(1214,'2025-10-24',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1215,'2025-10-25',1,256,1,1,1,1,2,0,0,0,1,0,256,0),(1216,'2025-10-26',1,1,4,3,1,1,0,0,0,0,3,0,1,0),(1217,'2025-10-27',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(1218,'2025-10-28',0,0,0,0,1,1,4,0,0,0,0,0,0,0),(1219,'2025-10-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1220,'2025-10-30',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1221,'2025-10-31',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1222,'2025-11-01',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1223,'2025-11-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1224,'2025-11-03',0,0,0,0,0,0,2,0,0,0,0,2,0,0),(1225,'2025-11-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1226,'2025-11-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1227,'2025-11-06',0,0,0,0,0,0,1,0,0,0,0,1,0,0),(1228,'2025-11-07',0,0,0,0,0,0,2,0,0,0,0,1,0,0),(1229,'2025-11-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1230,'2025-11-09',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1231,'2025-11-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1232,'2025-11-11',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1233,'2025-11-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1234,'2025-11-13',1,258,3,3,1,1,2,0,0,0,3,1,258,0),(1235,'2025-11-14',1,1,2,1,1,1,2,0,0,0,1,0,1,0),(1236,'2025-11-15',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(1237,'2025-11-16',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1238,'2025-11-17',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1239,'2025-11-18',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1240,'2025-11-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1241,'2025-11-20',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1242,'2025-11-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1243,'2025-11-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1244,'2025-11-23',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1245,'2025-11-24',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(1246,'2025-11-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1247,'2025-11-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1248,'2025-11-27',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1249,'2025-11-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1250,'2025-11-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1251,'2025-11-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1252,'2025-12-01',1,259,4,3,1,1,2,0,0,0,3,1,259,0),(1253,'2025-12-02',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(1254,'2025-12-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1255,'2025-12-04',0,0,1,1,1,1,3,0,0,0,1,1,0,0),(1256,'2025-12-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1257,'2025-12-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1258,'2025-12-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1259,'2025-12-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1260,'2025-12-09',0,0,0,0,0,0,5,0,0,0,0,1,0,0),(1261,'2025-12-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1262,'2025-12-11',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1263,'2025-12-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1264,'2025-12-13',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1265,'2025-12-14',0,0,0,0,0,0,4,0,0,0,0,0,0,0),(1266,'2025-12-15',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1267,'2025-12-16',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1268,'2025-12-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1269,'2025-12-18',1,259,2,1,1,1,3,0,0,0,1,0,259,0),(1270,'2025-12-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1271,'2025-12-20',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1272,'2025-12-21',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1273,'2025-12-22',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(1274,'2025-12-23',1,346,0,0,0,0,2,0,0,0,0,1,346,0),(1275,'2025-12-24',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(1276,'2025-12-25',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1277,'2025-12-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1278,'2025-12-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1279,'2025-12-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1280,'2025-12-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1281,'2025-12-30',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1282,'2025-12-31',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1283,'2026-01-01',1,259,0,0,0,0,2,0,0,0,0,0,259,0),(1284,'2026-01-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1285,'2026-01-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1286,'2026-01-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1287,'2026-01-05',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1288,'2026-01-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1289,'2026-01-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1290,'2026-01-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1291,'2026-01-09',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1292,'2026-01-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1293,'2026-01-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1294,'2026-01-12',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1295,'2026-01-13',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1296,'2026-01-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1297,'2026-01-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1298,'2026-01-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1299,'2026-01-17',1,259,0,0,0,0,5,0,0,0,0,0,259,0),(1300,'2026-01-18',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(1301,'2026-01-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1302,'2026-01-20',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1303,'2026-01-21',0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1304,'2026-01-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1305,'2026-01-23',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1306,'2026-01-24',0,0,0,0,0,0,4,0,0,0,0,1,0,0),(1307,'2026-01-25',0,0,0,0,0,0,0,0,0,0,0,45,0,0),(1308,'2026-01-26',0,0,0,0,0,0,2,0,0,0,0,157,0,0),(1309,'2026-01-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1310,'2026-01-28',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1311,'2026-01-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1312,'2026-01-30',0,0,0,0,0,0,0,0,0,0,0,2,0,0),(1313,'2026-01-31',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(1314,'2026-02-01',0,0,0,0,0,0,0,0,0,0,0,2,0,0),(1315,'2026-02-02',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1316,'2026-02-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1317,'2026-02-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1318,'2026-02-05',1,266,0,0,0,0,2,0,0,0,0,1,266,0),(1319,'2026-02-06',0,0,1,1,1,1,0,0,0,0,1,0,0,0),(1320,'2026-02-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1321,'2026-02-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1322,'2026-02-09',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1323,'2026-02-10',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1324,'2026-02-11',1,266,0,0,1,1,0,0,0,0,0,0,266,0),(1325,'2026-02-12',1,1,2,1,1,1,3,0,0,0,1,1,1,0),(1326,'2026-02-13',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1327,'2026-02-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1328,'2026-02-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1329,'2026-02-16',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(1330,'2026-02-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1331,'2026-02-18',1,267,0,0,1,1,2,0,0,0,0,0,267,0),(1332,'2026-02-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1333,'2026-02-20',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1334,'2026-02-21',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1335,'2026-02-22',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1336,'2026-02-23',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1337,'2026-02-24',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1338,'2026-02-25',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1339,'2026-02-26',1,267,2,2,1,1,2,0,0,0,2,0,267,0),(1340,'2026-02-27',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1341,'2026-02-28',0,0,1,1,1,1,2,0,0,0,1,0,0,0),(1342,'2026-03-01',0,0,0,0,0,0,5,0,0,0,0,0,0,0),(1343,'2026-03-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1344,'2026-03-03',2,534,6,5,1,1,3,0,0,0,4,0,267,0),(1345,'2026-03-04',1,1,2,1,1,1,0,0,0,0,1,0,1,0),(1346,'2026-03-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1347,'2026-03-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1348,'2026-03-07',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1349,'2026-03-08',0,0,0,0,0,0,4,0,0,0,0,1,0,0),(1350,'2026-03-09',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1351,'2026-03-10',1,268,0,0,1,1,0,0,0,0,0,0,268,0),(1352,'2026-03-11',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1353,'2026-03-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1354,'2026-03-13',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1355,'2026-03-14',2,536,1,1,1,1,3,0,0,0,1,1,268,0),(1356,'2026-03-15',0,0,1,1,1,1,1,0,0,0,1,0,0,0),(1357,'2026-03-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1358,'2026-03-17',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1359,'2026-03-18',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1360,'2026-03-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1361,'2026-03-20',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1362,'2026-03-21',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1363,'2026-03-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1364,'2026-03-23',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1365,'2026-03-24',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1366,'2026-03-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1367,'2026-03-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1368,'2026-03-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1369,'2026-03-28',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1370,'2026-03-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1371,'2026-03-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1372,'2026-03-31',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1373,'2026-04-01',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1374,'2026-04-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1375,'2026-04-03',0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1376,'2026-04-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1377,'2026-04-05',1,269,2,2,1,1,0,0,0,0,2,0,269,0),(1378,'2026-04-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1379,'2026-04-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1380,'2026-04-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1381,'2026-04-09',0,0,0,0,0,0,3,0,0,0,0,0,0,0),(1382,'2026-04-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1383,'2026-04-11',1,269,0,0,1,1,4,0,0,0,0,0,269,0),(1384,'2026-04-12',0,0,2,2,1,1,0,0,0,0,2,0,0,0),(1385,'2026-04-13',0,0,0,0,0,0,4,0,0,0,0,0,0,0),(1386,'2026-04-14',0,0,1,1,1,1,0,0,0,0,1,1,0,0),(1387,'2026-04-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1388,'2026-04-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1389,'2026-04-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1390,'2026-04-18',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1391,'2026-04-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1392,'2026-04-20',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1393,'2026-04-21',0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1394,'2026-04-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1395,'2026-04-23',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1396,'2026-04-24',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1397,'2026-04-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1398,'2026-04-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1399,'2026-04-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1400,'2026-04-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1401,'2026-04-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1402,'2026-04-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1403,'2026-05-01',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1404,'2026-05-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1405,'2026-05-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1406,'2026-05-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1407,'2026-05-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1408,'2026-05-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1409,'2026-05-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1410,'2026-05-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1411,'2026-05-09',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1412,'2026-05-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1413,'2026-05-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1414,'2026-05-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1415,'2026-05-13',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1416,'2026-05-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1417,'2026-05-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1418,'2026-05-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1419,'2026-05-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1420,'2026-05-18',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1421,'2026-05-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1422,'2026-05-20',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1423,'2026-05-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1424,'2026-05-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1425,'2026-05-23',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1426,'2026-05-24',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1427,'2026-05-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1428,'2026-05-26',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1429,'2026-05-27',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1430,'2026-05-28',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1431,'2026-05-29',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1432,'2026-05-30',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1433,'2026-05-31',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1434,'2026-06-01',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1435,'2026-06-02',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1436,'2026-06-03',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1437,'2026-06-04',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1438,'2026-06-05',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1439,'2026-06-06',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1440,'2026-06-07',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1441,'2026-06-08',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1442,'2026-06-09',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1443,'2026-06-10',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1444,'2026-06-11',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1445,'2026-06-12',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1446,'2026-06-13',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1447,'2026-06-14',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1448,'2026-06-15',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1449,'2026-06-16',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1450,'2026-06-17',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1451,'2026-06-18',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1452,'2026-06-19',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1453,'2026-06-20',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1454,'2026-06-21',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1455,'2026-06-22',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1456,'2026-06-23',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1457,'2026-06-24',0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1458,'2026-06-25',0,0,0,0,0,0,0,0,0,0,0,0,0,0);
/*!40000 ALTER TABLE `oto_datestats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_delete_final_mods`
--

DROP TABLE IF EXISTS `oto_delete_final_mods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_delete_final_mods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_delete_final_mods`
--

LOCK TABLES `oto_delete_final_mods` WRITE;
/*!40000 ALTER TABLE `oto_delete_final_mods` DISABLE KEYS */;
INSERT INTO `oto_delete_final_mods` (`id`, `enabled`, `filename`) VALUES (1,1,'lfmvm_delfinal.php');
/*!40000 ALTER TABLE `oto_delete_final_mods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_delete_mods`
--

DROP TABLE IF EXISTS `oto_delete_mods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_delete_mods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_delete_mods`
--

LOCK TABLES `oto_delete_mods` WRITE;
/*!40000 ALTER TABLE `oto_delete_mods` DISABLE KEYS */;
INSERT INTO `oto_delete_mods` (`id`, `enabled`, `filename`) VALUES (1,1,'lfmvm_del.php');
/*!40000 ALTER TABLE `oto_delete_mods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_delete_restore_mods`
--

DROP TABLE IF EXISTS `oto_delete_restore_mods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_delete_restore_mods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_delete_restore_mods`
--

LOCK TABLES `oto_delete_restore_mods` WRITE;
/*!40000 ALTER TABLE `oto_delete_restore_mods` DISABLE KEYS */;
INSERT INTO `oto_delete_restore_mods` (`id`, `enabled`, `filename`) VALUES (1,1,'lfmvm_delrestore.php');
/*!40000 ALTER TABLE `oto_delete_restore_mods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_dlbaffiliateids`
--

DROP TABLE IF EXISTS `oto_dlbaffiliateids`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_dlbaffiliateids` (
  `program_id` int(11) NOT NULL DEFAULT 0,
  `member_id` int(11) NOT NULL DEFAULT 0,
  `affId` varchar(40) NOT NULL DEFAULT '',
  `category` char(1) NOT NULL DEFAULT '',
  KEY `member_id` (`member_id`),
  KEY `program_id` (`program_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_dlbaffiliateids`
--

LOCK TABLES `oto_dlbaffiliateids` WRITE;
/*!40000 ALTER TABLE `oto_dlbaffiliateids` DISABLE KEYS */;
INSERT INTO `oto_dlbaffiliateids` (`program_id`, `member_id`, `affId`, `category`) VALUES (18,143,'https://llpgpro.com/hg7cj743','P'),(28,143,'https://llpgpro.com/hg7cj743','P'),(27,143,'https://llpgpro.com/hg7cj743','P'),(26,143,'https://llpgpro.com/hg7cj743','P'),(25,143,'https://llpgpro.com/hg7cj743','P'),(24,143,'https://llpgpro.com/hg7cj743','P'),(23,143,'https://llpgpro.com/hg7cj743','P'),(22,143,'https://llpgpro.com/hg7cj743','P'),(21,143,'https://llpgpro.com/hg7cj743','P'),(20,143,'https://llpgpro.com/hg7cj743','P'),(19,143,'https://llpgpro.com/hg7cj743','P'),(29,143,'https://llpgpro.com/hg7cj743','P'),(5,143,'https://llpgpro.com/hg7cj743','P'),(6,143,'https://llpgpro.com/hg7cj743','P'),(7,143,'https://llpgpro.com/hg7cj743','P'),(8,143,'https://llpgpro.com/hg7cj743','P'),(9,143,'https://llpgpro.com/hg7cj743','P'),(17,143,'https://llpgpro.com/hg7cj743','P'),(10,143,'https://llpgpro.com/hg7cj743','P'),(11,143,'https://llpgpro.com/hg7cj743','P'),(12,143,'https://llpgpro.com/hg7cj743','P'),(16,143,'https://llpgpro.com/hg7cj743','P'),(18,27,'?rid=2218','P'),(28,27,'?rid=42','P'),(27,27,'?rid=21','P'),(26,27,'?rid=1353','P'),(25,27,'?rid=197','P'),(24,27,'?rid=29','P'),(23,27,'?rid=256','P'),(22,27,'?rid=20','P'),(21,27,'5?rid=4','P'),(20,27,'?rid=50','P'),(19,27,'?rid=90','P'),(29,27,'?rid=42','P'),(18,89,'410','P'),(28,89,'85','P'),(27,89,'28','P'),(26,89,'54','P'),(25,89,'43','P'),(24,89,'51','P'),(23,89,'126','P'),(22,89,'189','P'),(21,89,'48','P'),(20,89,'139','P'),(19,89,'81','P'),(29,89,'71','P'),(5,89,'223','P'),(6,89,'26','P'),(7,89,'22','P'),(8,89,'85','P'),(9,89,'82','P'),(17,89,'48','P'),(10,89,'bizventures','P'),(11,89,'bizventures','P'),(12,89,'bizventures','P'),(13,89,'bizventures','P'),(14,89,'bizventures','P'),(16,89,'bizventures','P'),(10,35,'devildog100','P'),(11,35,'devildog100','P'),(12,35,'devildog100','P'),(13,35,'devildog999','P'),(14,35,'devildog999','P'),(16,35,'devildog100','P'),(18,150,'4525','P'),(28,150,'97','P'),(27,150,'61','P'),(26,150,'1593','P'),(25,150,'233','P'),(24,150,'60','P'),(23,150,'304','P'),(22,150,'357','P'),(21,150,'235','P'),(20,150,'241','P'),(19,150,'267','P'),(29,150,'84','P'),(5,150,'303','P'),(6,150,'225','P'),(7,150,'226','P'),(8,150,'200','P'),(9,150,'182','P'),(17,150,'177','P'),(10,150,'tennesseefix','P'),(11,150,'tennesseefix','P'),(12,150,'tennesseefix','P'),(13,150,'tennesseefix','P'),(14,150,'tennesseefix','P'),(16,150,'tennesseefix','P'),(18,40,'https://trafficbuildr.com/?rid=178','P'),(28,40,'https://fasttraffic.net/?rid=55','P'),(27,40,'https://traffikzone.com/?rid=29','P'),(26,40,'https://fasttrafficzone.com/?rid=1459','P'),(25,40,'https://readysettraffic.com/?rid=209','P'),(24,40,'https://freeeasytraffic.com/?rid=36','P'),(23,40,'https://1000buyerclicks.com/?rid=262','P'),(22,40,'https://1000freevistors.com/?rid=335','P'),(21,40,'https://1000freeclicks.com/?rid=33','P'),(20,40,'https://premiumadswap.com/?rid=68','P'),(19,40,'https://cryptoklicks.com/?rid=56','P'),(29,40,'https://traffikhits.com/?rid=55','P'),(18,36,'233','P'),(28,36,'58','P'),(27,36,'27','P'),(26,36,'97','P'),(25,36,'57','P'),(24,36,'34','P'),(23,36,'134','P'),(22,36,'333','P'),(21,36,'67','P'),(20,36,'61','P'),(19,36,'108','P'),(29,36,'51','P'),(5,36,'279','P'),(6,36,'39','P'),(7,36,'55','P'),(8,36,'91','P'),(9,36,'178','P'),(17,36,'61','P'),(10,36,'glove1000','P'),(11,36,'Gary Cunningham','P'),(12,36,'glove1000','P'),(13,36,'glove1000','P'),(14,36,'glove1000','P'),(16,36,'glove1000','P'),(18,161,'https://trafficbuildr.com/?rid=4631','P'),(28,161,'https://fasttraffic.net/?rid=120','P'),(27,161,'https://traffikzone.com/?rid=72','P'),(26,161,'https://fasttrafficzone.com/?rid=1607','P'),(25,161,'https://readysettraffic.com/?rid=247','P'),(24,161,'https://freeeasytraffic.com/?rid=79','P'),(23,161,'https://1000buyerclicks.com/?rid=321','P'),(22,161,'https://1000freevistors.com/?rid=375','P'),(21,161,'https://1000freeclicks.com/?rid=255','P'),(20,161,'https://premiumadswap.com/?rid=264','P'),(19,161,'https://cryptoklicks.com/?rid=283','P'),(29,161,'https://traffikhits.com/?rid=101','P'),(5,161,'https://bestbizmailer.com/?rid=312','P'),(6,161,'https://stealourlist.com/?rid=241','P'),(7,161,'https://freebizmailer.com/?rid=239','P'),(8,161,'https://rapidlist.club/?rid=215','P'),(9,161,'https://buildyourlist.club/?rid=195','P'),(17,161,'https://freeemailads.com/?rid=192','P'),(18,172,'2405','P'),(28,172,'33','P'),(27,172,'16','P'),(26,172,'1134','P'),(25,172,'183','P'),(24,172,'23','P'),(23,172,'332','P'),(22,172,'389','P'),(21,172,'267','P'),(20,172,'290','P'),(19,172,'294','P'),(29,172,'20','P'),(18,81,'23','P'),(28,81,'79','P'),(27,81,'40','P'),(26,81,'11','P'),(25,81,'128','P'),(24,81,'42','P'),(23,81,'261','P'),(22,81,'66','P'),(21,81,'152','P'),(20,81,'97','P'),(19,81,'208','P'),(29,81,'52','P'),(5,81,'286','P'),(6,81,'113','P'),(7,81,'147','P'),(8,81,'186','P'),(9,81,'41','P'),(17,81,'130','P'),(10,81,'wouellet','P'),(11,81,'wouellet','P'),(12,81,'wouellet','P'),(13,81,'wouellet','P'),(14,81,'wouellet','P'),(16,81,'willyolet','P'),(18,50,'3651','P'),(20,50,'53','P'),(5,172,'232','P'),(6,172,'170','P'),(7,172,'182','P'),(8,172,'226','P'),(9,172,'207','P'),(17,172,'210','P'),(10,172,'eparkos','P'),(11,172,'eparkos','P'),(12,172,'eparkos','P'),(13,172,'eparkos','P'),(14,172,'eparkos','P'),(16,172,'eparkos','P'),(18,171,'585','P'),(28,171,'138','P'),(27,171,'84','P'),(26,171,'1620','P'),(25,171,'257','P'),(24,171,'92','P'),(23,171,'284','P'),(22,171,'387','P'),(21,171,'265','P'),(20,171,'288','P'),(19,171,'293','P'),(29,171,'114','P'),(10,171,'4tgd','P'),(11,171,'4tgd','P'),(12,171,'4tgd','P'),(13,171,'tgds','P'),(14,171,'4tgd','P'),(16,171,'4tgd','P'),(18,9,'45','P'),(28,9,'27','P'),(27,9,'26','P'),(26,9,'132','P'),(25,9,'54','P'),(24,9,'33','P'),(23,9,'36','P'),(22,9,'45','P'),(21,9,'101','P'),(20,9,'19','P'),(19,9,'150','P'),(29,9,'50','P'),(30,9,'29','P'),(5,9,'187','P'),(6,9,'37','P'),(7,9,'187','P'),(8,9,'26','P'),(9,9,'27','P'),(17,9,'93','P'),(31,9,'24','P'),(32,9,'85','P'),(10,9,'cyberco','P'),(11,9,'cyberco','P'),(12,9,'cyberco','P'),(13,9,'cyberco','P'),(14,9,'cyberco','P'),(16,9,'cyberco','P'),(18,145,'1790','P'),(28,145,'84','P'),(27,145,'47','P'),(26,145,'1579','P'),(25,145,'223','P'),(24,145,'49','P'),(23,145,'200','P'),(22,145,'239','P'),(21,145,'47','P'),(20,145,'239','P'),(19,145,'46','P'),(29,145,'69','P'),(30,145,'208','P'),(18,35,'181','P'),(28,35,'101','P'),(27,35,'63','P'),(26,35,'151','P'),(25,35,'132','P'),(24,35,'64','P'),(23,35,'222','P'),(22,35,'23','P'),(21,35,'238','P'),(20,35,'60','P'),(19,35,'270','P'),(29,35,'86','P'),(30,35,'62','P'),(5,35,'181','P'),(6,35,'116','P'),(7,35,'81','P'),(8,35,'202','P'),(9,35,'36','P'),(17,35,'179','P'),(32,35,'33','P'),(31,35,'52','P'),(18,43,'90','P'),(28,43,'104','P'),(27,43,'65','P'),(26,43,'1594','P'),(25,43,'239','P'),(24,43,'67','P'),(23,43,'298','P'),(22,43,'353','P'),(21,43,'225','P'),(20,43,'80','P'),(19,43,'261','P'),(29,43,'89','P'),(30,43,'70','P'),(5,242,'432','P'),(6,242,'321','P'),(7,242,'309','P'),(8,242,'298','P'),(9,242,'274','P'),(17,242,'318','P'),(32,242,'148','P'),(31,242,'307','P'),(18,263,'7308','P'),(28,263,'281','P'),(27,263,'169','P'),(26,263,'1729','P'),(25,263,'366','P'),(24,263,'187','P'),(23,263,'561','P'),(22,263,'527','P'),(21,263,'456','P'),(20,263,'561','P'),(19,263,'408','P'),(29,263,'238','P'),(30,263,'509','P'),(5,263,'448','P'),(6,263,'337','P'),(7,263,'323','P'),(8,263,'314','P'),(9,263,'288','P'),(17,263,'338','P'),(31,263,'340','P'),(32,263,'165','P'),(18,242,'4745','P'),(28,242,'231','P'),(27,242,'135','P'),(26,242,'1696','P'),(25,242,'323','P'),(24,242,'150','P'),(23,242,'166','P'),(22,242,'466','P'),(21,242,'385','P'),(20,242,'488','P'),(19,242,'383','P'),(29,242,'195','P'),(30,242,'419','P'),(10,242,'LarryR','P'),(11,242,'LarryR','P'),(16,242,'LarryR','P'),(10,21,'sendler','P'),(11,21,'sendler','P'),(12,21,'sendler','P'),(13,21,'sendler','P'),(14,21,'sendler','P'),(16,21,'sendler','P'),(18,188,'4217','P'),(28,188,'293','P'),(18,75,'https://trafficbuildr.com/?rid=2167','P'),(28,75,'https://fasttraffic.net/?rid=126','P'),(27,75,'https://traffikzone.com/?rid=35','P'),(26,75,'https://fasttrafficzone.com/?rid=1659','P'),(25,75,'https://readysettraffic.com/?rid=284','P'),(24,75,'https://freeeasytraffic.com/?rid=116','P'),(23,75,'https://1000buyerclicks.com/?rid=219','P'),(22,75,'https://1000freevistors.com/?rid=344','P'),(21,75,'https://1000freeclicks.com/?rid=43','P'),(20,75,'https://premiumadswap.com/?rid=260','P'),(19,75,'https://cryptoklicks.com/?rid=61','P'),(29,75,'https://traffikhits.com/?rid=144','P'),(30,75,'https://freeclicks.net/?rid=230','P'),(18,300,'8061','P'),(23,300,'659','P'),(21,300,'535','P'),(20,300,'668','P'),(30,300,'663','P'),(5,140,'https://bestbizmailer.com/?rid=282','P'),(6,140,'https://stealourlist.com/?rid=158','P'),(7,140,'https://freebizmailer.com/?rid=113','P'),(8,140,'https://www.rapidlist.club.com/?rid=194','P'),(9,140,'https://buildyourlist.club/?rid=171','P'),(17,140,'https://freeemailads.com/?rid=167','P'),(31,140,'https://instantlist.club/?rid=173','P'),(32,140,'https://borrowourlist.com/?rid=8','P'),(18,311,'8432','P'),(28,311,'360','P'),(27,311,'211','P'),(26,311,'1803','P'),(25,311,'428','P'),(24,311,'246','P'),(23,311,'684','P'),(22,311,'610','P'),(21,311,'573','P'),(20,311,'720','P'),(19,311,'461','P'),(29,311,'295','P'),(30,311,'738','P'),(5,311,'526','P'),(6,311,'384','P'),(7,311,'371','P'),(8,311,'359','P'),(9,311,'330','P'),(17,311,'403','P'),(31,311,'421','P'),(32,311,'207','P'),(10,140,'https://www.theadexchangepro.com/index.p','P'),(11,140,'https://TheListBuilderPro.com/memberlogi','P'),(12,140,'https://www.thedownlinebuilderpro.com/in','P'),(13,140,'https://www.cryptoadtraffic.com/index.ph','P'),(14,140,'https://www.cryptolistclub.com/memberlog','P'),(16,140,'https://www.viralmarketersclub.com/splas','P'),(18,336,'http://TheShinyBallSyndrome.com/indext.h','P'),(28,336,'a href=https://trafficbuildr.com/?rid=96','P'),(27,336,'a href=https://trafficbuildr.com/?rid=96','P'),(26,336,'a href=https://trafficbuildr.com/?rid=96','P'),(25,336,'a href=https://trafficbuildr.com/?rid=96','P'),(24,336,'a href=https://trafficbuildr.com/?rid=96','P'),(23,336,'a href=https://trafficbuildr.com/?rid=96','P'),(22,336,'a href=https://trafficbuildr.com/?rid=96','P'),(21,336,'a href=https://trafficbuildr.com/?rid=96','P'),(20,336,'a href=https://trafficbuildr.com/?rid=96','P'),(19,336,'a href=https://trafficbuildr.com/?rid=96','P'),(29,336,'a href=https://trafficbuildr.com/?rid=96','P'),(30,336,'a href=https://trafficbuildr.com/?rid=96','P'),(10,336,'a href=https://trafficbuildr.com/?rid=96','P'),(11,336,'http://TheShinyBallSyndrome.com/indext.h','P'),(12,336,'http://TheShinyBallSyndrome.com/indext.h','P'),(13,336,'http://TheShinyBallSyndrome.com/indext.h','P'),(16,336,'a href=https://trafficbuildr.com/?rid=96','P'),(18,408,'https://trafficbuildr.com/?rid=10623','P'),(28,408,'https://fasttraffic.net/?rid=449','P'),(18,140,'https://trafficbuildr.com/?rid=4002','P'),(28,140,'https://fasttraffic.net/?rid=67','P'),(27,140,'https://traffikzone.com/?rid=38','P'),(26,140,'https://fasttrafficzone.com/?rid=124','P'),(25,140,'https://readysettraffic.com/?rid=204','P'),(24,140,'https://freeeasytraffic.com/?rid=44','P'),(23,140,'https://1000buyerclicks.com/?rid=213','P'),(22,140,'https://1000freevistors.com/?rid=262','P'),(21,140,'https://1000freeclicks.com/?rid=207','P'),(20,140,'https://premiumadswap.com/?rid=66','P'),(19,140,'https://cryptoklicks.com/?rid=201','P'),(29,140,'https://traffikhits.com/?rid=66','P'),(30,140,'https://freeclicks.net/?rid=171','P'),(33,140,'https://setforgettraffic.com/?rid=226','P'),(18,673,'https://llclick.com/r/p9zgg9r5/','P'),(28,673,'https://llclick.com/r/p9zgg9r5/','P'),(27,673,'https://llclick.com/r/p9zgg9r5/','P'),(26,673,'https://llclick.com/r/p9zgg9r5/','P'),(25,673,'https://llclick.com/r/p9zgg9r5/','P'),(24,673,'https://llclick.com/r/p9zgg9r5/','P'),(23,673,'https://llclick.com/r/p9zgg9r5/','P'),(22,673,'https://llclick.com/r/p9zgg9r5/','P'),(21,673,'https://llclick.com/r/p9zgg9r5/','P'),(20,673,'https://llclick.com/r/p9zgg9r5/','P'),(19,673,'https://llclick.com/r/p9zgg9r5/','P'),(29,673,'https://llclick.com/r/p9zgg9r5/','P'),(30,673,'https://llclick.com/r/p9zgg9r5/','P'),(33,673,'https://llclick.com/r/p9zgg9r5/','P'),(34,673,'https://llclick.com/r/p9zgg9r5/','P'),(35,673,'https://llclick.com/r/p9zgg9r5/','P'),(36,673,'https://llclick.com/r/p9zgg9r5/','P');
/*!40000 ALTER TABLE `oto_dlbaffiliateids` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_dlbprograms`
--

DROP TABLE IF EXISTS `oto_dlbprograms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_dlbprograms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `programId` varchar(30) NOT NULL DEFAULT '',
  `description` varchar(255) NOT NULL DEFAULT '',
  `programUrl` varchar(255) NOT NULL DEFAULT '',
  `category` char(1) NOT NULL DEFAULT 'P',
  `ownerAfId` varchar(50) NOT NULL DEFAULT '',
  `multi_id` int(11) NOT NULL DEFAULT 1,
  `weight` float NOT NULL DEFAULT 9999,
  `useradded` int(11) NOT NULL DEFAULT 0,
  `required` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  UNIQUE KEY `programId` (`programId`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_dlbprograms`
--

LOCK TABLES `oto_dlbprograms` WRITE;
/*!40000 ALTER TABLE `oto_dlbprograms` DISABLE KEYS */;
INSERT INTO `oto_dlbprograms` (`id`, `programId`, `description`, `programUrl`, `category`, `ownerAfId`, `multi_id`, `weight`, `useradded`, `required`) VALUES (5,'1','<p align=\"center\"><img src=\"https://i.imgur.com/VLoYuGA.jpeg\"></p>','http://bestbizmailer.com/index.php?ref_id={1429}','P','1429',2,1,0,1),(6,'2','<p align=\"center\"><img  src=\"https://i.imgur.com/0EkeilT.jpeg\"/></p>','http://stealourlist.com/index.php?ref_id={affid}','P','29587',2,2,0,1),(7,'3','<p align=\"center\"><img  src=\"https://i.imgur.com/t3nXlVk.jpeg\"/></p>','http://freebizmailer.com/index.php?ref_id={19}','P','19',2,3,0,1),(8,'4','<p align=\"center\"><img  src=\"https://i.imgur.com/FpPZCli.jpeg\"/></p>','https://rapidlist.club/?rid=148','P','148',2,4,0,1),(9,'5','<p align=\"center\"><img  src=\"https://i.imgur.com/bwihfxQ.jpeg\"/></p>','https://buildyourlist.club/?rid=9','P','9',2,5,0,1),(10,'6','<p align=\"center\"><img  src=\"https://i.imgur.com/WI7hP5M.jpeg\"/></p>','https://www.theadexchangepro.com/index.php?r=frankandres','P','',3,1,0,1),(11,'7','<p align=\"center\"><img  src=\"https://i.imgur.com/dHSKl7M.jpeg\"/></p>','https://www.thelistbuilderpro.com/index.php?r=frankandres','P','',3,2,0,1),(12,'8','<p align=\"center\"><img  src=\"https://i.imgur.com/xinB58L.jpeg\"/></p>','https://www.thedownlinebuilderpro.com/index.php?r=frankandres','P','',3,3,0,1),(13,'9','<p align=\"center\"><img  src=\"https://i.imgur.com/aBG936M.jpeg\"/></p>','https://www.cryptoadtraffic.com/index.php?r=frankandres','P','',3,4,0,1),(14,'10','<p align=\"center\"><img  src=\"https://i.imgur.com/ImDM7bN.jpeg\"/></p>','https://www.cryptolistclub.com/index.php?r=frankandres','P','',3,5,0,1),(16,'11','<p align=\"center\"><img  src=\"https://imgur.com/RqLRgbc.jpeg\"/></p>','https://www.viralmarketersclub.com/index.php?r=franksst','P','',3,6,0,1),(17,'06','<p align=\"center\"><img  src=\"https://imgur.com/3iytdbk.jpeg\"/></p>','https://freeemailads.com/?rid=150','P','',2,6,0,1),(18,'0001','<p align=\"center\"><img  src=\"https://i.imgur.com/6Vyq3DC.jpeg\"/></p>','http://trafficbuildr.com/index.php?ref_id={2}','P','',1,1,0,1),(19,'0002','<p align=\"center\"><img  src=\"https://i.imgur.com/vMpU7Ru.jpeg\"/></p>','https://cryptoklicks.com/?rid=232','P','',1,11,0,1),(20,'0003','<p align=\"center\"><img  src=\"https://i.imgur.com/IAgwFHl.jpeg\"/></p>','https://premiumadswap.com/?rid=206','P','',1,10,0,1),(21,'0004','<p align=\"center\"><img  src=\"https://i.imgur.com/sUQx9ue.jpg\"/></p>','https://1000freeclicks.com/?rid=179','P','',1,9,0,1),(22,'0005','<p align=\"center\"><img  src=\"https://i.imgur.com/TszZVWB.jpeg\"/></p>','https://1000freevistors.com/?rid=6','P','',1,8,0,1),(23,'0006','<p align=\"center\"><img  src=\"https://i.imgur.com/KctPMZl.jpeg\"/></p>','https://1000buyerclicks.com/?rid=14','P','',1,7,0,1),(24,'0007','<p align=\"center\"><img  src=\"https://i.imgur.com/vNFeO0a.jpg\"/></p>','http://freeeasytraffic.com/index.php?ref_id={affid}','P','',1,6,0,1),(25,'0008','<p align=\"center\"><img  src=\"https://i.imgur.com/faAqDx3.jpeg\"/></p>','http://readysettraffic.com/index.php?ref_id={affid}','P','',1,5,0,1),(26,'0009','<p align=\"center\"><img  src=\"https://i.imgur.com/l9LfIxR.jpeg\"/></p>','http://fasttrafficzone.com/index.php?ref_id={affid}','P','',1,4,0,1),(27,'00010','<p align=\"center\"><img  src=\"https://i.imgur.com/hdjssn8.jpeg\"/></p>','ttp://traffikzone.com/index.php?ref_id={affid}','P','',1,3,0,1),(28,'00011','<p align=\"center\"><img  src=\"https://i.imgur.com/5GVdZUg.jpeg\"/></p>','http://fasttraffic.net/index.php?ref_id={affid}','P','',1,2,0,1),(29,'00012','<p align=\"center\"><img  src=\"https://i.imgur.com/1MQnY8M.jpeg\"/></p>','http://traffikhits.com/index.php?ref_id={affid}','P','',1,12,0,1),(30,'000012365','<p align=\"center\"><img  src=\"https://i.imgur.com/wQqjjnx.png\"/></p>','https://freeclicks.net/?rid=280','P','280',1,13,0,1),(31,'3265984512','<p align=\"center\"><img  src=\"https://i.imgur.com/bekW0IT.png\"/></p>','https://instantlist.club/?rid=217','P','217',2,7,0,1),(32,'7845123265','<p align=\"center\"><img  src=\"https://i.imgur.com/olOCMYi.png\"/></p>','https://borrowourlist.com/?rid=1','P','1',2,8,0,1),(33,'hdjgd','<p align=\"center\"><img  src=\"https://i.imgur.com/lHaMcS1.png\"/></p>','https://setforgettraffic.com/?rid=','P','1',1,14,0,1),(34,'iidkdh','<p align=\"center\"><img  src=\"https://i.imgur.com/UXyvEHO.png\"/></p>','https://adsco-op.com/?rid=','P','1',1,15,0,1),(35,'dhdhd','<p align=\"center\"><img  src=\"https://i.imgur.com/FlSQ7Ux.png\"/></p>','https://traffikcoop.com/?rid=','P','1',1,16,0,1),(36,'psÃ±odsl','<p align=\"center\"><img  src=\"https://i.imgur.com/5B4Rtvd.png\"/></p>','https://letsadswap.com/?rid=','P','1',1,17,0,1),(37,'ytolsy','<p align=\"center\"><img  src=\"https://i.imgur.com/jGuhq5m.png\"/></p>','https://mailertraffic.com/?rid=','P','1',2,9,0,1),(38,'tejzgdsk','<p align=\"center\"><img  src=\"https://i.imgur.com/GvwUvTl.png\"/></p>','https://soloadscoop.com/?rid=','P','1',2,10,0,1),(39,'kdjagsdp','<p align=\"center\"><img  src=\"https://i.imgur.com/pzb4T1Z.png\"/></p>','https://coopsolos.com/?rid=','P','1',2,11,0,1),(40,'usaÃ±fdhrfd','<p align=\"center\"><img  src=\"https://i.imgur.com/HzDoLf3.png\"/></p>','https://solosforlife.com/?rid=','P','1',2,12,0,1);
/*!40000 ALTER TABLE `oto_dlbprograms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_dlbranks`
--

DROP TABLE IF EXISTS `oto_dlbranks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_dlbranks` (
  `program_id` varchar(255) NOT NULL,
  `member_id` int(11) NOT NULL,
  `weight` float NOT NULL,
  `display` tinyint(1) NOT NULL,
  `ddown` tinyint(1) NOT NULL DEFAULT 1,
  `multi_id` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_dlbranks`
--

LOCK TABLES `oto_dlbranks` WRITE;
/*!40000 ALTER TABLE `oto_dlbranks` DISABLE KEYS */;
INSERT INTO `oto_dlbranks` (`program_id`, `member_id`, `weight`, `display`, `ddown`, `multi_id`) VALUES ('1',3,1,1,1,2),('2',3,2,1,1,2),('3',3,3,1,1,2),('4',3,4,1,1,2),('5',3,5,1,1,2),('6',3,1,1,1,1),('7',3,2,1,1,1),('8',3,3,1,1,1),('9',3,4,1,1,1),('10',3,5,1,1,1),('11',3,6,1,1,1),('06',3,6,1,1,2),('001',7,1,1,1,1),('002',7,2,1,1,1),('003',7,3,1,1,1),('004',7,4,1,1,1),('005',7,5,1,1,1),('006',7,6,1,1,1),('007',7,7,1,1,1),('008',7,8,1,1,1),('009',7,9,1,1,1),('0010',7,10,1,1,1),('0011',7,11,1,1,1),('0012',7,12,1,1,1),('001',3,7,1,1,1),('002',3,8,1,1,1),('003',3,9,1,1,1),('004',3,10,1,1,1),('005',3,11,1,1,1),('006',3,12,1,1,1),('007',3,13,1,1,1),('008',3,14,1,1,1),('009',3,15,1,1,1),('0010',3,16,1,1,1),('0011',3,17,1,1,1),('0012',3,18,1,1,1),('001',143,1,1,1,1),('002',143,2,1,1,1),('003',143,3,1,1,1),('004',143,4,1,1,1),('005',143,5,1,1,1),('006',143,6,1,1,1),('007',143,7,1,1,1),('008',143,8,1,1,1),('009',143,9,1,1,1),('0010',143,10,1,1,1),('0011',143,11,1,1,1),('0012',143,12,1,1,1),('1',143,1,1,1,2),('2',143,2,1,1,2),('3',143,3,1,1,2),('4',143,4,1,1,2),('5',143,5,1,1,2),('06',143,6,1,1,2),('6',143,1,1,1,3),('7',143,2,1,1,3),('8',143,3,1,1,3),('9',143,4,1,1,3),('10',143,5,1,1,3),('11',143,6,1,1,3),('001',34,1,1,1,1),('002',34,2,1,1,1),('003',34,3,1,1,1),('004',34,4,1,1,1),('005',34,5,1,1,1),('006',34,6,1,1,1),('007',34,7,1,1,1),('008',34,8,1,1,1),('009',34,9,1,1,1),('0010',34,10,1,1,1),('0011',34,11,1,1,1),('0012',34,12,1,1,1),('1',34,1,1,1,2),('2',34,2,1,1,2),('3',34,3,1,1,2),('4',34,4,1,1,2),('5',34,5,1,1,2),('06',34,6,1,1,2),('6',34,1,1,1,3),('7',34,2,1,1,3),('8',34,3,1,1,3),('9',34,4,1,1,3),('10',34,5,1,1,3),('11',34,6,1,1,3),('001',27,1,1,1,1),('002',27,2,1,1,1),('003',27,3,1,1,1),('004',27,4,1,1,1),('005',27,5,1,1,1),('006',27,6,1,1,1),('007',27,7,1,1,1),('008',27,8,1,1,1),('009',27,9,1,1,1),('0010',27,10,1,1,1),('0011',27,11,1,1,1),('0012',27,12,1,1,1),('1',27,1,1,1,2),('2',27,2,1,1,2),('3',27,3,1,1,2),('4',27,4,1,1,2),('5',27,5,1,1,2),('06',27,6,1,1,2),('001',89,2,1,1,1),('002',89,4,1,1,1),('003',89,6,1,1,1),('004',89,8,1,1,1),('005',89,10,1,1,1),('006',89,12,1,1,1),('007',89,14,1,1,1),('008',89,16,1,1,1),('009',89,18,1,1,1),('0010',89,20,1,1,1),('0011',89,22,1,1,1),('0012',89,24,1,1,1),('1',89,1,1,1,2),('2',89,2,1,1,2),('3',89,3,1,1,2),('4',89,4,1,1,2),('5',89,5,1,1,2),('06',89,6,1,1,2),('6',89,1,1,1,3),('7',89,2,1,1,3),('8',89,3,1,1,3),('9',89,4,1,1,3),('10',89,5,1,1,3),('11',89,6,1,1,3),('001',35,1,1,1,1),('002',35,2,1,1,1),('003',35,3,1,1,1),('004',35,4,1,1,1),('005',35,5,1,1,1),('006',35,6,1,1,1),('007',35,7,1,1,1),('008',35,8,1,1,1),('009',35,9,1,1,1),('0010',35,10,1,1,1),('0011',35,11,1,1,1),('0012',35,12,1,1,1),('1',35,1,1,1,2),('2',35,2,1,1,2),('3',35,3,1,1,2),('4',35,4,1,1,2),('5',35,5,1,1,2),('06',35,6,1,1,2),('6',35,1,1,1,3),('7',35,2,1,1,3),('8',35,3,1,1,3),('9',35,4,1,1,3),('10',35,5,1,1,3),('11',35,6,1,1,3),('001',54,1,1,1,1),('002',54,2,1,1,1),('003',54,3,1,1,1),('004',54,4,1,1,1),('005',54,5,1,1,1),('006',54,6,1,1,1),('007',54,7,1,1,1),('008',54,8,1,1,1),('009',54,9,1,1,1),('0010',54,10,1,1,1),('0011',54,11,1,1,1),('0012',54,12,1,1,1),('001',161,1,1,1,1),('002',161,2,1,1,1),('003',161,3,1,1,1),('004',161,4,1,1,1),('005',161,5,1,1,1),('006',161,6,1,1,1),('007',161,7,1,1,1),('008',161,8,1,1,1),('009',161,9,1,1,1),('0010',161,10,1,1,1),('0011',161,11,1,1,1),('0012',161,12,1,1,1),('1',161,1,1,1,2),('2',161,2,1,1,2),('3',161,3,1,1,2),('4',161,4,1,1,2),('5',161,5,1,1,2),('06',161,6,1,1,2),('001',150,1,1,1,1),('002',150,2,1,1,1),('003',150,3,1,1,1),('004',150,4,1,1,1),('005',150,5,1,1,1),('006',150,6,1,1,1),('007',150,7,1,1,1),('008',150,8,1,1,1),('009',150,9,1,1,1),('0010',150,10,1,1,1),('0011',150,11,1,1,1),('0012',150,12,1,1,1),('1',150,1,1,1,2),('2',150,2,1,1,2),('3',150,3,1,1,2),('4',150,4,1,1,2),('5',150,5,1,1,2),('06',150,6,1,1,2),('6',150,1,1,1,3),('7',150,2,1,1,3),('8',150,3,1,1,3),('9',150,4,1,1,3),('10',150,5,1,1,3),('11',150,6,1,1,3),('001',40,1,1,1,1),('002',40,2,1,1,1),('003',40,3,1,1,1),('004',40,4,1,1,1),('005',40,5,1,1,1),('006',40,6,1,1,1),('007',40,7,1,1,1),('008',40,8,1,1,1),('009',40,9,1,1,1),('0010',40,10,1,1,1),('0011',40,11,1,1,1),('0012',40,12,1,1,1),('001',36,1,1,1,1),('002',36,2,1,1,1),('003',36,3,1,1,1),('004',36,4,1,1,1),('005',36,5,1,1,1),('006',36,6,1,1,1),('007',36,7,1,1,1),('008',36,8,1,1,1),('009',36,9,1,1,1),('0010',36,10,1,1,1),('0011',36,11,1,1,1),('0012',36,12,1,1,1),('1',36,1,1,1,2),('2',36,2,1,1,2),('3',36,3,1,1,2),('4',36,4,1,1,2),('5',36,5,1,1,2),('06',36,6,1,1,2),('6',36,1,1,1,3),('7',36,2,1,1,3),('8',36,3,1,1,3),('9',36,4,1,1,3),('10',36,5,1,1,3),('11',36,6,1,1,3),('6',161,1,1,1,3),('7',161,2,1,1,3),('8',161,3,1,1,3),('9',161,4,1,1,3),('10',161,5,1,1,3),('11',161,6,1,1,3),('001',21,1,1,1,1),('002',21,2,1,1,1),('003',21,3,1,1,1),('004',21,4,1,1,1),('005',21,5,1,1,1),('006',21,6,1,1,1),('007',21,7,1,1,1),('008',21,8,1,1,1),('009',21,9,1,1,1),('0010',21,10,1,1,1),('0011',21,11,1,1,1),('0012',21,12,1,1,1),('001',45,1,1,1,1),('002',45,2,1,1,1),('003',45,3,1,1,1),('004',45,4,1,1,1),('005',45,5,1,1,1),('006',45,6,1,1,1),('007',45,7,1,1,1),('008',45,8,1,1,1),('009',45,9,1,1,1),('0010',45,10,1,1,1),('0011',45,11,1,1,1),('0012',45,12,1,1,1),('6',45,1,1,1,3),('7',45,2,1,1,3),('8',45,3,1,1,3),('9',45,4,1,1,3),('10',45,5,1,1,3),('11',45,6,1,1,3),('1',45,1,1,1,2),('2',45,2,1,1,2),('3',45,3,1,1,2),('4',45,4,1,1,2),('5',45,5,1,1,2),('06',45,6,1,1,2),('001',172,1,1,1,1),('002',172,2,1,1,1),('003',172,3,1,1,1),('004',172,4,1,1,1),('005',172,5,1,1,1),('006',172,6,1,1,1),('007',172,7,1,1,1),('008',172,8,1,1,1),('009',172,9,1,1,1),('0010',172,10,1,1,1),('0011',172,11,1,1,1),('0012',172,12,1,1,1),('1',172,1,1,1,2),('2',172,2,1,1,2),('3',172,3,1,1,2),('4',172,4,1,1,2),('5',172,5,1,1,2),('06',172,6,1,1,2),('001',81,1,1,1,1),('002',81,2,1,1,1),('003',81,3,1,1,1),('004',81,4,1,1,1),('005',81,5,1,1,1),('006',81,6,1,1,1),('007',81,7,1,1,1),('008',81,8,1,1,1),('009',81,9,1,1,1),('0010',81,10,1,1,1),('0011',81,11,1,1,1),('0012',81,12,1,1,1),('1',81,1,1,1,2),('2',81,2,1,1,2),('3',81,3,1,1,2),('4',81,4,1,1,2),('5',81,5,1,1,2),('06',81,6,1,1,2),('6',81,1,1,1,3),('7',81,2,1,1,3),('8',81,3,1,1,3),('9',81,4,1,1,3),('10',81,5,1,1,3),('11',81,6,1,1,3),('001',50,1,1,1,1),('002',50,2,1,1,1),('003',50,3,1,1,1),('004',50,4,1,1,1),('005',50,5,1,1,1),('006',50,6,1,1,1),('007',50,7,1,1,1),('008',50,8,1,1,1),('009',50,9,1,1,1),('0010',50,10,1,1,1),('0011',50,11,1,1,1),('0012',50,12,1,1,1),('6',50,1,1,1,3),('7',50,2,1,1,3),('8',50,3,1,1,3),('9',50,4,1,1,3),('10',50,5,1,1,3),('11',50,6,1,1,3),('1',50,1,1,1,2),('2',50,2,1,1,2),('3',50,3,1,1,2),('4',50,4,1,1,2),('5',50,5,1,1,2),('06',50,6,1,1,2),('6',172,1,1,1,3),('7',172,2,1,1,3),('8',172,3,1,1,3),('9',172,4,1,1,3),('10',172,5,1,1,3),('11',172,6,1,1,3),('001',171,1,1,1,1),('002',171,2,1,1,1),('003',171,3,1,1,1),('004',171,4,1,1,1),('005',171,5,1,1,1),('006',171,6,1,1,1),('007',171,7,1,1,1),('008',171,8,1,1,1),('009',171,9,1,1,1),('0010',171,10,1,1,1),('0011',171,11,1,1,1),('0012',171,12,1,1,1),('6',171,1,1,1,3),('7',171,2,1,1,3),('8',171,3,1,1,3),('9',171,4,1,1,3),('10',171,5,1,1,3),('11',171,6,1,1,3),('001',141,1,1,1,1),('002',141,2,1,1,1),('003',141,3,1,1,1),('004',141,4,1,1,1),('005',141,5,1,1,1),('006',141,6,1,1,1),('007',141,7,1,1,1),('008',141,8,1,1,1),('009',141,9,1,1,1),('0010',141,10,1,1,1),('0011',141,11,1,1,1),('0012',141,12,1,1,1),('00012365',141,13,1,1,1),('001',60,1,1,1,1),('002',60,2,1,1,1),('003',60,3,1,1,1),('004',60,4,1,1,1),('005',60,5,1,1,1),('006',60,6,1,1,1),('007',60,7,1,1,1),('008',60,8,1,1,1),('009',60,9,1,1,1),('0010',60,10,1,1,1),('0011',60,11,1,1,1),('0012',60,12,1,1,1),('00012365',60,13,1,1,1),('001',188,1,1,1,1),('002',188,2,1,1,1),('003',188,3,1,1,1),('004',188,4,1,1,1),('005',188,5,1,1,1),('006',188,6,1,1,1),('007',188,7,1,1,1),('008',188,8,1,1,1),('009',188,9,1,1,1),('0010',188,10,1,1,1),('0011',188,11,1,1,1),('0012',188,12,1,1,1),('00012365',188,13,1,1,1),('001',140,2,1,1,1),('002',140,4,1,1,1),('003',140,6,1,1,1),('004',140,8,1,1,1),('005',140,10,1,1,1),('006',140,12,1,1,1),('007',140,14,1,1,1),('008',140,16,1,1,1),('009',140,18,1,1,1),('0010',140,20,1,1,1),('0011',140,22,1,1,1),('0012',140,24,1,1,1),('00012365',140,26,1,1,1),('1',140,1,1,1,2),('2',140,2,1,1,2),('3',140,3,1,1,2),('4',140,4,1,1,2),('5',140,5,1,1,2),('06',140,6,1,1,2),('3265984512',140,7,1,1,2),('7845123265',140,8,1,1,2),('6',140,1,1,1,3),('7',140,2,1,1,3),('8',140,3,1,1,3),('9',140,4,1,1,3),('10',140,5,1,1,3),('11',140,6,1,1,3),('001',9,2,1,1,1),('002',9,4,1,1,1),('003',9,6,1,1,1),('004',9,8,1,1,1),('005',9,10,1,1,1),('006',9,12,1,1,1),('007',9,14,1,1,1),('008',9,16,1,1,1),('009',9,18,1,1,1),('0010',9,20,1,1,1),('0011',9,22,1,1,1),('0012',9,24,1,1,1),('00012365',9,26,1,1,1),('1',9,2,1,1,2),('2',9,4,1,1,2),('3',9,6,1,1,2),('4',9,8,1,1,2),('5',9,10,1,1,2),('06',9,12,1,1,2),('3265984512',9,14,1,1,2),('7845123265',9,16,1,1,2),('6',9,1,1,1,3),('7',9,2,1,1,3),('8',9,3,1,1,3),('9',9,4,1,1,3),('10',9,5,1,1,3),('11',9,6,1,1,3),('001',145,1,1,1,1),('002',145,2,1,1,1),('003',145,3,1,1,1),('004',145,4,1,1,1),('005',145,5,1,1,1),('006',145,6,1,1,1),('007',145,7,1,1,1),('008',145,8,1,1,1),('009',145,9,1,1,1),('0010',145,10,1,1,1),('0011',145,11,1,1,1),('0012',145,12,1,1,1),('00012365',145,13,1,1,1),('00012365',35,13,1,1,1),('3265984512',35,7,1,1,2),('7845123265',35,8,1,1,2),('001',216,1,1,1,1),('002',216,2,1,1,1),('003',216,3,1,1,1),('004',216,4,1,1,1),('005',216,5,1,1,1),('006',216,6,1,1,1),('007',216,7,1,1,1),('008',216,8,1,1,1),('009',216,9,1,1,1),('0010',216,10,1,1,1),('0011',216,11,1,1,1),('0012',216,12,1,1,1),('00012365',216,13,1,1,1),('001',225,1,1,1,1),('002',225,2,1,1,1),('003',225,3,1,1,1),('004',225,4,1,1,1),('005',225,5,1,1,1),('006',225,6,1,1,1),('007',225,7,1,1,1),('008',225,8,1,1,1),('009',225,9,1,1,1),('0010',225,10,1,1,1),('0011',225,11,1,1,1),('0012',225,12,1,1,1),('00012365',225,13,1,1,1),('1',225,1,1,1,2),('2',225,2,1,1,2),('3',225,3,1,1,2),('4',225,4,1,1,2),('5',225,5,1,1,2),('06',225,6,1,1,2),('3265984512',225,7,1,1,2),('7845123265',225,8,1,1,2),('001',43,1,1,1,1),('002',43,2,1,1,1),('003',43,3,1,1,1),('004',43,4,1,1,1),('005',43,5,1,1,1),('006',43,6,1,1,1),('007',43,7,1,1,1),('008',43,8,1,1,1),('009',43,9,1,1,1),('0010',43,10,1,1,1),('0011',43,11,1,1,1),('0012',43,12,1,1,1),('00012365',43,13,1,1,1),('00012365',50,13,1,1,1),('001',242,1,1,1,1),('002',242,2,1,1,1),('003',242,3,1,1,1),('004',242,4,1,1,1),('005',242,5,1,1,1),('006',242,6,1,1,1),('007',242,7,1,1,1),('008',242,8,1,1,1),('009',242,9,1,1,1),('0010',242,10,1,1,1),('0011',242,11,1,1,1),('0012',242,12,1,1,1),('00012365',242,13,1,1,1),('1',242,1,1,1,2),('2',242,2,1,1,2),('3',242,3,1,1,2),('4',242,4,1,1,2),('5',242,5,1,1,2),('06',242,6,1,1,2),('3265984512',242,7,1,1,2),('7845123265',242,8,1,1,2),('001',260,1,1,1,1),('002',260,2,1,1,1),('003',260,3,1,1,1),('004',260,4,1,1,1),('005',260,5,1,1,1),('006',260,6,1,1,1),('007',260,7,1,1,1),('008',260,8,1,1,1),('009',260,9,1,1,1),('0010',260,10,1,1,1),('0011',260,11,1,1,1),('0012',260,12,1,1,1),('00012365',260,13,1,1,1),('001',263,1,1,1,1),('002',263,2,1,1,1),('003',263,3,1,1,1),('004',263,4,1,1,1),('005',263,5,1,1,1),('006',263,6,1,1,1),('007',263,7,1,1,1),('008',263,8,1,1,1),('009',263,9,1,1,1),('0010',263,10,1,1,1),('0011',263,11,1,1,1),('0012',263,12,1,1,1),('00012365',263,13,1,1,1),('1',263,1,1,1,2),('2',263,2,1,1,2),('3',263,3,1,1,2),('4',263,4,1,1,2),('5',263,5,1,1,2),('06',263,6,1,1,2),('3265984512',263,7,1,1,2),('7845123265',263,8,1,1,2),('6',242,1,1,1,3),('7',242,2,1,1,3),('8',242,3,1,1,3),('9',242,4,1,1,3),('10',242,5,1,1,3),('11',242,6,1,1,3),('00012365',21,13,1,1,1),('6',21,1,1,1,3),('7',21,2,1,1,3),('8',21,3,1,1,3),('9',21,4,1,1,3),('10',21,5,1,1,3),('11',21,6,1,1,3),('1',188,1,1,1,2),('2',188,2,1,1,2),('3',188,3,1,1,2),('4',188,4,1,1,2),('5',188,5,1,1,2),('06',188,6,1,1,2),('3265984512',188,7,1,1,2),('7845123265',188,8,1,1,2),('6',188,1,1,1,3),('7',188,2,1,1,3),('8',188,3,1,1,3),('9',188,4,1,1,3),('10',188,5,1,1,3),('11',188,6,1,1,3),('001',75,1,1,1,1),('002',75,2,1,1,1),('003',75,3,1,1,1),('004',75,4,1,1,1),('005',75,5,1,1,1),('006',75,6,1,1,1),('007',75,7,1,1,1),('008',75,8,1,1,1),('009',75,9,1,1,1),('0010',75,10,1,1,1),('0011',75,11,1,1,1),('0012',75,12,1,1,1),('00012365',75,13,1,1,1),('001',2,2,1,1,1),('002',2,4,1,1,1),('003',2,6,1,1,1),('004',2,8,1,1,1),('005',2,10,1,1,1),('006',2,12,1,1,1),('007',2,14,1,1,1),('008',2,16,1,1,1),('009',2,18,1,1,1),('0010',2,20,1,1,1),('0011',2,22,1,1,1),('0012',2,24,1,1,1),('00012365',2,26,1,1,1),('001',180,1,1,1,1),('002',180,2,1,1,1),('003',180,3,1,1,1),('004',180,4,1,1,1),('005',180,5,1,1,1),('006',180,6,1,1,1),('007',180,7,1,1,1),('008',180,8,1,1,1),('009',180,9,1,1,1),('0010',180,10,1,1,1),('0011',180,11,1,1,1),('0012',180,12,1,1,1),('00012365',180,13,1,1,1),('001',299,1,1,1,1),('002',299,2,1,1,1),('003',299,3,1,1,1),('004',299,4,1,1,1),('005',299,5,1,1,1),('006',299,6,1,1,1),('007',299,7,1,1,1),('008',299,8,1,1,1),('009',299,9,1,1,1),('0010',299,10,1,1,1),('0011',299,11,1,1,1),('0012',299,12,1,1,1),('00012365',299,13,1,1,1),('6',299,1,1,1,3),('7',299,2,1,1,3),('8',299,3,1,1,3),('9',299,4,1,1,3),('10',299,5,1,1,3),('11',299,6,1,1,3),('001',300,1,1,1,1),('002',300,2,1,1,1),('003',300,3,1,1,1),('004',300,4,1,1,1),('005',300,5,1,1,1),('006',300,6,1,1,1),('007',300,7,1,1,1),('008',300,8,1,1,1),('009',300,9,1,1,1),('0010',300,10,1,1,1),('0011',300,11,1,1,1),('0012',300,12,1,1,1),('00012365',300,13,1,1,1),('001',18,1,1,1,1),('002',18,2,1,1,1),('003',18,3,1,1,1),('004',18,4,1,1,1),('005',18,5,1,1,1),('006',18,6,1,1,1),('007',18,7,1,1,1),('008',18,8,1,1,1),('009',18,9,1,1,1),('0010',18,10,1,1,1),('0011',18,11,1,1,1),('0012',18,12,1,1,1),('00012365',18,13,1,1,1),('001',305,1,1,1,1),('002',305,2,1,1,1),('003',305,3,1,1,1),('004',305,4,1,1,1),('005',305,5,1,1,1),('006',305,6,1,1,1),('007',305,7,1,1,1),('008',305,8,1,1,1),('009',305,9,1,1,1),('0010',305,10,1,1,1),('0011',305,11,1,1,1),('0012',305,12,1,1,1),('00012365',305,13,1,1,1),('001',311,1,1,1,1),('002',311,2,1,1,1),('003',311,3,1,1,1),('004',311,4,1,1,1),('005',311,5,1,1,1),('006',311,6,1,1,1),('007',311,7,1,1,1),('008',311,8,1,1,1),('009',311,9,1,1,1),('0010',311,10,1,1,1),('0011',311,11,1,1,1),('0012',311,12,1,1,1),('00012365',311,13,1,1,1),('1',311,1,1,1,2),('2',311,2,1,1,2),('3',311,3,1,1,2),('4',311,4,1,1,2),('5',311,5,1,1,2),('06',311,6,1,1,2),('3265984512',311,7,1,1,2),('7845123265',311,8,1,1,2),('001',104,1,1,1,1),('002',104,2,1,1,1),('003',104,3,1,1,1),('004',104,4,1,1,1),('005',104,5,1,1,1),('006',104,6,1,1,1),('007',104,7,1,1,1),('008',104,8,1,1,1),('009',104,9,1,1,1),('0010',104,10,1,1,1),('0011',104,11,1,1,1),('0012',104,12,1,1,1),('00012365',104,13,1,1,1),('001',53,1,1,1,1),('002',53,2,1,1,1),('003',53,3,1,1,1),('004',53,4,1,1,1),('005',53,5,1,1,1),('006',53,6,1,1,1),('007',53,7,1,1,1),('008',53,8,1,1,1),('009',53,9,1,1,1),('0010',53,10,1,1,1),('0011',53,11,1,1,1),('0012',53,12,1,1,1),('00012365',53,13,1,1,1),('1',53,1,1,1,2),('2',53,2,1,1,2),('3',53,3,1,1,2),('4',53,4,1,1,2),('5',53,5,1,1,2),('06',53,6,1,1,2),('3265984512',53,7,1,1,2),('7845123265',53,8,1,1,2),('6',53,1,1,1,3),('7',53,2,1,1,3),('8',53,3,1,1,3),('9',53,4,1,1,3),('10',53,5,1,1,3),('11',53,6,1,1,3),('001',324,1,1,1,1),('002',324,2,1,1,1),('003',324,3,1,1,1),('004',324,4,1,1,1),('005',324,5,1,1,1),('006',324,6,1,1,1),('007',324,7,1,1,1),('008',324,8,1,1,1),('009',324,9,1,1,1),('0010',324,10,1,1,1),('0011',324,11,1,1,1),('0012',324,12,1,1,1),('00012365',324,13,1,1,1),('1',324,1,1,1,2),('2',324,2,1,1,2),('3',324,3,1,1,2),('4',324,4,1,1,2),('5',324,5,1,1,2),('06',324,6,1,1,2),('3265984512',324,7,1,1,2),('7845123265',324,8,1,1,2),('1',3,1,1,1,2),('2',3,2,1,1,2),('3',3,3,1,1,2),('4',3,4,1,1,2),('5',3,5,1,1,2),('6',3,1,1,1,1),('7',3,2,1,1,1),('8',3,3,1,1,1),('9',3,4,1,1,1),('10',3,5,1,1,1),('11',3,6,1,1,1),('06',3,6,1,1,2),('001',7,1,1,1,1),('002',7,2,1,1,1),('003',7,3,1,1,1),('004',7,4,1,1,1),('005',7,5,1,1,1),('006',7,6,1,1,1),('007',7,7,1,1,1),('008',7,8,1,1,1),('009',7,9,1,1,1),('0010',7,10,1,1,1),('0011',7,11,1,1,1),('0012',7,12,1,1,1),('001',3,7,1,1,1),('002',3,8,1,1,1),('003',3,9,1,1,1),('004',3,10,1,1,1),('005',3,11,1,1,1),('006',3,12,1,1,1),('007',3,13,1,1,1),('008',3,14,1,1,1),('009',3,15,1,1,1),('0010',3,16,1,1,1),('0011',3,17,1,1,1),('0012',3,18,1,1,1),('001',143,1,1,1,1),('002',143,2,1,1,1),('003',143,3,1,1,1),('004',143,4,1,1,1),('005',143,5,1,1,1),('006',143,6,1,1,1),('007',143,7,1,1,1),('008',143,8,1,1,1),('009',143,9,1,1,1),('0010',143,10,1,1,1),('0011',143,11,1,1,1),('0012',143,12,1,1,1),('1',143,1,1,1,2),('2',143,2,1,1,2),('3',143,3,1,1,2),('4',143,4,1,1,2),('5',143,5,1,1,2),('06',143,6,1,1,2),('6',143,1,1,1,3),('7',143,2,1,1,3),('8',143,3,1,1,3),('9',143,4,1,1,3),('10',143,5,1,1,3),('11',143,6,1,1,3),('001',34,1,1,1,1),('002',34,2,1,1,1),('003',34,3,1,1,1),('004',34,4,1,1,1),('005',34,5,1,1,1),('006',34,6,1,1,1),('007',34,7,1,1,1),('008',34,8,1,1,1),('009',34,9,1,1,1),('0010',34,10,1,1,1),('0011',34,11,1,1,1),('0012',34,12,1,1,1),('1',34,1,1,1,2),('2',34,2,1,1,2),('3',34,3,1,1,2),('4',34,4,1,1,2),('5',34,5,1,1,2),('06',34,6,1,1,2),('6',34,1,1,1,3),('7',34,2,1,1,3),('8',34,3,1,1,3),('9',34,4,1,1,3),('10',34,5,1,1,3),('11',34,6,1,1,3),('001',27,1,1,1,1),('002',27,2,1,1,1),('003',27,3,1,1,1),('004',27,4,1,1,1),('005',27,5,1,1,1),('006',27,6,1,1,1),('007',27,7,1,1,1),('008',27,8,1,1,1),('009',27,9,1,1,1),('0010',27,10,1,1,1),('0011',27,11,1,1,1),('0012',27,12,1,1,1),('1',27,1,1,1,2),('2',27,2,1,1,2),('3',27,3,1,1,2),('4',27,4,1,1,2),('5',27,5,1,1,2),('06',27,6,1,1,2),('001',89,2,1,1,1),('002',89,4,1,1,1),('003',89,6,1,1,1),('004',89,8,1,1,1),('005',89,10,1,1,1),('006',89,12,1,1,1),('007',89,14,1,1,1),('008',89,16,1,1,1),('009',89,18,1,1,1),('0010',89,20,1,1,1),('0011',89,22,1,1,1),('0012',89,24,1,1,1),('1',89,1,1,1,2),('2',89,2,1,1,2),('3',89,3,1,1,2),('4',89,4,1,1,2),('5',89,5,1,1,2),('06',89,6,1,1,2),('6',89,1,1,1,3),('7',89,2,1,1,3),('8',89,3,1,1,3),('9',89,4,1,1,3),('10',89,5,1,1,3),('11',89,6,1,1,3),('001',35,1,1,1,1),('002',35,2,1,1,1),('003',35,3,1,1,1),('004',35,4,1,1,1),('005',35,5,1,1,1),('006',35,6,1,1,1),('007',35,7,1,1,1),('008',35,8,1,1,1),('009',35,9,1,1,1),('0010',35,10,1,1,1),('0011',35,11,1,1,1),('0012',35,12,1,1,1),('1',35,1,1,1,2),('2',35,2,1,1,2),('3',35,3,1,1,2),('4',35,4,1,1,2),('5',35,5,1,1,2),('06',35,6,1,1,2),('6',35,1,1,1,3),('7',35,2,1,1,3),('8',35,3,1,1,3),('9',35,4,1,1,3),('10',35,5,1,1,3),('11',35,6,1,1,3),('001',54,1,1,1,1),('002',54,2,1,1,1),('003',54,3,1,1,1),('004',54,4,1,1,1),('005',54,5,1,1,1),('006',54,6,1,1,1),('007',54,7,1,1,1),('008',54,8,1,1,1),('009',54,9,1,1,1),('0010',54,10,1,1,1),('0011',54,11,1,1,1),('0012',54,12,1,1,1),('001',161,1,1,1,1),('002',161,2,1,1,1),('003',161,3,1,1,1),('004',161,4,1,1,1),('005',161,5,1,1,1),('006',161,6,1,1,1),('007',161,7,1,1,1),('008',161,8,1,1,1),('009',161,9,1,1,1),('0010',161,10,1,1,1),('0011',161,11,1,1,1),('0012',161,12,1,1,1),('1',161,1,1,1,2),('2',161,2,1,1,2),('3',161,3,1,1,2),('4',161,4,1,1,2),('5',161,5,1,1,2),('06',161,6,1,1,2),('001',150,1,1,1,1),('002',150,2,1,1,1),('003',150,3,1,1,1),('004',150,4,1,1,1),('005',150,5,1,1,1),('006',150,6,1,1,1),('007',150,7,1,1,1),('008',150,8,1,1,1),('009',150,9,1,1,1),('0010',150,10,1,1,1),('0011',150,11,1,1,1),('0012',150,12,1,1,1),('1',150,1,1,1,2),('2',150,2,1,1,2),('3',150,3,1,1,2),('4',150,4,1,1,2),('5',150,5,1,1,2),('06',150,6,1,1,2),('6',150,1,1,1,3),('7',150,2,1,1,3),('8',150,3,1,1,3),('9',150,4,1,1,3),('10',150,5,1,1,3),('11',150,6,1,1,3),('001',40,1,1,1,1),('002',40,2,1,1,1),('003',40,3,1,1,1),('004',40,4,1,1,1),('005',40,5,1,1,1),('006',40,6,1,1,1),('007',40,7,1,1,1),('008',40,8,1,1,1),('009',40,9,1,1,1),('0010',40,10,1,1,1),('0011',40,11,1,1,1),('0012',40,12,1,1,1),('001',36,1,1,1,1),('002',36,2,1,1,1),('003',36,3,1,1,1),('004',36,4,1,1,1),('005',36,5,1,1,1),('006',36,6,1,1,1),('007',36,7,1,1,1),('008',36,8,1,1,1),('009',36,9,1,1,1),('0010',36,10,1,1,1),('0011',36,11,1,1,1),('0012',36,12,1,1,1),('1',36,1,1,1,2),('2',36,2,1,1,2),('3',36,3,1,1,2),('4',36,4,1,1,2),('5',36,5,1,1,2),('06',36,6,1,1,2),('6',36,1,1,1,3),('7',36,2,1,1,3),('8',36,3,1,1,3),('9',36,4,1,1,3),('10',36,5,1,1,3),('11',36,6,1,1,3),('6',161,1,1,1,3),('7',161,2,1,1,3),('8',161,3,1,1,3),('9',161,4,1,1,3),('10',161,5,1,1,3),('11',161,6,1,1,3),('001',21,1,1,1,1),('002',21,2,1,1,1),('003',21,3,1,1,1),('004',21,4,1,1,1),('005',21,5,1,1,1),('006',21,6,1,1,1),('007',21,7,1,1,1),('008',21,8,1,1,1),('009',21,9,1,1,1),('0010',21,10,1,1,1),('0011',21,11,1,1,1),('0012',21,12,1,1,1),('001',45,1,1,1,1),('002',45,2,1,1,1),('003',45,3,1,1,1),('004',45,4,1,1,1),('005',45,5,1,1,1),('006',45,6,1,1,1),('007',45,7,1,1,1),('008',45,8,1,1,1),('009',45,9,1,1,1),('0010',45,10,1,1,1),('0011',45,11,1,1,1),('0012',45,12,1,1,1),('6',45,1,1,1,3),('7',45,2,1,1,3),('8',45,3,1,1,3),('9',45,4,1,1,3),('10',45,5,1,1,3),('11',45,6,1,1,3),('1',45,1,1,1,2),('2',45,2,1,1,2),('3',45,3,1,1,2),('4',45,4,1,1,2),('5',45,5,1,1,2),('06',45,6,1,1,2),('001',172,1,1,1,1),('002',172,2,1,1,1),('003',172,3,1,1,1),('004',172,4,1,1,1),('005',172,5,1,1,1),('006',172,6,1,1,1),('007',172,7,1,1,1),('008',172,8,1,1,1),('009',172,9,1,1,1),('0010',172,10,1,1,1),('0011',172,11,1,1,1),('0012',172,12,1,1,1),('1',172,1,1,1,2),('2',172,2,1,1,2),('3',172,3,1,1,2),('4',172,4,1,1,2),('5',172,5,1,1,2),('06',172,6,1,1,2),('001',81,1,1,1,1),('002',81,2,1,1,1),('003',81,3,1,1,1),('004',81,4,1,1,1),('005',81,5,1,1,1),('006',81,6,1,1,1),('007',81,7,1,1,1),('008',81,8,1,1,1),('009',81,9,1,1,1),('0010',81,10,1,1,1),('0011',81,11,1,1,1),('0012',81,12,1,1,1),('1',81,1,1,1,2),('2',81,2,1,1,2),('3',81,3,1,1,2),('4',81,4,1,1,2),('5',81,5,1,1,2),('06',81,6,1,1,2),('6',81,1,1,1,3),('7',81,2,1,1,3),('8',81,3,1,1,3),('9',81,4,1,1,3),('10',81,5,1,1,3),('11',81,6,1,1,3),('001',50,1,1,1,1),('002',50,2,1,1,1),('003',50,3,1,1,1),('004',50,4,1,1,1),('005',50,5,1,1,1),('006',50,6,1,1,1),('007',50,7,1,1,1),('008',50,8,1,1,1),('009',50,9,1,1,1),('0010',50,10,1,1,1),('0011',50,11,1,1,1),('0012',50,12,1,1,1),('6',50,1,1,1,3),('7',50,2,1,1,3),('8',50,3,1,1,3),('9',50,4,1,1,3),('10',50,5,1,1,3),('11',50,6,1,1,3),('1',50,1,1,1,2),('2',50,2,1,1,2),('3',50,3,1,1,2),('4',50,4,1,1,2),('5',50,5,1,1,2),('06',50,6,1,1,2),('6',172,1,1,1,3),('7',172,2,1,1,3),('8',172,3,1,1,3),('9',172,4,1,1,3),('10',172,5,1,1,3),('11',172,6,1,1,3),('001',171,1,1,1,1),('002',171,2,1,1,1),('003',171,3,1,1,1),('004',171,4,1,1,1),('005',171,5,1,1,1),('006',171,6,1,1,1),('007',171,7,1,1,1),('008',171,8,1,1,1),('009',171,9,1,1,1),('0010',171,10,1,1,1),('0011',171,11,1,1,1),('0012',171,12,1,1,1),('6',171,1,1,1,3),('7',171,2,1,1,3),('8',171,3,1,1,3),('9',171,4,1,1,3),('10',171,5,1,1,3),('11',171,6,1,1,3),('001',141,1,1,1,1),('002',141,2,1,1,1),('003',141,3,1,1,1),('004',141,4,1,1,1),('005',141,5,1,1,1),('006',141,6,1,1,1),('007',141,7,1,1,1),('008',141,8,1,1,1),('009',141,9,1,1,1),('0010',141,10,1,1,1),('0011',141,11,1,1,1),('0012',141,12,1,1,1),('00012365',141,13,1,1,1),('001',60,1,1,1,1),('002',60,2,1,1,1),('003',60,3,1,1,1),('004',60,4,1,1,1),('005',60,5,1,1,1),('006',60,6,1,1,1),('007',60,7,1,1,1),('008',60,8,1,1,1),('009',60,9,1,1,1),('0010',60,10,1,1,1),('0011',60,11,1,1,1),('0012',60,12,1,1,1),('00012365',60,13,1,1,1),('001',188,1,1,1,1),('002',188,2,1,1,1),('003',188,3,1,1,1),('004',188,4,1,1,1),('005',188,5,1,1,1),('006',188,6,1,1,1),('007',188,7,1,1,1),('008',188,8,1,1,1),('009',188,9,1,1,1),('0010',188,10,1,1,1),('0011',188,11,1,1,1),('0012',188,12,1,1,1),('00012365',188,13,1,1,1),('001',140,2,1,1,1),('002',140,4,1,1,1),('003',140,6,1,1,1),('004',140,8,1,1,1),('005',140,10,1,1,1),('006',140,12,1,1,1),('007',140,14,1,1,1),('008',140,16,1,1,1),('009',140,18,1,1,1),('0010',140,20,1,1,1),('0011',140,22,1,1,1),('0012',140,24,1,1,1),('00012365',140,26,1,1,1),('1',140,1,1,1,2),('2',140,2,1,1,2),('3',140,3,1,1,2),('4',140,4,1,1,2),('5',140,5,1,1,2),('06',140,6,1,1,2),('3265984512',140,7,1,1,2),('7845123265',140,8,1,1,2),('6',140,1,1,1,3),('7',140,2,1,1,3),('8',140,3,1,1,3),('9',140,4,1,1,3),('10',140,5,1,1,3),('11',140,6,1,1,3),('001',9,2,1,1,1),('002',9,4,1,1,1),('003',9,6,1,1,1),('004',9,8,1,1,1),('005',9,10,1,1,1),('006',9,12,1,1,1),('007',9,14,1,1,1),('008',9,16,1,1,1),('009',9,18,1,1,1),('0010',9,20,1,1,1),('0011',9,22,1,1,1),('0012',9,24,1,1,1),('00012365',9,26,1,1,1),('1',9,2,1,1,2),('2',9,4,1,1,2),('3',9,6,1,1,2),('4',9,8,1,1,2),('5',9,10,1,1,2),('06',9,12,1,1,2),('3265984512',9,14,1,1,2),('7845123265',9,16,1,1,2),('6',9,1,1,1,3),('7',9,2,1,1,3),('8',9,3,1,1,3),('9',9,4,1,1,3),('10',9,5,1,1,3),('11',9,6,1,1,3),('001',145,1,1,1,1),('002',145,2,1,1,1),('003',145,3,1,1,1),('004',145,4,1,1,1),('005',145,5,1,1,1),('006',145,6,1,1,1),('007',145,7,1,1,1),('008',145,8,1,1,1),('009',145,9,1,1,1),('0010',145,10,1,1,1),('0011',145,11,1,1,1),('0012',145,12,1,1,1),('00012365',145,13,1,1,1),('00012365',35,13,1,1,1),('3265984512',35,7,1,1,2),('7845123265',35,8,1,1,2),('001',216,1,1,1,1),('002',216,2,1,1,1),('003',216,3,1,1,1),('004',216,4,1,1,1),('005',216,5,1,1,1),('006',216,6,1,1,1),('007',216,7,1,1,1),('008',216,8,1,1,1),('009',216,9,1,1,1),('0010',216,10,1,1,1),('0011',216,11,1,1,1),('0012',216,12,1,1,1),('00012365',216,13,1,1,1),('001',225,1,1,1,1),('002',225,2,1,1,1),('003',225,3,1,1,1),('004',225,4,1,1,1),('005',225,5,1,1,1),('006',225,6,1,1,1),('007',225,7,1,1,1),('008',225,8,1,1,1),('009',225,9,1,1,1),('0010',225,10,1,1,1),('0011',225,11,1,1,1),('0012',225,12,1,1,1),('00012365',225,13,1,1,1),('1',225,1,1,1,2),('2',225,2,1,1,2),('3',225,3,1,1,2),('4',225,4,1,1,2),('5',225,5,1,1,2),('06',225,6,1,1,2),('3265984512',225,7,1,1,2),('7845123265',225,8,1,1,2),('001',43,1,1,1,1),('002',43,2,1,1,1),('003',43,3,1,1,1),('004',43,4,1,1,1),('005',43,5,1,1,1),('006',43,6,1,1,1),('007',43,7,1,1,1),('008',43,8,1,1,1),('009',43,9,1,1,1),('0010',43,10,1,1,1),('0011',43,11,1,1,1),('0012',43,12,1,1,1),('00012365',43,13,1,1,1),('00012365',50,13,1,1,1),('001',242,1,1,1,1),('002',242,2,1,1,1),('003',242,3,1,1,1),('004',242,4,1,1,1),('005',242,5,1,1,1),('006',242,6,1,1,1),('007',242,7,1,1,1),('008',242,8,1,1,1),('009',242,9,1,1,1),('0010',242,10,1,1,1),('0011',242,11,1,1,1),('0012',242,12,1,1,1),('00012365',242,13,1,1,1),('1',242,1,1,1,2),('2',242,2,1,1,2),('3',242,3,1,1,2),('4',242,4,1,1,2),('5',242,5,1,1,2),('06',242,6,1,1,2),('3265984512',242,7,1,1,2),('7845123265',242,8,1,1,2),('001',260,1,1,1,1),('002',260,2,1,1,1),('003',260,3,1,1,1),('004',260,4,1,1,1),('005',260,5,1,1,1),('006',260,6,1,1,1),('007',260,7,1,1,1),('008',260,8,1,1,1),('009',260,9,1,1,1),('0010',260,10,1,1,1),('0011',260,11,1,1,1),('0012',260,12,1,1,1),('00012365',260,13,1,1,1),('001',263,1,1,1,1),('002',263,2,1,1,1),('003',263,3,1,1,1),('004',263,4,1,1,1),('005',263,5,1,1,1),('006',263,6,1,1,1),('007',263,7,1,1,1),('008',263,8,1,1,1),('009',263,9,1,1,1),('0010',263,10,1,1,1),('0011',263,11,1,1,1),('0012',263,12,1,1,1),('00012365',263,13,1,1,1),('1',263,1,1,1,2),('2',263,2,1,1,2),('3',263,3,1,1,2),('4',263,4,1,1,2),('5',263,5,1,1,2),('06',263,6,1,1,2),('3265984512',263,7,1,1,2),('7845123265',263,8,1,1,2),('6',242,1,1,1,3),('7',242,2,1,1,3),('8',242,3,1,1,3),('9',242,4,1,1,3),('10',242,5,1,1,3),('11',242,6,1,1,3),('00012365',21,13,1,1,1),('6',21,1,1,1,3),('7',21,2,1,1,3),('8',21,3,1,1,3),('9',21,4,1,1,3),('10',21,5,1,1,3),('11',21,6,1,1,3),('1',188,1,1,1,2),('2',188,2,1,1,2),('3',188,3,1,1,2),('4',188,4,1,1,2),('5',188,5,1,1,2),('06',188,6,1,1,2),('3265984512',188,7,1,1,2),('7845123265',188,8,1,1,2),('6',188,1,1,1,3),('7',188,2,1,1,3),('8',188,3,1,1,3),('9',188,4,1,1,3),('10',188,5,1,1,3),('11',188,6,1,1,3),('001',75,1,1,1,1),('002',75,2,1,1,1),('003',75,3,1,1,1),('004',75,4,1,1,1),('005',75,5,1,1,1),('006',75,6,1,1,1),('007',75,7,1,1,1),('008',75,8,1,1,1),('009',75,9,1,1,1),('0010',75,10,1,1,1),('0011',75,11,1,1,1),('0012',75,12,1,1,1),('00012365',75,13,1,1,1),('001',2,2,1,1,1),('002',2,4,1,1,1),('003',2,6,1,1,1),('004',2,8,1,1,1),('005',2,10,1,1,1),('006',2,12,1,1,1),('007',2,14,1,1,1),('008',2,16,1,1,1),('009',2,18,1,1,1),('0010',2,20,1,1,1),('0011',2,22,1,1,1),('0012',2,24,1,1,1),('00012365',2,26,1,1,1),('001',180,1,1,1,1),('002',180,2,1,1,1),('003',180,3,1,1,1),('004',180,4,1,1,1),('005',180,5,1,1,1),('006',180,6,1,1,1),('007',180,7,1,1,1),('008',180,8,1,1,1),('009',180,9,1,1,1),('0010',180,10,1,1,1),('0011',180,11,1,1,1),('0012',180,12,1,1,1),('00012365',180,13,1,1,1),('001',299,1,1,1,1),('002',299,2,1,1,1),('003',299,3,1,1,1),('004',299,4,1,1,1),('005',299,5,1,1,1),('006',299,6,1,1,1),('007',299,7,1,1,1),('008',299,8,1,1,1),('009',299,9,1,1,1),('0010',299,10,1,1,1),('0011',299,11,1,1,1),('0012',299,12,1,1,1),('00012365',299,13,1,1,1),('6',299,1,1,1,3),('7',299,2,1,1,3),('8',299,3,1,1,3),('9',299,4,1,1,3),('10',299,5,1,1,3),('11',299,6,1,1,3),('001',300,1,1,1,1),('002',300,2,1,1,1),('003',300,3,1,1,1),('004',300,4,1,1,1),('005',300,5,1,1,1),('006',300,6,1,1,1),('007',300,7,1,1,1),('008',300,8,1,1,1),('009',300,9,1,1,1),('0010',300,10,1,1,1),('0011',300,11,1,1,1),('0012',300,12,1,1,1),('00012365',300,13,1,1,1),('001',18,1,1,1,1),('002',18,2,1,1,1),('003',18,3,1,1,1),('004',18,4,1,1,1),('005',18,5,1,1,1),('006',18,6,1,1,1),('007',18,7,1,1,1),('008',18,8,1,1,1),('009',18,9,1,1,1),('0010',18,10,1,1,1),('0011',18,11,1,1,1),('0012',18,12,1,1,1),('00012365',18,13,1,1,1),('001',305,1,1,1,1),('002',305,2,1,1,1),('003',305,3,1,1,1),('004',305,4,1,1,1),('005',305,5,1,1,1),('006',305,6,1,1,1),('007',305,7,1,1,1),('008',305,8,1,1,1),('009',305,9,1,1,1),('0010',305,10,1,1,1),('0011',305,11,1,1,1),('0012',305,12,1,1,1),('00012365',305,13,1,1,1),('001',311,1,1,1,1),('002',311,2,1,1,1),('003',311,3,1,1,1),('004',311,4,1,1,1),('005',311,5,1,1,1),('006',311,6,1,1,1),('007',311,7,1,1,1),('008',311,8,1,1,1),('009',311,9,1,1,1),('0010',311,10,1,1,1),('0011',311,11,1,1,1),('0012',311,12,1,1,1),('00012365',311,13,1,1,1),('1',311,1,1,1,2),('2',311,2,1,1,2),('3',311,3,1,1,2),('4',311,4,1,1,2),('5',311,5,1,1,2),('06',311,6,1,1,2),('3265984512',311,7,1,1,2),('7845123265',311,8,1,1,2),('001',104,1,1,1,1),('002',104,2,1,1,1),('003',104,3,1,1,1),('004',104,4,1,1,1),('005',104,5,1,1,1),('006',104,6,1,1,1),('007',104,7,1,1,1),('008',104,8,1,1,1),('009',104,9,1,1,1),('0010',104,10,1,1,1),('0011',104,11,1,1,1),('0012',104,12,1,1,1),('00012365',104,13,1,1,1),('001',53,1,1,1,1),('002',53,2,1,1,1),('003',53,3,1,1,1),('004',53,4,1,1,1),('005',53,5,1,1,1),('006',53,6,1,1,1),('007',53,7,1,1,1),('008',53,8,1,1,1),('009',53,9,1,1,1),('0010',53,10,1,1,1),('0011',53,11,1,1,1),('0012',53,12,1,1,1),('00012365',53,13,1,1,1),('1',53,1,1,1,2),('2',53,2,1,1,2),('3',53,3,1,1,2),('4',53,4,1,1,2),('5',53,5,1,1,2),('06',53,6,1,1,2),('3265984512',53,7,1,1,2),('7845123265',53,8,1,1,2),('6',53,1,1,1,3),('7',53,2,1,1,3),('8',53,3,1,1,3),('9',53,4,1,1,3),('10',53,5,1,1,3),('11',53,6,1,1,3),('001',324,1,1,1,1),('002',324,2,1,1,1),('003',324,3,1,1,1),('004',324,4,1,1,1),('005',324,5,1,1,1),('006',324,6,1,1,1),('007',324,7,1,1,1),('008',324,8,1,1,1),('009',324,9,1,1,1),('0010',324,10,1,1,1),('0011',324,11,1,1,1),('0012',324,12,1,1,1),('00012365',324,13,1,1,1),('1',324,1,1,1,2),('2',324,2,1,1,2),('3',324,3,1,1,2),('4',324,4,1,1,2),('5',324,5,1,1,2),('06',324,6,1,1,2),('3265984512',324,7,1,1,2),('7845123265',324,8,1,1,2),('001',336,1,1,1,1),('002',336,2,1,1,1),('003',336,3,1,1,1),('004',336,4,1,1,1),('005',336,5,1,1,1),('006',336,6,1,1,1),('007',336,7,1,1,1),('008',336,8,1,1,1),('009',336,9,1,1,1),('0010',336,10,1,1,1),('0011',336,11,1,1,1),('0012',336,12,1,1,1),('00012365',336,13,1,1,1),('6',336,1,1,1,3),('7',336,2,1,1,3),('8',336,3,1,1,3),('9',336,4,1,1,3),('10',336,5,1,1,3),('11',336,6,1,1,3),('1',336,1,1,1,2),('2',336,2,1,1,2),('3',336,3,1,1,2),('4',336,4,1,1,2),('5',336,5,1,1,2),('06',336,6,1,1,2),('3265984512',336,7,1,1,2),('7845123265',336,8,1,1,2),('hdjgd',140,27,1,1,1),('iidkdh',140,28,1,1,1),('dhdhd',140,29,1,1,1),('psÃ±odsl',140,30,1,1,1),('001',393,1,1,1,1),('002',393,2,1,1,1),('003',393,3,1,1,1),('004',393,4,1,1,1),('005',393,5,1,1,1),('006',393,6,1,1,1),('007',393,7,1,1,1),('008',393,8,1,1,1),('009',393,9,1,1,1),('0010',393,10,1,1,1),('0011',393,11,1,1,1),('0012',393,12,1,1,1),('00012365',393,13,1,1,1),('hdjgd',393,14,1,1,1),('iidkdh',393,15,1,1,1),('dhdhd',393,16,1,1,1),('psÃ±odsl',393,17,1,1,1),('hdjgd',9,27,1,1,1),('iidkdh',9,28,1,1,1),('dhdhd',9,29,1,1,1),('psÃ±odsl',9,30,1,1,1),('hdjgd',2,27,1,1,1),('iidkdh',2,28,1,1,1),('dhdhd',2,29,1,1,1),('psÃ±odsl',2,30,1,1,1),('0001',2,100017,1,1,1),('00011',2,100027,1,1,1),('00010',2,100026,1,1,1),('0009',2,100025,1,1,1),('0008',2,100024,1,1,1),('0007',2,100023,1,1,1),('0006',2,100022,1,1,1),('0005',2,100021,1,1,1),('0004',2,100020,1,1,1),('0003',2,100019,1,1,1),('0002',2,100018,1,1,1),('00012',2,100028,1,1,1),('000012365',2,100029,1,1,1),('1',2,1,1,1,2),('2',2,2,1,1,2),('3',2,3,1,1,2),('4',2,4,1,1,2),('5',2,5,1,1,2),('06',2,6,1,1,2),('3265984512',2,7,1,1,2),('7845123265',2,8,1,1,2),('ytolsy',2,9,1,1,2),('tejzgdsk',2,10,1,1,2),('kdjagsdp',2,11,1,1,2),('usaÃ±fdhrfd',2,12,1,1,2),('6',2,1,1,1,3),('7',2,2,1,1,3),('8',2,3,1,1,3),('9',2,4,1,1,3),('10',2,5,1,1,3),('11',2,6,1,1,3),('0001',9,100017,1,1,1),('0002',9,100018,1,1,1),('0003',9,100019,1,1,1),('0004',9,100020,1,1,1),('0005',9,100021,1,1,1),('0006',9,100022,1,1,1),('0007',9,100023,1,1,1),('0008',9,100024,1,1,1),('0009',9,100025,1,1,1),('00010',9,100026,1,1,1),('00011',9,100027,1,1,1),('00012',9,100028,1,1,1),('000012365',9,100029,1,1,1),('ytolsy',9,17,1,1,2),('tejzgdsk',9,18,1,1,2),('kdjagsdp',9,19,1,1,2),('usaÃ±fdhrfd',9,20,1,1,2),('0001',89,25,1,1,1),('0002',89,26,1,1,1),('0003',89,27,1,1,1),('0004',89,28,1,1,1),('0005',89,29,1,1,1),('0006',89,30,1,1,1),('0007',89,31,1,1,1),('0008',89,32,1,1,1),('0009',89,33,1,1,1),('00010',89,34,1,1,1),('00011',89,35,1,1,1),('00012',89,36,1,1,1),('000012365',89,37,1,1,1),('hdjgd',89,38,1,1,1),('iidkdh',89,39,1,1,1),('dhdhd',89,40,1,1,1),('psÃ±odsl',89,41,1,1,1),('0001',396,1,1,1,1),('0002',396,2,1,1,1),('0003',396,3,1,1,1),('0004',396,4,1,1,1),('0005',396,5,1,1,1),('0006',396,6,1,1,1),('0007',396,7,1,1,1),('0008',396,8,1,1,1),('0009',396,9,1,1,1),('00010',396,10,1,1,1),('00011',396,11,1,1,1),('00012',396,12,1,1,1),('000012365',396,13,1,1,1),('hdjgd',396,14,1,1,1),('iidkdh',396,15,1,1,1),('dhdhd',396,16,1,1,1),('psÃ±odsl',396,17,1,1,1),('0001',407,1,1,1,1),('0002',407,2,1,1,1),('0003',407,3,1,1,1),('0004',407,4,1,1,1),('0005',407,5,1,1,1),('0006',407,6,1,1,1),('0007',407,7,1,1,1),('0008',407,8,1,1,1),('0009',407,9,1,1,1),('00010',407,10,1,1,1),('00011',407,11,1,1,1),('00012',407,12,1,1,1),('000012365',407,13,1,1,1),('hdjgd',407,14,1,1,1),('iidkdh',407,15,1,1,1),('dhdhd',407,16,1,1,1),('psÃ±odsl',407,17,1,1,1),('0001',408,1,1,1,1),('0002',408,2,1,1,1),('0003',408,3,1,1,1),('0004',408,4,1,1,1),('0005',408,5,1,1,1),('0006',408,6,1,1,1),('0007',408,7,1,1,1),('0008',408,8,1,1,1),('0009',408,9,1,1,1),('00010',408,10,1,1,1),('00011',408,11,1,1,1),('00012',408,12,1,1,1),('000012365',408,13,1,1,1),('hdjgd',408,14,1,1,1),('iidkdh',408,15,1,1,1),('dhdhd',408,16,1,1,1),('psÃ±odsl',408,17,1,1,1),('6',408,1,1,1,3),('7',408,2,1,1,3),('8',408,3,1,1,3),('9',408,4,1,1,3),('10',408,5,1,1,3),('11',408,6,1,1,3),('1',408,1,1,1,2),('2',408,2,1,1,2),('3',408,3,1,1,2),('4',408,4,1,1,2),('5',408,5,1,1,2),('06',408,6,1,1,2),('3265984512',408,7,1,1,2),('7845123265',408,8,1,1,2),('ytolsy',408,9,1,1,2),('tejzgdsk',408,10,1,1,2),('kdjagsdp',408,11,1,1,2),('usaÃ±fdhrfd',408,12,1,1,2),('0001',405,1,1,1,1),('0002',405,2,1,1,1),('0003',405,3,1,1,1),('0004',405,4,1,1,1),('0005',405,5,1,1,1),('0006',405,6,1,1,1),('0007',405,7,1,1,1),('0008',405,8,1,1,1),('0009',405,9,1,1,1),('00010',405,10,1,1,1),('00011',405,11,1,1,1),('00012',405,12,1,1,1),('000012365',405,13,1,1,1),('hdjgd',405,14,1,1,1),('iidkdh',405,15,1,1,1),('dhdhd',405,16,1,1,1),('psÃ±odsl',405,17,1,1,1),('1',405,1,1,1,2),('2',405,2,1,1,2),('3',405,3,1,1,2),('4',405,4,1,1,2),('5',405,5,1,1,2),('06',405,6,1,1,2),('3265984512',405,7,1,1,2),('7845123265',405,8,1,1,2),('ytolsy',405,9,1,1,2),('tejzgdsk',405,10,1,1,2),('kdjagsdp',405,11,1,1,2),('usaÃ±fdhrfd',405,12,1,1,2),('6',405,1,1,1,3),('7',405,2,1,1,3),('8',405,3,1,1,3),('9',405,4,1,1,3),('10',405,5,1,1,3),('11',405,6,1,1,3),('0001',140,100017,1,1,1),('0002',140,100018,1,1,1),('0003',140,100019,1,1,1),('0004',140,100020,1,1,1),('0005',140,100021,1,1,1),('0006',140,100022,1,1,1),('0007',140,100023,1,1,1),('0008',140,100024,1,1,1),('0009',140,100025,1,1,1),('00010',140,100026,1,1,1),('00011',140,100027,1,1,1),('00012',140,100028,1,1,1),('000012365',140,100029,1,1,1),('0001',423,1,1,1,1),('0002',423,2,1,1,1),('0003',423,3,1,1,1),('0004',423,4,1,1,1),('0005',423,5,1,1,1),('0006',423,6,1,1,1),('0007',423,7,1,1,1),('0008',423,8,1,1,1),('0009',423,9,1,1,1),('00010',423,10,1,1,1),('00011',423,11,1,1,1),('00012',423,12,1,1,1),('000012365',423,13,1,1,1),('hdjgd',423,14,1,1,1),('iidkdh',423,15,1,1,1),('dhdhd',423,16,1,1,1),('psÃ±odsl',423,17,1,1,1),('1',423,1,1,1,2),('2',423,2,1,1,2),('3',423,3,1,1,2),('4',423,4,1,1,2),('5',423,5,1,1,2),('06',423,6,1,1,2),('3265984512',423,7,1,1,2),('7845123265',423,8,1,1,2),('ytolsy',423,9,1,1,2),('tejzgdsk',423,10,1,1,2),('kdjagsdp',423,11,1,1,2),('usaÃ±fdhrfd',423,12,1,1,2),('0001',433,1,1,1,1),('0002',433,2,1,1,1),('0003',433,3,1,1,1),('0004',433,4,1,1,1),('0005',433,5,1,1,1),('0006',433,6,1,1,1),('0007',433,7,1,1,1),('0008',433,8,1,1,1),('0009',433,9,1,1,1),('00010',433,10,1,1,1),('00011',433,11,1,1,1),('00012',433,12,1,1,1),('000012365',433,13,1,1,1),('hdjgd',433,14,1,1,1),('iidkdh',433,15,1,1,1),('dhdhd',433,16,1,1,1),('psÃ±odsl',433,17,1,1,1),('0001',441,1,1,1,1),('0002',441,2,1,1,1),('0003',441,3,1,1,1),('0004',441,4,1,1,1),('0005',441,5,1,1,1),('0006',441,6,1,1,1),('0007',441,7,1,1,1),('0008',441,8,1,1,1),('0009',441,9,1,1,1),('00010',441,10,1,1,1),('00011',441,11,1,1,1),('00012',441,12,1,1,1),('000012365',441,13,1,1,1),('hdjgd',441,14,1,1,1),('iidkdh',441,15,1,1,1),('dhdhd',441,16,1,1,1),('psÃ±odsl',441,17,1,1,1),('0001',51,1,1,1,1),('0002',51,2,1,1,1),('0003',51,3,1,1,1),('0004',51,4,1,1,1),('0005',51,5,1,1,1),('0006',51,6,1,1,1),('0007',51,7,1,1,1),('0008',51,8,1,1,1),('0009',51,9,1,1,1),('00010',51,10,1,1,1),('00011',51,11,1,1,1),('00012',51,12,1,1,1),('000012365',51,13,1,1,1),('hdjgd',51,14,1,1,1),('iidkdh',51,15,1,1,1),('dhdhd',51,16,1,1,1),('psÃ±odsl',51,17,1,1,1),('0001',673,1,1,1,1),('0002',673,2,1,1,1),('0003',673,3,1,1,1),('0004',673,4,1,1,1),('0005',673,5,1,1,1),('0006',673,6,1,1,1),('0007',673,7,1,1,1),('0008',673,8,1,1,1),('0009',673,9,1,1,1),('00010',673,10,1,1,1),('00011',673,11,1,1,1),('00012',673,12,1,1,1),('000012365',673,13,1,1,1),('hdjgd',673,14,1,1,1),('iidkdh',673,15,1,1,1),('dhdhd',673,16,1,1,1),('psÃ±odsl',673,17,1,1,1);
/*!40000 ALTER TABLE `oto_dlbranks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_dlbsplash_ranks`
--

DROP TABLE IF EXISTS `oto_dlbsplash_ranks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_dlbsplash_ranks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `usersite` tinyint(1) NOT NULL,
  `siteid` int(11) NOT NULL,
  `rank` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_dlbsplash_ranks`
--

LOCK TABLES `oto_dlbsplash_ranks` WRITE;
/*!40000 ALTER TABLE `oto_dlbsplash_ranks` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_dlbsplash_ranks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_dlbsplash_settings`
--

DROP TABLE IF EXISTS `oto_dlbsplash_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_dlbsplash_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(30) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_dlbsplash_settings`
--

LOCK TABLES `oto_dlbsplash_settings` WRITE;
/*!40000 ALTER TABLE `oto_dlbsplash_settings` DISABLE KEYS */;
INSERT INTO `oto_dlbsplash_settings` (`id`, `field`, `value`) VALUES (1,'enabled','0'),(2,'customlevels','');
/*!40000 ALTER TABLE `oto_dlbsplash_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_dlbsplash_sites`
--

DROP TABLE IF EXISTS `oto_dlbsplash_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_dlbsplash_sites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `programid` int(11) NOT NULL,
  `bannerurl` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `programid` (`programid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_dlbsplash_sites`
--

LOCK TABLES `oto_dlbsplash_sites` WRITE;
/*!40000 ALTER TABLE `oto_dlbsplash_sites` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_dlbsplash_sites` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_dlbsplash_usersites`
--

DROP TABLE IF EXISTS `oto_dlbsplash_usersites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_dlbsplash_usersites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `bannerurl` varchar(255) NOT NULL,
  `linkurl` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_dlbsplash_usersites`
--

LOCK TABLES `oto_dlbsplash_usersites` WRITE;
/*!40000 ALTER TABLE `oto_dlbsplash_usersites` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_dlbsplash_usersites` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_dynamic`
--

DROP TABLE IF EXISTS `oto_dynamic`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_dynamic` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `accid` int(11) NOT NULL DEFAULT 1,
  `clicks` int(11) NOT NULL DEFAULT 0,
  `boost` decimal(5,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_dynamic`
--

LOCK TABLES `oto_dynamic` WRITE;
/*!40000 ALTER TABLE `oto_dynamic` DISABLE KEYS */;
INSERT INTO `oto_dynamic` (`id`, `accid`, `clicks`, `boost`) VALUES (1,2,10,6.00),(2,2,20,7.00),(3,2,30,8.00),(4,2,40,9.00),(5,2,50,10.00),(6,3,10,11.00),(7,3,20,12.00),(8,3,30,13.00),(9,3,40,14.00),(10,3,50,15.00);
/*!40000 ALTER TABLE `oto_dynamic` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_emailmsg`
--

DROP TABLE IF EXISTS `oto_emailmsg`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_emailmsg` (
  `Id` int(11) NOT NULL AUTO_INCREMENT,
  `status` int(11) unsigned NOT NULL DEFAULT 0,
  `subject` varchar(150) NOT NULL DEFAULT 'No Subject',
  `body` text NOT NULL,
  `msgtype` int(11) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_emailmsg`
--

LOCK TABLES `oto_emailmsg` WRITE;
/*!40000 ALTER TABLE `oto_emailmsg` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_emailmsg` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_emailrcpt`
--

DROP TABLE IF EXISTS `oto_emailrcpt`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_emailrcpt` (
  `Id` int(11) NOT NULL AUTO_INCREMENT,
  `address` varchar(150) DEFAULT NULL,
  `msgid` int(11) unsigned NOT NULL DEFAULT 0,
  `status` int(11) unsigned NOT NULL DEFAULT 0,
  `result` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_emailrcpt`
--

LOCK TABLES `oto_emailrcpt` WRITE;
/*!40000 ALTER TABLE `oto_emailrcpt` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_emailrcpt` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_extra_funcs`
--

DROP TABLE IF EXISTS `oto_extra_funcs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_extra_funcs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(100) NOT NULL,
  `include_path` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_extra_funcs`
--

LOCK TABLES `oto_extra_funcs` WRITE;
/*!40000 ALTER TABLE `oto_extra_funcs` DISABLE KEYS */;
INSERT INTO `oto_extra_funcs` (`id`, `type`, `include_path`) VALUES (1,'user','oneclick_macros.php'),(2,'user','ipnmacros.php'),(3,'user','custom_macros.php'),(4,'user','macros_extended.php'),(5,'site','macros_sitestats.php'),(6,'user','macros_memberstats.php'),(7,'site','thespot_macros.php'),(9,'user','pmessage_macros.php'),(10,'user','surftarget_macros.php'),(11,'user','piggymacros.php');
/*!40000 ALTER TABLE `oto_extra_funcs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_f4checks`
--

DROP TABLE IF EXISTS `oto_f4checks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_f4checks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL DEFAULT '0000-00-00',
  `user` int(11) NOT NULL DEFAULT 0,
  `page_checked` varchar(255) NOT NULL DEFAULT '',
  `errors` text NOT NULL,
  `warnings` text NOT NULL,
  `status` varchar(255) NOT NULL DEFAULT '',
  `from` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1060 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_f4checks`
--

LOCK TABLES `oto_f4checks` WRITE;
/*!40000 ALTER TABLE `oto_f4checks` DISABLE KEYS */;
INSERT INTO `oto_f4checks` (`id`, `date`, `user`, `page_checked`, `errors`, `warnings`, `status`, `from`) VALUES (1,'2022-05-28',22,'Https://mymarketingschool.com','','','PASSED','sendmailing.php'),(2,'2022-05-28',33,'https://globalnpn.com/lds/go/1/195432/','','','PASSED','sendmailing.php'),(3,'2022-05-29',45,'https://realimreviews.com/reviews/78','','Contains IFrames','PASSED','sendmailing.php'),(4,'2022-05-30',18,'https:///trkmur.com/tce','Invalid URL','','FAILED','sendmailing.php'),(5,'2022-05-30',18,'https://trkmur.com/tce','','Site Redirects','PASSED','sendmailing.php'),(6,'2022-05-30',62,'https://funnelmates.com/f/22199/3064/','','Site Redirects','PASSED','sendmailing.php'),(7,'2022-05-31',39,'https://lllpg.com/3rz3m8d0','','Contains IFrames','PASSED','sendmailing.php'),(8,'2022-05-31',67,'https://videodeals.biz/app/Bing-Blaster','','Contains IFrames','PASSED','sendmailing.php'),(9,'2022-06-01',11,'https://www.prosperitymarketingsystem.com/go/?s=113088&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(10,'2022-06-02',9,'https://lynxtrax.com/boundlesstraffic','','Site Redirects','PASSED','sendmailing.php'),(11,'2022-06-03',39,'https://lllpg.com/3rz3m8d0','','Contains IFrames','PASSED','sendmailing.php'),(12,'2022-06-03',22,'Https://mymarketingschool.com','','','PASSED','sendmailing.php'),(13,'2022-06-06',45,'https://realimreviews.com/reviews/140','','Contains IFrames','PASSED','sendmailing.php'),(14,'2022-06-06',117,'https://evolutiondailycash.com','','Site Redirects','PASSED','sendmailing.php'),(15,'2022-06-07',91,'https://www.lincsnicks.com/','','','PASSED','sendmailing.php'),(16,'2022-06-07',22,'https://mymarketingschool.com/content.php?page=ada1s&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(17,'2022-06-08',8,'https://llpgpro.com/trfcbuildr','','Contains IFrames','PASSED','sendmailing.php'),(18,'2022-06-09',111,'https://llpgpro.com/v7dkzsw3/soloswap','','Contains IFrames','PASSED','sendmailing.php'),(19,'2022-06-10',39,'https://lllpg.com/3rz3m8d0','','Contains IFrames','PASSED','sendmailing.php'),(20,'2022-06-11',111,'https://lllpg.com/v7dkzsw3/solo','','Contains IFrames','PASSED','sendmailing.php'),(21,'2022-06-11',14,'https://www.elitelistbuilding.com/index.php?r=mrtommie&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(22,'2022-06-11',18,'https://llpgpro.com/zh0gsjf1','','Contains IFrames','PASSED','sendmailing.php'),(23,'2022-06-12',45,'https://realimreviews.com/reviews/142','','Contains IFrames','PASSED','sendmailing.php'),(24,'2022-06-13',53,'https://dtoaffiliates.com/joey-ward/','','Contains IFrames','PASSED','sendmailing.php'),(25,'2022-06-13',111,'https://llpgpro.com/35xym1ws','','Contains IFrames','PASSED','sendmailing.php'),(26,'2022-06-14',53,'https://dtoaffiliates.com/joey-ward/','','Contains IFrames','PASSED','sendmailing.php'),(27,'2022-06-14',27,'https://rebrand.ly/dzh3ltl','','Site Redirects','PASSED','sendmailing.php'),(28,'2022-06-14',111,'https://llpgpro.com/7g95k731','','Contains IFrames','PASSED','sendmailing.php'),(29,'2022-06-14',123,'https://lllpg.com/ronb2forU','','Contains IFrames','PASSED','sendmailing.php'),(30,'2022-06-15',91,'https://www.lincsnicks.com/','','','PASSED','sendmailing.php'),(31,'2022-06-15',111,'https://llpgpro.com/v7dkzsw3/soloswap','','Contains IFrames','PASSED','sendmailing.php'),(32,'2022-06-16',53,'https://warriorplus.com/o2/a/zy0brb/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(33,'2022-06-16',53,'https://unleashednow.startyourdreambusiness.club/','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(34,'2022-06-16',53,'https://unleashednow.startyourdreambusiness.club/','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(35,'2022-06-16',53,'https://dtoaffiliates.com/joey-ward/','','Contains IFrames','PASSED','sendmailing.php'),(36,'2022-06-17',18,'https://llpgpro.com/zh0gsjf1','','Contains IFrames','PASSED','sendmailing.php'),(37,'2022-06-17',45,'https://realimreviews.com/reviews/146','','Contains IFrames','PASSED','sendmailing.php'),(38,'2022-06-19',102,'https://llpgpro.com/8s0zmfgk','','Contains IFrames','PASSED','sendmailing.php'),(39,'2022-06-20',9,'https://lynxtrax.com/cardless','','Site Redirects','PASSED','sendmailing.php'),(40,'2022-06-20',18,'https://llpgpro.com/zh0gsjf1','','Contains IFrames','PASSED','sendmailing.php'),(41,'2022-06-20',60,'https://www.GetShuffler.com/squeezepage.php?fid=1499478&amp;intellisplash=9','','','PASSED','sendmailing.php'),(42,'2022-06-20',119,'https://olspsystem.com/join/551632','','','PASSED','sendmailing.php'),(43,'2022-06-20',111,'https://llpgpro.com/1wp0d5tz','','Contains IFrames','PASSED','sendmailing.php'),(44,'2022-06-21',119,'https://llclick.com/g611t3h8/?rsc=&amp;intellisplash=9','','Contains Meta Refresh','PASSED','sendmailing.php'),(45,'2022-06-22',45,'https://realimreviews.com/reviews/150','','Contains IFrames','PASSED','sendmailing.php'),(46,'2022-06-22',111,'https://llpgpro.com/26237w48','','Contains IFrames','PASSED','sendmailing.php'),(47,'2022-06-23',119,'https://llclick.com/y12185wj/esystem','','Contains Meta Refresh','PASSED','sendmailing.php'),(48,'2022-06-24',18,'https://llpgpro.com/zh0gsjf1','','Contains IFrames','PASSED','sendmailing.php'),(49,'2022-06-24',45,'https://realimreviews.com/reviews/151','','Contains IFrames','PASSED','sendmailing.php'),(50,'2022-06-24',119,'https://www.myleadgensecret.com/?rid=26633&amp;intellisplash=9','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(51,'2022-06-24',119,'https://llclick.com/d10xfj88','Has Hidden IFrame','Contains Meta Refresh','FAILED','sendmailing.php'),(52,'2022-06-24',119,'https://llclick.com/y12185wj/herkulist','','Contains Meta Refresh','PASSED','sendmailing.php'),(53,'2022-06-26',91,'https://www.lincsnicks.com/','','','PASSED','sendmailing.php'),(54,'2022-06-27',18,'https://llpgpro.com/zh0gsjf1','','Contains IFrames','PASSED','sendmailing.php'),(55,'2022-06-27',119,'https://warriorplus.com/o2/a/kxxyfx/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(56,'2022-06-27',111,'https://llpgpro.com/26237w48/solo','','Contains IFrames','PASSED','sendmailing.php'),(57,'2022-06-29',45,'https://realimreviews.com/reviews/153','','Contains IFrames','PASSED','sendmailing.php'),(58,'2022-06-29',119,'https://llclick.com/dls87thr','','Contains Meta Refresh','PASSED','sendmailing.php'),(59,'2022-06-29',27,'https://rebrand.ly/sq2iyjl','Has Hidden IFrame','Site Redirects','FAILED','sendmailing.php'),(60,'2022-06-29',27,'https://rebrand.ly/sq2iyjl','Has Hidden IFrame','Site Redirects','FAILED','sendmailing.php'),(61,'2022-06-29',27,'https://rebrand.ly/sq2iyjl','Has Hidden IFrame','Site Redirects','FAILED','sendmailing.php'),(62,'2022-06-29',27,'https://rebrand.ly/sq2iyjl','Has Hidden IFrame','Site Redirects','FAILED','sendmailing.php'),(63,'2022-07-01',119,'https://llclick.com/18w0910f','','Contains Meta Refresh','PASSED','sendmailing.php'),(64,'2022-07-02',18,'https://llpgpro.com/rg8n2wg5','','Contains IFrames','PASSED','sendmailing.php'),(65,'2022-07-02',53,'https://dtoaffiliates.com/joey-ward/','','Contains IFrames','PASSED','sendmailing.php'),(66,'2022-07-03',139,'https://olspsystem.com/join/5769','','','PASSED','sendmailing.php'),(67,'2022-07-03',119,'https://albentrepreneur.com','','','PASSED','sendmailing.php'),(68,'2022-07-04',123,'https://lllpg.com/rbHealthyNuLiving','','Contains IFrames','PASSED','sendmailing.php'),(69,'2022-07-04',47,'https://mrrichardt.gumroad.com/l/yajri','','','PASSED','sendmailing.php'),(70,'2022-07-06',18,'https://llpgpro.com/rg8n2wg5/','','Contains IFrames','PASSED','sendmailing.php'),(71,'2022-07-06',27,'https://rebrand.ly/60sw76a','','Site Redirects','PASSED','sendmailing.php'),(72,'2022-07-06',111,'https://llpgpro.com/1myr4plz/soloswap','','Contains IFrames','PASSED','sendmailing.php'),(73,'2022-07-07',119,'https://llclick.com/y12185wj','','Contains Meta Refresh','PASSED','sendmailing.php'),(74,'2022-07-07',111,'https://llpgpro.com/1myr4plz/soloswap','','Contains IFrames','PASSED','sendmailing.php'),(75,'2022-07-11',18,'https://llpgpro.com/rg8n2wg5/','','Contains IFrames','PASSED','sendmailing.php'),(76,'2022-07-12',123,'https://lllpg.com/go-TextALN','','Contains IFrames','PASSED','sendmailing.php'),(77,'2022-07-13',27,'https://rebrand.ly/60sw76a','','Site Redirects','PASSED','sendmailing.php'),(78,'2022-07-14',119,'https://llclick.com/y12185wj','','Contains Meta Refresh','PASSED','sendmailing.php'),(79,'2022-07-16',18,'https://paykstrt.com/9429/49716','','Site Redirects','PASSED','sendmailing.php'),(80,'2022-07-16',34,'https://www.trker.com/go/164082','','Site Redirects','PASSED','sendmailing.php'),(81,'2022-07-18',34,'https://www.trker.com/go/164082','','Site Redirects','PASSED','sendmailing.php'),(82,'2022-07-20',119,'https://llclick.com/g611t3h8/','','Contains Meta Refresh','PASSED','sendmailing.php'),(83,'2022-07-20',34,'https://www.trker.com/go/164244','','Site Redirects','PASSED','sendmailing.php'),(84,'2022-07-21',117,'https://cracking-the-code.clickfunnels.com/social-tips','','Site Redirects','PASSED','sendmailing.php'),(85,'2022-07-22',141,'https://www.GrowAHomeBusiness.com/?rd=tv4dnRO4&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(86,'2022-07-22',119,'https://llclick.com/y12185wj','','Contains Meta Refresh','PASSED','sendmailing.php'),(87,'2022-07-25',141,'https://www.GrowAHomeBusiness.com/?rd=tv4dnRO4&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(88,'2022-07-27',158,'https://bit.ly/3Bh64xo','','Site Redirects','PASSED','sendmailing.php'),(89,'2022-07-28',60,'https://www.GetShuffler.com/squeezepage.php?fid=1499478&amp;intellisplash=9','','','PASSED','sendmailing.php'),(90,'2022-07-28',18,'https://paykstrt.com/9429/49716','','Site Redirects','PASSED','sendmailing.php'),(91,'2022-07-30',35,'https://paykstrt.com/39654/62038','','Site Redirects','PASSED','sendmailing.php'),(92,'2022-07-30',123,'https://lllpg.com/rbVirtualCashflowSystem','','Contains IFrames','PASSED','sendmailing.php'),(93,'2022-07-31',141,'https://www.GrowAHomeBusiness.com/?rd=tv4dnRO4&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(94,'2022-07-31',73,'https://www.GrowAHomeBusiness.com/?rd=vj8E1P2s&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(95,'2022-07-31',18,'https://paykstrt.com/9429/49716','','Site Redirects','PASSED','sendmailing.php'),(96,'2022-08-01',161,'https://tdpages.com/63934/page136420','','','PASSED','sendmailing.php'),(97,'2022-08-02',18,'https://llpgpro.com/md0h69j9','','Contains IFrames','PASSED','sendmailing.php'),(98,'2022-08-03',91,'https://www.pluginprofitsite.com/main-47528','','Contains Meta Refresh','PASSED','checktracker.php'),(99,'2022-08-03',91,'https://soloswaps.com/t/mypips','','Site Redirects','PASSED','checktracker.php'),(100,'2022-08-03',91,'https://www.pluginprofitsite.com/main-47528','','Contains Meta Refresh','PASSED','checktracker.php'),(101,'2022-08-03',91,'https://www.lincsnicks.com/','','','PASSED','checktracker.php'),(102,'2022-08-04',119,'https://llclick.com/y12185wj/herkulist','','Contains Meta Refresh','PASSED','sendmailing.php'),(103,'2022-08-04',18,'https://llpgpro.com/rg8n2wg5/','','Contains IFrames','PASSED','sendmailing.php'),(104,'2022-08-05',161,'https://tdpages.com/63934/page136420','','','PASSED','sendmailing.php'),(105,'2022-08-05',162,'https://www.millionairewith5.com/?scoie372&amp;intellisplash=9','','','PASSED','sendmailing.php'),(106,'2022-08-07',18,'https://llpgpro.com/md0h69j9','','Contains IFrames','PASSED','sendmailing.php'),(107,'2022-08-09',18,'https://llpgpro.com/md0h69j9','','Contains IFrames','PASSED','sendmailing.php'),(108,'2022-08-10',8,'https://llpgpro.com/14daylistbuilding/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(109,'2022-08-10',176,'https://www.safelist8.com/2022/05/10-signups-and-2-upgrades-from-55-views.html','','Contains IFrames','PASSED','sendmailing.php'),(110,'2022-08-12',91,'https://warriorplus.com/o2/a/w9xr1y/0','','Contains Meta Refresh','PASSED','checktracker.php'),(111,'2022-08-12',91,'https://www.rapidprofitmachine.com/cp2?id=LincsRPM&amp;t=','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(112,'2022-08-12',91,'https://www.rapidprofitmachine.com/cp2?id=LincsRPM&amp;t=','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(113,'2022-08-12',91,'https://instantlist.club/r/lincsnicksrotat','','Contains Frames','PASSED','checktracker.php'),(114,'2022-08-12',141,'https://www.GrowAHomeBusiness.com/?rd=tv4dnRO4&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(115,'2022-08-13',50,'https://t-adbar.com/_kuja','','Site Redirects','PASSED','sendmailing.php'),(116,'2022-08-14',119,'https://lllpg.com/59810mr7','','Contains IFrames','PASSED','sendmailing.php'),(117,'2022-08-14',91,'https://www.trafficswarm.com/go.cgi?1612774','','Site Redirects','PASSED','checktracker.php'),(118,'2022-08-14',51,'https://wewillshowyou.info/UKgzN','','Site Redirects','PASSED','sendmailing.php'),(119,'2022-08-14',53,'https://ipsbonuses.joeyward.com/','','Contains IFrames','PASSED','sendmailing.php'),(120,'2022-08-15',179,'https://clickmarketer.com/splashpages/summertraffic.html','','','PASSED','sendmailing.php'),(121,'2022-08-15',176,'https://www.safelist8.com/2022/08/9-signups-and-2-upgrades-from-65-views.html','','Contains IFrames','PASSED','sendmailing.php'),(122,'2022-08-15',119,'https://lllpg.com/59810mr7/src&amp;=elb','','Contains IFrames','PASSED','sendmailing.php'),(123,'2022-08-16',91,'https://warriorplus.com/o2/a/w9xr1y/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(124,'2022-08-16',91,'https://www.lincsnicks.com/','','','PASSED','sendmailing.php'),(125,'2022-08-18',18,'https://llpgpro.com/md0h69j9','','Contains IFrames','PASSED','sendmailing.php'),(126,'2022-08-19',141,'https://www.GrowAHomeBusiness.com/?rd=bo3lITlO&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(127,'2022-08-19',81,'https://llpgpro.com/3HCMachin2/soloswps-m','','Contains IFrames','PASSED','sendmailing.php'),(128,'2022-08-21',119,'https://llclick.com/y12185wj','','Contains Meta Refresh','PASSED','sendmailing.php'),(129,'2022-08-21',17,'https://llpgpro.com/19sctv9g/','','Contains IFrames','PASSED','sendmailing.php'),(130,'2022-08-22',91,'https://warriorplus.com/o2/a/w9xr1y/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(131,'2022-08-22',91,'https://www.rapidprofitmachine.com/cp2?id=LincsRPM&amp;t=&amp;intellisplash=9','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(132,'2022-08-22',91,'https://www.rapidprofitmachine.com/solo-ads-page/?id=LincsRPM&amp;intellisplash=9','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(133,'2022-08-22',91,'https://warriorplus.com/o2/a/w9xr1y/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(134,'2022-08-22',91,'https://warriorplus.com/o2/a/w9xr1y/0','','Contains Meta Refresh','PASSED','checktracker.php'),(135,'2022-08-22',91,'https://www.wealthyaffiliate.com?a_aid=48724bc1','','Site Redirects','PASSED','checktracker.php'),(136,'2022-08-22',91,'https://www.wealthyaffiliate.com?a_aid=48724bc1','','Site Redirects','PASSED','checktracker.php'),(137,'2022-08-22',91,'https://www.wealthyaffiliate.net/wealthy-affiliate-affiliate-program/','','','PASSED','checktracker.php'),(138,'2022-08-22',91,'https://r1.trafficauthority.net/lincstauth','','Contains IFrames','PASSED','checktracker.php'),(139,'2022-08-22',91,'https://warriorplus.com/o2/a/bzfq8r/0','','Contains Meta Refresh','PASSED','checktracker.php'),(140,'2022-08-22',91,'https://www.myleadgensecret.com/sizzle/?rid=31648','','Contains IFrames','PASSED','checktracker.php'),(141,'2022-08-22',91,'https://lltrco.com/?r=lincsllp','','Contains Meta Refresh','PASSED','checktracker.php'),(142,'2022-08-23',141,'https://borrowourlist.com/t/5d','','Site Redirects','PASSED','sendmailing.php'),(143,'2022-08-23',177,'https://www.prosperitymarketingsystem.com/go/?s=192487&amp;tag=mailings&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(144,'2022-08-24',18,'https://llpgpro.com/md0h69j9','','Contains IFrames','PASSED','sendmailing.php'),(145,'2022-08-24',53,'https://ipsbonuses.joeyward.com/','','Contains IFrames','PASSED','sendmailing.php'),(146,'2022-08-25',91,'https://www.rapidprofitmachine.com/solo-ads-page/?id=LincsRPM&amp;intellisplash=9','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(147,'2022-08-25',91,'https://warriorplus.com/o2/a/w9xr1y/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(148,'2022-08-29',119,'https://llclick.com/r/ftv809fy','','Contains Meta Refresh','PASSED','sendmailing.php'),(149,'2022-08-30',141,'https://borrowourlist.com/t/5d','','Site Redirects','PASSED','sendmailing.php'),(150,'2022-08-30',18,'https://lllpg.com/z0d09zrm','','Contains IFrames','PASSED','sendmailing.php'),(151,'2022-08-30',91,'https://www.rapidprofitmachine.com/solo-ads-page/?id=LincsRPM&amp;intellisplash=9','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(152,'2022-08-30',91,'https://www.rapidprofitmachine.com/cp2?id=LincsRPM&amp;t=&amp;intellisplash=9','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(153,'2022-08-30',91,'https://warriorplus.com/o2/a/w9xr1y/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(154,'2022-09-02',141,'https://borrowourlist.com/t/5d','','Site Redirects','PASSED','sendmailing.php'),(155,'2022-09-02',181,'https://warriorplus.com/o2/a/x45hnx/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(156,'2022-09-03',91,'https://www.rapidprofitmachine.com/solo-ads-page/?id=LincsRPM&amp;intellisplash=9','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(157,'2022-09-03',91,'https://warriorplus.com/o2/a/w9xr1y/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(158,'2022-09-05',18,'https://clicktrakr.biz/1vvvYFdbAs','','','PASSED','sendmailing.php'),(159,'2022-09-05',176,'https://www.safelist8.com/2022/07/10-signups-and-2-upgrades-from-45-views.html','','Contains IFrames','PASSED','sendmailing.php'),(160,'2022-09-06',18,'https://clicktrakr.biz/1vvvYFdbAs','','','PASSED','sendmailing.php'),(161,'2022-09-08',14,'https://www.passiveincomevip.com/optin?fpr=tommie85&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(162,'2022-09-08',165,'https://bit.ly/3wA0283','','Site Redirects','PASSED','checktracker.php'),(163,'2022-09-08',165,'https://bit.ly/3wA0283','','Site Redirects','PASSED','checktracker.php'),(164,'2022-09-08',165,'https://bit.ly/3wA0283','','Site Redirects','PASSED','checktracker.php'),(165,'2022-09-08',165,'https://bit.ly/3wA0283','','Site Redirects','PASSED','checktracker.php'),(166,'2022-09-08',165,'https://bit.ly/3wA0283','','Site Redirects','PASSED','checktracker.php'),(167,'2022-09-08',165,'https://bit.ly/3wA0283','','Site Redirects','PASSED','checktracker.php'),(168,'2022-09-08',165,'https://bit.ly/3wA0283','','Site Redirects','PASSED','checktracker.php'),(169,'2022-09-08',165,'https://bit.ly/3wA0283','','Site Redirects','PASSED','checktracker.php'),(170,'2022-09-08',165,'https://bit.ly/3wA0283','','Site Redirects','PASSED','checktracker.php'),(171,'2022-09-08',165,'https://bit.ly/3wA0283','','Site Redirects','PASSED','checktracker.php'),(172,'2022-09-09',53,'https://dtoaffiliates.com/joey-ward/','','Contains IFrames','PASSED','sendmailing.php'),(173,'2022-09-10',91,'https://www.rapidprofitmachine.com/solo-ads-page/?id=LincsRPM&amp;intellisplash=9','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(174,'2022-09-10',91,'https://www.rapidprofitmachine.com/solo-ads-page/?id=LincsRPM&amp;intellisplash=9','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(175,'2022-09-10',91,'https://www.rapidprofitmachine.com/cp2?id=LincsRPM&amp;t=&amp;intellisplash=9','Has Hidden IFrame','Contains IFrames','FAILED','sendmailing.php'),(176,'2022-09-10',91,'https://warriorplus.com/o2/a/w9xr1y/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(177,'2022-09-10',91,'https://warriorplus.com/o2/a/w9xr1y/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(178,'2022-09-14',91,'https://www.rapidprofitmachine.com/im-101-vsl/?id=LincsRPM&amp;intellisplash=9','','Contains Meta Refresh','PASSED','sendmailing.php'),(179,'2022-09-15',18,'https://clicktrakr.biz/1vvvYFdbAs','','','PASSED','sendmailing.php'),(180,'2022-09-15',170,'https://paykstrt.com/14735/122484','','Site Redirects','PASSED','sendmailing.php'),(181,'2022-09-16',176,'https://www.safelist8.com/2022/05/10-signups-and-2-upgrades-from-55-views.html','','Contains IFrames','PASSED','sendmailing.php'),(182,'2022-09-18',78,'https://clicktrakr.biz/GrowListwithLaToya','','','PASSED','sendmailing.php'),(183,'2022-09-18',78,'https://clicktrakr.biz/GrowListwithLaToya','','','PASSED','sendmailing.php'),(184,'2022-09-23',119,'https://llclick.com/y12185wj','','Contains Meta Refresh','PASSED','sendmailing.php'),(185,'2022-09-23',180,'https://llclick.com/y12185wj/','','Contains Meta Refresh','PASSED','sendmailing.php'),(186,'2022-09-23',111,'https://llpgpro.com/7wf7zrkp/soloswap','','Contains IFrames','PASSED','sendmailing.php'),(187,'2022-09-23',91,'https://www.lincsnicks.com/','','','PASSED','sendmailing.php'),(188,'2022-09-24',78,'https://clicktrakr.biz/GrowListwithLaToya','','','PASSED','sendmailing.php'),(189,'2022-09-26',39,'https://lllpg.com/1d6675lp','','Contains IFrames','PASSED','sendmailing.php'),(190,'2022-09-26',140,'https://www.bjsetc.com/?rd=pb1HUcoo&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(191,'2022-09-26',140,'https://www.bjsetc.com/?rd=vw76bUJi','Has Hidden IFrame','Site Redirects','FAILED','checktracker.php'),(192,'2022-09-26',140,'https://www.bjsetc.com/?rd=vw76bUJi','Has Hidden IFrame','Site Redirects','FAILED','checktracker.php'),(193,'2022-09-26',140,'https://www.bjsetc.com/?rd=vw76bUJi','Has Hidden IFrame','Site Redirects','FAILED','checktracker.php'),(194,'2022-09-27',194,'https://llclickpro.com/h3dbrrxm/','','Contains Meta Refresh','PASSED','sendmailing.php'),(195,'2022-09-28',111,'https://llpgpro.com/7wf7zrkp/soloswap','','Contains IFrames','PASSED','sendmailing.php'),(196,'2022-09-29',27,'https://rebrand.ly/i754k7f','','Site Redirects','PASSED','sendmailing.php'),(197,'2022-10-09',18,'https://clicktrakr.biz/mlgs','','','PASSED','sendmailing.php'),(198,'2022-10-10',91,'https://www.lincsnicks.com/','','','PASSED','sendmailing.php'),(199,'2022-10-12',197,'https://c7ab8dqm6g1u2gwdrby8z4sasl.hop.clickbank.net','','Site Redirects','PASSED','sendmailing.php'),(200,'2022-10-13',18,'https://clicktrakr.biz/mlgs','','','PASSED','sendmailing.php'),(201,'2022-10-15',81,'https://llpgpro.com/3HCMachin2/soloswps-m','','Contains IFrames','PASSED','sendmailing.php'),(202,'2022-10-17',174,'https://www.showmethemoneytoday.com/pos2','','','PASSED','sendmailing.php'),(203,'2022-10-18',200,'https://www.trker.com/go/168392','','Site Redirects','PASSED','sendmailing.php'),(204,'2022-10-20',201,'https://domain.ryukyu/seo-marketing','Has Hidden IFrame','Site Redirects','FAILED','sendmailing.php'),(205,'2022-10-20',201,'https://domain.ryukyu/seo-marketing','Has Hidden IFrame','Site Redirects','FAILED','sendmailing.php'),(206,'2022-10-20',201,'https://acortar.link/VCHa80','Has Hidden IFrame','Site Redirects','FAILED','sendmailing.php'),(207,'2022-10-27',180,'https://llclick.com/7c66m6f5/','Too Large - Over 200000 Characters Of Text','Contains Meta Refresh','FAILED','sendmailing.php'),(208,'2022-10-28',176,'https://www.safelist8.com/2022/07/10-signups-and-2-upgrades-from-45-views.html','','Contains IFrames','PASSED','sendmailing.php'),(209,'2022-10-28',91,'https://www.lincsnicks.com/','','','PASSED','sendmailing.php'),(210,'2022-10-28',174,'https://llclickpro.com/zycrttk7/SS','','Contains Meta Refresh','PASSED','sendmailing.php'),(211,'2022-10-31',18,'https://clicktrakr.biz/mlgs','','','PASSED','sendmailing.php'),(212,'2022-11-03',91,'https://www.lincsnicks.com/','','','PASSED','sendmailing.php'),(213,'2022-11-06',203,'https://llpgpro.com/rbz8j9fy/','','Contains IFrames','PASSED','sendmailing.php'),(214,'2022-11-09',19,'https://trafficmanager.site/level4','','Site Redirects','PASSED','sendmailing.php'),(215,'2022-11-15',19,'https://trafficmanager.site/free-solo','','Site Redirects','PASSED','sendmailing.php'),(216,'2022-11-18',19,'https://trafficmanager.site/free-solo','','Site Redirects','PASSED','sendmailing.php'),(217,'2022-11-18',89,'https://viralinbox.com/michaelcamire','','Site Redirects','PASSED','sendmailing.php'),(218,'2022-11-18',39,'https://www.mycapturepage.com/cp68.php?user=km0721&amp;intellisplash=9','','','PASSED','sendmailing.php'),(219,'2022-11-19',205,'https://llpgpro.com/wr5vsf4n/','','Contains IFrames','PASSED','sendmailing.php'),(220,'2022-11-19',81,'https://llpgpro.com/3HCMachin2/soloswps-m','','Contains IFrames','PASSED','sendmailing.php'),(221,'2022-11-19',50,'https://llclick.com/mjdz3b57/','','Contains Meta Refresh','PASSED','sendmailing.php'),(222,'2022-11-20',204,'https://www.prosperitymarketingsystem.com/go/index.php?s=211760&amp;pageid=NTQ3Ng==&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(223,'2022-11-21',18,'https://clicktrakr.biz/mlgs','','','PASSED','sendmailing.php'),(224,'2022-11-24',19,'https://trafficmanager.site/gift-solos','','Site Redirects','PASSED','sendmailing.php'),(225,'2022-11-24',81,'https://llpgpro.com/3HCMachin2/soloswps-m','','Contains IFrames','PASSED','sendmailing.php'),(226,'2022-11-26',179,'https://easyleadgenerator.com/click/?elgindex/&amp;intellisplash=9','','Contains Frames','PASSED','sendmailing.php'),(227,'2022-11-28',206,'https://www.secondsplash.com/?u=1059&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(228,'2022-11-28',208,'https://llpgpro.com/freemoneysystem2','','Contains IFrames','PASSED','sendmailing.php'),(229,'2022-11-29',18,'https://olspsystem.com/join/242344','','','PASSED','sendmailing.php'),(230,'2022-11-30',211,'https://listinfinity.net/emmaterbs/8','','Site Redirects','PASSED','sendmailing.php'),(231,'2022-11-30',81,'https://llpgpro.com/3HCMachin2/soloswps-m','','Contains IFrames','PASSED','sendmailing.php'),(232,'2022-11-30',91,'https://www.easycash4ads.com/lincsec4a','','Contains IFrames','PASSED','sendmailing.php'),(233,'2022-12-03',212,'https://warriorplus.com/o2/a/bnhnch/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(234,'2022-12-03',213,'https://createsplashpages.com/splash.php?id=5926&amp;intellisplash=9','','','PASSED','sendmailing.php'),(235,'2022-12-03',38,'https://llclickpro.com/64j78tyb/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(236,'2022-12-04',176,'https://www.safelist8.com/2022/02/12-signups-and-3-upgrades-from-88-views.html','','Contains IFrames','PASSED','sendmailing.php'),(237,'2022-12-04',39,'https://llpgpro.com/knwx8dxc','','Contains IFrames','PASSED','sendmailing.php'),(238,'2022-12-09',17,'https://llclickpro.com/freeadvert/','','Contains Meta Refresh','PASSED','sendmailing.php'),(239,'2022-12-10',39,'https://llpgpro.com/knwx8dxc','','Contains IFrames','PASSED','sendmailing.php'),(240,'2022-12-10',180,'https://llclickpro.com/EduartTroci/','','Site Redirects','PASSED','sendmailing.php'),(241,'2022-12-10',78,'https://clicktrakr.biz/ManifestEveryVisionwithLaToya','','','PASSED','sendmailing.php'),(242,'2022-12-12',119,'https://llclick.com/g611t3h8/?rsc=&amp;intellisplash=9','','Contains Meta Refresh','PASSED','sendmailing.php'),(243,'2022-12-15',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(244,'2022-12-16',119,'https://llclick.com/g611t3h8/?rsc=&amp;intellisplash=9','','Contains Meta Refresh','PASSED','sendmailing.php'),(245,'2022-12-16',180,'https://llclickpro.com/EduartTroci/','','Site Redirects','PASSED','sendmailing.php'),(246,'2022-12-16',78,'https://clicktrakr.biz/GrowLeadswithLaToya','','','PASSED','sendmailing.php'),(247,'2022-12-18',221,'https://zoransimovic.aweb.page/leads-gorilla-20','','Contains IFrames','PASSED','sendmailing.php'),(248,'2022-12-18',91,'https://vurl.bz/s/LincsAMBASSQ','','Site Redirects','PASSED','sendmailing.php'),(249,'2022-12-18',151,'https://lllpg.com/jwv67cpn/solo','','Contains IFrames','PASSED','sendmailing.php'),(250,'2022-12-19',180,'https://llclickpro.com/EduartTroci/','','Site Redirects','PASSED','sendmailing.php'),(251,'2022-12-20',222,'https://soloswaps.com/splashpage.php?splashid=7&amp;rid=222','','','PASSED','checktracker.php'),(252,'2022-12-20',222,'https://aacemart.storedeal.online','','','PASSED','checktracker.php'),(253,'2022-12-20',222,'https://trafficbuildr.com/?rid=6043','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(254,'2022-12-20',222,'https://trafficbuildr.com/?rid=6043','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(255,'2022-12-23',39,'https://llpgpro.com/8k3d3813','','Contains IFrames','PASSED','sendmailing.php'),(256,'2022-12-23',151,'https://lllpg.com/xsdzpwdk/','','Contains IFrames','PASSED','sendmailing.php'),(257,'2022-12-24',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(258,'2022-12-25',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(259,'2022-12-25',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(260,'2022-12-25',51,'https://wewillshowyou.info/UKvah','','Site Redirects','PASSED','sendmailing.php'),(261,'2022-12-25',35,'https://beyondinfinity.club/?u=devildog10&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(262,'2022-12-26',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(263,'2022-12-26',18,'https://llpgpro.com/5ydsn8kn/','','Contains IFrames','PASSED','sendmailing.php'),(264,'2022-12-26',213,'https://adcardz.com/adz/moneytraffic/50325','','Site Redirects','PASSED','sendmailing.php'),(265,'2022-12-26',9,'https://lynxtrax.com/cardless','','Site Redirects','PASSED','sendmailing.php'),(266,'2022-12-27',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(267,'2022-12-27',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(268,'2022-12-28',18,'https://llpgpro.com/5ydsn8kn/','','Contains IFrames','PASSED','sendmailing.php'),(269,'2022-12-28',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(270,'2022-12-28',180,'https://lllpg.com/804d2s3t','','Contains IFrames','PASSED','sendmailing.php'),(271,'2022-12-28',119,'https://lllpg.com/804d2s3t','','Contains IFrames','PASSED','sendmailing.php'),(272,'2022-12-29',39,'https://llpgpro.com/8k3d3813','','Contains IFrames','PASSED','sendmailing.php'),(273,'2022-12-29',2,'https://google.com','','Site Redirects','PASSED','sendmailing.php'),(274,'2022-12-29',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(275,'2022-12-29',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(276,'2022-12-30',176,'https://www.safelist8.com/2022/02/12-signups-and-3-upgrades-from-88-views.html','','Contains IFrames','PASSED','sendmailing.php'),(277,'2022-12-30',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(278,'2023-01-01',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(279,'2023-01-01',39,'https://llpgpro.com/8k3d3813','','Contains IFrames','PASSED','sendmailing.php'),(280,'2023-01-02',53,'https://clicktrakr.biz/passiveincome','','','PASSED','sendmailing.php'),(281,'2023-01-03',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(282,'2023-01-03',18,'https://llpgpro.com/5ydsn8kn/','','Contains IFrames','PASSED','sendmailing.php'),(283,'2023-01-04',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(284,'2023-01-04',228,'https://lllpg.com/9hdpsk4x/','','Contains IFrames','PASSED','sendmailing.php'),(285,'2023-01-05',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(286,'2023-01-05',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(287,'2023-01-05',18,'https://clicktrakr.biz/mlgs','','','PASSED','sendmailing.php'),(288,'2023-01-05',39,'https://llpgpro.com/8k3d3813','','Contains IFrames','PASSED','sendmailing.php'),(289,'2023-01-07',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(290,'2023-01-07',227,'https://www.karendahlinmarketing.com/z230','','Site Redirects','PASSED','sendmailing.php'),(291,'2023-01-07',180,'https://lllpg.com/804d2s3t','','Contains IFrames','PASSED','sendmailing.php'),(292,'2023-01-08',81,'https://llpgpro.com/3HCMachin2/soloswps-m','','Contains IFrames','PASSED','sendmailing.php'),(293,'2023-01-08',51,'https://wewillshowyou.info/UKx6c','','Site Redirects','PASSED','sendmailing.php'),(294,'2023-01-08',22,'https://robocashmachine.com/i/jeffdionne','','','PASSED','sendmailing.php'),(295,'2023-01-08',119,'https://lllpg.com/804d2s3t','','Contains IFrames','PASSED','sendmailing.php'),(296,'2023-01-09',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(297,'2023-01-10',17,'https://llclickpro.com/bigtraffic/safe','','Contains Meta Refresh','PASSED','sendmailing.php'),(298,'2023-01-10',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(299,'2023-01-10',231,'https://adcardz.com/adz/moneytraffic/50402','','Site Redirects','PASSED','sendmailing.php'),(300,'2023-01-10',111,'https://llpgpro.com/jmg7vhsv/','','Contains IFrames','PASSED','sendmailing.php'),(301,'2023-01-10',233,'https://3n1ads.com/a03','','Site Redirects','PASSED','sendmailing.php'),(302,'2023-01-11',39,'https://llpgpro.com/8k3d3813','','Contains IFrames','PASSED','sendmailing.php'),(303,'2023-01-11',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(304,'2023-01-11',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(305,'2023-01-13',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(306,'2023-01-13',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(307,'2023-01-15',151,'https://lllpg.com/jwv67cpn/solo','','Contains IFrames','PASSED','sendmailing.php'),(308,'2023-01-16',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(309,'2023-01-16',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(310,'2023-01-16',39,'https://llpgpro.com/8k3d3813','','Contains IFrames','PASSED','sendmailing.php'),(311,'2023-01-16',233,'https://3n1ads.com/a33','','Site Redirects','PASSED','sendmailing.php'),(312,'2023-01-17',57,'https://www.SafelistMastery.com/home.asp?rid=225&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(313,'2023-01-17',221,'https://zoransimovic.aweb.page/content-reel','','Contains IFrames','PASSED','sendmailing.php'),(314,'2023-01-18',17,'https://www.trker.com/go/172397','Has Hidden IFrame','Site Redirects','FAILED','sendmailing.php'),(315,'2023-01-19',111,'https://llpgpro.com/jmg7vhsv/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(316,'2023-01-20',57,'https://www.sidehustletraffic.com/home.asp?rid=90&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(317,'2023-01-20',40,'https://1000buyerclicks.com/r/myprograms','','Contains Frames','PASSED','checktracker.php'),(318,'2023-01-20',40,'https://paykstrt.com/23459/47519','','Site Redirects','PASSED','checktracker.php'),(319,'2023-01-20',40,'https://paykstrt.com/23457/47519','','Site Redirects','PASSED','checktracker.php'),(320,'2023-01-20',40,'https://paykstrt.com/23449/47519','','Site Redirects','PASSED','checktracker.php'),(321,'2023-01-20',40,'https://paykstrt.com/24051/47519','','Site Redirects','PASSED','checktracker.php'),(322,'2023-01-20',40,'https://paykstrt.com/24050/47519','','Site Redirects','PASSED','checktracker.php'),(323,'2023-01-20',40,'https://paykstrt.com/26083/47519','','Site Redirects','PASSED','checktracker.php'),(324,'2023-01-20',40,'https://paykstrt.com/26083/47519','','Site Redirects','PASSED','checktracker.php'),(325,'2023-01-20',40,'https://paykstrt.com/39762/47519','','Site Redirects','PASSED','checktracker.php'),(326,'2023-01-20',40,'https://paykstrt.com/42248/47519','','Site Redirects','PASSED','checktracker.php'),(327,'2023-01-20',40,'https://paykstrt.com/40303/47519','','Site Redirects','PASSED','checktracker.php'),(328,'2023-01-21',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(329,'2023-01-21',51,'https://wewillshowyou.info/UKQLK','','Site Redirects','PASSED','sendmailing.php'),(330,'2023-01-22',36,'https://llpgpro.com/68scgjxx/','','Contains IFrames','PASSED','checktracker.php'),(331,'2023-01-22',36,'https://llpgpro.com/hwf3t7c8/','','Contains IFrames','PASSED','checktracker.php'),(332,'2023-01-22',36,'https://llpgpro.com/7rhzjf2s/','','Contains IFrames','PASSED','checktracker.php'),(333,'2023-01-22',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(334,'2023-01-23',57,'https://www.sidehustletraffic.com/home.asp?rid=90&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(335,'2023-01-23',151,'https://lllpg.com/jwv67cpn/solo','','Contains IFrames','PASSED','sendmailing.php'),(336,'2023-01-23',39,'https://llpgpro.com/8k3d3813','','Contains IFrames','PASSED','sendmailing.php'),(337,'2023-01-24',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(338,'2023-01-25',233,'https://3n1ads.com/a03','','Site Redirects','PASSED','sendmailing.php'),(339,'2023-01-25',206,'https://trckur.click/t/20buckaday','','Site Redirects','PASSED','sendmailing.php'),(340,'2023-01-26',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(341,'2023-01-26',237,'https://www.trker.com/go/123850','','Site Redirects','PASSED','sendmailing.php'),(342,'2023-01-26',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(343,'2023-01-26',39,'https://llpgpro.com/rdj3v9gk','','Contains IFrames','PASSED','sendmailing.php'),(344,'2023-01-27',81,'https://llpgpro.com/3HCMachin2/soloswps-m','','Contains IFrames','PASSED','sendmailing.php'),(345,'2023-01-28',57,'https://www.sidehustletraffic.com/home.asp?rid=90&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(346,'2023-01-28',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(347,'2023-01-28',22,'https://mymarketingschool.com/content.php?page=siopub&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(348,'2023-01-29',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(349,'2023-01-29',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(350,'2023-01-29',50,'https://llclick.com/hnrb7wf9/','','Contains Meta Refresh','PASSED','sendmailing.php'),(351,'2023-01-30',57,'https://www.sidehustletraffic.com/home.asp?rid=90&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(352,'2023-01-30',39,'https://llpgpro.com/rdj3v9gk','','Contains IFrames','PASSED','sendmailing.php'),(353,'2023-01-31',35,'https://zerocatch.club/gregsgifts/evcharging/','','Contains IFrames','PASSED','sendmailing.php'),(354,'2023-01-31',57,'https://www.sidehustletraffic.com/home.asp?rid=90&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(355,'2023-01-31',226,'https://lynxtrax.com/eIuck','','Site Redirects','PASSED','sendmailing.php'),(356,'2023-01-31',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(357,'2023-02-01',111,'https://llpgpro.com/jmg7vhsv/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(358,'2023-02-02',57,'https://www.sidehustletraffic.com/home.asp?rid=90&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(359,'2023-02-02',233,'https://3n1ads.com/a34','','Site Redirects','PASSED','sendmailing.php'),(360,'2023-02-04',17,'https://llclickpro.com/zbmbbwg5/sflst','','Contains Meta Refresh','PASSED','sendmailing.php'),(361,'2023-02-04',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(362,'2023-02-05',39,'https://llpgpro.com/svpk3spj','','Contains IFrames','PASSED','sendmailing.php'),(363,'2023-02-05',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(364,'2023-02-05',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(365,'2023-02-06',91,'https://www.esurfitmarketinghub.com/pwav2test','Host Not Found','','FAILED','sendmailing.php'),(366,'2023-02-06',91,'https://lba.clickfunnels.com/optin-page-21674911919274','','','PASSED','sendmailing.php'),(367,'2023-02-06',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(368,'2023-02-07',57,'https://www.SideHustleTraffic.com/home.asp?rid=90&amp;p=19&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(369,'2023-02-07',233,'https://3n1ads.com/a10','','Site Redirects','PASSED','sendmailing.php'),(370,'2023-02-07',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(371,'2023-02-08',57,'https://www.SideHustleTraffic.com/home.asp?rid=90&amp;p=19&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(372,'2023-02-08',140,'https://www.bjsetc.com/?rd=jz4sXYmn&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(373,'2023-02-08',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(374,'2023-02-09',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(375,'2023-02-09',57,'https://www.SideHustleTraffic.com/home.asp?rid=90&amp;p=19&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(376,'2023-02-10',241,'https://adcardz.com/moneytraffic','','Site Redirects','PASSED','sendmailing.php'),(377,'2023-02-10',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(378,'2023-02-11',151,'https://llclick.com/cr24bkjh/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(379,'2023-02-11',242,'https://mb101.net/viddoubleplay','','Site Redirects','PASSED','sendmailing.php'),(380,'2023-02-11',242,'https://mb101.net/5dollarstore','','Site Redirects','PASSED','checktracker.php'),(381,'2023-02-11',242,'https://mb101.net/5dollarstore','','Site Redirects','PASSED','checktracker.php'),(382,'2023-02-11',242,'https://mb101.net/freetraffic','','Site Redirects','PASSED','checktracker.php'),(383,'2023-02-11',242,'https://mb101.net/5dollarstore','','Site Redirects','PASSED','checktracker.php'),(384,'2023-02-11',242,'https://mb101.net/insta-profile','','Site Redirects','PASSED','checktracker.php'),(385,'2023-02-11',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(386,'2023-02-11',27,'https://smokebuds.com/bud/mschow/','','','PASSED','sendmailing.php'),(387,'2023-02-12',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(388,'2023-02-13',57,'https://www.SideHustleTraffic.com/home.asp?rid=90&amp;p=19&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(389,'2023-02-13',233,'https://3n1ads.com/a10','','Site Redirects','PASSED','sendmailing.php'),(390,'2023-02-13',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(391,'2023-02-14',151,'https://llclick.com/cr24bkjh/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(392,'2023-02-15',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(393,'2023-02-15',57,'https://www.SideHustleTraffic.com/home.asp?rid=90&amp;p=19&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(394,'2023-02-16',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(395,'2023-02-17',245,'https://sites.google.com/view/cash-app-lead-package-charles/home','','','PASSED','sendmailing.php'),(396,'2023-02-18',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(397,'2023-02-18',27,'https://mschow.wegotfriends.com/free-launch','','','PASSED','sendmailing.php'),(398,'2023-02-19',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(399,'2023-02-19',27,'https://rebrand.ly/2ypaih8','','Site Redirects','PASSED','sendmailing.php'),(400,'2023-02-20',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(401,'2023-02-22',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(402,'2023-02-23',5,'https://llclickpro.com/MassiveTrafficNetwork/02soloswap','','Contains Meta Refresh','PASSED','sendmailing.php'),(403,'2023-02-25',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(404,'2023-02-25',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(405,'2023-02-25',180,'https://lllpg.com/5znvm5n9/','','Contains IFrames','PASSED','sendmailing.php'),(406,'2023-02-26',39,'https://llpgpro.com/xs65s5dj','','Contains IFrames','PASSED','sendmailing.php'),(407,'2023-02-26',27,'https://rebrand.ly/2ypaih8','','Site Redirects','PASSED','sendmailing.php'),(408,'2023-02-26',51,'https://wewillshowyou.info/UKivq','','Site Redirects','PASSED','sendmailing.php'),(409,'2023-02-26',17,'https://clicktrakr.biz/ldslp','','','PASSED','sendmailing.php'),(410,'2023-02-27',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(411,'2023-02-28',179,'https://clickmarketer.com/track/?reachbuyers/soloswaps&amp;intellisplash=9','','Contains Frames','PASSED','sendmailing.php'),(412,'2023-02-28',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(413,'2023-03-01',246,'https://adcardz.com/adz/moneytraffic/62399','','Site Redirects','PASSED','sendmailing.php'),(414,'2023-03-01',242,'https://mb101.net/monthlycontent0','','Site Redirects','PASSED','sendmailing.php'),(415,'2023-03-02',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(416,'2023-03-04',226,'https://www.utracky.com/xOAZW','','','PASSED','sendmailing.php'),(417,'2023-03-05',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(418,'2023-03-05',51,'https://wewillshowyou.info/UKivH','','Site Redirects','PASSED','sendmailing.php'),(419,'2023-03-06',5,'https://llclickpro.com/spintowin/02solo','','Contains Meta Refresh','PASSED','sendmailing.php'),(420,'2023-03-07',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(421,'2023-03-07',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(422,'2023-03-08',251,'https://createsplashpages.com/splash.php?id=5926&amp;intellisplash=9','','','PASSED','sendmailing.php'),(423,'2023-03-08',119,'https://llclickpro.com/r/mp7zt83b','','Contains Meta Refresh','PASSED','sendmailing.php'),(424,'2023-03-09',233,'https://3n1ads.com/a55','','Site Redirects','PASSED','sendmailing.php'),(425,'2023-03-09',5,'https://llclickpro.com/spintowin/02solo','','Contains Meta Refresh','PASSED','sendmailing.php'),(426,'2023-03-10',5,'https://llclickpro.com/spintowin/02solo','','Contains Meta Refresh','PASSED','sendmailing.php'),(427,'2023-03-11',75,'https://jemi.so/aiplatforms','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(428,'2023-03-11',75,'https://jemi.so/aiplatforms','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(429,'2023-03-11',75,'https://jemi.so/aiplatforms','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(430,'2023-03-11',75,'https://jemi.so/aiplatforms','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(431,'2023-03-11',75,'https://jemi.so/aiplatforms','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(432,'2023-03-11',75,'https://jemi.so/aiplatforms','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(433,'2023-03-11',75,'https://jemi.so/aiplatforms','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(434,'2023-03-11',75,'https://jemi.so/aiplatforms','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(435,'2023-03-11',75,'https://jemi.so/aiplatforms','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(436,'2023-03-11',75,'https://jemi.so/aiplatforms','Has Hidden IFrame','Contains IFrames','FAILED','checktracker.php'),(437,'2023-03-11',242,'https://mb101.net/aiprofits','','Site Redirects','PASSED','sendmailing.php'),(438,'2023-03-11',242,'https://mb101.net/aiprofits','','Site Redirects','PASSED','sendmailing.php'),(439,'2023-03-12',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(440,'2023-03-12',5,'https://llclickpro.com/spintowin/02solo','','Contains Meta Refresh','PASSED','sendmailing.php'),(441,'2023-03-13',253,'https://createsplashpages.com/splash.php?id=5914&amp;intellisplash=9','','','PASSED','sendmailing.php'),(442,'2023-03-13',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(443,'2023-03-13',91,'https://8ajm37ze.trackyourclick.com','','Site Redirects','PASSED','sendmailing.php'),(444,'2023-03-14',5,'https://llclickpro.com/spintowin/02solo','','Contains Meta Refresh','PASSED','sendmailing.php'),(445,'2023-03-15',119,'https://llclick.com/bbwngmx2/','','Contains Meta Refresh','PASSED','sendmailing.php'),(446,'2023-03-15',233,'https://3n1ads.com/a55','','Site Redirects','PASSED','sendmailing.php'),(447,'2023-03-15',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Central Ban Server Down','PASSED','sendmailing.php'),(448,'2023-03-17',5,'https://llclickpro.com/aicashmachine/02soloswap','','Contains Meta Refresh','PASSED','sendmailing.php'),(449,'2023-03-18',5,'https://llclickpro.com/DontLetAnyone/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(450,'2023-03-19',242,'https://mb101.net/tools','','Site Redirects','PASSED','sendmailing.php'),(451,'2023-03-19',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(452,'2023-03-21',233,'https://3n1ads.com/a55','','Site Redirects','PASSED','sendmailing.php'),(453,'2023-03-23',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(454,'2023-03-24',5,'https://llclickpro.com/aicashmachine/02soloswap','','Contains Meta Refresh','PASSED','sendmailing.php'),(455,'2023-03-25',5,'https://llclickpro.com/DontLetAnyone/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(456,'2023-03-26',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(457,'2023-03-26',51,'https://wewillshowyou.info/UKBh8','','Site Redirects','PASSED','sendmailing.php'),(458,'2023-03-27',256,'https://bit.ly/lambobuyer','','Site Redirects','PASSED','sendmailing.php'),(459,'2023-03-28',259,'https://warriorplus.com/o2/a/pwtksn/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(460,'2023-03-28',260,'https://linktr.ee/scholarv23','','Host Not Found','PASSED','sendmailing.php'),(461,'2023-03-28',119,'https://www.fboostpro.com/b1b10cce?sa=sa001564310919fb2e5a424bd6e59d5d233ec0ebc1&amp;intellisplash=9','','','PASSED','sendmailing.php'),(462,'2023-03-29',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(463,'2023-03-29',9,'https://aicashmachine.biz/aimoneymachine/','','Contains IFrames','PASSED','sendmailing.php'),(464,'2023-03-30',91,'https://8ajm37ze.trackyourclick.com/','','Site Redirects','PASSED','sendmailing.php'),(465,'2023-03-30',242,'https://marketingbasics101.com/namssat-br-pg','','Site Redirects','PASSED','sendmailing.php'),(466,'2023-03-31',179,'https://easyleadgenerator.com/click/?elgindexsoloswaps&amp;intellisplash=9','Has Hidden IFrame','Contains Frames','FAILED','sendmailing.php'),(467,'2023-03-31',179,'https://easyleadgenerator.com/click/?elgindexsoloswaps&amp;intellisplash=9','Has Hidden IFrame','Contains Frames','FAILED','sendmailing.php'),(468,'2023-04-01',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(469,'2023-04-03',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(470,'2023-04-05',5,'https://llclickpro.com/30freetrafficsources/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(471,'2023-04-06',5,'https://llclickpro.com/30freetrafficsources/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(472,'2023-04-07',57,'https://www.242Traffic.com/home.asp?rid=83&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(473,'2023-04-08',176,'https://www.safelist8.com/2022/08/9-signups-and-2-upgrades-from-65-views.html','','Contains IFrames','PASSED','sendmailing.php'),(474,'2023-04-08',39,'https://llpgpro.com/yfsp3w3s','','Contains IFrames','PASSED','sendmailing.php'),(475,'2023-04-08',18,'https://llpgpro.com/EzyLeads/','','Contains IFrames','PASSED','sendmailing.php'),(476,'2023-04-08',242,'https://mb101.net/megadeal','','Site Redirects','PASSED','sendmailing.php'),(477,'2023-04-09',17,'https://llclickpro.com/r/ecflgotp/safe','','Contains Frames','PASSED','sendmailing.php'),(478,'2023-04-10',5,'https://llclickpro.com/30freetrafficsources/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(479,'2023-04-10',140,'https://www.bjsetc.com/?rd=om5gFluN&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(480,'2023-04-11',263,'https://bucketsofbanners.com/splashbc.php?bob=linesent60','','Contains Meta Refresh','PASSED','checktracker.php'),(481,'2023-04-11',263,'https://bannerstaker.com/papawstv','','','PASSED','checktracker.php'),(482,'2023-04-11',263,'https://www.elitebannerads.com/?papawstv','','','PASSED','checktracker.php'),(483,'2023-04-11',263,'https://ezbannerz.net/?papawstv','','','PASSED','checktracker.php'),(484,'2023-04-11',263,'https://onemillionclicks.im-club.com/?papawstv','','','PASSED','checktracker.php'),(485,'2023-04-11',263,'https://www.LiveGoodTour.com/michelines?SOURCE=SoloSwapsRotator','','Contains IFrames','PASSED','checktracker.php'),(486,'2023-04-11',263,'https://affiliate-traffic.website/?rid=152','','','PASSED','checktracker.php'),(487,'2023-04-11',263,'https://submitads4free.com/supersplash.php?rid=4355','','','PASSED','checktracker.php'),(488,'2023-04-11',263,'https://wizardte.com/supersplash.php?rid=452','','','PASSED','checktracker.php'),(489,'2023-04-11',263,'https://advertisingblowout.com/splashpage.php?id=9045','','','PASSED','checktracker.php'),(490,'2023-04-11',5,'https://llclickpro.com/spintowin/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(491,'2023-04-12',78,'https://brandasplash.com/splash16.php?rid=2302&amp;intellisplash=9','','','PASSED','sendmailing.php'),(492,'2023-04-13',242,'https://mb101.net/traffic','','Site Redirects','PASSED','sendmailing.php'),(493,'2023-04-14',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(494,'2023-04-16',5,'https://llclickpro.com/thirtytraffic/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(495,'2023-04-18',5,'https://llclickpro.com/thirtytraffic/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(496,'2023-04-20',5,'https://llclickpro.com/herooooo/soloswaps','','Central Ban Server Down','PASSED','sendmailing.php'),(497,'2023-04-21',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(498,'2023-04-22',242,'https://mb101.net/mega-deal','','Site Redirects','PASSED','sendmailing.php'),(499,'2023-04-24',5,'https://llclickpro.com/milliondollargiveaway/02soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(500,'2023-04-26',5,'https://llclickpro.com/thirtytraffic/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(501,'2023-04-29',179,'https://commissionturbo.com/click/?cturboindex/soloswaps&amp;intellisplash=9','','Contains Frames','PASSED','sendmailing.php'),(502,'2023-04-29',51,'https://wewillshowyou.info/UKae7','Continuous Redirect Loop','Site Redirects','FAILED','sendmailing.php'),(503,'2023-04-29',51,'https://wewillshowyou.info/UKaeK','','Site Redirects','PASSED','sendmailing.php'),(504,'2023-05-02',5,'https://llclickpro.com/thirtytraffic/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(505,'2023-05-07',5,'https://llclickpro.com/spintowin/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(506,'2023-05-08',5,'https://llclickpro.com/thirtytraffic/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(507,'2023-05-10',5,'https://llclickpro.com/spintowin/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(508,'2023-05-11',91,'https://llpgpro.com/zsdj4t5c/','','Contains IFrames','PASSED','sendmailing.php'),(509,'2023-05-13',242,'https://paykstrt.com/45173/127900','','Site Redirects','PASSED','sendmailing.php'),(510,'2023-05-14',5,'https://llclickpro.com/milliondollargiveaway/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(511,'2023-05-15',57,'https://www.SurefireAds.com/home.asp?rid=82&amp;p=20&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(512,'2023-05-17',5,'https://llclickpro.com/OneMillionAdCredits/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(513,'2023-05-18',5,'https://llclickpro.com/OneMillionAdCredits/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(514,'2023-05-18',5,'https://llclickpro.com/OneMillionAdCredits/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(515,'2023-05-19',242,'https://mb101.net/mlr-buyerclicks','','Site Redirects','PASSED','sendmailing.php'),(516,'2023-05-20',5,'https://llclickpro.com/mybuyertraffic/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(517,'2023-05-21',5,'https://llclickpro.com/mybuyertraffic/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(518,'2023-05-21',91,'https://www.lincsnicks.com/','','','PASSED','sendmailing.php'),(519,'2023-05-23',5,'https://llclickpro.com/OneMillionAdCredits/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(520,'2023-05-24',57,'https://www.PowerHourTraffic.com/home.asp?rid=79&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(521,'2023-05-24',75,'https://bit.ly/45xjEto','','Site Redirects','PASSED','checktracker.php'),(522,'2023-05-24',75,'https://bit.ly/45xjEto','','Site Redirects','PASSED','checktracker.php'),(523,'2023-05-24',75,'https://bit.ly/45xjEto','','Site Redirects','PASSED','checktracker.php'),(524,'2023-05-24',75,'https://bit.ly/45xjEto','','Site Redirects','PASSED','checktracker.php'),(525,'2023-05-24',75,'https://bit.ly/45xjEto','','Site Redirects','PASSED','checktracker.php'),(526,'2023-05-24',75,'https://bit.ly/45xjEto','','Site Redirects','PASSED','checktracker.php'),(527,'2023-05-24',75,'https://bit.ly/45xjEto','','Site Redirects','PASSED','checktracker.php'),(528,'2023-05-24',75,'https://bit.ly/45xjEto','','Site Redirects','PASSED','checktracker.php'),(529,'2023-05-24',75,'https://bit.ly/45xjEto','','Site Redirects','PASSED','checktracker.php'),(530,'2023-05-24',75,'https://bit.ly/45xjEto','','Site Redirects','PASSED','checktracker.php'),(531,'2023-05-26',5,'https://llclickpro.com/milliondollargiveaway/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(532,'2023-05-27',57,'https://www.PowerHourTraffic.com/home.asp?rid=79&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(533,'2023-05-27',17,'https://llclickpro.com/paracrypcur/','','Contains Meta Refresh','PASSED','sendmailing.php'),(534,'2023-06-01',78,'https://clicktrakr.biz/SaveMoneyTravelandGetLeadswithLaToya','','','PASSED','sendmailing.php'),(535,'2023-06-09',40,'https://llpgpro.com/zgmfm92n/','','Contains IFrames','PASSED','sendmailing.php'),(536,'2023-06-09',40,'https://llpgpro.com/zgmfm92n/','','Contains IFrames','PASSED','sendmailing.php'),(537,'2023-06-10',284,'https://lllpg.com/l9npfwb2','','Contains IFrames','PASSED','sendmailing.php'),(538,'2023-06-14',2,'https://trafficbuildr.com','','Contains IFrames','PASSED','sendmailing.php'),(539,'2023-06-16',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(540,'2023-06-17',283,'https://llclickpro.com/d2vmymhv/','','Contains Meta Refresh','PASSED','sendmailing.php'),(541,'2023-06-18',57,'https://www.SimpleTrafficSecrets.com/home.asp?rid=65&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(542,'2023-06-19',2,'https://trafficbuildr.com','','Contains IFrames','PASSED','sendmailing.php'),(543,'2023-06-19',5,'https://llclickpro.com/ThePowerofFREE/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(544,'2023-06-20',2,'https://trafficbuildr.com','','Contains IFrames','PASSED','sendmailing.php'),(545,'2023-06-21',2,'https://trafficbuildr.com','','Contains IFrames','PASSED','sendmailing.php'),(546,'2023-06-21',288,'https://createsplashpages.com/splash.php?id=7672&amp;intellisplash=9','','','PASSED','sendmailing.php'),(547,'2023-06-24',222,'https://www.multipleincomefunnel.com/cp1/ajohn','','','PASSED','sendmailing.php'),(548,'2023-06-24',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(549,'2023-06-27',222,'https://www.multipleincomefunnel.com/cp1/ajohn','','','PASSED','checktracker.php'),(550,'2023-06-27',222,'https://www.multipleincomefunnel.com/cp2/ajohn','','','PASSED','checktracker.php'),(551,'2023-06-27',222,'https://www.multipleincomefunnel.com/cp3/ajohn','','','PASSED','checktracker.php'),(552,'2023-06-28',290,'https://turnkeyemailbiz.net/cliqlytrialv1?c=36868&amp;intellisplash=9','Continuous Redirect Loop','Site Redirects','FAILED','sendmailing.php'),(553,'2023-06-28',290,'https://turnkeyemailbiz.net/cliqlytrialv1?c=36868&amp;intellisplash=9','Continuous Redirect Loop','Site Redirects','FAILED','sendmailing.php'),(554,'2023-06-28',290,'https://system.cliqly.com/track.chm.php?affid=36868&amp;subid=&amp;url=https://system.cliqly.com/signup.trial&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(555,'2023-06-28',119,'https://lllpg.com/s4pk25kc/','','Contains IFrames','PASSED','sendmailing.php'),(556,'2023-06-28',5,'https://go-travelling.com/travelprofits/','Host Not Found','','FAILED','sendmailing.php'),(557,'2023-06-28',5,'https://llclickpro.com/travelprofits/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(558,'2023-07-01',53,'https://affilireviews.blogspot.com/2023/06/infinity-processing-system-review-2023.html','','Contains IFrames','PASSED','sendmailing.php'),(559,'2023-07-02',284,'https://www.proadvertisingclub.com/splashpage.php?id=4&amp;r=reducethehype&amp;intellisplash=9','','','PASSED','sendmailing.php'),(560,'2023-07-02',18,'https://llpgpro.com/zh0gsjf1/','','Contains IFrames','PASSED','sendmailing.php'),(561,'2023-07-06',60,'https://llpgpro.com/c742cbfh/','','Contains IFrames','PASSED','sendmailing.php'),(562,'2023-07-06',57,'https://www.SimpleTrafficSecrets.com/home.asp?rid=65&amp;p=20&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(563,'2023-07-06',5,'https://llclickpro.com/checklists/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(564,'2023-07-09',17,'https://llclickpro.com/r/ecflgotp/','','Contains Frames','PASSED','sendmailing.php'),(565,'2023-07-09',57,'https://www.SimpleTrafficSecrets.com/home.asp?rid=65&amp;p=20&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(566,'2023-07-09',57,'https://www.SimpleTrafficSecrets.com/home.asp?rid=65&amp;p=20&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(567,'2023-07-16',9,'https://stealourlist.com/t/chatgptcash','','Site Redirects','PASSED','sendmailing.php'),(568,'2023-07-16',57,'https://www.SimpleTrafficSecrets.com/home.asp?rid=65&amp;p=20&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(569,'2023-07-20',298,'https://atripleinstant.com','','Host Not Found','PASSED','checktracker.php'),(570,'2023-07-20',298,'https://atripleinstant.com','','Host Not Found','PASSED','sendmailing.php'),(571,'2023-07-20',242,'https://mb101.net/wup-namsfreeprod','','Site Redirects','PASSED','sendmailing.php'),(572,'2023-07-21',300,'https://clicktrakr.biz/soloswapsmailer','','','PASSED','sendmailing.php'),(573,'2023-07-22',18,'https://clicktrakr.biz/PMS','','','PASSED','sendmailing.php'),(574,'2023-07-23',57,'https://www.FourInOneAds.com/home.asp?rid=73&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(575,'2023-07-24',300,'https://clicktrakr.biz/soloswapsmailer','','','PASSED','sendmailing.php'),(576,'2023-07-25',298,'https://atripleinstant.com','','Host Not Found','PASSED','sendmailing.php'),(577,'2023-07-27',180,'https://lllpg.com/5znvm5n9/','','Contains IFrames','PASSED','sendmailing.php'),(578,'2023-07-27',300,'https://clicktrakr.biz/soloswapsmailer','','','PASSED','sendmailing.php'),(579,'2023-07-28',298,'https://t-adbar.com/_stzm','','Site Redirects','PASSED','sendmailing.php'),(580,'2023-07-30',242,'https://mb101.net/dfyblogs-clkaibk','','Site Redirects','PASSED','sendmailing.php'),(581,'2023-07-31',301,'https://llpgpro.com/3n9wx7p8/','','Contains IFrames','PASSED','sendmailing.php'),(582,'2023-07-31',300,'https://clicktrakr.biz/soloswapsmailer','','','PASSED','sendmailing.php'),(583,'2023-08-03',297,'https://llpgpro.com/emailbusiness/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(584,'2023-08-03',18,'https://lltrco.com/?r=topzone&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(585,'2023-08-03',57,'https://www.FourInOneAds.com/home.asp?rid=73&amp;p=11&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(586,'2023-08-04',297,'https://llpgpro.com/emailbusiness/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(587,'2023-08-05',297,'https://llpgpro.com/emailbusiness/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(588,'2023-08-06',297,'https://llpgpro.com/emailbusiness/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(589,'2023-08-07',297,'https://llpgpro.com/emailbusiness/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(590,'2023-08-09',297,'','Invalid URL','','FAILED','sendmailing.php'),(591,'2023-08-09',297,'https://llpgpro.com/emailbusiness/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(592,'2023-08-10',297,'https://llpgpro.com/emailbusiness/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(593,'2023-08-12',297,'https://llpgpro.com/emailbusiness/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(594,'2023-08-13',297,'https://llpgpro.com/emailbusiness/soloswaps_dontquit','','Contains IFrames','PASSED','sendmailing.php'),(595,'2023-08-13',140,'https://www.bjsetc.com/?rd=pk4KlC6h&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(596,'2023-08-14',297,'https://llpgpro.com/emailbusiness/soloswaps_dontquit','','Contains IFrames','PASSED','sendmailing.php'),(597,'2023-08-15',297,'https://llpgpro.com/emailbusiness/soloswaps_dontquit','','Contains IFrames','PASSED','sendmailing.php'),(598,'2023-08-16',301,'https://llpgpro.com/tv93w6h6/','','Contains IFrames','PASSED','sendmailing.php'),(599,'2023-08-16',297,'','Invalid URL','','FAILED','sendmailing.php'),(600,'2023-08-16',297,'https://llpgpro.com/4in1-lcp/soloswaps_justclick','','Contains IFrames','PASSED','sendmailing.php'),(601,'2023-08-18',297,'https://llpgpro.com/4in1-lcp/soloswaps_justclick','','Contains IFrames','PASSED','sendmailing.php'),(602,'2023-08-18',300,'https://clicktrakr.biz/soloswapsmailer','','','PASSED','sendmailing.php'),(603,'2023-08-18',297,'','Invalid URL','','FAILED','sendmailing.php'),(604,'2023-08-18',297,'https://llpgpro.com/4in1-lcp/soloswaps_justclick','','Contains IFrames','PASSED','sendmailing.php'),(605,'2023-08-19',297,'https://llpgpro.com/4in1-lcp/soloswaps_justclick','','Contains IFrames','PASSED','sendmailing.php'),(606,'2023-08-20',297,'','Invalid URL','','FAILED','sendmailing.php'),(607,'2023-08-20',297,'https://llpgpro.com/4in1-lcp/soloswaps_justclick','','Contains IFrames','PASSED','sendmailing.php'),(608,'2023-08-22',297,'https://llpgpro.com/4in1-lcp/soloswaps_justclick','','Contains IFrames','PASSED','sendmailing.php'),(609,'2023-08-22',300,'https://clicktrakr.biz/soloswapsmailer','','','PASSED','sendmailing.php'),(610,'2023-08-23',297,'https://mytrafficpowerline.com/images/banners/468x60.jpg','','','PASSED','sendmailing.php'),(611,'2023-08-23',297,'https://mytrafficpowerline.com/trusttheplan','','Site Redirects','PASSED','sendmailing.php'),(612,'2023-08-24',297,'https://llpgpro.com/mtplimitless/','','Contains IFrames','PASSED','sendmailing.php'),(613,'2023-08-27',297,'https://llpgpro.com/mtplimitless/','','Contains IFrames','PASSED','sendmailing.php'),(614,'2023-08-29',300,'https://clicktrakr.biz/soloswapsmailer','','','PASSED','sendmailing.php'),(615,'2023-08-30',297,'https://llpgpro.com/mtplimitless/','','Contains IFrames','PASSED','sendmailing.php'),(616,'2023-09-01',221,'https://zoransimovic.aweb.page/ai-autobots-pro','','Contains IFrames','PASSED','sendmailing.php'),(617,'2023-09-02',17,'9 Days Over 15K Unreal!','Invalid URL','','FAILED','sendmailing.php'),(618,'2023-09-02',17,'https://llpgpro.com/jmpowerl/','','Contains IFrames','PASSED','sendmailing.php'),(619,'2023-09-06',53,'https://affilireviews.blogspot.com/2023/06/unbiased-complete-remixable-review.html','','Contains IFrames','PASSED','sendmailing.php'),(620,'2023-09-08',75,'https://tinyurl.com/32ubm46r','','Site Redirects','PASSED','sendmailing.php'),(621,'2023-09-09',297,'https://llpgpro.com/mtplimitless/','','Contains IFrames','PASSED','sendmailing.php'),(622,'2023-09-09',308,'https://tonyspls.com/','','','PASSED','sendmailing.php'),(623,'2023-09-10',307,'https://paykstrt.com/47366/127497','','Site Redirects','PASSED','sendmailing.php'),(624,'2023-09-11',297,'https://llpgpro.com/mtplimitless/','','Contains IFrames','PASSED','sendmailing.php'),(625,'2023-09-11',75,'https://tinyurl.com/32ubm46r','','Site Redirects','PASSED','sendmailing.php'),(626,'2023-09-12',297,'https://llpgpro.com/mtplimitless/','','Contains IFrames','PASSED','sendmailing.php'),(627,'2023-09-13',297,'https://llpgpro.com/mtplimitless/','','Contains IFrames','PASSED','sendmailing.php'),(628,'2023-09-15',2,'https://test.test','Host Not Found','','FAILED','sendmailing.php'),(629,'2023-09-15',2,'https://test.test','Host Not Found','','FAILED','sendmailing.php'),(630,'2023-09-15',2,'https://test.test','Host Not Found','','FAILED','sendmailing.php'),(631,'2023-09-15',2,'https://trafficbuildr.com','','Contains IFrames','PASSED','sendmailing.php'),(632,'2023-09-15',2,'https://trafficbuildr.com','','Contains IFrames','PASSED','sendmailing.php'),(633,'2023-09-15',53,'https://www.mlmrecruitondemand.com/freevideo.php?id=dubber - Joey Ward&amp;intellisplash=9','','Page Not Found','PASSED','sendmailing.php'),(634,'2023-09-15',2,'https://trafficbuildr.com','','Contains IFrames','PASSED','sendmailing.php'),(635,'2023-09-15',2,'https://trafficbuildr.com','','Contains IFrames','PASSED','sendmailing.php'),(636,'2023-09-16',304,'https://llclickpro.com/d2cvyc9s/','','Contains Meta Refresh','PASSED','sendmailing.php'),(637,'2023-09-18',75,'https://tinyurl.com/4svbptnz','','Site Redirects','PASSED','sendmailing.php'),(638,'2023-09-18',18,'https://clicktrakr.biz/TrafficExchange','','','PASSED','sendmailing.php'),(639,'2023-09-19',22,'https://downlineintegrity.com/splashpage.php?splashid=18&amp;rid=1&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(640,'2023-09-19',312,'https://llpgpro.com/SignmeupMTP/','','Contains IFrames','PASSED','sendmailing.php'),(641,'2023-09-20',18,'https://clicktrakr.biz/TrafficExchange','','','PASSED','sendmailing.php'),(642,'2023-09-22',18,'https://mytrafficpowerline.com/topzone','','Site Redirects','PASSED','sendmailing.php'),(643,'2023-09-22',18,'https://mytrafficpowerline.com/topzone','','Site Redirects','PASSED','sendmailing.php'),(644,'2023-09-24',316,'https://automaticbuilder.com/bigmikes','','','PASSED','sendmailing.php'),(645,'2023-09-25',22,'https://geniecoop.com/jeffdionne','','','PASSED','sendmailing.php'),(646,'2023-09-26',297,'https://llpgpro.com/emailbusiness/soloswaps_dontquit','','Contains IFrames','PASSED','sendmailing.php'),(647,'2023-09-26',311,'https://www.Gofundme.Com/f/RobinsFundraiser','Too Large - Over 200000 Characters Of Text','','FAILED','sendmailing.php'),(648,'2023-09-26',311,'https://gofund.me/094061b6','','Site Redirects','PASSED','sendmailing.php'),(649,'2023-09-27',312,'https://llpgpro.com/ecfcapture/','','Contains IFrames','PASSED','sendmailing.php'),(650,'2023-09-28',284,'https://llclickpro.com/sydkgxtr/','','Contains Meta Refresh','PASSED','sendmailing.php'),(651,'2023-09-29',75,'https://docs.google.com/document/d/1fxqq_fXCoA3abhXRK-clS7EjU71RiGoxJaikYDBJXWY/edit#heading=h.r08amsfh18jb','Too Large - Over 200000 Characters Of Text','','FAILED','sendmailing.php'),(652,'2023-10-02',311,'https://supersubmitters.biz','','Contains IFrames','PASSED','sendmailing.php'),(653,'2023-10-02',316,'https://www.teamofwealth.com/','','','PASSED','sendmailing.php'),(654,'2023-10-05',75,'https://tinyurl.com/4svbptnz','','Site Redirects','PASSED','sendmailing.php'),(655,'2023-10-07',311,'https://supersubmitters.biz','','Contains IFrames','PASSED','sendmailing.php'),(656,'2023-10-08',297,'https://protraffichub.com/secret_weapon.html','','','PASSED','sendmailing.php'),(657,'2023-10-11',320,'https://lltrco.com/?r=marketingmoosi','','Site Redirects','PASSED','checktracker.php'),(658,'2023-10-11',320,'https://lllpg.com/vhk2m5sr/','','Contains IFrames','PASSED','checktracker.php'),(659,'2023-10-11',320,'https://ezhitzs.com/m/5219','','Site Redirects','PASSED','checktracker.php'),(660,'2023-10-11',111,'https://llpgpro.com/viral-lead-magnets/','','Contains IFrames','PASSED','sendmailing.php'),(661,'2023-10-11',2,'https://trafficbuildr.com','','Contains IFrames','PASSED','sendmailing.php'),(662,'2023-10-11',22,'https://highclasshits.com/r/mms','','Site Redirects','PASSED','sendmailing.php'),(663,'2023-10-14',18,'https://mytrafficpowerline.com/topzone','','Site Redirects','PASSED','sendmailing.php'),(664,'2023-10-14',242,'https://mb101.net/autobots','','Site Redirects','PASSED','sendmailing.php'),(665,'2023-10-15',22,'https://earn.sentext.jeffdionne.com/splashpage.php?splashid=41&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(666,'2023-10-17',22,'https://earn.sentext.jeffdionne.com/splashpage.php?splashid=41&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(667,'2023-10-18',111,'https://llpgpro.com/SOS-Exclusive-Invite/','','Contains IFrames','PASSED','sendmailing.php'),(668,'2023-10-18',104,'https://susie.TranzactCard.com','','Site Redirects','PASSED','sendmailing.php'),(669,'2023-10-18',53,'https://quotegully.blogspot.com/2023/07/success-business-quotes.html','','Contains IFrames','PASSED','sendmailing.php'),(670,'2023-10-20',312,'https://www.MoneyMakingIdeas101.com/?rd=zx6Dp9tn&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(671,'2023-10-21',22,'https://earn.sentext.jeffdionne.com/splashpage.php?splashid=41&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(672,'2023-10-21',53,'https://mastermanifest.blogspot.com/2023/07/10-potent-money-spells-to-attract.html','','Contains IFrames','PASSED','sendmailing.php'),(673,'2023-10-23',111,'https://lllpg.com/the-secrets-of-success/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(674,'2023-10-24',312,'https://www.MoneyMakingIdeas101.com/?rd=kr6qWFnO&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(675,'2023-10-25',297,'https://llpgpro.com/emailbusiness/soloswaps_dontquit','','Contains IFrames','PASSED','sendmailing.php'),(676,'2023-10-25',140,'https://www.bjsetc.com/?rd=om5gFluN&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(677,'2023-10-25',22,'https://highclasshits.com/r/mms','','Site Redirects','PASSED','sendmailing.php'),(678,'2023-10-26',53,'https://mastermanifest.blogspot.com/2023/10/how-to-activate-pineal-gland.html','','Contains IFrames','PASSED','sendmailing.php'),(679,'2023-10-27',53,'https://sites.google.com/view/cures-for-sciatica-nerve-pain/home','','','PASSED','sendmailing.php'),(680,'2023-10-27',53,'https://sites.google.com/view/cures-for-sciatica-nerve-pain/home','','','PASSED','sendmailing.php'),(681,'2023-10-27',53,'https://pin.it/40BwfvE','Continuous Redirect Loop','Site Redirects','FAILED','sendmailing.php'),(682,'2023-10-28',18,'ttps://llpgpro.com/zmj2jkmj/','Invalid URL','','FAILED','sendmailing.php'),(683,'2023-10-28',18,'https://llpgpro.com/zmj2jkmj/','','Contains IFrames','PASSED','sendmailing.php'),(684,'2023-10-29',298,'https://easyhits4u.net/131901/','','','PASSED','sendmailing.php'),(685,'2023-10-30',312,'https://www.MoneyMakingIdeas101.com/?rd=ry5ueCBv&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(686,'2023-10-30',312,'https://www.MoneyMakingIdeas101.com/?rd=ry5ueCBv&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(687,'2023-10-30',312,'https://llpgpro.com/mnvwsfhd/','','Contains IFrames','PASSED','sendmailing.php'),(688,'2023-10-31',111,'https://llpgpro.com/sos-3-day-challenge/','','Contains IFrames','PASSED','sendmailing.php'),(689,'2023-11-02',53,'https://affirmit.blogspot.com/2023/07/affirmations-to-attract-money.html','','Contains IFrames','PASSED','sendmailing.php'),(690,'2023-11-02',312,'https://www.MoneyMakingIdeas101.com/?rd=yl43qKjN&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(691,'2023-11-02',323,'https://lltrco.com/?r=darklight67&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(692,'2023-11-03',22,'https://mymarketingschool.com','','','PASSED','sendmailing.php'),(693,'2023-11-03',9,'https://stealourlist.com/t/chatgptcash','','Site Redirects','PASSED','sendmailing.php'),(694,'2023-11-08',312,'https://100percentclicks.com/index.php?r=Kerstin59&amp;intellisplash=9','','','PASSED','sendmailing.php'),(695,'2023-11-08',298,'https://llpgpro.com/sharebook/','','Contains IFrames','PASSED','sendmailing.php'),(696,'2023-11-10',22,'https://mymarketingschool.com','','','PASSED','sendmailing.php'),(697,'2023-11-11',312,'https://www.MoneyMakingIdeas101.com/?rd=kr6qWFnO&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(698,'2023-11-12',50,'https://llclick.com/hnrb7wf9/','','Contains Meta Refresh','PASSED','sendmailing.php'),(699,'2023-11-12',50,'https://llclick.com/r/pm7yr6k2/','','Contains Frames','PASSED','sendmailing.php'),(700,'2023-11-13',22,'https://sharethewinnings.com/lc2.php?id=jeffdionne&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(701,'2023-11-14',312,'https://100percentclicks.com/index.php?r=Kerstin59&amp;intellisplash=9','','','PASSED','sendmailing.php'),(702,'2023-11-17',312,'https://www.MoneyMakingIdeas101.com/?rd=vv0zGj4d&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(703,'2023-11-19',53,'https://affilireviews.blogspot.com/2023/10/total-money-magnetism-review.html','','Contains IFrames','PASSED','sendmailing.php'),(704,'2023-11-20',312,'https://llpgpro.com/4drgr8wj/','','Contains IFrames','PASSED','sendmailing.php'),(705,'2023-11-23',312,'https://100percentclicks.com/index.php?r=Kerstin59&amp;intellisplash=9','','','PASSED','sendmailing.php'),(706,'2023-11-25',22,'https://downlineintegrity.com/splashpage.php?splashid=19&amp;rid=1&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(707,'2023-11-25',91,'https://olspsystem.com/join/1000028','','','PASSED','sendmailing.php'),(708,'2023-11-26',312,'https://MoneyMakingIdeas101.com/35a','','Site Redirects','PASSED','sendmailing.php'),(709,'2023-11-28',53,'https://mastermanifest.blogspot.com/2023/11/what-is-law-of-assumption.html','','Contains IFrames','PASSED','sendmailing.php'),(710,'2023-11-28',22,'https://mymarketingschool.com/content.php?page=bscfp&amp;intellisplash=9','','','PASSED','sendmailing.php'),(711,'2023-11-29',312,'https://www.MoneyMakingIdeas101.com/?rd=zx6Dp9tn&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(712,'2023-12-03',22,'https://businessmailer4u.com/splashpage.php?splashid=1&amp;rid=72&amp;intellisplash=9','','','PASSED','sendmailing.php'),(713,'2023-12-05',75,'https://docs.google.com/document/d/1WHGRc2YNtlHLesOz-sHnexQYNLFUDy0zyU52ajSXlV4/edit','','','PASSED','sendmailing.php'),(714,'2023-12-05',312,'https://llpgpro.com/bkwv7rb5/','','Contains IFrames','PASSED','sendmailing.php'),(715,'2023-12-07',242,'https://mb101.net/BP-namsdecdeals23-2','','Site Redirects','PASSED','sendmailing.php'),(716,'2023-12-08',312,'https://llpgpro.com/bkwv7rb5/','','Contains IFrames','PASSED','sendmailing.php'),(717,'2023-12-11',22,'https://earn.sentext.jeffdionne.com/splashpage.php?splashid=25&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(718,'2023-12-11',312,'https://kerstinfrashier.systeme.io/commissions-gpt','','','PASSED','sendmailing.php'),(719,'2023-12-13',242,'https://mb101.net/m-bp-namsdecdeals23-2','','Site Redirects','PASSED','sendmailing.php'),(720,'2023-12-14',312,'https://kerstinfrashier.systeme.io/classifieds','','','PASSED','sendmailing.php'),(721,'2023-12-15',78,'https://clicktrakr.biz/ManifestWealthwithLaToya','','','PASSED','sendmailing.php'),(722,'2023-12-17',327,'https://your30minuteworkday.com/erc/?fpr=martin99&amp;sref=7x3tl7i&amp;intellisplash=9','','','PASSED','sendmailing.php'),(723,'2023-12-17',9,'https://stealourlist.com/t/chatgptcash','','Site Redirects','PASSED','sendmailing.php'),(724,'2023-12-17',312,'https://kerstinfrashier.systeme.io/factorfour','','','PASSED','sendmailing.php'),(725,'2023-12-17',75,'https://docs.google.com/document/d/1UnLSH5uyjXgIquBmSdNbd2ti9RpTL81oZuGOjS6w8B0/edit','','','PASSED','sendmailing.php'),(726,'2023-12-18',22,'https://earn.sentext.jeffdionne.com/splashpage.php?splashid=25&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(727,'2023-12-22',242,'https://mb101.net/m-yoursfree','','Site Redirects','PASSED','sendmailing.php'),(728,'2023-12-22',327,'https://your30minuteworkday.com/erc/?fpr=martin99&amp;sref=7x3tl7i&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(729,'2023-12-23',312,'https://www.MoneyMakingIdeas101.com/?rd=zx6Dp9tn&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(730,'2023-12-26',312,'https://www.MoneyMakingIdeas101.com/?rd=wh3OhZzl&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(731,'2023-12-29',327,'https://your30minuteworkday.com/erc/?fpr=martin99&amp;sref=7x3tl7i&amp;intellisplash=9','','','PASSED','sendmailing.php'),(732,'2023-12-29',312,'https://www.MoneyMakingIdeas101.com/?rd=mu5ao4By&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(733,'2023-12-29',312,'https://www.MoneyMakingIdeas101.com/?rd=mu5ao4By&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(734,'2023-12-29',312,'https://www.MoneyMakingIdeas101.com/?rd=mu5ao4By&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(735,'2023-12-29',312,'https://www.seooptimizerpro.com/splash.cfm?ref=127701&amp;intellisplash=9','','','PASSED','sendmailing.php'),(736,'2023-12-29',91,'https://tdpages.com/67997/page159289','','','PASSED','checktracker.php'),(737,'2023-12-29',91,'https://www.nexussnap.com/lincsnxr','','Site Redirects','PASSED','checktracker.php'),(738,'2023-12-29',91,'https://supertoolsmax.com/?r=LincsSTMAX','','Site Redirects','PASSED','checktracker.php'),(739,'2024-01-01',17,'https://llclickpro.com/g6dksdf8/','','Contains Meta Refresh','PASSED','sendmailing.php'),(740,'2024-01-01',53,'https://esotericway.blogspot.com/2023/12/mindfulness-tools-contdivwidth100-max.html','','Contains IFrames','PASSED','sendmailing.php'),(741,'2024-01-01',312,'https://www.MoneyMakingIdeas101.com/?rd=fb9Mtz1k&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(742,'2024-01-02',327,'https://your30minuteworkday.com/erc/?fpr=martin99&amp;sref=7x3tl7i&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(743,'2024-01-04',312,'https://www.MoneyMakingIdeas101.com/?rd=fb9Mtz1k&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(744,'2024-01-18',91,'https://olspsystem.com/join/1000028','','','PASSED','sendmailing.php'),(745,'2024-01-19',312,'https://www.MoneyMakingIdeas101.com/?rd=fb9Mtz1k&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(746,'2024-01-20',327,'https://mycash4all.com/lcp.php?pid=1&amp;r=martinf&amp;intellisplash=9','','','PASSED','sendmailing.php'),(747,'2024-01-22',312,'https://www.MoneyMakingIdeas101.com/?rd=dg0C5EoM&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(748,'2024-01-26',312,'https://www.MoneyMakingIdeas101.com/?rd=ak2uK8RS&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(749,'2024-01-30',336,'https:/&lt;a href=&quot;https://trafficbuildr.com/?rid=9670&quot;&gt;&lt;img src=&quot;https://imgur.com/ZfvyqK5.jpg&quot;&gt;&lt;/a&gt;','Invalid URL','','FAILED','checktracker.php'),(750,'2024-01-30',336,'https:/&lt;a href=&quot;https://trafficbuildr.com/?rid=9670&quot;&gt;&lt;img src=&quot;https://imgur.com/ZfvyqK5.jpg&quot;&gt;&lt;/a&gt;','Invalid URL','','FAILED','checktracker.php'),(751,'2024-01-31',312,'https://track.moneymakingideas101.com/rzU36','','Site Redirects','PASSED','sendmailing.php'),(752,'2024-01-31',327,'https://www.easycash4ads.com/profiting','','Contains IFrames','PASSED','sendmailing.php'),(753,'2024-02-03',312,'https://MoneyMakingIdeas101.com/BardAI','','Site Redirects','PASSED','sendmailing.php'),(754,'2024-02-06',312,'https://www.WorldprofitMarketplace.com/?rd=sl7LkCmI&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(755,'2024-02-14',312,'https://llpgpro.com/incomesysteminternet/','','Contains IFrames','PASSED','sendmailing.php'),(756,'2024-02-16',327,'https://www.easycash4ads.com/profiting','','Contains IFrames','PASSED','sendmailing.php'),(757,'2024-02-19',312,'https://track.moneymakingideas101.com/rzU36','','Site Redirects','PASSED','sendmailing.php'),(758,'2024-02-21',9,'https://stealourlist.com/t/freetraffic','','Site Redirects','PASSED','sendmailing.php'),(759,'2024-02-22',327,'https://www.easycash4ads.com/rotate.aspx?r=profiting&amp;intellisplash=9','','','PASSED','sendmailing.php'),(760,'2024-02-25',312,'https://llpgpro.com/emailgoldmine/','','Contains IFrames','PASSED','sendmailing.php'),(761,'2024-02-25',9,'https://stealourlist.com/t/freetraffic','','Site Redirects','PASSED','sendmailing.php'),(762,'2024-03-01',312,'https://llpgpro.com/emailgoldmine/','','Contains IFrames','PASSED','sendmailing.php'),(763,'2024-03-04',327,'https://mycash4all.com/lcp.php?pid=1&amp;r=martinf&amp;intellisplash=9','','','PASSED','sendmailing.php'),(764,'2024-03-04',312,'https://llpgpro.com/emailgoldmine/','','Contains IFrames','PASSED','sendmailing.php'),(765,'2024-03-08',327,'https://www.easycash4ads.com/profiting','','Contains IFrames','PASSED','sendmailing.php'),(766,'2024-03-12',179,'https://www.trafficmaximizer.com/splashpage.php?id=4&amp;r=PeterRT&amp;t=soloswaps&amp;intellisplash=9','','','PASSED','sendmailing.php'),(767,'2024-03-13',312,'https://videofunnels.ai/pages/2/KF40124C','','','PASSED','sendmailing.php'),(768,'2024-03-17',327,'https://mycash4all.com/lcp.php?pid=1&amp;r=martinf&amp;intellisplash=9','','','PASSED','sendmailing.php'),(769,'2024-03-17',312,'https://www.MoneyMakingIdeas101.com/?rd=ui3Ezssf&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(770,'2024-03-17',140,'https://www.bjsetc.com/?rd=xs64b3Oj&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(771,'2024-03-22',312,'https://llpgpro.com/emailgoldmine/','','Contains IFrames','PASSED','sendmailing.php'),(772,'2024-03-29',327,'https://www.easycash4ads.com/default2.aspx?ref=profiting&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(773,'2024-04-06',312,'https://www.MoneyMakingIdeas101.com/?rd=ui3Ezssf&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(774,'2024-04-07',327,'https://www.easycash4ads.com/default2.aspx?ref=profiting&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(775,'2024-04-11',53,'https://wavestatebliss.com/how-to-increase-your-iq-uncork-your-brains-potential/','','','PASSED','sendmailing.php'),(776,'2024-04-11',97,'https://jvz2.com/c/65497/267113','','Site Redirects','PASSED','sendmailing.php'),(777,'2024-04-15',327,'https://www.easycash4ads.com/default2.aspx?ref=profiting&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(778,'2024-04-20',327,'https://www.easycash4ads.com/default2.aspx?ref=profiting&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(779,'2024-04-20',179,'https://affiliateentrepreneur.com/click/?easyadvertisingbiz/&amp;t=soloswaps&amp;intellisplash=9','','Contains Frames','PASSED','sendmailing.php'),(780,'2024-04-20',53,'https://wavestatebliss.com/remarkable-brainwave-audio-shot-rips-mental-chaos-out-by-its-roots/','','','PASSED','sendmailing.php'),(781,'2024-04-23',53,'https://justpaste.it/wealthbraincodereview','','','PASSED','sendmailing.php'),(782,'2024-04-23',53,'https://mastermanifest.blogspot.com/2023/06/how-to-manifest-something-by-writing-it.html','','Contains IFrames','PASSED','sendmailing.php'),(783,'2024-04-25',337,'https://www.TheBizCreators.com/?rd=fj4lkKwZ','','Site Redirects','PASSED','checktracker.php'),(784,'2024-04-25',337,'https://www.TheBizCreators.com/?rd=vk98BeIO','','Site Redirects','PASSED','checktracker.php'),(785,'2024-04-25',337,'https://www.TheBizCreators.com/?rd=mv1hEenX','','Site Redirects','PASSED','checktracker.php'),(786,'2024-04-25',337,'https://www.TheBizCreators.com/?rd=ik7EchP1','','Site Redirects','PASSED','checktracker.php'),(787,'2024-04-25',337,'https://www.TheBizCreators.com/?rd=uy0itDI4','','Site Redirects','PASSED','checktracker.php'),(788,'2024-04-25',337,'https://www.TheBizCreators.com/?rd=ck2TGNCe','','Site Redirects','PASSED','checktracker.php'),(789,'2024-04-25',337,'https://www.TheBizCreators.com/?rd=av3UGyGL','','Site Redirects','PASSED','checktracker.php'),(790,'2024-04-25',337,'https://www.TheBizCreators.com/?rd=uh8MuDA5','','Site Redirects','PASSED','checktracker.php'),(791,'2024-04-25',337,'https://www.TheBizCreators.com/?rd=rj5hS3MQ','','Site Redirects','PASSED','checktracker.php'),(792,'2024-04-25',337,'https://www.TheBizCreators.com/?rd=xd3ZnCuU','','Site Redirects','PASSED','checktracker.php'),(793,'2024-04-27',312,'https://kerstinf.gotbackup.com','','Contains IFrames','PASSED','sendmailing.php'),(794,'2024-04-30',314,'https://22matrixpro.com/instaprof','','Site Redirects','PASSED','sendmailing.php'),(795,'2024-05-02',53,'https://wavestatebliss.com/9-ways-to-overcome-negative-thoughts-with-unbowed-willpower/','','','PASSED','sendmailing.php'),(796,'2024-05-04',312,'https://llpgpro.com/emailgoldmine/','','Contains IFrames','PASSED','sendmailing.php'),(797,'2024-05-09',75,'https://bit.ly/3orPsyT','','Site Redirects','PASSED','checktracker.php'),(798,'2024-05-09',75,'https://bit.ly/3orPsyT','','Site Redirects','PASSED','checktracker.php'),(799,'2024-05-09',75,'https://bit.ly/3orPsyT','','Site Redirects','PASSED','checktracker.php'),(800,'2024-05-09',75,'https://bit.ly/3orPsyT','','Site Redirects','PASSED','checktracker.php'),(801,'2024-05-09',75,'https://bit.ly/3orPsyT','','Site Redirects','PASSED','checktracker.php'),(802,'2024-05-09',75,'https://bit.ly/3orPsyT','','Site Redirects','PASSED','checktracker.php'),(803,'2024-05-09',75,'https://bit.ly/3orPsyT','','Site Redirects','PASSED','checktracker.php'),(804,'2024-05-09',75,'https://bit.ly/3orPsyT','','Site Redirects','PASSED','checktracker.php'),(805,'2024-05-09',75,'https://bit.ly/3orPsyT','','Site Redirects','PASSED','checktracker.php'),(806,'2024-05-09',75,'https://bit.ly/3orPsyT','','Site Redirects','PASSED','checktracker.php'),(807,'2024-05-13',327,'https://www.easycash4ads.com/default2.aspx?ref=profiting&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(808,'2024-05-13',179,'https://www.trafficmaximizer.com/splashpage.php?id=2&amp;r=PeterRT&amp;t=soloswaps&amp;intellisplash=9','','','PASSED','sendmailing.php'),(809,'2024-05-16',75,'https://warriorplus.com/o2/a/z718nl/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(810,'2024-05-17',22,'https://earn.sentext.jeffdionne.com/splashpage.php?splashid=25&amp;intellisplash=9','','','PASSED','sendmailing.php'),(811,'2024-05-17',9,'https://www.trker.com/go/131363','','Site Redirects','PASSED','sendmailing.php'),(812,'2024-05-18',312,'https://kerstinf.gotbackup.com/','','Contains IFrames','PASSED','sendmailing.php'),(813,'2024-05-19',91,'https://www.reallysmart.art/s/2.aspx?u=1074&amp;intellisplash=9','','','PASSED','sendmailing.php'),(814,'2024-05-21',327,'https://www.easycash4ads.com/default2.aspx?ref=profiting&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(815,'2024-05-21',53,'https://embellishedmind.com','Host Not Found','','FAILED','sendmailing.php'),(816,'2024-05-21',53,'https://justpaste.it/confidenceboost','','','PASSED','sendmailing.php'),(817,'2024-05-22',140,'https://www.bjsetc.com/?rd=pd5G7xMF','','Site Redirects','PASSED','checktracker.php'),(818,'2024-05-22',140,'https://www.bjsetc.com/?rd=jz4sXYmn','','Site Redirects','PASSED','checktracker.php'),(819,'2024-05-22',140,'https://www.shoplivegood.com/Kr8zzy?SOURCE=WP','','','PASSED','checktracker.php'),(820,'2024-05-24',75,'https://warriorplus.com/o2/a/ll9d3s/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(821,'2024-05-29',75,'https://warriorplus.com/o2/a/z718nl/0','','Contains Meta Refresh','PASSED','sendmailing.php'),(822,'2024-05-30',312,'https://llpgpro.com/aihumanwriting/','','Contains IFrames','PASSED','sendmailing.php'),(823,'2024-06-02',297,'https://llpgpro.com/WSBSHowHot/soloswapsHotNoma','','Contains IFrames','PASSED','sendmailing.php'),(824,'2024-06-02',312,'https://kerstinf.gotbackup.com/?tr=FSA&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(825,'2024-06-03',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(826,'2024-06-03',140,'https://www.bjsetc.com/?rd=xs9D0pyp&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(827,'2024-06-06',312,'https://kerstinf.gotbackuptour.com/?tr=fsa&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(828,'2024-06-12',312,'https://kerstinf.gotbackuptour.com/?tr=fsa&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(829,'2024-06-17',312,'https://kerstinf.gotbackuptour.com/?tr=fsa&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(830,'2024-06-23',297,'https://llpgpro.com/livingthegetaway/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(831,'2024-06-25',242,'https://mb101.net/ssss1','','Site Redirects','PASSED','sendmailing.php'),(832,'2024-06-29',312,'https://llpgpro.com/emailgoldmine/','','Contains IFrames','PASSED','sendmailing.php'),(833,'2024-07-01',111,'https://https://llpgpro.com/easycommissionfunnel2/soloswaps','Invalid URL','','FAILED','sendmailing.php'),(834,'2024-07-01',111,'https://llpgpro.com/easycommissionfunnel2/soloswaps','','Contains IFrames','PASSED','sendmailing.php'),(835,'2024-07-02',111,'https://llpgpro.com/easycommissionfunnel2/','','Contains IFrames','PASSED','sendmailing.php'),(836,'2024-07-04',111,'https://llpgpro.com/x3cbsxsn/solosswap','','Contains IFrames','PASSED','sendmailing.php'),(837,'2024-07-04',312,'https://llpgpro.com/only100deal/','','Contains IFrames','PASSED','sendmailing.php'),(838,'2024-07-08',312,'https://llpgpro.com/only100deal/','','Contains IFrames','PASSED','sendmailing.php'),(839,'2024-07-12',312,'https://easycommissionfunnel.com/registration?id=commissionforlife&amp;track=Worldprofit&amp;intellisplash=9','','','PASSED','sendmailing.php'),(840,'2024-07-13',91,'https://clicktrakr.biz/quantumix','','','PASSED','sendmailing.php'),(841,'2024-07-14',89,'https://llclickpro.com/r/68xwwmsd/bizventures','','Contains Frames','PASSED','sendmailing.php'),(842,'2024-07-15',312,'https://easycommissionfunnel.com/registration2?id=commissionforlife&amp;track=Frank&amp;intellisplash=9','','','PASSED','sendmailing.php'),(843,'2024-07-22',91,'https://enichebiz.com/join_tb-7829-3338','','','PASSED','sendmailing.php'),(844,'2024-07-23',312,'https://kerstinf.gotbackuptour.com/?tr=fsa&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(845,'2024-07-26',312,'https://easycommissionfunnel.com/registration2?id=commissionforlife&amp;track=Frank&amp;intellisplash=9','','','PASSED','sendmailing.php'),(846,'2024-07-27',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(847,'2024-08-01',312,'https://easycommissionfunnel.com/registration2?id=commissionforlife&amp;track=Frank&amp;intellisplash=9','','','PASSED','sendmailing.php'),(848,'2024-08-02',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(849,'2024-08-04',312,'https://llpgpro.com/only100deal','','Contains IFrames','PASSED','sendmailing.php'),(850,'2024-08-05',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(851,'2024-08-09',53,'https://esotericway.blogspot.com/2024/08/money-spells-mystical-methods-for.html','','Contains IFrames','PASSED','sendmailing.php'),(852,'2024-08-10',312,'https://llpgpro.com/only100deal','','Contains IFrames','PASSED','sendmailing.php'),(853,'2024-08-13',312,'https://llpgpro.com/only100deal','','Contains IFrames','PASSED','sendmailing.php'),(854,'2024-08-16',311,'https://llclickpro.com/4smjg9np/','','Contains Meta Refresh','PASSED','sendmailing.php'),(855,'2024-08-16',312,'https://llpgpro.com/only100deal','','Contains IFrames','PASSED','sendmailing.php'),(856,'2024-08-17',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(857,'2024-08-20',312,'https://easycommissionfunnel.com/registration2?id=commissionforlife&amp;intellisplash=9','','','PASSED','sendmailing.php'),(858,'2024-08-20',401,'https://lllpg.com/mdjdnwnf/soloswaps/','','Contains IFrames','PASSED','sendmailing.php'),(859,'2024-08-21',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(860,'2024-08-21',301,'https://www.im-club.com/twpage01.php?r=onesuccess&amp;intellisplash=9','','','PASSED','sendmailing.php'),(861,'2024-08-22',111,'https://lllpg.com/iis-personalinvite','','Contains IFrames','PASSED','sendmailing.php'),(862,'2024-08-23',312,'https://llpgpro.com/only100deal','','Contains IFrames','PASSED','sendmailing.php'),(863,'2024-08-25',9,'https://gohere247.com/smw','','Contains IFrames','PASSED','sendmailing.php'),(864,'2024-08-25',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(865,'2024-08-25',301,'https://www.im-club.com/twpage01.php?r=onesuccess&amp;intellisplash=9','','','PASSED','sendmailing.php'),(866,'2024-08-29',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(867,'2024-08-31',75,'https://tinyurl.com/uhpef7bm','','Site Redirects','PASSED','checktracker.php'),(868,'2024-08-31',75,'https://tinyurl.com/uhpef7bm','','Site Redirects','PASSED','checktracker.php'),(869,'2024-08-31',75,'https://tinyurl.com/uhpef7bm','','Site Redirects','PASSED','checktracker.php'),(870,'2024-08-31',75,'https://tinyurl.com/uhpef7bm','','Site Redirects','PASSED','checktracker.php'),(871,'2024-08-31',75,'https://tinyurl.com/uhpef7bm','','Site Redirects','PASSED','checktracker.php'),(872,'2024-08-31',75,'https://tinyurl.com/uhpef7bm','','Site Redirects','PASSED','checktracker.php'),(873,'2024-08-31',75,'https://tinyurl.com/uhpef7bm','','Site Redirects','PASSED','checktracker.php'),(874,'2024-08-31',75,'https://tinyurl.com/uhpef7bm','','Site Redirects','PASSED','checktracker.php'),(875,'2024-08-31',75,'https://tinyurl.com/uhpef7bm','','Site Redirects','PASSED','checktracker.php'),(876,'2024-08-31',75,'https://tinyurl.com/uhpef7bm','','Site Redirects','PASSED','checktracker.php'),(877,'2024-08-31',75,'https://5dollarfriday.idevaffiliate.com/127.html','','Site Redirects','PASSED','sendmailing.php'),(878,'2024-09-02',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(879,'2024-09-06',75,'https://5dollarfriday.idevaffiliate.com/127.html','','Site Redirects','PASSED','sendmailing.php'),(880,'2024-09-08',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(881,'2024-09-18',312,'https://llpgpro.com/mzc35yjh/','','Contains IFrames','PASSED','sendmailing.php'),(882,'2024-09-19',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(883,'2024-09-21',312,'https://kerstinfrashier.com/','','','PASSED','sendmailing.php'),(884,'2024-09-24',312,'https://www.kerstinfrashier.com/bridge','','','PASSED','sendmailing.php'),(885,'2024-09-25',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(886,'2024-09-27',312,'https://www.kerstinfrashier.com/opc','','','PASSED','sendmailing.php'),(887,'2024-09-28',327,'https://www.leadsleap.com?r=marfla&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(888,'2024-09-30',221,'https://zoransimovic.aweb.page/Escape-Plan','','Page Not Found','PASSED','sendmailing.php'),(889,'2024-09-30',312,'https://kerstinfrashier.com/sl','','Site Redirects','PASSED','sendmailing.php'),(890,'2024-10-01',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','sendmailing.php'),(891,'2024-10-01',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(892,'2024-10-01',405,'https://all4webs.com/tactical2k','','Contains IFrames','PASSED','checktracker.php'),(893,'2024-10-06',312,'https://kerstinfrashier.com/superlink','','Site Redirects','PASSED','sendmailing.php'),(894,'2024-10-14',53,'https://affilireviews.blogspot.com/2024/10/cuisinart-air-fryer-toaster-oven-toa-70.html','','Contains IFrames','PASSED','sendmailing.php'),(895,'2024-10-18',312,'https://kerstinfrashier.com/direct','','Site Redirects','PASSED','sendmailing.php'),(896,'2024-10-18',301,'https://dderr5.systeme.io/first1kai','','','PASSED','sendmailing.php'),(897,'2024-10-19',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(898,'2024-10-21',312,'https://kerstinfrashier.com/direct','','Site Redirects','PASSED','sendmailing.php'),(899,'2024-10-24',312,'https://kerstinfrashier.com/viralclipping','','Site Redirects','PASSED','sendmailing.php'),(900,'2024-10-25',53,'https://wavestatebliss.com/struggling-to-find-purpose-become-a-mindfulness-teacher-now/','','','PASSED','sendmailing.php'),(901,'2024-10-25',53,'https://wavestatebliss.com','','','PASSED','checktracker.php'),(902,'2024-10-25',50,'https://llclick.com/r/pm7yr6k2/','','Contains Frames','PASSED','sendmailing.php'),(903,'2024-10-26',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(904,'2024-10-29',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','checktracker.php'),(905,'2024-10-29',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','checktracker.php'),(906,'2024-10-29',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','checktracker.php'),(907,'2024-10-29',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','checktracker.php'),(908,'2024-10-29',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','checktracker.php'),(909,'2024-10-29',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','checktracker.php'),(910,'2024-10-29',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','checktracker.php'),(911,'2024-10-29',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','checktracker.php'),(912,'2024-10-29',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','checktracker.php'),(913,'2024-10-29',75,'https://tinyurl.com/5e6vyzax','','Site Redirects','PASSED','checktracker.php'),(914,'2024-10-30',312,'https://kerstinfrashier.com/bridgemarketing','','Site Redirects','PASSED','sendmailing.php'),(915,'2024-10-31',111,'https://digi-josh.com/iis-academy','','','PASSED','sendmailing.php'),(916,'2024-10-31',53,'https://affilireviews.blogspot.com/2024/10/recession-profit-secrets-v2-review.html','','Contains IFrames','PASSED','sendmailing.php'),(917,'2024-10-31',22,'https://1bannerbox.com/jeffdionne','','','PASSED','sendmailing.php'),(918,'2024-10-31',161,'https://www.freelistmonster.com/?u=320&amp;js=video&amp;js=soloswaps&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(919,'2024-11-01',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(920,'2024-11-02',312,'https://kerstinfrashier.com/direct','','Site Redirects','PASSED','sendmailing.php'),(921,'2024-11-04',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(922,'2024-11-05',312,'https://thesuperlink.com/superlink?ref=kerstin&amp;source=email&amp;intellisplash=9','','','PASSED','sendmailing.php'),(923,'2024-11-05',327,'https://www.freelistmonster.com/?u=1237&amp;js=video&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(924,'2024-11-08',312,'https://videofunnels.ai/bridge/914B23NP','','Contains IFrames','PASSED','sendmailing.php'),(925,'2024-11-08',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(926,'2024-11-11',312,'https://videofunnels.ai/bridge/7B8QAMSC','','Contains IFrames','PASSED','sendmailing.php'),(927,'2024-11-13',53,'https://affilireviews.blogspot.com/2024/10/recession-profit-secrets-v2-review.html','','Contains IFrames','PASSED','sendmailing.php'),(928,'2024-11-14',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(929,'2024-11-14',312,'https://kerstinfrashier.com/paidtraffic','','Site Redirects','PASSED','sendmailing.php'),(930,'2024-11-14',312,'https://kerstinfrashier.com/paidtraffic','','Site Redirects','PASSED','sendmailing.php'),(931,'2024-11-16',75,'https://5dollarfriday.my.canva.site/','','','PASSED','sendmailing.php'),(932,'2024-11-20',312,'https://kerstinfrashier.com/faceless','','Site Redirects','PASSED','sendmailing.php'),(933,'2024-11-21',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(934,'2024-11-23',327,'https://www.freelistmonster.com/?u=1237&amp;js=video&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(935,'2024-11-23',312,'https://kerstinfrashier.com/youtubeacademy','','Site Redirects','PASSED','sendmailing.php'),(936,'2024-11-24',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(937,'2024-12-05',312,'https://kerstinfrashier.com/superlink','','Site Redirects','PASSED','sendmailing.php'),(938,'2024-12-08',312,'https://kerstinfrashier.com/faceless','','Site Redirects','PASSED','sendmailing.php'),(939,'2024-12-08',9,'https://gohere247.com/smw','','Contains IFrames','PASSED','sendmailing.php'),(940,'2024-12-10',420,'https://www.50000FreeVisitors.com/?id=6290074&amp;intellisplash=9','','','PASSED','sendmailing.php'),(941,'2024-12-12',312,'https://kerstinfrashier.com/bridgemarketing','','Site Redirects','PASSED','sendmailing.php'),(942,'2024-12-12',312,'https://kerstinfrashier.com/bridgemarketing','','Site Redirects','PASSED','sendmailing.php'),(943,'2024-12-12',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(944,'2024-12-15',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(945,'2024-12-17',312,'https://kerstinfrashier.com/youtubeacademy','','Site Redirects','PASSED','sendmailing.php'),(946,'2024-12-20',312,'https://kerstinfrashier.com/viralclipping','','Site Redirects','PASSED','sendmailing.php'),(947,'2024-12-22',9,'https://wintrafficdaily.com/index.php?r=cyberco&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(948,'2024-12-23',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(949,'2024-12-25',9,'https://wintrafficdaily.com/index.php?r=cyberco&amp;intellisplash=9','','Site Redirects','PASSED','sendmailing.php'),(950,'2024-12-26',312,'https://kerstinfrashier.com/bridgemarketing','','Site Redirects','PASSED','sendmailing.php'),(951,'2024-12-26',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(952,'2024-12-28',53,'https://wavestatebliss.com/8-minute-meditation/','','','PASSED','sendmailing.php'),(953,'2024-12-30',327,'https://www.freelistmonster.com/?u=1237&amp;js=video&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(954,'2024-12-30',312,'https://kerstinfrashier.com/paidtraffic','','Site Redirects','PASSED','sendmailing.php'),(955,'2024-12-30',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(956,'2025-01-02',111,'https://affiliatemarketing.digi-josh.com/ffp','','','PASSED','sendmailing.php'),(957,'2025-01-02',312,'https://kerstinfrashier.com/faceless','','Site Redirects','PASSED','sendmailing.php'),(958,'2025-01-03',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(959,'2025-01-06',327,'https://mycash4all.com/?newagemoney&amp;intellisplash=9','','','PASSED','sendmailing.php'),(960,'2025-01-07',53,'https://epicsolutions.sendibble.com/bestyearever','','','PASSED','sendmailing.php'),(961,'2025-01-08',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(962,'2025-01-25',312,'https://listladder.com/auth/register.php?ref=7S4BKPU1&amp;tracking_param_1=Frank&amp;tracking_param_2=email&amp;intellisplash=9','','','PASSED','sendmailing.php'),(963,'2025-01-25',9,'https://www.trker.com/go/129648','','Site Redirects','PASSED','sendmailing.php'),(964,'2025-01-26',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(965,'2025-03-07',53,'https://quotegully.blogspot.com/2025/03/betrayed-by-friend-35-healing-quotes.html','','Contains IFrames','PASSED','sendmailing.php'),(966,'2025-03-07',38,'https://llclickpro.com/xggfwpkh/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(967,'2025-03-08',327,'https://superhotopp.com/profiting','','','PASSED','sendmailing.php'),(968,'2025-03-08',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(969,'2025-03-08',5,'https://llclickpro.com/60-Minutes/freeemailads','','Contains Meta Refresh','PASSED','sendmailing.php'),(970,'2025-03-08',50,'https://llclick.com/t3r2h47b/','','Contains Meta Refresh','PASSED','sendmailing.php'),(971,'2025-03-08',50,'https://llclick.com/t3r2h47b/','','Contains Meta Refresh','PASSED','sendmailing.php'),(972,'2025-03-08',164,'https://clicktrakr.biz/WeeklyOffer','','','PASSED','sendmailing.php'),(973,'2025-03-11',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(974,'2025-03-12',5,'https://im-club.com/testing/','','Contains IFrames','PASSED','sendmailing.php'),(975,'2025-03-18',5,'https://leadsgeneration.club/frustration/pma','','Site Redirects','PASSED','sendmailing.php'),(976,'2025-03-19',301,'https://escapeplanis.com/lp/escapeplanis1iftf/1/RMD5MKYDXN','','','PASSED','sendmailing.php'),(977,'2025-03-20',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(978,'2025-03-23',327,'https://www.easycash4ads.com/profiting','','Contains IFrames','PASSED','sendmailing.php'),(979,'2025-03-24',388,'https://instant.full-access.info/referrals/','','','PASSED','sendmailing.php'),(980,'2025-03-29',53,'https://quotegully.blogspot.com/2025/03/40-life-changing-quotes-that-make.html','','Contains IFrames','PASSED','sendmailing.php'),(981,'2025-04-12',301,'https://escapeplanis.com/lp/escapeplanis1iftf/1/RMD5MKYDXN','','','PASSED','sendmailing.php'),(982,'2025-05-02',53,'https://hubforlove.blogspot.com/2025/05/why-am-i-not-getting-any-tinder-matches.html','','Contains IFrames','PASSED','sendmailing.php'),(983,'2025-05-06',91,'https://NexusSnap.com/lincsnxr','','Page Not Found','PASSED','sendmailing.php'),(984,'2025-05-07',388,'https://instant.full-access.info/','','','PASSED','sendmailing.php'),(985,'2025-05-31',9,'https://www.trker.com/go/131363','','Site Redirects','PASSED','sendmailing.php'),(986,'2025-06-01',388,'https://instant.full-access.info/','','','PASSED','sendmailing.php'),(987,'2025-06-02',351,'https://www.rotate4all.com/ptp/promote-266948','','Contains Meta Refresh','PASSED','checktracker.php'),(988,'2025-06-12',53,'https://illnesshelp.blogspot.com/2025/06/covenant-eyes-review-contdivwidth100.html','','Contains IFrames','PASSED','sendmailing.php'),(989,'2025-06-13',388,'https://instant.full-access.info/','','','PASSED','sendmailing.php'),(990,'2025-06-14',53,'https://illnesshelp.blogspot.com/2025/06/covenant-eyes-review-contdivwidth100.html','','Contains IFrames','PASSED','sendmailing.php'),(991,'2025-06-14',51,'https://llclickpro.com/r/gamechanger/soloswaps','','Contains Frames','PASSED','sendmailing.php'),(992,'2025-06-17',388,'https://instant.full-access.info/','','','PASSED','sendmailing.php'),(993,'2025-06-17',91,'https://esurfitdigital.com/youtube-marketing-supremacy-checklist/','','','PASSED','sendmailing.php'),(994,'2025-06-20',388,'https://instant.full-access.info/','','','PASSED','sendmailing.php'),(995,'2025-06-22',91,'https://esurfitdigital.com/youtube-marketing-supremacy-checklist/','','','PASSED','sendmailing.php'),(996,'2025-06-23',327,'https://www.satoshimultiplier.com/?newagemoney&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(997,'2025-06-24',388,'https://instant.full-access.info/','','','PASSED','sendmailing.php'),(998,'2025-06-30',91,'https://easycommissionfunnel.com/registration?id=lincolnaniteye&amp;intellisplash=9','','','PASSED','sendmailing.php'),(999,'2025-06-30',445,'https://tinyurl.com/save217','','Site Redirects','PASSED','checktracker.php'),(1000,'2025-07-01',445,'https://www.trafficboostupx.com?via=shirleyr','','','PASSED','checktracker.php'),(1001,'2025-07-01',445,'https://hitzcash.com/fbupd3cu','','','PASSED','checktracker.php'),(1002,'2025-07-03',91,'https://go.e1ulife.com/?affid=LincsGO1E&amp;intellisplash=9','','','PASSED','sendmailing.php'),(1003,'2025-07-04',388,'https://instant.full-access.info/','','','PASSED','sendmailing.php'),(1004,'2025-07-10',53,'https://wavestatebliss.com/true-bliss/','','','PASSED','sendmailing.php'),(1005,'2025-07-18',91,'https://www.mynexusrewards.com/lincsnxr','','Page Not Found','PASSED','sendmailing.php'),(1006,'2025-07-19',388,'https://instant.full-access.info/','','','PASSED','sendmailing.php'),(1007,'2025-07-24',327,'https://bitcoinguide.systeme.io/4eb9c229','','','PASSED','sendmailing.php'),(1008,'2025-07-25',388,'https://instant.full-access.info/','','','PASSED','sendmailing.php'),(1009,'2025-07-26',53,'https://vconfident.com/covenant-eyes-review/','','Contains IFrames','PASSED','sendmailing.php'),(1010,'2025-07-27',75,'https://tinyurl.com/mufxvtut','','Site Redirects','PASSED','sendmailing.php'),(1011,'2025-07-28',388,'https://instant.full-access.info/','','','PASSED','sendmailing.php'),(1012,'2025-08-07',327,'https://bitcoinguide.systeme.io/4eb9c229','','','PASSED','sendmailing.php'),(1013,'2025-08-17',448,'https://app.freeforyou.com/c/2xi4','Too Large - Over 200000 Characters Of Text','','FAILED','checktracker.php'),(1014,'2025-08-17',448,'https://app.freeforyou.com/ir/2xi4','','Contains IFrames','PASSED','checktracker.php'),(1015,'2025-08-17',448,'https://app.freeforyou.com/ir/2xi4','','Contains IFrames','PASSED','sendmailing.php'),(1016,'2025-08-18',388,'https://llpgpro.com/copysystem/marius','','','PASSED','sendmailing.php'),(1017,'2025-08-25',53,'https://wavestatebliss.com/reinvent-yourself/','','','PASSED','sendmailing.php'),(1018,'2025-08-31',327,'https://lllpg.com/bpnksc9t/','','Contains IFrames','PASSED','sendmailing.php'),(1019,'2025-09-02',91,'https://rebrandxpress.com/ll/?ref=1087549&amp;intellisplash=9','','','PASSED','sendmailing.php'),(1020,'2025-09-04',53,'https://wavestatebliss.com/guilt-trips/','','','PASSED','sendmailing.php'),(1021,'2025-09-05',388,'https://llpgpro.com/copysystem/marius','','','PASSED','sendmailing.php'),(1022,'2025-09-10',38,'https://llclickpro.com/jxgkrbkn/soloswaps','','Contains Meta Refresh','PASSED','sendmailing.php'),(1023,'2025-09-15',91,'https://aicashbeast.com/lincsaitcb','','','PASSED','sendmailing.php'),(1024,'2025-09-22',91,'https://aicashbeast.com/lincsaitcb','','','PASSED','sendmailing.php'),(1025,'2025-09-23',388,'https://llpgpro.com/autocashflow/marius1','','','PASSED','sendmailing.php'),(1026,'2025-10-02',327,'https://bitcoinguide.systeme.io/8af89dd4','','','PASSED','sendmailing.php'),(1027,'2025-10-08',176,'https://www.safelist8.com/2025/09/5-signups-and-2-upgrades-from-55-views.html','','Contains IFrames','PASSED','sendmailing.php'),(1028,'2025-10-09',388,'https://llpgpro.com/autocashflow/marius1','','','PASSED','sendmailing.php'),(1029,'2025-10-10',91,'https://aicashbeast.com/lincsaitcb','','','PASSED','sendmailing.php'),(1030,'2025-10-13',388,'https://llpgpro.com/autocashflow/marius1','','','PASSED','sendmailing.php'),(1031,'2025-10-15',91,'https://freepostzone.com/ebook-valet-review-2025-the-ai-software-that-writes-designs-and-monetizes-your-10000-word-ebooks-with-zero-api-costs/','','','PASSED','sendmailing.php'),(1032,'2025-10-19',91,'https://freepostzone.com/ebook-valet-review-2025-the-ai-software-that-writes-designs-and-monetizes-your-10000-word-ebooks-with-zero-api-costs/','','','PASSED','sendmailing.php'),(1033,'2025-10-20',388,'https://llpgpro.com/autocashflow/marius1','','','PASSED','sendmailing.php'),(1034,'2025-10-25',91,'https://freepostzone.com/ebook-valet-review-2025-the-ai-software-that-writes-designs-and-monetizes-your-10000-word-ebooks-with-zero-api-costs/','','','PASSED','sendmailing.php'),(1035,'2025-10-26',388,'https://llpgpro.com/autocashflow/marius1','','','PASSED','sendmailing.php'),(1036,'2025-11-13',91,'https://secondsplash.cc/?s=8631&amp;u=1235&amp;sp=1140&amp;intellisplash=9','','','PASSED','sendmailing.php'),(1037,'2025-11-14',388,'https://llpgpro.com/autocashflow/marius1','','','PASSED','sendmailing.php'),(1038,'2025-12-01',91,'https://aicashbeast.com/lincsaitcb','','','PASSED','sendmailing.php'),(1039,'2025-12-02',388,'https://llpgpro.com/autocashflow/marius1','','','PASSED','sendmailing.php'),(1040,'2025-12-18',327,'https://mycash4all.com/?newagemoney&amp;intellisplash=9','','','PASSED','sendmailing.php'),(1041,'2025-12-23',75,'https://x.com/peterpo39495648','','','PASSED','sendmailing.php'),(1042,'2025-12-24',388,'https://instant.full-access.info/invite/','','','PASSED','sendmailing.php'),(1043,'2026-01-01',327,'https://mycash4all.com/?newagemoney&amp;intellisplash=9','','','PASSED','sendmailing.php'),(1044,'2026-01-17',327,'https://mycash4all.com/?newagemoney&amp;intellisplash=9','','','PASSED','sendmailing.php'),(1045,'2026-01-18',388,'https://instant.full-access.info/invite/','','','PASSED','sendmailing.php'),(1046,'2026-02-05',327,'https://www.easycash4ads.com/autoplay.aspx?ref=profiting&amp;intellisplash=9','','Contains IFrames','PASSED','sendmailing.php'),(1047,'2026-02-11',91,'https://automaticbuilder.com/abcp3.php?user=lincsnxrb&amp;intellisplash=9','','','PASSED','sendmailing.php'),(1048,'2026-02-12',388,'https://instant.full-access.info/invite/','','','PASSED','sendmailing.php'),(1049,'2026-02-18',91,'https://ihavebitcoin.com/amember/aff/go/lincsihbc','','Site Redirects','PASSED','sendmailing.php'),(1050,'2026-02-26',91,'https://llpgpro.com/7tcx6mtx/','','Contains IFrames','PASSED','sendmailing.php'),(1051,'2026-03-03',327,'https://www.easycash4ads.com/profiting','','Contains IFrames','PASSED','sendmailing.php'),(1052,'2026-03-03',448,'https://paidviewpoint.com/landing/?r=whq21w&amp;intellisplash=9','','','PASSED','sendmailing.php'),(1053,'2026-03-04',388,'https://instant.full-access.info/invite/','','','PASSED','sendmailing.php'),(1054,'2026-03-08',673,'https://llclick.com/r/p9zgg9r5/','','Contains Frames','PASSED','checktracker.php'),(1055,'2026-03-10',91,'https://llpgpro.com/7tcx6mtx/','','Contains IFrames','PASSED','sendmailing.php'),(1056,'2026-03-14',91,'https://enichemarket.com/freemagbot','','Site Redirects','PASSED','sendmailing.php'),(1057,'2026-03-14',327,'https://www.easycash4ads.com/profiting','','Contains IFrames','PASSED','sendmailing.php'),(1058,'2026-04-05',91,'https://olspsystem.com/join/1000028/a1','','Site Redirects','PASSED','sendmailing.php'),(1059,'2026-04-11',176,'https://www.safelist8.com/2026/03/4-signups-and-2-upgrades-from-45-views.html','','Contains IFrames','PASSED','sendmailing.php');
/*!40000 ALTER TABLE `oto_f4checks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_filelib`
--

DROP TABLE IF EXISTS `oto_filelib`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_filelib` (
  `fileid` int(11) NOT NULL AUTO_INCREMENT,
  `filename` varchar(255) NOT NULL DEFAULT '',
  `description` text DEFAULT NULL,
  `filetag` varchar(50) NOT NULL DEFAULT '',
  `filetitle` varchar(100) NOT NULL DEFAULT 'New File',
  PRIMARY KEY (`fileid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_filelib`
--

LOCK TABLES `oto_filelib` WRITE;
/*!40000 ALTER TABLE `oto_filelib` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_filelib` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_groups`
--

DROP TABLE IF EXISTS `oto_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_groups` (
  `groupid` int(11) NOT NULL AUTO_INCREMENT,
  `groupname` varchar(30) NOT NULL DEFAULT '',
  `comm` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`groupid`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_groups`
--

LOCK TABLES `oto_groups` WRITE;
/*!40000 ALTER TABLE `oto_groups` DISABLE KEYS */;
INSERT INTO `oto_groups` (`groupid`, `groupname`, `comm`) VALUES (1,'Everyone',0);
/*!40000 ALTER TABLE `oto_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_hackblock_exceptions`
--

DROP TABLE IF EXISTS `oto_hackblock_exceptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_hackblock_exceptions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `exctype` int(11) NOT NULL DEFAULT 1,
  `excvalue` varchar(50) NOT NULL DEFAULT '',
  `newlimit` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `excvalue` (`excvalue`),
  KEY `exctype` (`exctype`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_hackblock_exceptions`
--

LOCK TABLES `oto_hackblock_exceptions` WRITE;
/*!40000 ALTER TABLE `oto_hackblock_exceptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_hackblock_exceptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_inboxsettings`
--

DROP TABLE IF EXISTS `oto_inboxsettings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_inboxsettings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `inbox_show` int(11) NOT NULL DEFAULT 0,
  `inbox_duration` int(11) NOT NULL DEFAULT 0,
  `inbox_lastdel` date NOT NULL DEFAULT '0000-00-00',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_inboxsettings`
--

LOCK TABLES `oto_inboxsettings` WRITE;
/*!40000 ALTER TABLE `oto_inboxsettings` DISABLE KEYS */;
INSERT INTO `oto_inboxsettings` (`id`, `inbox_show`, `inbox_duration`, `inbox_lastdel`) VALUES (1,20,5,'2026-03-03');
/*!40000 ALTER TABLE `oto_inboxsettings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_ipn_cats`
--

DROP TABLE IF EXISTS `oto_ipn_cats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_ipn_cats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `catname` varchar(50) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_ipn_cats`
--

LOCK TABLES `oto_ipn_cats` WRITE;
/*!40000 ALTER TABLE `oto_ipn_cats` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_ipn_cats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_ipn_merchants`
--

DROP TABLE IF EXISTS `oto_ipn_merchants`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_ipn_merchants` (
  `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(18) NOT NULL DEFAULT '',
  `payee` varchar(60) NOT NULL DEFAULT '',
  `verify` varchar(32) NOT NULL DEFAULT '',
  `buy_now` text NOT NULL,
  `subscribe` text NOT NULL,
  `defaultbutton` mediumblob NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_ipn_merchants`
--

LOCK TABLES `oto_ipn_merchants` WRITE;
/*!40000 ALTER TABLE `oto_ipn_merchants` DISABLE KEYS */;
INSERT INTO `oto_ipn_merchants` (`id`, `name`, `payee`, `verify`, `buy_now`, `subscribe`, `defaultbutton`) VALUES (1,'PayPal','','','<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_xclick\">\r\n<input type=\"hidden\" name=\"business\" value=\"[merchant_id]\">\r\n<input type=\"hidden\" name=\"item_name\" value=\"[item_name]\">\r\n<input type=\"hidden\" name=\"amount\" value=\"[amount]\">\r\n<input type=\"hidden\" name=\"no_note\" value=\"1\">\r\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\r\n<input type=\"hidden\" name=\"item_number\" value=\"[item_number]\">\r\n<input type=\"hidden\" name=\"custom\" value=\"[user_id]\">\r\n<input type=\"hidden\" name=\"return\" value=\"[return]\">\r\n<input type=\"hidden\" name=\"notify_url\" value=\"[notify]\">\r\n<input type=\"image\" src=\"[merchant_button]\" border=\"0\" name=\"submit\" alt=\"Make payments with PayPal - it\'s fast, free and secure!\">\r\n</form>','<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\">\r\n<input type=\"hidden\" name=\"business\" value=\"[merchant_id]\">\r\n<input type=\"hidden\" name=\"item_name\" value=\"[item_name]\">\r\n<input type=\"hidden\" name=\"no_shipping\" value=\"1\">\r\n<input type=\"hidden\" name=\"no_note\" value=\"1\">\r\n<input type=\"hidden\" name=\"currency_code\" value=\"USD\">\r\n<input type=\"hidden\" name=\"bn\" value=\"PP-SubscriptionsBF\">\r\n<input type=\"hidden\" name=\"a1\" value=\"[trial_amount]\">\r\n<input type=\"hidden\" name=\"p1\" value=\"[trial_period]\">\r\n<input type=\"hidden\" name=\"t1\" value=\"[trial_type]\">\r\n<input type=\"hidden\" name=\"a3\" value=\"[amount]\">\r\n<input type=\"hidden\" name=\"p3\" value=\"[period]\">\r\n<input type=\"hidden\" name=\"t3\" value=\"[type]\">[recurring_payments]\r\n<input type=\"hidden\" name=\"src\" value=\"1\">\r\n<input type=\"hidden\" name=\"sra\" value=\"1\">\r\n<input type=\"hidden\" name=\"item_number\" value=\"[item_number]\">\r\n<input type=\"hidden\" name=\"custom\" value=\"[user_id]\">\r\n<input type=\"hidden\" name=\"return\" value=\"[return]\">\r\n<input type=\"hidden\" name=\"notify_url\" value=\"[notify]\">\r\n<input type=\"image\" src=\"[merchant_button]\" border=\"0\" name=\"submit\" alt=\"Make payments with PayPal - it\'s fast, free and secure!\">\r\n</form>','R0lGODlhPgAfAPcaAP/15f+tLf+yPJ2jpxs2ZP7PhP/79f7CVf+xNf7Vlf/DZv/y3ezlyubVsOHd\r\nxv+6RP+7WP+rKP/Kdu3XolNje/+yOf/89v/mvv/u0sDMz8wAAP+2Pbe5qf/px//lu5OquMbIvTps\r\nnoumvJKbqP/68b3BxSlCbOnm1lJ9pKqwqMG9rTVpnHSWsv/gr3iVqf/GaiM8Z/Px6//57P/quv7Z\r\npMbO1P7wy8fS1au9yv/47v+oI//NeEJyof714f/uxv+oIqSssnqbuf/isP/46v/qyf+uL/7NfvDh\r\nuKm6xdXc3V1rgTJIbv7mtWKJrP+9TFZ9n//itf+2RFJlge7r4/7Qj//9+Gp6lHaFnP+0Opmww/7X\r\njV6Gq9PTy//tzv7cnf+sK/7lsv/uyGRzh26OpK60uf+wMv/dqEx6pezMjf/679PRw46ou9vh4//6\r\n8P/ZlEBUdrW6tffNg/7bnISivUVae2iNrICMnv7dof/w1P/v1f7Rhf7SgvrSh//claS2vDdNc3OB\r\nlEd2pD5TdT5woP/x2f+9SvnYlNQpKP/21lpsiLa7vmuRsnF9i16Fpv/55kFWef7cpLzJ0Upef/7Y\r\nm4eaov/Uhv/PfcLLxUBxn0xggC5Gbv/26P/9+v/26TJnm//9+/+pJv7bov+nIv////+qJv/rzv/5\r\n79zg1ae5w4iUpf/hnrrHydra2f7gqWx3hv/36vj16WiPs//Ib8TGxl9wicjKw8/Pza/Cz9AOCfjb\r\no+CzX/ncov3HYOXMlPvrxv/pwttLS4WQnvbYnv/76/jx2GZtcri9wdTZzv7XmYyksf/iofLq1tXM\r\nrv/Ph42Rj2+RrJmWis/Krvz58t3CjO/u6Pnx1vby4//w0GeKpPb18ODk4ODd0KO0t62ztnB/llVn\r\nhEdYdfnTiv7RiO/o0f/35//36bDByf7Icv/emLK3vVWAplWAqIOPotDV0v7UkP/TkoCfuIWQorGo\r\nkv+tMP+3Sf+9Wf/Eav/Le/+qJ/7apv/rzf/bpf/kvP/SjhIzZtIVCiH5BAEAABoALAAAAAA+AB8A\r\nAAj/ADUI1CCqoMGDCBMqXMiQ4cCBoppdKJWnosWLGDNq3MgRIwZ+VERB7JDjk8mTKFOqXMmyJcsq\r\nADyI1NDvlYGbOA1Y2FmlZ8+dO3MK1QnUZxWgQYkitTBUHEEMpqJKNdWGRIwrmjSZ+GOlBgkDJMKK\r\nHRvWQLZYgQYNOhOEzVey0nAEmpOExFRTvwp22MS3L7lXMlhJIQADBgFNV2KkSSOjsWMZQxqbSsMm\r\nkKcQITzxyBKjDWMZi6nN8TRnypByfTctKJhngevXC3qQU6R1RAlvBB4Z63bFG7t0U0rYmUWOnC12\r\nA5CovVVjkactNXDAC7ImEixtW0LgAAAA9gJ+BaFg/xhPHk/sEQQSxRgGhACdVJkEPYLxZwR6K46s\r\nfSOQSsQKFsMMI4IndYiwxToorHBGJElgckY7CxCSB3kYEFHQBR1kmCERXeAxDiDpGUOGJAR4wwUQ\r\nigCRSXpkECCJI90cdoJzLGRgzhmeZHHDKhngsI4nH2Tw3DJ4dEGEhh2YUdAkHjTZJIZdgLAfDJoQ\r\nQAAttWwDRDCA0AFDMFwQ8Mc2jxAwQA84rsDDZSyccgoSa8BzRgiooOIJC9cQ8csFTnoARUFmtCBo\r\nC0KAccEvA5T5hhS0jMCAGpLA8A0tVMIxDgEmgPgGMccMskIjTbDgRzWXqBPCM3WsoM4qawDpwwVQ\r\nCP8xaAvvFNRMKLiGAkkrQszgigmaqGBDGD74wggBYiCihiZLODDOH1bCkAIifoQQiAM2+OBDGI0A\r\nicglmNRxSR0hwDFDC2ZAkmsoyBR0TwLwwjvJHUIIQoASDTChbwOuEEDBAEq4ZwMDgxEgRbYueOLC\r\nEUyAAcYR2HjyDDfdJgMCJigw08odk8SbwDv1FKTDOUYUUIAe/bghBwVLQLPLHXJ4cYc8f5gAjhjg\r\nODPDEcfCoMIMYFDyBAe5eBHzHSmgMAg2YzwBRzRPUCKMG+6IY3IBRigwT0E/kEJPPQq8IIsEO8QR\r\nxx6W7KC2JXugMY0hbhiCjioTiEFAMar0oQUffFj/kvbalaDRSx99uOGGFuGgLYEsL9ijQD0bKKSD\r\nDqBEUAQCWGSOQBEBXL7BA4U4IfoBvMhDmC68HPDABlhUUAbnnj8guhOFPLD6BptHAMrkk/9w0A+8\r\nUx7BF0Vw/kUE+EQQQBkIVJD55xUUA4MrBziBe/EBHJ/88s1X4D0CCLx+/O69LwT85KCAgg8+pKRP\r\nufrDf0E8Aht8fnsZX7Dv/vvJy3888voLHu98Z5D1GfCACEzg8C6Hhfph4XUATKAEJ3jAg8zjghjM\r\n4AX9wUF/aHAe4BOAACoAPgx6cIMfTKEKI1AQBIjwhTB8oT9EOMMZCqCGItyADWVowx728IZAjCEM\r\n/w0yD3oY8YhINGIH/UEPJjZRiU9MIhOnGEUqUjGJSIxCQSBQjy568Ytd9EcY6yFGMo6xjF8UoxrN\r\naMY1ohGMXRRAQehhjzra8Y519Ece7aFHPu6xj3fsIwf96Ec9GhKPeFRAQSRwj0Y68pGN7GAkJRlJ\r\nSFbykhx0pD/usUlLPjJkorBHP0ZJylKa8pSk9AcqV8lKVjbDVvuIpSxnSctaxtIftsylLnd5DpHQ\r\nAwr8CKYwh0nMYhrzmMhMJj+gAAGBiCIBFyCCPrqgj2pa85rYzKY2t8lNa1KTCBcQx0wIQg8q0CAf\r\n6EynOtfJzna6853rpAEVIDBOiDTknvjMp0IeEgEQADs=\r\n'),(2,'Payza','','','<form action=\"https://secure.payza.com/checkout/PayProcess.aspx\" method=\"post\">\r\n<input type=\"hidden\" name=\"ap_purchasetype\" value=\"Item\">\r\n<input type=\"hidden\" name=\"ap_merchant\" value=\"[merchant_id]\">\r\n<input type=\"hidden\" name=\"ap_quantity\" value=\"1\">\r\n<input type=\"hidden\" name=\"ap_itemname\" value=\"[item_name]\">\r\n<input type=\"hidden\" name=\"ap_description\" value=\"[sitename] - [item_name]\">\r\n<input type=\"hidden\" name=\"apc_1\" value=\"[user_id]\">\r\n<input type=\"hidden\" name=\"apc_2\" value=\"[item_number]\">\r\n<input type=\"hidden\" name=\"ap_amount\" value=\"[amount]\">\r\n<input type=\"hidden\" name=\"ap_currency\" value=\"USD\">\r\n<input type=\"hidden\" name=\"ap_alerturl\" value=\"[notify]\">\r\n<input type=\"hidden\" name=\"ap_returnurl\" value=\"[return]\">\r\n<input type=\"hidden\" name=\"ap_cancelurl\" value=\"[cancel]\">\r\n<input type=\"image\" src=\"[merchant_button]\" alt=\"Buy now using Payza\">\r\n</form>','<form method=\"post\" action=\"https://secure.payza.com/checkout/PayProcess.aspx\">\r\n<input type=\"hidden\" name=\"ap_purchasetype\" value=\"subscription\">\r\n<input type=\"hidden\" name=\"ap_merchant\" value=\"[merchant_id]\">\r\n<input type=\"hidden\" name=\"ap_itemname\" value=\"[item_name]\">\r\n<input type=\"hidden\" name=\"ap_currency\" value=\"USD\">\r\n<input type=\"hidden\" name=\"apc_1\" value=\"[user_id]\">\r\n<input type=\"hidden\" name=\"apc_2\" value=\"[item_number]\">\r\n<input type=\"hidden\" name=\"ap_quantity\" value=\"1\">\r\n<input type=\"hidden\" name=\"ap_description\" value=\"[sitename] - [item_name]\">\r\n<input type=\"hidden\" name=\"ap_amount\" value=\"[amount]\">\r\n<input type=\"hidden\" name=\"ap_timeunit\" value=\"[unit]\">\r\n<input type=\"hidden\" name=\"ap_periodlength\" value=\"[period]\">\r\n<input type=\"hidden\" name=\"ap_trialtimeunit\" value=\"[trial_unit]\">\r\n<input type=\"hidden\" name=\"ap_trialperiodlength\" value=\"[trial_period]\">\r\n<input type=\"hidden\" name=\"ap_trialamount\" value=\"[trial_amount]\">\r\n<input type=\"hidden\" name=\"ap_alerturl\" value=\"[notify]\">\r\n<input type=\"hidden\" name=\"ap_returnurl\" value=\"[return]\">\r\n<input type=\"hidden\" name=\"ap_cancelurl\" value=\"[cancel]\">\r\n<input type=\"image\" src=\"[merchant_button]\" alt=\"Subscribe using Payza\">\r\n</form>','iVBORw0KGgoAAAANSUhEUgAAAFYAAAAWCAIAAADVbPzMAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAK\r\nT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AU\r\nkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXX\r\nPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgAB\r\neNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAt\r\nAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3\r\nAMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dX\r\nLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+\r\n5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk\r\n5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd\r\n0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA\r\n4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzA\r\nBhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/ph\r\nCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5\r\nh1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+\r\nQ8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhM\r\nWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQ\r\nAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+Io\r\nUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdp\r\nr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZ\r\nD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61Mb\r\nU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY\r\n/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllir\r\nSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79u\r\np+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6Vh\r\nlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1\r\nmz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lO\r\nk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7Ry\r\nFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3I\r\nveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+B\r\nZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/\r\n0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5p\r\nDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5q\r\nPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIs\r\nOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5\r\nhCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQ\r\nrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9\r\nrGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1d\r\nT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aX\r\nDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7\r\nvPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3S\r\nPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKa\r\nRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO\r\n32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21\r\ne2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfV\r\nP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i\r\n/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8\r\nIH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADq\r\nYAAAOpgAABdvkl/FRgAACJhJREFUeNrcWG1MVNkZPueee4f5AoaBmUEdVop8xtZQjQpr1UxFgwIx\r\ntboJ3aT94f5oY8S0KTE0adxC18QfRrOthi1aN9lupaIra9GyCAoCIsIWFUSRj/LlLAwzzB0G5ut8\r\n9ce1FFDBbZoYfXIzufe8Oe995znvc973Hsg5J4TY7faZmZlQKATeXgSZ/w89v1Tuo7WWVPPa979f\r\nEB5mgBjjnp6e6Ohoo9GoUqnAW42CL3cvsyQLEAkc+HyyQx7+cMcZcXR01Gg0Go1GQsjbnQUAgOW6\r\n+MeuLgihJEh6VWSE3vz5Pz8WPR5PcnJyMBh8RS/ToSm9KuINpcCoiWWBx4ADymiQBiMlw72nLSKl\r\nlBDCOV9kZsfY3ZtD/3gy+dATdAMIAAcmjWVtbOauxD1m3bI3iAI10lDGZh893DPjnxI552zO6AJM\r\nBeXjrb/r9XRLoogQ0mo1CgVeLteNVn01+OXelJ/uSXn/TaEgDGkZo7OPmDFKqcg5f1kKMM5+33T4\r\nG/+QJkwSEBIgjNWt0Eq6Ue9QiAaRAJEAKx5/CgD/UfJ/WSCElJeX37t3z+fzBQIBo9G4efPmnJwc\r\nURRfOwUCR5TTuSOEsMUoaByuG57pV6tVXADfMST/auOHFt1yxhjnvGey63x3WbfzvgTEvz36dKN1\r\nyzKNVZkVCAQqKiokSTIYDFartbu7u6+vr729vbi4+LVTMB2cImweBUtkQc3AFSgAxhnB5ND630aH\r\nmWVZVlQTi+IOrTlypOXQiHcACLxhuOYnaR9QSgEAnHOEkCiKqampJSUlp0+frqysfPDggSzLTqez\r\noaFhcHDQ7XZbLJZt27ZlZma2tbXdvn0bALB169b09PTm5ub29nYAQH5+/vnz5+fGk5+fr9Ppqqur\r\n+/v7R0ZGdDpdenr67t27x8bGHA7Hxo0bl6RgcsZJ2YIsoIvtBa6AgwGGKSaYLA+Pc7vdyp/8D6BV\r\nHT8g93DAXP4JlUo1MzMDAFDShFKKMcYYS5LEGIMQulyu+/fvX7p0CSEEIRwaGmpubi4pKdFqtTU1\r\nNRBClUq1bt26qqqqzs7O+Ph4jUZTU1MjCILyspiYmMOHD4+Pj587d04QBAgh57yzs3NgYKCwsNBs\r\nNouiuGRRt7uHKJyfBYQK/OUAABCGMcUhgse8dqVwzGI65L0z2hgiGDOy0pCgxKQAYxwKhQghfr+/\r\npaWFEIIQWrVqVVZWVmlpaVNTU21tbVRUlCiKdXV1a9asMZvNCKG+vj5RFHt7ewVByM7ONpvNJ0+e\r\nLCoqQgghhHbu3KlWq/V6/dGjR+vq6hobG/fu3YsQampq0ul0arU6FArxpdDneEQYmXcRKiqL9kLO\r\nIiXjmH8UQkgwK20+8UF6gUoIU0x3Rpr+3PFHJ3ZIYWKYoM5N3TtbWRUKOOeNjY02mw0hJElSYWGh\r\nwWCglLa1tZWVlY2PjzudTgih0+lUq9WbNm2qrKzs7e3t7++fnp5GCNlsNkppQkJCdXW14jknJ8fv\r\n93PONRrNiRMnOjo6XC4XY4wx5vV6RVFcpK4pGHEP+KgfMGmeEChbTAjfNa7tcnYIAuSMXX30RXXX\r\n35fr4wAH9unRIPNLalFSiQyDX9uKDeqoiYkJxQ9jTKHAbDZnZGQkJSWtX78+ISHB4/EcOXKkvr4+\r\nOjp637591dXVDoeDUgohzMzMvHDhAmPs6tWrlNL4+Pi4uLiJiQmfz6dQsHr1amXk1q1bxcXFnPNd\r\nu3YlJiZev36dEPKsfi1Fwb2R1jCN1keD30IIW97J4gQSQinjgggJCg1O9w3O9GEUlNQIIrgi4p3j\r\nO89sT87xeDyU0tmJhBCMcXx8fFFRUV5eXkxMzMTExNDQ0I0bNwRB2L9//4EDB1QqFcZY2VwSExNN\r\nJhNjrL6+nhCyY8cOQgghpKGhYXp6GmOcl5enKOvixYuMsaSkpGPHjqWlpSmD/NVwvbtS0moYZXOv\r\nZ9vhy4Rg0lqy3sm99q/LEAKjxpRmXu2cmVBMKaa0LQlZ78ZvhRy6XK65/TVjTAlLIUKW5WedmVot\r\nCALnvLa21mq1yrJMCFGWjnOekZFRUVFht9sZY9u3b/f5fJzzqqoqRaeNjY0tLS3Z2dkGgwEAMDw8\r\nfPny5SdPnsz1sHiD2+foHpu2qyMiKWHfoiIAAH625uePnA/63U/EMHQ89xOM8ewWjTGekqcCgcCC\r\ndzPGlLVVfmeda7XagoKCs2fPtra2trS0iKIIIbRYLEoANputvLxcEISkpKSVK1eOjY0NDw93dHRI\r\nksQ5v3btGqV0w4YNBw8eHBkZ6e/vLywsFAQBIWQ0GiVJmuXiZfj8zif6KKMc9DDOFghBXJy8MDHs\r\nI9vHx1tLmvvqL379103LbUvWXq1WW1paajKZ9Hr9AlNOTk5ubq7L5ZJl2Wg0mkwmi8Xi8/kAACqV\r\nihCi1AKMMSEkIiKirKwsJiZmdrrVamWMnTlzZnJy0u12h4eHq9XqlJQUSqnD4VgkpN7xhw/HO/Rx\r\n0cSPF5gopfDmzZsJCQlL9JWC8MD19eWOihW6lXu+955BG7UkEcrRgyKKBSYIoSRJgiAo+aIky6lT\r\npyoqKiCE9fX14eHhU1NTynsXtNWzqy1JEkJIkQnGeJFICMW/+Ow9GClMIS9hC4OR+8ZFhBCldDa9\r\nXwhK6WpD+vqcd/V6fSgU8nq983ukFx3RvPzrm3O+wOrz+a5cucI5T01NjYuLe/r0qZKbswQ9j1c/\r\n2vhTw3GogUEVCQaem8KAVqWDXV1dhJDIyMjX2Lr7fL7R0VGLxRITE2Mymex2+//Lc3nr2aaROhoO\r\nHDPjjC9kE3sCW6w/hMFg8O7du1qtNjw8/DV+zAmCIEmSsvLPa+d/wxftf2kY+orp4Lj/G0zniYUR\r\nGprya4LqK79phpzzUCjU29sry3IgEHhrzsga+qvPtp54mTU2asUPUm1FP/4oNmrFvwcAJFzkSyQE\r\nqIgAAAAASUVORK5CYII=\r\n'),(3,'2CheckOut','','','<form action=\"https://www.2checkout.com/2co/buyer/purchase\" method=\"post\">\r\n<input type=\"hidden\" name=\"sid\" value=\"[merchant_id]\">\r\n<input type=\"hidden\" name=\"quantity\" value=\"1\">\r\n<input type=\"hidden\" name=\"description\" value=\"[item_name]\">\r\n<input type=\"hidden\" name=\"product_id\" value=\"[item_number]\">\r\n<input type=\"hidden\" name=\"fixed\" value=\"Y\">\r\n<input type=\"hidden\" name=\"user_id\" value=\"[user_id]\">\r\n<input type=\"image\" src=\"[merchant_button]\" border=\"0\" name=\"submit\" type=\"submit\" alt=\"Buy from 2CO\">\r\n</form>','<form action=\"https://www.2checkout.com/2co/buyer/purchase\" method=\"post\">\r\n<input type=\"hidden\" name=\"sid\" value=\"[merchant_id]\">\r\n<input type=\"hidden\" name=\"quantity\" value=\"1\">\r\n<input type=\"hidden\" name=\"description\" value=\"[item_name]\">\r\n<input type=\"hidden\" name=\"product_id\" value=\"[item_number]\">\r\n<input type=\"hidden\" name=\"fixed\" value=\"Y\">\r\n<input type=\"hidden\" name=\"user_id\" value=\"[user_id]\">\r\n<input type=\"image\" src=\"[merchant_button]\" border=\"0\" name=\"submit\" type=\"submit\" alt=\"Buy from 2CO\">\r\n</form>','R0lGODlhZQAeAPcAAEhISFhYWGBgYGhoaHBwcHh4eICAgIiIiJCQkKCgoLCwsLi4uMDAwMjIyNDQ\r\n0NjY2ODg4Ojo6PDw8P///5iQkKigoNDAwOjg4NjIyGA4OMigoODIyODAwOCAgOigoKggIOgICPAI\r\nCP8ICP/w8P8YEP8gGP9IQOhgWPCAeMhwYP8wCMh4aPBgQPAwCP9ACNC4sNjAuNBYMP9ICP/o4OiA\r\nWIBIMJBIKNjIwLCAaOjY0ODAsOjIuP94MP+gcP/QuP/g0JhQKPBwKPBgEP9gAP/IqMCQcOjQwKBY\r\nKOiogMBgIOBoGPCQUP9oCP+gYP+ocMCIYNigeKhYINhoGP9wCP/o2OC4mOjAoMBgGPCYUP94EP+A\r\nINCYaMiAQOCwiOigYPC4iMhoGPCQQOh4EKiYiODY0MCQYOjQuOCYUPCAEP/w4OjAkP/IiNCwiLiA\r\nOP+oOP+oMPCYEODIoPDAcNjQwPDw6Ojo2LC4uMDIyNDY2ODo6PD//2iIkFiQoGCYqBBgeHCIkHiQ\r\nmKC4wFiImGiYqEBwgChwiCBogBhgeHigsDh4kDBwiCBoiKi4wGCAkHCQoFh4iICgsGCQqEBwiCho\r\niHCYsMDI0MjQ2NDY4ICYuIigwJCguJiowKCwyEBgkHCIsDBQiLC4yLjA0IiYuMjQ4FhwoJioyChI\r\niCBAgHiIsICQuEhgmEBYkBg4gBAweDhQkEBIYKiwyGBwoLC40Gh4qHCAsBAYWGhocGBgaKCgqKio\r\nsLCwuHBwgICAkGBgcJCQoMjI0JiYqHBwiHh4kKiouGhogICAmNjY4FhYcLi4yGhoiEhIYGBggMDA\r\n0EBAWFBQcGBgiHh4oDg4UEhIaFhYgEBAYLi40Ojo8CgoYBAQUBgQUDAoYCAYUCggUDgoYDgoUCgY\r\nQCgQSEg4WDgYSDgQSNDI0NjQ2ODY4EAoQEAQQFhAUFgQOMCwuFAwQNC4wGggOHAQMIgwSMiosNiw\r\nuLBQYJAQKNigqMCAiLggMKAQIMBgaMBQWMhIULgQGMAQGNAIEOAIECH5BAAAAAAALAAAAABlAB4A\r\nAAj/AAMYOECwoMGDCAtAsHStFjaH2LJJfEgxYjaKDq8Zm/Cgo0ePEDoaC/nRowMJExSoXMmypUuV\r\nCQ4Eq5QpkyibOG/qzIkz1AIIoxo+HPcOHz566sDVysbOxpEjNc5lq1VLI8cH5Tz+quSAq9euXD1m\r\n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\r\njGdM4xovOCAAOw==\r\n'),(4,'CoinPayments','ed60990d85b6375ba55297b3045f55de','MjTFzsYH40KL7MjTFzsYH40KL71thn','<form action=\"https://www.coinpayments.net/index.php\" method=\"post\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_pay_simple\">\r\n<input type=\"hidden\" name=\"reset\" value=\"1\">\r\n<input type=\"hidden\" name=\"merchant\" value=\"[merchant_id]\">\r\n<input type=\"hidden\" name=\"currency\" value=\"USD\">\r\n<input type=\"hidden\" name=\"amountf\" value=\"[amount]\">\r\n<input type=\"hidden\" name=\"item_name\" value=\"[item_name]\">\r\n<input type=\"hidden\" name=\"item_number\" value=\"[item_number]\">\r\n<input type=\"hidden\" name=\"custom\" value=\"[user_id]\">\r\n<input type=\"hidden\" name=\"ipn_url\" value=\"[notify]\">\r\n<input type=\"hidden\" name=\"success_url\" value=\"[return]\">\r\n<input type=\"hidden\" name=\"cancel_url\" value=\"[cancel]\">\r\n<input type=\"hidden\" name=\"cstyle\" value=\"list1\">\r\n<input type=\"image\" src=\"[merchant_button]\" border=\"0\" name=\"submit\" type=\"submit\" alt=\"Purchase with CoinPayments\"></form>','<form action=\"https://www.coinpayments.net/index.php\" method=\"post\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_pay_simple\">\r\n<input type=\"hidden\" name=\"reset\" value=\"1\">\r\n<input type=\"hidden\" name=\"merchant\" value=\"[merchant_id]\">\r\n<input type=\"hidden\" name=\"currency\" value=\"USD\">\r\n<input type=\"hidden\" name=\"amountf\" value=\"[amount]\">\r\n<input type=\"hidden\" name=\"item_name\" value=\"[item_name]\">\r\n<input type=\"hidden\" name=\"item_number\" value=\"[item_number]\">\r\n<input type=\"hidden\" name=\"custom\" value=\"[user_id]\">\r\n<input type=\"hidden\" name=\"ipn_url\" value=\"[notify]\">\r\n<input type=\"hidden\" name=\"success_url\" value=\"[return]\">\r\n<input type=\"hidden\" name=\"cancel_url\" value=\"[cancel]\">\r\n<input type=\"hidden\" name=\"cstyle\" value=\"list1\">\r\n<input type=\"image\" src=\"[merchant_button]\" border=\"0\" name=\"submit\" type=\"submit\" alt=\"Purchase with CoinPayments\"></form>','iVBORw0KGgoAAAANSUhEUgAAAHcAAABDCAMAAACRDGoDAAADAFBMVEUAAAD/////////////////\r\n//9/tNNRZ5IxYochlc9bcJhzpcc6grYpapvGz914iaqlsMZVptGJwuCPpsGpt8yFnbpopMmYzObl\r\n8fh1h6iBlbN5mLSJnLhddJuHss4XVoSAuNclmNGQor2RqcNPfJz7/P3J1+L4+vxYr9u4xNWAwuPQ\r\n3eeFo7tUapRid52p0udltt5eiKeex95MgKWkus7m7fOxwdKbrcRtgqXf6fBgq9MqmtKkzuXM3Ois\r\nxtl0nbzP1uFCcpVolLV4vN9DpNZTg6djkbJ4r8+btcyx2Ow6odW/0+Fzttlaiq3V4eq80N5ofKFr\r\nkq+Wwdv1+Pu73e9llLdik7giY5NGeaDt8/dxnr9msNeTsshsm72mwdSzytvE1uRVirKUrsSBpsKF\r\nxeWMutVdjK+jvtMzZowaYpdThasda6N1n78ebaYfcKvj6/LC4vJDfqmCqcZrmbpIqNlkkrR8or6w\r\nyNmHq8aWtcuautFXjLRpj6q3zd4zaI9Gf6dxm7s1ndLa5+9Oha+Epb45cp2NrsdYi7GXt8+pw9dg\r\nj7IYX5Mgcq+QsstOgqhDfKUXks6TtM3X4+tol7lRh69slrZHfKQ5dJ9fkbaFqMEyaZHK2uZ9pMKf\r\nvNFTjLhcjbJQhKqNsMpwnL1JfqVNhq55osDy9vkdaJ45cJhcj7Vumbg+d6I3bphvmro2cZxQha46\r\ndaCHqsNRiLFWia+Fp8E0apKJrchVh61AeqU1bJWFp789eKMzapM0bJY+d6E3bpY6dJ8/d6FOhrE6\r\nc5xLg6xOha5DeqI4cJlMhrA9dp8/d6A5c55QibI6cZo0bJU7dJ5LgqtPh7FMg6w3c548dqI1a5Q8\r\nc5s7cps/eKIza5RKgKhNh7FBe6ZNhKxOhq8+dZ5Nhq9AeqQ9dJ04cJpQibM9dqBLgapJf6hSi7Y1\r\nbpk1bZY3b5lMhK04cZtRirU7dJ04cpxPiLL///88dZ9LYY0/eaM2cJs2b5o3cZw1bZdMha5Mg6sL\r\njMwXXY8idbI1bpiXPaWeAAAABnRSTlMAHBYADAQVHP5EAAATxElEQVRYhe2ZeXwT17XH2/e6vPa1\r\nfa/pkjZptiahSSALIZAACQQIEMK+hn0NSwgticEbYGNwBLapMXiT8YZ3bEs2xo6xhW3JRshCsiVZ\r\n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\r\ncDU7+8LOU79a96uyjOzs7KsXbt1O3r0jcuXkJ5HIjswyuK+svBaXUNtY0LQwISGpsvJqcsbOnVev\r\nXjhQeiyt9sDtW7eSDjzUIc6pzHmRc4kfX0gCrXbz9er+GG7+4tuZP/Y+M61kzy+ezijLfPGpp15M\r\nTEnZ886clMR330n5xVP7MxNXroqcdLs/i1zZu3bDjnk73l5Qtnz5hezKyuUHDx98O+X5HRtWrl01\r\n7wdlGVeTT62at2PD7rJTP3g7ZdW8g4lr338lcu7tDYmZB3/+818f23L5Xgz3dNrOd7zeX5bsKcs4\r\ndXjBG5C5943pa37vfW/NHO+6dXD37ge5Syjul5HI+R1Uwa+8nxKJbNizZ1Xk529Hzp0D5Umqez4l\r\nZcEL1PiGkkfyE+c/ou4/KVlFXX5dsFRz4z+j3KLast97vdPXHq68cCpxnXfdq6++7v3dtne9v539\r\nM6933Ye/9T4zd/ZrD/N9Ye7JV97c9ErkrdnnIjtyc89F3l8BUb88Cd2mjyIvnAfMWy9vilw5Tsmb\r\nTkZeqFtxMjJ/yZNrrkRWTH/+2YWrW298/zH4RkPp4d95vbkpGXFJZXu83g/r6n7pfePl//X+zx8+\r\n9Hrr3NBtq/ssMv+ztyKRJeePb3sZ8j658cnI/LrzkSsboQZ17sluE3S/oQz3yciXmx7Jf4DFntw2\r\nF7hPzC0pOxAfyy1KKAPu+bVl2ckLfun1bvwDxXMDl0K6qa5u42eT5V01PXfTW1fAOuneBjV/EpKD\r\n2JMb8LD7MvKwfflYeZnizj6/Zgk1O/H24o4b3/t+NN+Fp971eueU7DmcuXbO33Pr6n5G5fta5JMV\r\n7+9du3bllchJSPzkxo2vRJZ8ElmxkUqs7nFHkT6D9tpvovLG1yIfzV3zQe6KVyKRedmNbTHc043Z\r\nma97103fm/LO76Z5va/Wbfu997d1sL/bAHn+/Kte79zjSyIfTU85XHb4YOQclcdHc2eviMyHMh9/\r\nE/I+/7jbBnX+zcvbjh+fO6m8Dx01c820lSW5x9+PnMtOWw3cR4X+vHVzAnWwqOd3Xcl73tfffQqy\r\nz4XznAvZ790LZ73kg1XwFJ5KiqvcELny5or5kU8+WLMN6r1kbsmGSGTv3sfddDhX595/c8lJOM+P\r\n5JInIM8dK3+0BB6ojy40Ndz4j+895g5e35VU9ovXgbzu48QU6sF5/cW1e37lfS/lHe8PMxfs9/5w\r\nQSI8/ZUJ27fXZlMvrh1Xzu1ZCY9WZEVJ4sHIld2ZVLcbuj0pKZ9Q2/ujPXCTSSmZiQvmw9FOpB6q\r\ncxlxsL/fjXIN+VlVSRm7P97/cVnyzlOHy/bv3029qa7CO+hq5W1oFyov3Eoq3Z5XlJVXm33w+VOZ\r\n8KBnrnwi8sLeBTuTkiiP21QP77Grp8oO/mD51YxssCf125UZp5YvP3U149nlz2bENRXlf/7dxxv8\r\neXq449Cu2qTK7KQDpbWlcUmVSXEHaquajkFL297YVLU9rQk+eVkNRzsaThwrvZ0UV5oQdzVzfmTH\r\n7qu1TScaqyifpsaqNGi1CXFJSaW1xxZWpU3qTVULS0sPxMWVlsaV1hZkXWyN4YbsvKMXs3Y1VTWe\r\n2Lxlc96JpoJdm4uuNzQUFRVdv74arOtFDQ0NFztuzmq9eT0Lxk/kba4qXR6JPFtZmwcuD30aqHa9\r\naNmuE015eVuKihoe6kVZ8fG78vLyTpzIi199WiOL4d6fkIUM+W2n4Xsr//LRfacbLrbtu3n55s3L\r\nFfn5zvybrQ/tm+m4/R5ys6INvgf3nd6y69iv//vAws0d4LMv6pOff3rfRVhhW37FI70iv/X0vn0Q\r\nuu3i0dP5mvumz6fOVej+/aHQvfvqB3b72BDY9+331SH7vUmb0v/WnvThnS7alXZs15aGm3/vIxsz\r\nPY5D6XBJlz2alk75fR59ji7hdjXIYdP9sVAo9I/ZvNbT17O2FJ3eh3yL/99IlHEp+t64hKsnxu6F\r\n1ekTEyGT6R+0eTcr9lVUtIa/zT9WmjQuRd/Pl8bCIZksFH6AP3gQRv5RmxdGcOTb/WOlSeNS9Hvw\r\nEjJhgkKoQ2NDYbsTd4ZCSHroQSjsNIXtponQ2JjJNDQxJBuCQj0whAxjDwy4HbxDoSEDPmbAZaEJ\r\nZAgOZrpJZpowOUPVoVD1GJ4OEBAnEJkaUYeGnFHGpej3/iWn06SW3R1Spw/h6RMm+1Ao/e6kOWS6\r\ne1eG30Wcd0137Xa1Ex+yUzQTBL0rU4cMsB7DkB0PDYEXbkpPTzfcvTtkQIbS78pkQyZZ4V0DEsLx\r\ndNCqQ1FGDNfstNtrQlAGjVMdwjUhBAnLxjQmUw2uMY1txcM1GjuCP1DjY+ExDaJGkLEaMx42O8cM\r\nTo3T6cRNJg0eHsMRA66GYpmcYzX4EI47a0JjYaowuAHH7TVRRgwX10BJTRoTT4prwnhN2C41aZwy\r\nHuJE1CYpD5eawmG1FJYhxU1OPIxXO2dJeTCiqQYeIjXgBgNPqg5Ly6EkJjUeNhngI5XWaGp4TrtG\r\nKlVrEMQUZcRycUTt5Gk0ao3UjPNkiN2J8BApT8MDVzwdTNkgz2C3a8w4MoiYnAiOSxGngceTImZY\r\nIq4Om9NDuFMqs0udQ2ZDSIMYpLhZZoICgAfMwAeleJQxxf2LAUHUUg0uk0kRO5xSKBzPbpY6IV71\r\nkEY9aDcBi+dEEAMUwWCShhE1Tq2AZ8ZxDW5HZCaZAaFia+zSsLmQJ5XK1DyYmz4oc9oNZsTOs1fj\r\nUcZfotzn7pudBueg2WkeNJfDj9ngLDeYy504bjaYoQ3CBYfbclDBsxzGBw1Os7l80Gkuxwed5WAb\r\nqNHy8tZBAzXHWW5uHaS6cqcBp0K0Ts6kGPefi3I//emEucYMOSEaJ1Ra06p21oSdgyZpjTkshY8a\r\ndn2Qh4Q1NXZN66AmzKtB4DgheI2Gh5gAYzIZWvGaVgNsiIHXqnHyWg1SRIa0SjXh8nBrzeAg4mxF\r\nDOFJxr2fxv7j6rm//LPaczHYf7d/2fZ//c8FTEnz780AAAAASUVORK5CYII=\r\n'),(5,'Comms','','','<form action=\"/paywithcommissions.php\" method=\"post\"><input type=\"hidden\" name=\"itemnumber\" value=\"[item_number]\"><input type=\"hidden\" name=\"itemname\" value=\"[item_name]\"><input type=\"image\" src=\"[merchant_button]\" border=\"0\" name=\"submit\" type=\"submit\" alt=\"Buy With Your Commissions\"></form>','<form action=\"/paywithcommissions.php\" method=\"post\"><input type=\"hidden\" name=\"itemnumber\" value=\"[item_number]\"><input type=\"hidden\" name=\"itemname\" value=\"[item_name]\"><input type=\"image\" src=\"[merchant_button]\" border=\"0\" name=\"submit\" type=\"submit\" alt=\"Buy With Your Commissions\"></form>','R0lGODlhSwAfAMQAAO7+AO/vAPDfAPHPAPK/APOvAPSfAPWPAPZ/APhwAPlgAPpQAPtAAPwwAP0g\r\nAP4QAP8AAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEA\r\nABEALAAAAABLAB8AAAX/ICSOZGmeaKqubOu+cCzPdI0eRH4wcIGICoJChCg0CI7HoQEJPmypBiBA\r\nAFh5rqlIABCIrAtAgwH4IQBYqIlMEBUABwgDkWAuFqIH4gkZiKVWDmwPCYQABg1nCwkJDmokbCIG\r\nZW9WAAsEAU8HaCKcjABVCgllZ6RWBGeWmo8iZFRcAA6HEGEFnEMBASNhBm9kBb9nDGRmAAUOfmlq\r\nrzkFeA4HfqGzz3AjD10BAxACAVwQw8XhncOtcqEkswF06VVvjiPTcZzp4mXkPOatkSPADpO4KbDC\r\njUQ9PGHw3SPAgJO+Tq2ytcE2bYAfEQEADIGkBcKDjExIMfhoZZIdiK0a//CBxORBS10rRzSIB8EB\r\nE1d5GDi6CYHnORYCuMT5SbRFAgMJiipdyrSpUxEOFi2LiKeFApozVBGMqWafilkGapA5hOnYzwcb\r\nWVytUWXog6C1YhlweSwjgXpDBFjsgsCuIZuxCDxwUAXAgJn4FmSEQ/eA3weFBTDhsmywLgRVDIw1\r\nwIWdFQioCh+gPMzPgklHAYDSHOoVAj8Ixo4uw6ldm0DYDMXJhsYeviqgATyIdAbBsDcDEChQ0uXA\r\nVTZnhswSQCZOmHYCDjTqc2lE0OhbescBD/wz8VJoHnC2MgRBrB2hJmG5gm/c65IQSElmXmBggZ5T\r\n2NdJeQCg00ZxpYVFymxdbQDCBilhDcRQfbQNQFeB3K3ChB+LLSAgD+XtAgw5CQxTxV7GGfYOMA9w\r\neMU4xZwhQBUTNXGAD/EQYsAOHmnWkwGOnJZfUhD4CJBNc+noHBAHICUJD4T4wMSRT9qIFFdPZanl\r\nllx26SUUIQAAOw==\r\n'),(6,'PiggyBank','','','<form action=\"/paywithpiggybank.php\" method=\"post\"><input type=\"hidden\" name=\"itemnumber\" value=\"[item_number]\"><input type=\"hidden\" name=\"itemname\" value=\"[item_name]\"><input type=\"image\" src=\"[merchant_button]\" border=\"0\" name=\"submit\" type=\"submit\" alt=\"Buy With Your Account Balance\"></form>','<form action=\"/paywithpiggybank.php\" method=\"post\"><input type=\"hidden\" name=\"itemnumber\" value=\"[item_number]\"><input type=\"hidden\" name=\"itemname\" value=\"[item_name]\"><input type=\"image\" src=\"[merchant_button]\" border=\"0\" name=\"submit\" type=\"submit\" alt=\"Buy With Your Account Balance\"></form>','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\r\n');
/*!40000 ALTER TABLE `oto_ipn_merchants` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_ipn_pages`
--

DROP TABLE IF EXISTS `oto_ipn_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_ipn_pages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `productid` int(11) NOT NULL DEFAULT 0,
  `pageid` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `productid` (`productid`),
  KEY `pageid` (`pageid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_ipn_pages`
--

LOCK TABLES `oto_ipn_pages` WRITE;
/*!40000 ALTER TABLE `oto_ipn_pages` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_ipn_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_ipn_prod_img`
--

DROP TABLE IF EXISTS `oto_ipn_prod_img`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_ipn_prod_img` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `productid` int(11) NOT NULL DEFAULT 0,
  `merchant1button` mediumblob DEFAULT NULL,
  `merchant2button` mediumblob DEFAULT NULL,
  `merchant3button` mediumblob DEFAULT NULL,
  `merchant4button` mediumblob DEFAULT NULL,
  `merchant5button` mediumblob DEFAULT NULL,
  `merchant6button` mediumblob DEFAULT NULL,
  `merchant7button` mediumblob DEFAULT NULL,
  `merchant8button` mediumblob DEFAULT NULL,
  `merchant9button` mediumblob DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_ipn_prod_img`
--

LOCK TABLES `oto_ipn_prod_img` WRITE;
/*!40000 ALTER TABLE `oto_ipn_prod_img` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_ipn_prod_img` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_ipn_products`
--

DROP TABLE IF EXISTS `oto_ipn_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_ipn_products` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `catid` int(11) NOT NULL DEFAULT 0,
  `name` varchar(50) NOT NULL DEFAULT '',
  `promocode` varchar(50) NOT NULL DEFAULT '',
  `description` text DEFAULT NULL,
  `credits` int(10) unsigned NOT NULL DEFAULT 0,
  `bimps` int(10) unsigned NOT NULL DEFAULT 0,
  `widgetads` int(10) unsigned NOT NULL DEFAULT 0,
  `sqbans` int(10) unsigned NOT NULL DEFAULT 0,
  `limps` int(10) unsigned NOT NULL DEFAULT 0,
  `productid` varchar(255) NOT NULL DEFAULT '0',
  `upgrade` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `amount` decimal(6,2) NOT NULL DEFAULT 0.00,
  `period` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `type` char(1) NOT NULL DEFAULT 'N',
  `trial_amount` decimal(6,2) NOT NULL DEFAULT 0.00,
  `trial_period` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `trial_type` char(1) NOT NULL DEFAULT 'N',
  `subscription` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `recurring` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `merchant1` tinyint(1) NOT NULL DEFAULT 0,
  `merchant2` tinyint(1) NOT NULL DEFAULT 0,
  `merchant3` tinyint(1) NOT NULL DEFAULT 0,
  `merchant4` tinyint(1) NOT NULL DEFAULT 0,
  `merchant5` tinyint(1) NOT NULL DEFAULT 0,
  `merchant6` tinyint(1) NOT NULL DEFAULT 0,
  `merchant7` tinyint(1) NOT NULL DEFAULT 0,
  `merchant8` tinyint(1) NOT NULL DEFAULT 0,
  `merchant9` tinyint(1) NOT NULL DEFAULT 0,
  `showaccount` int(11) NOT NULL DEFAULT 0,
  `disable` int(1) NOT NULL DEFAULT 0,
  `twocoid` int(11) NOT NULL DEFAULT 0,
  `stpid` varchar(255) NOT NULL DEFAULT '0',
  `rank` int(11) NOT NULL DEFAULT 0,
  `return_url` varchar(150) NOT NULL,
  `email_subject` varchar(150) NOT NULL,
  `email_body` text NOT NULL,
  `cb_hoplink` varchar(255) NOT NULL DEFAULT '0',
  `piggybank` decimal(6,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`),
  KEY `catid` (`catid`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_ipn_products`
--

LOCK TABLES `oto_ipn_products` WRITE;
/*!40000 ALTER TABLE `oto_ipn_products` DISABLE KEYS */;
INSERT INTO `oto_ipn_products` (`id`, `catid`, `name`, `promocode`, `description`, `credits`, `bimps`, `widgetads`, `sqbans`, `limps`, `productid`, `upgrade`, `amount`, `period`, `type`, `trial_amount`, `trial_period`, `trial_type`, `subscription`, `recurring`, `merchant1`, `merchant2`, `merchant3`, `merchant4`, `merchant5`, `merchant6`, `merchant7`, `merchant8`, `merchant9`, `showaccount`, `disable`, `twocoid`, `stpid`, `rank`, `return_url`, `email_subject`, `email_body`, `cb_hoplink`, `piggybank`) VALUES (1,0,'Yearly Gold','','',0,0,0,0,0,'0',3,197.00,1,'Y',0.00,0,'N',1,0,0,0,0,0,0,1,0,0,0,1,1,0,'0',1,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(2,0,'Gold and LFM OTO','','',0,0,0,0,0,'1',3,97.00,1,'Y',0.00,0,'N',2,0,0,0,0,0,0,1,0,0,0,1,1,0,'0',2,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(3,0,'Gold Discount OTO','','',0,0,0,0,0,'0',3,14.97,1,'M',0.00,0,'N',2,0,0,0,0,0,0,1,0,0,0,1,1,0,'0',3,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(4,0,'Monthly Gold','','',0,0,0,0,0,'0',3,29.97,1,'M',0.00,0,'N',1,0,0,0,0,0,0,1,0,0,0,1,1,0,'0',4,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(5,0,'Monthly Silver','','',0,0,0,0,0,'0',2,9.99,1,'M',0.00,0,'N',1,0,0,0,0,0,0,1,0,0,0,1,1,0,'0',5,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(6,0,'1000 Credits','','',1000,0,0,0,0,'0',0,10.00,0,'N',0.00,0,'N',0,0,0,0,0,0,0,1,0,0,0,0,0,0,'0',6,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(7,0,'3000 Credits','','',3000,0,0,0,0,'0',0,25.00,0,'N',0.00,0,'N',0,0,0,0,0,0,0,1,0,0,0,0,0,0,'0',7,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(8,0,'5000 Credits','','',5000,0,0,0,0,'0',0,35.00,0,'N',0.00,0,'N',0,0,0,0,0,0,0,1,0,0,0,0,0,0,'0',8,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(9,0,'5000 Credit Subscription','','',5000,0,0,0,0,'0',0,24.85,1,'M',0.00,0,'N',2,0,0,0,0,0,0,1,0,0,0,0,1,0,'0',9,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(10,0,'weekly deal','','',1000,0,0,0,0,'0',0,5.00,0,'N',0.00,0,'N',2,0,0,0,0,0,0,1,0,0,0,0,1,0,'0',10,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(11,0,'Login Spotlight','','The Login Spotlight site is shown to members when they login. You can reserve the Login Spotlight for your own site, and members will be rewarded for rating your site and giving feedback. Dates in red are already reserved, and dates in green are available.  After purchasing a startpage, you can enter your URL and view your ratings below.',0,0,0,0,0,'0',0,30.00,0,'N',0.00,0,'N',2,0,0,0,0,0,0,1,0,0,0,0,0,0,'0',11,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(12,0,'GoldUpgrade','',NULL,10000,7500,0,0,7500,'0',2,27.00,0,'N',0.00,0,'N',0,0,0,0,0,1,0,0,0,0,0,1,0,0,'0',12,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00),(13,0,'VIP Upgrade','',NULL,70000,40000,0,0,40000,'0',3,147.00,0,'N',0.00,0,'N',0,0,0,0,0,1,0,0,0,0,0,0,0,0,'0',13,'https://soloswaps.com/members.php','Thank you for your purchase','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]','0',0.00);
/*!40000 ALTER TABLE `oto_ipn_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_ipn_salesglance`
--

DROP TABLE IF EXISTS `oto_ipn_salesglance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_ipn_salesglance` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(30) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_ipn_salesglance`
--

LOCK TABLES `oto_ipn_salesglance` WRITE;
/*!40000 ALTER TABLE `oto_ipn_salesglance` DISABLE KEYS */;
INSERT INTO `oto_ipn_salesglance` (`id`, `field`, `value`) VALUES (1,'salespacks',''),(7,'paytypes','');
/*!40000 ALTER TABLE `oto_ipn_salesglance` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_ipn_settings`
--

DROP TABLE IF EXISTS `oto_ipn_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_ipn_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(20) DEFAULT NULL,
  `value` float DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_ipn_settings`
--

LOCK TABLES `oto_ipn_settings` WRITE;
/*!40000 ALTER TABLE `oto_ipn_settings` DISABLE KEYS */;
INSERT INTO `oto_ipn_settings` (`id`, `field`, `value`) VALUES (1,'adnotify',1),(2,'memnotify',1),(3,'refnotify',1);
/*!40000 ALTER TABLE `oto_ipn_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_ipn_transactions`
--

DROP TABLE IF EXISTS `oto_ipn_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_ipn_transactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `processor` varchar(20) NOT NULL DEFAULT '',
  `date` varchar(25) NOT NULL DEFAULT '',
  `txn_id` varchar(30) NOT NULL DEFAULT '',
  `txn_type` varchar(30) NOT NULL DEFAULT '',
  `subscr_id` varchar(30) NOT NULL DEFAULT 'none',
  `item_name` varchar(100) NOT NULL DEFAULT '',
  `item_number` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(100) NOT NULL DEFAULT '',
  `email` varchar(100) NOT NULL DEFAULT '',
  `amount` decimal(6,2) NOT NULL DEFAULT 0.00,
  `fee` decimal(6,2) NOT NULL DEFAULT 0.00,
  `user_id` int(10) unsigned NOT NULL DEFAULT 0,
  `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `refunded` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `added` (`added`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_ipn_transactions`
--

LOCK TABLES `oto_ipn_transactions` WRITE;
/*!40000 ALTER TABLE `oto_ipn_transactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_ipn_transactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_ipn_vals`
--

DROP TABLE IF EXISTS `oto_ipn_vals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_ipn_vals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(20) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_ipn_vals`
--

LOCK TABLES `oto_ipn_vals` WRITE;
/*!40000 ALTER TABLE `oto_ipn_vals` DISABLE KEYS */;
INSERT INTO `oto_ipn_vals` (`id`, `field`, `value`) VALUES (1,'notify','https://soloswaps.com/ipn.php'),(2,'return','https://soloswaps.com/members.php'),(3,'cancel','https://soloswaps.com/members.php'),(4,'images','https://soloswaps.com/images/'),(5,'sitename','soloswaps.com'),(6,'memsubj','Thank you for your purchase'),(7,'membody','Hi [username],\r\n\r\nYour [sitename] account has been automatically updated:\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]'),(8,'refsubj','You have just earned a commission'),(9,'refbody','Hi [username],\r\n\r\nOne of your referrals has just sent a payment to [sitename].\r\n\r\nYour commission has been added to your account.\r\n\r\n[details]\r\n\r\nRegards\r\n\r\n[sitename]'),(10,'bcc','');
/*!40000 ALTER TABLE `oto_ipn_vals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_ipnmods`
--

DROP TABLE IF EXISTS `oto_ipnmods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_ipnmods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_ipnmods`
--

LOCK TABLES `oto_ipnmods` WRITE;
/*!40000 ALTER TABLE `oto_ipnmods` DISABLE KEYS */;
INSERT INTO `oto_ipnmods` (`id`, `enabled`, `filename`) VALUES (1,1,'ipn_pages.php'),(2,1,'ipn_cfields.php'),(3,1,'spotlight_mod.php'),(4,1,'sqban_ipn.php'),(5,1,'solomailer_mod.php'),(9,1,'ipn_piggybank.php'),(7,1,'geniuxs_mod.php'),(8,1,'widgetads_ipn.php');
/*!40000 ALTER TABLE `oto_ipnmods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_links`
--

DROP TABLE IF EXISTS `oto_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_links` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `imagepath` varchar(254) NOT NULL DEFAULT '',
  `urlpath` varchar(254) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_links`
--

LOCK TABLES `oto_links` WRITE;
/*!40000 ALTER TABLE `oto_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_log`
--

DROP TABLE IF EXISTS `oto_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_log` (
  `logid` bigint(20) NOT NULL AUTO_INCREMENT,
  `logtime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `logentry` text NOT NULL,
  PRIMARY KEY (`logid`)
) ENGINE=InnoDB AUTO_INCREMENT=1211 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_log`
--

LOCK TABLES `oto_log` WRITE;
/*!40000 ALTER TABLE `oto_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_login_log`
--

DROP TABLE IF EXISTS `oto_login_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_login_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `logtime` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL,
  `ipaddress` varchar(50) NOT NULL,
  `invalidlogin` tinyint(1) NOT NULL DEFAULT 0,
  `unlocked` int(11) NOT NULL DEFAULT 0,
  `region` varchar(255) NOT NULL DEFAULT '',
  `country` varchar(255) NOT NULL DEFAULT '',
  `city` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `logtime` (`logtime`),
  KEY `userid` (`userid`),
  KEY `ipaddress` (`ipaddress`),
  KEY `invalidlogin` (`invalidlogin`),
  KEY `unlocked` (`unlocked`),
  KEY `region` (`region`),
  KEY `country` (`country`),
  KEY `city` (`city`)
) ENGINE=MyISAM AUTO_INCREMENT=4288 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_login_log`
--

LOCK TABLES `oto_login_log` WRITE;
/*!40000 ALTER TABLE `oto_login_log` DISABLE KEYS */;
INSERT INTO `oto_login_log` (`id`, `logtime`, `userid`, `ipaddress`, `invalidlogin`, `unlocked`, `region`, `country`, `city`) VALUES (4285,1776788657,388,'185.219.142.178',0,0,'','',''),(4287,1776941927,388,'185.219.142.178',0,0,'','',''),(4269,1775579536,388,'185.219.142.178',0,0,'','',''),(4260,1775216364,388,'185.219.142.178',0,0,'','',''),(4272,1775859479,388,'185.219.142.178',0,0,'','',''),(4270,1775644268,388,'185.219.142.178',0,0,'','',''),(4271,1775735329,388,'185.219.142.178',0,0,'','',''),(4283,1776642898,388,'185.219.142.178',0,0,'','',''),(4284,1776680874,388,'185.219.142.178',0,0,'','',''),(4286,1776854248,388,'185.219.142.178',0,0,'','',''),(4281,1776423289,388,'185.219.142.178',0,0,'','',''),(4282,1776515892,388,'185.219.142.178',0,0,'','',''),(4265,1775390953,91,'2.99.150.100',0,0,'','',''),(4279,1776275504,388,'185.219.142.178',0,0,'','',''),(4254,1774613532,388,'185.219.142.178',0,0,'','',''),(4258,1775043012,388,'185.219.142.178',0,0,'','',''),(4266,1775469007,151,'70.132.139.171',0,0,'','',''),(4264,1775390945,91,'2.99.150.100',1,0,'','',''),(4263,1775386213,388,'185.219.142.178',0,0,'','',''),(4262,1775327329,327,'81.167.197.237',0,0,'','',''),(4267,1775469504,91,'2.99.150.100',0,0,'','',''),(4273,1775924400,388,'185.219.142.178',0,0,'','',''),(4274,1775970020,176,'167.253.97.97',0,0,'','',''),(4277,1776082030,388,'185.219.142.178',0,0,'','',''),(4278,1776162527,388,'185.219.142.178',0,0,'','',''),(4276,1776013499,388,'185.219.142.178',0,0,'','',''),(4275,1775971017,176,'167.253.97.97',0,0,'','',''),(4280,1776335024,388,'185.219.142.178',0,0,'','',''),(4252,1774354577,388,'185.219.142.178',0,0,'','',''),(4253,1774454685,388,'185.219.142.178',0,0,'','',''),(4251,1774282207,388,'185.219.142.178',0,0,'','',''),(4257,1774954421,388,'185.219.142.178',0,0,'','',''),(4255,1774730492,242,'67.20.2.15',0,0,'','',''),(4256,1774781528,388,'185.219.142.178',0,0,'','',''),(4259,1775130331,388,'185.219.142.178',0,0,'','',''),(4261,1775321721,388,'185.219.142.178',0,0,'','',''),(4268,1775474507,388,'185.219.142.178',0,0,'','','');
/*!40000 ALTER TABLE `oto_login_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_loginmods`
--

DROP TABLE IF EXISTS `oto_loginmods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_loginmods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_loginmods`
--

LOCK TABLES `oto_loginmods` WRITE;
/*!40000 ALTER TABLE `oto_loginmods` DISABLE KEYS */;
INSERT INTO `oto_loginmods` (`id`, `enabled`, `filename`) VALUES (1,1,'bounceemail.php'),(2,1,'lfmvm_loginbonus.php'),(3,1,'spotlight_login.php'),(4,1,'sqban_login.php'),(5,1,'widgetads_login.php');
/*!40000 ALTER TABLE `oto_loginmods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_loginoffers`
--

DROP TABLE IF EXISTS `oto_loginoffers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_loginoffers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `days` int(4) NOT NULL DEFAULT 0,
  `mtype` int(4) NOT NULL DEFAULT 0,
  `productid` int(11) NOT NULL,
  `active` char(1) NOT NULL DEFAULT 'N',
  `stats1` int(11) NOT NULL DEFAULT 0,
  `stats2` int(11) NOT NULL DEFAULT 0,
  `stats3` int(11) NOT NULL DEFAULT 0,
  `lastview` int(10) NOT NULL,
  `offer` mediumtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_loginoffers`
--

LOCK TABLES `oto_loginoffers` WRITE;
/*!40000 ALTER TABLE `oto_loginoffers` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_loginoffers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_mbanners`
--

DROP TABLE IF EXISTS `oto_mbanners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_mbanners` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `state` tinyint(1) NOT NULL DEFAULT 0,
  `memid` int(11) NOT NULL,
  `img` varchar(100) NOT NULL,
  `target` varchar(100) NOT NULL,
  `imps` int(11) NOT NULL DEFAULT 0,
  `hits` int(11) NOT NULL DEFAULT 0,
  `clicks` int(11) NOT NULL DEFAULT 0,
  `hitstoday` int(11) NOT NULL DEFAULT 0,
  `hitsyesterday` int(11) NOT NULL DEFAULT 0,
  `lasthit` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `state` (`state`,`memid`,`imps`,`lasthit`)
) ENGINE=MyISAM AUTO_INCREMENT=340 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_mbanners`
--

LOCK TABLES `oto_mbanners` WRITE;
/*!40000 ALTER TABLE `oto_mbanners` DISABLE KEYS */;
INSERT INTO `oto_mbanners` (`id`, `state`, `memid`, `img`, `target`, `imps`, `hits`, `clicks`, `hitstoday`, `hitsyesterday`, `lasthit`) VALUES (2,1,8,'https://i.postimg.cc/CKFg3XZC/rpm_banner_468_x_60.png','https://rpm.dgesmundo.com/rapid-profit-machine-mmo',401,599,2,0,0,1773547928),(144,1,137,'https://i.imgur.com/Nptl4Po.png','https://llclickpro.com/escapecapll/bf',99984,16,0,0,0,1730845281),(55,1,50,'https://iili.io/dyvnIrG.png','https://llclick.com/r/pm7yr6k2/',2365,6,0,0,0,1775421514),(329,1,75,'http://www.instantbannercreator.com/images/members/110052/banner-35952.png','https://youtu.be/h0kau1jBngw?si=AA7txlRQMQI9LZw3',3995,5,0,0,0,1756870132),(21,1,18,'https://i.imgur.com/fHiyf3n.gif','https://warriorplus.com/o2/a/ss4j92/0',4807,193,1,0,0,1763108910),(145,1,137,'https://imgur.com/0yfSJlG.jpg','https://socialtraffictips.biz/youringoldenhandsno-costfacebooktraffic/',99983,17,0,0,0,1773547935),(324,1,111,'https://imgallery.llsvr.com/kingdingel.6683d24d499f7.jpg','https://digijosh.gotbackuptour.com',9968,32,0,0,0,1775421500),(52,1,50,'http://freeadvertisingforyou.com/images/FAFY-banner468x60-1.gif','http://freeadvertisingforyou.com/index2.php?r=ernie297&t=soloswaps',4866,134,0,0,0,1760201862),(88,1,54,'https://i.imgur.com/fHiyf3n.gif','https://llpgpro.com/0tjh2xj6',2930,405,0,0,0,1772619444),(221,1,35,'https://static.easyhits4u.com/user/banners/19/76/1915676.gif','https://lmat.link/50once',393,7,0,0,0,1753388403),(17,1,51,'http://poweradprofits.com/ban1.gif','http://poweradprofits.com/samantha65',4810,190,0,0,0,1775391149),(149,1,137,'https://storage.builderall.com//franquias/2/6783529/editor-html/9592733.gif','https://warriorplus.com/o2/a/fj603c/0',99983,17,0,0,0,1770821289),(197,1,51,'https://www.satoshimultiplier.com/images/banner1.gif','http://www.trafficleads2incomevm.com/lcp8.php?rid=18245&id=1343',4894,106,0,0,0,1770884734),(309,1,91,'https://enichemarket.com/banners/OLSP-468x60.jpg','https://tdpages.com/67997/page159289',25941,6,2,0,0,1775391166),(22,1,18,'https://thecryptomailer.com/getimg.php?id=1','https://thecryptomailer.com/?rid=406',4807,193,0,0,0,1772111504),(23,1,18,'http://www.herculist.com/img/small6.png','http://www.herculist.com/members/index.cgi?thysma',4807,193,0,0,0,1775406074),(284,1,22,'https://geniecoop.com/ban33.gif','https://geniecoop.com/jeffdionne',179,21,0,0,0,1772117888),(265,1,301,'https://www.securebannerhosting.com/banners/-1681348116317232129.png','https://www.shoplivegood.com/jdderr',531,119,1,0,0,1775979157),(214,1,5,'https://cdn.staticdcp.com/uploads/business/be714043706211ea/library/1669863605ZWrX9bpP21.gif','https://llclickpro.com/BigBookFreeTraffic/02soloswap468',499946,54,1,0,0,1770389906),(32,1,78,'https://mailsy.net/getimg.php?id=1','http://mailsy.net/ref/16016',2297,203,2,0,0,1772337352),(290,1,320,'https://healthymoosimarketing.files.wordpress.com/2023/07/fsn-468-x60.png','https://soloswaps.com/r/healthymoosi',136,89,0,0,0,1775406056),(31,1,81,'https://i.imgur.com/eJG2idj.jpg','https://llpgpro.com/3HCMachin2/soloswaps-b',526,374,0,0,0,1761014285),(36,1,78,'https://www.herculist.com/img/6.png','https://herculist.com/members/index.cgi?LaToyaRogers0987',2297,203,1,0,0,1764873592),(90,1,36,'https://i.imgur.com/4P580Bo.png','https://metaversemadesimple.biz/goldenhands/free-metaverse-made-simple/',191,209,0,0,0,1775406050),(86,1,22,'https://earn.sentext.jeffdionne.com/getimg.php?id=144','https://earn.sentext.jeffdionne.com/splashpage.php?splashid=25',265,93,0,0,0,1764616681),(49,1,77,'http://freeclicks.net/getimg.php?id=12','http://freeclicks.net/?rid=106',11925,575,0,0,0,1772590854),(56,1,50,'https://expertautomation.profitsprep.com/images/468x60.png','http://llclick.com/lwg53342',2365,5,0,0,0,1772111687),(280,1,22,'https://1bannerbox.com/ban4682.gif','https://1bannerbox.com/jeffdionne',179,21,0,0,0,1775988823),(239,1,36,'https://imgallery.llsvr.com/keyte.63b688b78613e.jpg','https://llpgpro.com/tkgjgdmm/',436,64,0,0,0,1772111480),(207,1,81,'https://i.imgur.com/ihAh0vP.png','http://llclickpro.com/traf-builder/soloswaps',392,108,1,0,0,1772564577),(148,1,137,'https://imgur.com/J9MKYOq.jpg','https://llpgpro.com/8nwv5rrh/',99983,17,0,0,0,1761697016),(147,1,137,'https://storage.builderall.com//franquias/2/76562/editor-html/10127793.gif','https://llclickpro.com/r/ktk7s6wy/',99983,17,0,0,0,1759978846),(151,1,137,'https://storage.builderall.com//franquias/2/76562/editor-html/10127795.gif','https://www.rapidprofitmachine.com/cp1/?id=Godisable',99983,17,0,0,0,1732363983),(251,1,141,'https://gotbackup.com/7minbanners/banner_498.jpg','https://dotmike1.gotbackuptour.com/?tr=060123',861,139,0,0,0,1772579861),(249,1,75,'http://www.instantbannercreator.com/images/members/110052/banner-35921.png','https://docs.google.com/document/d/1leWE_aFgO_Gc32M8qPJeKJBz7YfqhhBmlmgNtIGQirQ/edit',5880,120,1,0,0,1761629992),(287,1,311,'https://ezclix.club/img/banners/6262.jpg','https://ezclix.club/m/2948',934,91,1,0,0,1773188735),(102,1,109,'http://rewards4surfing.com/getimg.php?id=1','http://rewards4surfing.com/?rid=1222',584,221,0,0,0,1773494881),(101,1,73,'https://www.worldprofit.com/wpgraphicsstudio/files/60661/60661_Untitled.png','http://www.GrowAHomeBusiness.com/?rd=ed2jXbuF',556,444,7,0,0,1772590842),(112,1,89,'https://ebbt.us/br/397677222F6D4C618AFECC03CA578EA4.jpg','https://ebbt.us/br/397677222F6D4C618AFECC03CA578EA4.html',1976,24,0,0,0,1732773665),(103,1,109,'https://imgur.com/0W4wWMa.jpg','https://trafficbuildr.com/?rid=2325',585,220,1,0,0,1768726693),(108,1,162,'https://www.millionairewith5.com/images/468-by-60.jpg','https://www.millionairewith5.com/?scoie372',19856,144,2,0,0,1766097239),(105,1,165,'https://i.postimg.cc/g03JY2FN/Time-to-Get-1.png','https://campsite.bio/healthydoc',917,58,0,0,0,1664861762),(106,1,36,'https://griap.link/resources/view/1535/glove1000','https://griap.link/resources/view/1535/glove1000',214,186,0,0,0,1763065295),(281,1,22,'https://ads.mybonushub.com/getimg.php?id=1','https://ads.mybonushub.com/?rid=1',179,21,0,0,0,1760946425),(278,1,304,'https://imgallery.llsvr.com/ladews.6501ee6ec84f9.png','https://llclickpro.com/d2cvyc9s/',328,97,0,0,0,1772582419),(109,1,162,'https://portal.theconversionpros.com/portal/home/assets/images/cfxms-banners/FOREX468602.jpg','https://Free2Join.cfxsystem.com',19856,144,0,0,0,1761445382),(110,1,162,'https://cdn.theconversionpros.com/assets/images/affiliates/leadswantoffer.jpg','https://Free2Join.tcplifestylesystem.com',19855,145,0,0,0,1772587665),(113,1,89,'https://ebbt.us/br/B63C809357C64F41B3B9D8F2B895F7DF.jpg','https://ebbt.us/br/B63C809357C64F41B3B9D8F2B895F7DF.html',1975,25,0,0,0,1776203124),(114,1,89,'https://ebbt.us/br/15EEE4F9F41B4557BE9BC755BA3F710C.jpg','https://ebbt.us/br/15EEE4F9F41B4557BE9BC755BA3F710C.html',1975,25,0,0,0,1772153263),(115,1,89,'https://ebbt.us/br/EE77D63C4A9A40ED946672E67CD3499F.jpg','https://ebbt.us/br/EE77D63C4A9A40ED946672E67CD3499F.html',1975,25,0,0,0,1764632071),(116,1,89,'https://ebbt.us/br/C9CA2ED7107E444594E23B9DFEBA68D0.jpg','https://ebbt.us/br/C9CA2ED7107E444594E23B9DFEBA68D0.html',1975,25,0,0,0,1760972185),(117,1,89,'https://ebbt.us/br/77914BF66BAF4AFAA233A58B0305018B.jpg','https://ebbt.us/br/77914BF66BAF4AFAA233A58B0305018B.html',1975,25,0,0,0,1757062709),(118,1,89,'https://ebbt.us/br/26C13A0BDF0142539134107190A835E9.jpg','https://ebbt.us/br/26C13A0BDF0142539134107190A835E9.html',1975,25,0,0,0,1753763049),(119,1,89,'https://ebbt.us/br/12EFD76AD1244B1F874D62B51F8BC4BA.jpg','https://ebbt.us/br/12EFD76AD1244B1F874D62B51F8BC4BA.html',1975,25,0,0,0,1753381988),(120,1,89,'https://ebbt.us/br/15BE2F0DBD4E45989F2A8ECE006E6BD0.jpg','https://ebbt.us/br/15BE2F0DBD4E45989F2A8ECE006E6BD0.html',1975,25,0,0,0,1750612379),(121,1,89,'https://ebbt.us/br/35AE41ED181446C2A28D8E3EFC3C8C48.jpg','https://ebbt.us/br/35AE41ED181446C2A28D8E3EFC3C8C48.html',1975,25,0,0,0,1749811980),(122,1,89,'https://ebbt.us/br/231DE576511E45DCB609D0CFD08C5520.jpg','https://ebbt.us/br/231DE576511E45DCB609D0CFD08C5520.html',1975,25,0,0,0,1748742712),(123,1,89,'https://ebbt.us/br/575968DEF34147EF9127528DDA5F09DB.jpg','https://ebbt.us/br/575968DEF34147EF9127528DDA5F09DB.html',1975,25,0,0,0,1741493074),(124,1,89,'https://ebbt.us/br/AA678065510246D298B86739F1BAB30B.jpg','https://ebbt.us/br/AA678065510246D298B86739F1BAB30B.html',1975,25,1,0,0,1738034917),(125,1,89,'https://ebbt.us/br/93924AF8E1F140BE93D789D2295FA987.jpg','https://ebbt.us/br/93924AF8E1F140BE93D789D2295FA987.html',1975,25,0,0,0,1736300687),(126,1,89,'https://ebbt.us/br/02CDFA833DDD4134B7DDF7D8D2CE39A7.jpg','https://ebbt.us/br/02CDFA833DDD4134B7DDF7D8D2CE39A7.html',1975,25,0,0,0,1735522536),(127,1,89,'https://ebbt.us/br/11CC86E7A1CD49D0A4A62A2C6B4CF84F.jpg','https://ebbt.us/br/11CC86E7A1CD49D0A4A62A2C6B4CF84F.html',1975,25,0,0,0,1735164928),(128,1,89,'https://ebbt.us/br/B56245DC677A4B149EB2A8DBE7A390B2.jpg','https://ebbt.us/br/B56245DC677A4B149EB2A8DBE7A390B2.html',1975,25,0,0,0,1734038411),(129,1,176,'http://ads-messenger.com/getimg.php?id=4','https://www.safelist8.com/2020/07/i-get-100-clicks-on-all-ads-here-so-can.html',9578,422,1,0,0,1775979144),(242,1,132,'https://www.adsnposts.com/oc-content/themes/bitfinder/img/logo.jpg','http://adsnposts.com',231,169,1,0,0,1772153276),(273,1,140,'https://imgallery.llsvr.com/keyte.63c54d0ee7027.gif','https://www.livegoodtour.com/Kr8zzy?SOURCE=WP',115,110,0,0,0,1772333524),(271,1,297,'https://i.imgur.com/0cOuT6C.jpg','https://fasttraffic.net/?rid=340',86,114,0,0,0,1775971152),(230,1,2,'https://giselabeckermann.com/wp-content/uploads/2023/02/earn-commissions-from-free-system.png','https://cutt.ly/Z3j452y',99977,23,0,0,0,1761498101),(155,1,137,'https://d1yei2z3i6k35z.cloudfront.net/1904866/638bd26f96162_NewAffiliate.gif','https://www.williamglover.co/15daychallenge',99983,17,0,0,0,1731584778),(274,1,227,'https://karendahlinmarketing.com/wp-content/uploads/2023/08/Traffic-Endgame-Banner.jpg','https://100dfy.com/karen-2/',0,100,2,0,0,1741492530),(219,1,50,'https://www.easytrafficbuilder.com/images/468-60.gif','https://www.easytrafficbuilder.com/index.php?r=ernie297',542,5,0,0,0,1763273771),(157,1,218,'https://imgur.com/8aeullA.gif','https://intellibanners.com/click.php?cid=fandres5df',999975,25,0,0,0,1746604685),(158,1,218,'https://imgur.com/ZHxT8PQ.png','https://hlink.us/dsvalue1',999975,25,0,0,0,1741492524),(159,1,218,'https://i.imgur.com/Nptl4Po.png','https://llclickpro.com/escapecapll/bf',999975,25,0,0,0,1737937426),(161,1,218,'https://imgur.com/ImnOPPs.png','https://socialtraffictips.biz/youringoldenhandsno-costfacebooktraffic/',999975,25,0,0,0,1736300658),(162,1,218,'https://imgur.com/QCTWDdT.jpg','https://llpgpro.com/pfpw2z8m',999974,26,0,0,0,1775988947),(163,1,218,'https://imgur.com/zRV1n3R.gif','https://llpgpro.com/theclickengine-magicfunnel/lifetrarot',999974,26,0,0,0,1772117901),(165,1,218,'https://imgur.com/taUewSX.png','https://llpgpro.com/8nwv5rrh/',999974,26,0,0,0,1764616694),(166,1,218,'https://imgur.com/Ky8ZCmX.gif','https://warriorplus.com/o2/a/fj603c/0',999974,26,0,0,0,1760946436),(167,1,218,'https://imgur.com/2M9ZXZP.jpg','https://www.trker.com/bclick/49181/1/frankandresbanner',999974,26,0,0,0,1757028646),(168,1,218,'https://imgur.com/1iYhSD9.gif','https://www.rapidprofitmachine.com/cp1/?id=Godisable',999974,26,0,0,0,1753687462),(246,1,1,'https://imgallery.llsvr.com/keyte.63c54b421174e.jpg','https://llpgpro.com/lgfunneljosch/5DF468',9922,78,1,0,0,1768726707),(170,1,218,'https://imgur.com/DnJWkWk.gif','https://leadsleap.com/?r=delta88',999974,26,0,0,0,1753381952),(171,1,218,'https://imgur.com/ap0Kv57.jpg','https://llpgpro.com/xdrkyzbd/',999974,26,0,0,0,1750361152),(172,1,218,'https://imgur.com/rL9SAxv.gif','https://www.williamglover.co/15daychallenge',999974,26,0,0,0,1749783313),(174,1,137,'https://i.imgur.com/bJpeV3t.png','https://marketingpro.e1ulife.com/optin/OptinPage5/index.php?betomiranda',99983,17,0,0,0,1752186580),(175,1,137,'https://zone12.secondsplash.com/b/468x60c.jpg','https://www.trker.com/go/170124',99983,17,1,0,0,1741482236),(176,1,137,'https://i.imgur.com/WISCsez.jpg','https://allinoneprofits.com/rotator.php?id=theophille',99983,17,0,0,0,1737863789),(177,1,137,'https://www.worldprofit.com/wpgraphicsstudio/files/images/6168_worldprofitbannercredits934257.png','https://www.maxincome101.com/?rd=ts3c7lTV',99983,17,0,0,0,1735388919),(178,1,137,'https://i.imgur.com/u1fApxH.gif','https://warriorplus.com/o2/a/k9h9pn/0',99983,17,0,0,0,1734920443),(217,1,5,'https://cdn.staticdcp.com/uploads/business/be714043706211ea/library/1670139299ZMcU48lajE.gif','http://llclickpro.com/MassiveTrafficNetwork/02soloswap468',499946,54,0,0,0,1761501555),(180,1,137,'https://i.imgur.com/fHiyf3n.gif','https://warriorplus.com/o2/a/srp60m/0',99983,17,0,0,0,1733917192),(220,1,81,'https://myfreecryptolist.com/images/LLMax468x60.png','https://myfreecryptolist.com/leadsleapmaxsplash?ll=wouellet',412,88,0,0,0,1764873625),(183,1,137,'https://imageshack.com/i/pn3zrLygj','https://tpmr.com/i/85443',99983,17,0,0,0,1750258569),(238,1,2,'https://i.imgur.com/mdGX7cG.png','http://llclick.com/FreeListBuildingFunnel',99981,19,0,0,0,1752166500),(185,1,2,'https://i.imgur.com/sDTDJ3W.png','http://llclick.com/42hdfvf4/',99964,36,0,0,0,1756768128),(187,1,2,'https://i.imgur.com/Bl0Hav4.png','https://www.trker.com/bclick/59511/2',99964,36,0,0,0,1773511531),(188,1,2,'https://i.imgur.com/FFDi0sC.png','https://redeyedeal.com/onboarding',99964,36,0,0,0,1759444684),(244,1,263,'https://onemillionclicks.im-club.com/images/OneMillionFREE.gif','https://onemillionclicks.im-club.com/?papawstv',236,164,0,0,0,1772564585),(190,1,2,'https://i.imgur.com/uhxuPer.png','https://victorefughi.members.hbafunnelbuilder.com/fast-25-dollars',99965,35,0,0,0,1750211936),(192,1,2,'https://i.imgur.com/yXRndvT.png','https://tny.sh/zaEtH5m',99965,35,0,0,0,1748866511),(193,1,2,'https://i.imgur.com/nDdj1aP.jpg','https://www.facelifenow.com/',99965,35,0,0,0,1742737388),(194,1,137,'https://i.imgur.com/yXRndvT.png','https://tny.sh/zaEtH5m',99983,17,0,0,0,1748884631),(195,1,137,'https://i.imgur.com/nDdj1aP.jpg','https://www.facelifenow.com/',99983,17,0,0,0,1742766594),(225,1,123,'https://imgallery.llsvr.com/keyte.63c549b12aa99.gif','https://lllpg.com/rb-LiveGood/',9804,246,1,0,0,1772587712),(196,1,45,'https://media0.giphy.com/media/uivtLbJgdRpFEOHHMA/giphy.gif','https://realimreviews.com/reviews/246',760,340,1,0,0,1773587175),(199,1,137,'https://storage.builderall.com//franquias/2/76562/editor-html/10127795.gif','https://www.clkmg.com/Gordon876/5DollarRPM',99983,17,0,0,0,1757002082),(289,1,310,'https://listbuildingresources.com/images/pcps468x60.gif','https://llpgpro.com/tdchxwvm/ssban',1911,89,0,0,0,1775391220),(213,1,5,'https://cdn.staticdcp.com/uploads/business/be714043706211ea/library/16698611283q9VXIkPzL.gif','http://llclickpro.com/milliondollargiveaway/02soloswaps468',499946,54,0,0,0,1759444695),(201,1,137,'https://i.imgur.com/2LbVkZD.png','http://llclickpro.com/wpkyh6x4/5dfriday2',99983,17,0,0,0,1753624951),(277,1,308,'https://www.5toprofits.com/images/Banner1468x60.gif','https://www.5toprofits.com/?inlev',325,100,1,0,0,1772587748),(216,1,5,'https://cdn.staticdcp.com/uploads/business/be714043706211ea/library/1669413914MOZFkA04rX.gif','http://llclickpro.com/500DollarsSoftware/02soloswap468',499946,54,0,0,0,1756768135),(227,1,2,'https://ebbt.us/users/9/wjherring/ads/A0145160200D49F6AFD037C0EBE6D608.png','https://pixeldesign.pro',99976,24,0,0,0,1770389891),(206,1,137,'https://i.imgur.com/fHiyf3n.gif','https://llclickpro.com/dg26n3yh/',99984,16,0,0,0,1736004288),(211,1,35,'https://funkymonkeyhits.com/getimg.php?id=7','https://funkymonkeyhits.com/?rid=1070',382,118,0,0,0,1753763065),(208,1,51,'https://robocashmachine.com/banmachine2.gif','https://robocashmachine.com/samantha65',3902,98,1,0,0,1763060050),(215,1,5,'https://cdn.staticdcp.com/uploads/business/be714043706211ea/library/1670124558rmXUjlG75s.gif','http://llclickpro.com/30DaysWebsiteTraffic/02soloswap468',499945,55,1,0,0,1773511591),(212,1,17,'https://infinitymailerboost.com/ba-nn-ers/4-6-8.gif','https://llclick.com/zbmbbwg5/bannersafe',745,255,0,0,0,1772582866),(247,1,1,'https://i.imgur.com/azlqAJB.gif','https://llclickpro.com/r/global-prosperiteam/frankandres468/',999922,78,1,0,0,1773494936),(210,1,2,'https://freeimghost.net/images/2023/01/09/ezgif.com-gif-maker.gif','https://www.trker.com/go/170314',99970,30,0,0,0,1753624934),(311,1,35,'https://static.easyhits4u.com/user/banners/19/09/1909309.gif','https://lmat.link/nm37h',192,8,0,0,0,1760975590),(312,1,35,'https://i.imgur.com/Fj3VXnl.gif','https://lmat.link/fifty',393,7,0,0,0,1750719713),(313,1,35,'https://mytrafficpartners.com/prelaunch/images/468x60.gif','https://mytrafficpartners.com/signup2.php?r=devildog1&t=soloswp',192,8,0,0,0,1757130932),(314,1,35,'https://adwinnersdaily.com/images/468x60.gif','https://adwinnersdaily.com/index.php?r=devildog1',192,8,0,0,0,1764664973),(315,1,35,'https://100percentclicks.com/images/468-60.gif','https://100percentclicks.com/index2.php?r=devildog1&t=soloswp',192,8,0,0,0,1772333512),(328,1,405,'http://submitads4free.com/getimg.php?id=10','http://submitads4free.com/promobanners.php?aff=563',399,26,0,0,0,1772587679),(316,1,9,'https://www.trker.com/banner/26286.jpg','https://www.trker.com/click/26286',489,11,0,0,0,1757002083),(317,1,9,'https://www.trker.com/banner/30116.jpg','https://www.trker.com/click/30116',488,12,0,0,0,1773587161),(319,1,27,'https://imgallery.llsvr.com/mschow.661ec53a6d301.jpg','https://listinfinity.net/mschow/8',12085,15,0,0,0,1766097213),(332,1,161,'https://cdn.freelistmonster.com/b/468x60c.png','https://www.freelistmonster.com/?u=320&js=video&js=soloswaps',181,19,0,0,0,1772619459),(318,1,9,'https://intellibanners.com/solopreneur.jpg','https://intellibanners.com/click.php?cid=solopreneur',988,12,0,0,0,1763048503),(321,1,27,'https://imgallery.llsvr.com/mschow.661edda8f201b.png','https://llpgpro.com/7dkfcgb6/',10986,14,0,0,0,1761288509),(320,1,27,'https://imgallery.llsvr.com/mschow.661edbbdbdd0b.gif','https://llpgpro.com/bwszfzc4/',10985,15,0,0,0,1772582879),(326,1,401,'https://www.profitbizpro.com/images/bannerworkathomeflash.gif','https://lllpg.com/mdjdnwnf/soloswaps/',398,27,0,0,0,1776203110),(323,1,393,'https://affiliatemarketingbreakthrough.com/wp-content/uploads/2024/03/ics-banner3-468x60-1.png','https://llpgpro.com/44vs5b3j/',167,33,0,0,0,1772582438),(337,1,9,'https://wintrafficdaily.com/images/468x60.gif','https://wintrafficdaily.com/index.php?r=cyberco',5997,3,0,0,0,1770821443),(331,1,75,'http://www.instantbannercreator.com/images/members/110052/banner-35953.png','https://docs.google.com/document/d/1leWE_aFgO_Gc32M8qPJeKJBz7YfqhhBmlmgNtIGQirQ/edit',6994,6,0,0,0,1773547921),(327,1,9,'https://intellibanners.com/social1.jpg','https://intellibanners.com/click.php?cid=social1',1995,5,0,0,0,1753624956),(330,1,75,'http://www.instantbannercreator.com/images/members/110052/banner-35952.png','https://docs.google.com/document/d/1leWE_aFgO_Gc32M8qPJeKJBz7YfqhhBmlmgNtIGQirQ/edit',1995,5,0,0,0,1759934465),(333,1,75,'http://www.instantbannercreator.com/images/members/110052/banner-35953.png','https://5dollarfriday.my.canva.site/',3996,4,0,0,0,1770821238),(335,1,420,'https://www.worldprofit.com/wpgraphicsstudio/files/3099/3099_Titanium468x60479969.png','https://www.50000FreeVisitors.com/?id=6290074',0,0,0,0,0,0),(334,1,9,'https://intellibanners.com/gift.jpg','https://intellibanners.com/click.php?cid=gift',997,3,0,0,0,1759978925),(339,1,413,'https://i.imgur.com/KiaQ5pP.png','https://llclick.com/gk8gzx26/',466,9,1,0,0,1775391215),(338,1,428,'http://intellibanners.com/rotators1.jpg','http://intellibanners.com/click.php?cid=rotators1',614,11,0,0,0,1772579874);
/*!40000 ALTER TABLE `oto_mbanners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_memberpages`
--

DROP TABLE IF EXISTS `oto_memberpages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_memberpages` (
  `pageid` int(11) NOT NULL AUTO_INCREMENT,
  `pagename` varchar(50) NOT NULL DEFAULT 'New Page',
  `pagedata` mediumtext NOT NULL,
  `mtype` int(11) NOT NULL DEFAULT 0,
  `delay` int(11) NOT NULL DEFAULT 0,
  `pagetag` varchar(8) NOT NULL DEFAULT 'none',
  `menu` int(11) NOT NULL DEFAULT 1,
  `pageindex` int(11) NOT NULL DEFAULT 0,
  `publishdate` datetime DEFAULT '0000-00-00 00:00:00',
  `filename` varchar(100) NOT NULL DEFAULT '',
  `isfile` int(11) NOT NULL DEFAULT 0,
  `parent` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`pageid`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_memberpages`
--

LOCK TABLES `oto_memberpages` WRITE;
/*!40000 ALTER TABLE `oto_memberpages` DISABLE KEYS */;
INSERT INTO `oto_memberpages` (`pageid`, `pagename`, `pagedata`, `mtype`, `delay`, `pagetag`, `menu`, `pageindex`, `publishdate`, `filename`, `isfile`, `parent`) VALUES (1,'Traffic & Banner Exchanges','',1,0,'dlb_1',0,0,'0000-00-00 00:00:00','m_dlb_multi.php',1,0),(2,'Prize Wall','<table align=\"center\" border=\"0\" cellpadding=\"10\" cellspacing=\"1\" style=\"width: 600px;\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"text-align: center;\">â€‹<img alt=\"\" src=\"https://imgur.com/4O00CIQ.png\" style=\"opacity: 0.9; height: 225px; width: 751px;\" /></td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center;\">\r\n			<table align=\"center\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" style=\"width: 580px;\">\r\n				<tbody>\r\n					<tr>\r\n						<td style=\"text-align: center;\">\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/01/FredRaley2-transparent.png\" style=\"opacity: 0.9; text-align: center; width: 42px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Fred Raley</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">Killer Headlines That Can Increase Your Income</span></p>\r\n												<img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/10/300PowerHeadlines-1080x1080-1.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;Headlines, Titles and Text Links Can Make Sales for You When You Do Them Right</span><br style=\"text-align: center;\" />\r\n												<a href=\"https://trafficleadsnsales.com/headlines-to-make-you-a-fortune/\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.imgur.com/p8rSR24.jpg\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Gordon Hunsucker</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"font-family: Lato, Arial, Helvetica, sans-serif;\">SHUFFLER</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/uyMZ6fS.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"font-family: Lato, Arial, Helvetica, sans-serif;\">How o Make Shuffler Commissions of Up To $200 + A Pop/Per Listin By Running Autopilot Banner Ads</span><a href=\"https://www.getshuffler.com/squeezepage.php?fid=849769\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />\r\n												<p>&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<span style=\"text-align: center;\">free&nbsp;gift free&nbsp;gift free&nbsp;gift free&nbsp;giftfree&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</p>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p>&nbsp;</p>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of <span style=\"text-align: center; background-color: rgb(254, 198, 52);\">(Name)</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">â€‹â€‹PRODUCT NAME</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<a href=\"http://flyingsoloads.com/splashpage.php?ref=profitideas\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p>&nbsp;</p>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of <span style=\"text-align: center; background-color: rgb(254, 198, 52);\">(Name)</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">â€‹â€‹PRODUCT NAME</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<a href=\"http://flyingsoloads.com/splashpage.php?ref=profitideas\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n						<td>&nbsp;</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>',1,0,'przwl',1,1,'2022-05-09 00:00:00','',0,0),(3,'test','<html>\r\n<head>\r\n<meta charset=\"utf-8\">\r\n<title>Affiliate_Tools</title>\r\n</head>\r\n\r\n<body width=\"70%\">\r\n	<br>\r\n	<font \r\n		  face=\"Poppins\"\r\n	    <b>\r\n	    <center>\r\n		<font\r\n			  size=\"20px\">\r\n			Your Affiliate Link\r\n		</font>\r\n		</b>\r\n	    <br>\r\n            #REFURL#\r\n	    <br>\r\n	    <br>\r\n	        <table border=\"1\" cellpadding=\"10\" cellspacing=\"0rem\" style=\"width:15rem;\">\r\n	<tbody>\r\n		<tr style=\"background-color:#00E19F\">\r\n			<td style=\"text-align: center;\">\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">Banner</span></strong></p>\r\n\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">(300x600)</span></strong></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Instagram</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1080x1080)</strong></span></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Facebook</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1080x1920)</strong></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=8\" style=\"width: 15rem; height: 30rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"width:15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=8\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=1\" style=\"width: 15rem; height: 15rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=1\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=3\" style=\"width: 15rem; height: 26.688;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=3\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n	\r\n	<br>\r\n	\r\n	<table border=\"1\" cellpadding=\"10\" cellspacing=\"0\" style=\"width:15rem;\">\r\n	<tbody>\r\n		<tr style=\"background-color:#00E19F\">\r\n			<td style=\"text-align: center;\">\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">Facebook Mobile Cover</span></strong></p>\r\n\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">(851x315)</span></strong></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Banner</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(300x250)</strong></span></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Linkedin</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1200x627)</strong></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=2\" style=\"width: 15rem; height: 5.563rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"width:15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=2\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=7\" style=\"width: 15rem; height: 12.5rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=7\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=4\" style=\"width: 15rem; height: 7.875rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=4\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n	\r\n        </font>\r\n		</center>\r\n\r\n</body>\r\n</html>',1,0,'afttest',0,0,'2022-06-25 00:00:00','',0,0),(4,'Affiliate Toolbox','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add these banners to your site</h2></div><br><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/IXFkq5C.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Mih0rBN.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Vz0Wl69.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/zNGTlTi.jpg\"></code><</code>/a></code></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/hKx5hvb.gif\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/ddwdwLd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/3ii7Hwd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/gu4vtKd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/MRBjnCT.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n<div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">600x300px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/JW8Ix8L.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/JW8Ix8L.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>',1,0,'afft',0,0,'2022-07-08 00:00:00','',0,0),(5,'Safelists & Viral Mailers','',1,0,'dlb_2',0,0,'0000-00-00 00:00:00','m_dlb_multi.php',1,0),(6,'Hybrid Mailer and Traffic Sites','',1,0,'dlb_3',0,0,'0000-00-00 00:00:00','m_dlb_multi.php',1,0),(7,'Biz Opps','',1,0,'dlb_4',0,0,'0000-00-00 00:00:00','m_dlb_multi.php',1,0),(8,'Crypto & Investment','',1,0,'dlb_5',0,0,'0000-00-00 00:00:00','m_dlb_multi.php',1,0),(9,'Prize Wall','<table align=\"center\" border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"max-width: 1140px;\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align: center; max-width: 1140px\"><img align=\"center\" alt=\"\" src=\"https://imgur.com/ym7bROy.png\" style=\"opacity: 0.9; max-width: 1000px; margin-bottom: 20px; max-height: 185px;\" /><br />\r\n			â€‹â€‹<a href=\"https://trafficbuildr.com/members.php?page=bsts\" rel=\"noopener\" style=\"\" target=\"_blank\">Click Here to Post Your Store Item</a></p>\r\n			<!-- starts table test -->\r\n\r\n			<table align=\"center\" border=\"1\" cellpadding=\"0\" width=\"1140px\">\r\n				<tbody>\r\n					<tr>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262\">\r\n									<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/01/FredRaley2-transparent.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By Fred Raley</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/10/300PowerHeadlines-1080x1080-1.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://trafficleadsnsales.com/headlines-to-make-you-a-fortune/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://i.imgur.com/p8rSR24.jpg\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By (Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://i.imgur.com/uyMZ6fS.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://www.getshuffler.com/squeezepage.php?fid=849769\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n					</tr>\r\n					<tr>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n					</tr>\r\n					<tr>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			<!-- ends table test --></td>\r\n		</tr>\r\n	</tbody>\r\n</table>',1,0,'nwprzwll',0,0,'2023-09-22 00:00:00','',0,0),(10,'Member To Member Store','<table style=\"max-width: 1140px;\" border=\"0\" cellspacing=\"1\" cellpadding=\"1\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p style=\"text-align: center; max-width: 1140px\"><img style=\"opacity: 0.9; max-width: 1000px; margin-bottom: 20px; max-height: 185px;\" src=\"https://imgur.com/SHEavaD.png\" alt=\"\" align=\"center\" /><br /> â€‹â€‹<strong style=\"color: #0000ff; font-size: 24px;\"><a style=\"color: #0000ff;\" href=\"https://trafficbuildr.com/members.php?page=bsts\" target=\"_blank\" rel=\"noopener\"><u>Click Here to Post Your Store Item</u></a></strong></p>\r\n\r\n\r\n<!-- starts table test -->\r\n<table cellpadding=\"0\" align=\"center\" border=\"1\" width=\"1140px\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n\r\n\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n\r\n\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<!-- ends table test -->',0,0,'m2mrs',0,0,'2023-09-22 00:00:00','',0,0);
/*!40000 ALTER TABLE `oto_memberpages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_members`
--

DROP TABLE IF EXISTS `oto_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_members` (
  `Id` int(11) NOT NULL AUTO_INCREMENT,
  `username` varchar(32) NOT NULL DEFAULT '',
  `firstname` varchar(20) NOT NULL DEFAULT '',
  `lastname` varchar(30) NOT NULL DEFAULT '',
  `email` varchar(100) NOT NULL DEFAULT '',
  `address` varchar(50) NOT NULL DEFAULT '',
  `city` varchar(40) NOT NULL DEFAULT '',
  `state` varchar(40) DEFAULT NULL,
  `postcode` varchar(16) NOT NULL DEFAULT '',
  `country` char(3) NOT NULL DEFAULT '',
  `telephone` varchar(30) NOT NULL DEFAULT '',
  `password` varchar(255) NOT NULL DEFAULT '',
  `refid` int(11) unsigned DEFAULT 0,
  `commission` float(6,2) unsigned DEFAULT 0.00,
  `mailbounce` int(11) NOT NULL DEFAULT 0,
  `lastbounce` int(11) NOT NULL DEFAULT 0,
  `bouncemode` int(11) NOT NULL DEFAULT 0,
  `bouncetp` int(11) NOT NULL DEFAULT 0,
  `status` varchar(16) NOT NULL DEFAULT 'Active',
  `otoview` int(11) DEFAULT 0,
  `joindate` datetime DEFAULT '0000-00-00 00:00:00',
  `disableddate` datetime DEFAULT NULL,
  `geo` varchar(4) DEFAULT NULL,
  `paypal_email` varchar(100) DEFAULT NULL,
  `groupid` int(11) unsigned DEFAULT 0,
  `mtype` int(11) unsigned DEFAULT 0,
  `cb_id` varchar(50) DEFAULT NULL,
  `newsletter` int(11) NOT NULL DEFAULT 1,
  `lastip` varchar(50) NOT NULL DEFAULT '',
  `signupip` varchar(50) NOT NULL DEFAULT '',
  `signupregion` varchar(255) NOT NULL DEFAULT '',
  `signupcountry` varchar(255) NOT NULL DEFAULT '',
  `signupcity` varchar(255) NOT NULL DEFAULT '',
  `lastlogin` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `numLogins` int(11) NOT NULL DEFAULT 0,
  `lastotoid` varchar(20) NOT NULL DEFAULT '0/0/0',
  `credits` float NOT NULL DEFAULT 0,
  `bannerimps` int(11) NOT NULL DEFAULT 0,
  `widgetimps` float NOT NULL DEFAULT 0,
  `sqbanimps` int(11) NOT NULL DEFAULT 0,
  `textimps` int(11) NOT NULL DEFAULT 0,
  `lastsite` int(11) NOT NULL DEFAULT 0,
  `lastbanner` int(11) NOT NULL DEFAULT 0,
  `lastsqban` int(11) NOT NULL DEFAULT 0,
  `lasttext` int(11) NOT NULL DEFAULT 0,
  `lastclick` int(11) NOT NULL DEFAULT 0,
  `lasttoday` int(11) NOT NULL DEFAULT 0,
  `lastmailing` int(11) NOT NULL DEFAULT 0,
  `starttime` int(11) NOT NULL DEFAULT 0,
  `timetoday` int(11) NOT NULL DEFAULT 0,
  `recordtime` int(11) NOT NULL DEFAULT 0,
  `actsite` tinyint(1) NOT NULL DEFAULT 0,
  `actbanner` tinyint(1) NOT NULL DEFAULT 0,
  `actsqban` tinyint(1) NOT NULL DEFAULT 0,
  `acttext` tinyint(1) NOT NULL DEFAULT 0,
  `goodclicks` int(11) NOT NULL DEFAULT 0,
  `badclicks` int(11) NOT NULL DEFAULT 0,
  `creditstoday` float NOT NULL DEFAULT 0,
  `creditsyesterday` float NOT NULL DEFAULT 0,
  `clickstoday` int(11) NOT NULL DEFAULT 0,
  `clicksyesterday` int(11) NOT NULL DEFAULT 0,
  `currentview` int(11) NOT NULL DEFAULT 0,
  `lastview` int(11) NOT NULL DEFAULT 0,
  `lastbonus` varchar(20) NOT NULL DEFAULT '0/0',
  `vericode` varchar(50) NOT NULL DEFAULT '',
  `upgend` date NOT NULL DEFAULT '0000-00-00',
  `tempcomm` float(6,2) NOT NULL DEFAULT 0.00,
  `tempsales` float(6,2) NOT NULL DEFAULT 0.00,
  `tempnumsales` int(11) NOT NULL DEFAULT 0,
  `temprefs` int(11) NOT NULL DEFAULT 0,
  `tempclicks` int(11) NOT NULL DEFAULT 0,
  `temptime` int(11) NOT NULL DEFAULT 0,
  `tempaccuracy` int(11) NOT NULL DEFAULT 0,
  `affnotify` int(11) NOT NULL DEFAULT 1,
  `mailrectoday` int(11) NOT NULL DEFAULT 0,
  `tempcommp` float(10,2) NOT NULL DEFAULT 0.00,
  `vacend` date NOT NULL DEFAULT '0000-00-00',
  `expirydate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `paymentplan` varchar(20) NOT NULL DEFAULT 'Free',
  `bounceretries` int(11) NOT NULL DEFAULT 0,
  `upgchanged` date NOT NULL DEFAULT '0000-00-00',
  `rankstoday` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`Id`),
  UNIQUE KEY `username` (`username`),
  UNIQUE KEY `email` (`email`),
  KEY `lastsite` (`lastsite`),
  KEY `lastbanner` (`lastbanner`),
  KEY `lasttext` (`lasttext`),
  KEY `actsite` (`actsite`),
  KEY `actbanner` (`actbanner`),
  KEY `acttext` (`acttext`),
  KEY `refid` (`refid`),
  KEY `status` (`status`),
  KEY `joindate` (`joindate`),
  KEY `signupregion` (`signupregion`),
  KEY `signupcountry` (`signupcountry`),
  KEY `signupcity` (`signupcity`),
  KEY `lastsqban` (`lastsqban`),
  KEY `actsqban` (`actsqban`),
  KEY `lastip` (`lastip`),
  KEY `upgchanged` (`upgchanged`)
) ENGINE=InnoDB AUTO_INCREMENT=678 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_members`
--

LOCK TABLES `oto_members` WRITE;
/*!40000 ALTER TABLE `oto_members` DISABLE KEYS */;
INSERT INTO `oto_members` (`Id`, `username`, `firstname`, `lastname`, `email`, `address`, `city`, `state`, `postcode`, `country`, `telephone`, `password`, `refid`, `commission`, `mailbounce`, `lastbounce`, `bouncemode`, `bouncetp`, `status`, `otoview`, `joindate`, `disableddate`, `geo`, `paypal_email`, `groupid`, `mtype`, `cb_id`, `newsletter`, `lastip`, `signupip`, `signupregion`, `signupcountry`, `signupcity`, `lastlogin`, `numLogins`, `lastotoid`, `credits`, `bannerimps`, `widgetimps`, `sqbanimps`, `textimps`, `lastsite`, `lastbanner`, `lastsqban`, `lasttext`, `lastclick`, `lasttoday`, `lastmailing`, `starttime`, `timetoday`, `recordtime`, `actsite`, `actbanner`, `actsqban`, `acttext`, `goodclicks`, `badclicks`, `creditstoday`, `creditsyesterday`, `clickstoday`, `clicksyesterday`, `currentview`, `lastview`, `lastbonus`, `vericode`, `upgend`, `tempcomm`, `tempsales`, `tempnumsales`, `temprefs`, `tempclicks`, `temptime`, `tempaccuracy`, `affnotify`, `mailrectoday`, `tempcommp`, `vacend`, `expirydate`, `paymentplan`, `bounceretries`, `upgchanged`, `rankstoday`) VALUES (1,'testuser','John','Doe','no-one@nowhere.com','200 Jdoe street','Doeville','CA','90210','CA','32323232','179ad45c6ce2cb97cf1029e212046e81',0,0.00,0,0,0,0,'Active',0,'2006-07-20 15:26:29',NULL,'USA','johndoe@paypal.org',1,6,'',1,'','','','','','0000-00-00 00:00:00',0,'0/0/0',1970000,2000000,0,22000000,2000000,0,1773494936,1775735330,1771427001,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,'06/2023','','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-04-26',0),(2,'ivan','ivan','ocaa','5dollarfriday46@gmail.com','','','','','AU','','$2y$10$QavXpfeaecx1hwAajkXxfOB2t7NkjyeQv7NDbl93sbX4d77r2Gy7q',0,0.00,0,0,0,0,'Active',0,'2022-05-09 08:41:46',NULL,'','',1,4,'',1,'187.150.199.106','187.252.251.86','','','','2024-07-09 15:54:11',26,'0/0/0',1543100000,172400,0,62000,172400,0,1773511531,1775735330,1772619444,1694838201,1694838201,1697038041,1694838165,0,36,0,1,1,1,2,0,0,0,0,0,0,0,'07/2024','921c2dc40d0b979c2910298d2f880152','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-18',0),(3,'chetumango','Angel','Ojeda','5dollarfriday45@gmail.com','','','','','AU','','$2y$10$BggopaWg/NW2d0Yep4ls7.0PoBY8HfzVyLvCkt3.LY8e8LB8fS5bO',0,0.00,0,0,0,0,'Active',0,'2022-05-20 12:18:45',NULL,'','',1,4,'',1,'45.235.255.116','187.252.251.100','','','','2025-01-09 15:57:26',57,'0/0/0',500000,50075,0,5000,50075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2025','02aff7969b61d33fe215dba6bf0056c8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-18',0),(4,'WorkingClassAussie','Colin','James','workingclassaussies@gmail.com','','','','','','','$2y$10$VrFqhRi1VsVJ914X/6AH4uSuHlKOz6QJAxjwAMujgoxQ/0PL43kBi',0,0.00,0,0,0,0,'Unverified',0,'2022-05-22 19:57:08',NULL,'','',1,1,'',0,'','159.196.196.11','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','6b5617315c9ac918215fc7514bef514b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(5,'wealthsystems','Herb','Ratsch','herb@bancoii.com','','','','','AU','','$2y$10$wY33DjezqPfnW8tswgjCs.u13AP7pYZ3nhPGHn7WY1ghIw3OabDoK',0,0.00,0,0,0,0,'Active',0,'2022-05-23 16:54:58',NULL,'','',1,3,'',1,'68.149.106.117','68.149.101.15','','','','2025-03-18 23:44:05',90,'0/0/0',379957,9425,0,0,9425,0,1773511591,1775924400,1773511591,0,0,1741846208,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,'03/2025','b27d5296bede63b1493a5d321d4e8092','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-24',0),(8,'danigsm','Danilo','Gesmundo','dgesmundo@gmail.com','','','','','AU','','$2y$10$fa1jveB.I3Gb00Zojd21muKSSL.AcUwOMUQ7LqjUYlLUyzf.aIPmq',0,0.00,0,0,0,0,'Active',0,'2022-05-26 02:39:18',NULL,'','',1,3,'',1,'45.87.184.56','5.88.239.62','','','','2022-08-10 09:30:54',6,'0/0/0',74212,41000,0,0,41000,0,1773547928,0,0,1664577528,1664577528,1660124255,1664577528,0,111,0,1,0,0,58,0,0,0,0,0,0,0,'08/2022','ef8446f35513a8d6aa2308357a268a7e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(9,'cyberco','Eric','Lafontaine','ericlafontainelive@gmail.com','','','','','AU','','$2y$10$KilMBF7AH4R2IO1jdGO0QedOrhYFldgFMMJtoJ4XxScbmDpyqEnZm',0,0.00,0,0,0,0,'Active',0,'2022-05-27 20:49:58',NULL,'','',1,3,'',1,'24.225.246.69','198.16.133.51','','','','2025-06-01 01:39:57',35,'0/0/0',61859.9,2000,0,0,2000,0,1773587161,1775924400,1775971152,1741400983,1741400983,1748742272,1741400983,0,38,0,1,1,1,21,0,0,0,0,0,0,0,'06/2025','86e78499eeb33fb9cac16b7555b50767','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(10,'littlesong','Robert','Bierbaum','rpbrapper@gmail.com','','','','','','','$2y$10$f1DVvyqSMPiuTTOdDaCtaOfaZzbImkCQfkxeH8VajCge5TEXZ/L7.',0,0.00,0,0,0,0,'Active',0,'2022-05-27 21:39:35',NULL,'','',1,1,'',1,'65.110.121.139','65.110.121.232','','','','2024-12-25 23:54:15',4,'0/0/0',229,425,0,0,425,0,0,0,0,1673149054,1673149054,0,1673149054,0,0,0,0,0,0,5,0,0,0,0,0,0,0,'12/2024','fedc604da8b0f9af74b6cfc0fab2163c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(11,'kimyar57','Gary','Blaine','kimyar57@gmail.com','','','','','AU','','$2y$10$lAQSNmM/4f3ZPuOyRmmwuuYKRRs3g2Q4P74uDnsi7blpcfMR56eNC',0,0.00,0,0,0,0,'Active',0,'2022-05-27 22:13:47',NULL,'','',1,3,'',1,'14.202.228.186','118.209.237.38','','','','2022-08-15 06:33:44',8,'0/0/0',65767,41000,0,0,36000,0,1703408702,1703428211,1775391215,1701835330,1701835330,1654082952,1701835330,0,373,0,0,0,1,204,9,0,0,0,0,0,0,'08/2022','6e4243f5511fd6ef0f03e9f386d54403','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(12,'maxapk','Prakash','Kunjeer','poopul@gmail.com','700 Beacon Hill Terrace','Gaithersburg','MD','20878','US','13015291552','9163ea5ab10c15cca586e8dfe8681402',0,0.00,0,0,0,0,'Active',0,'2022-05-27 23:56:39',NULL,'','poopul@gmail.com',1,3,'',1,'96.255.166.46','96.255.166.46','','','','2022-12-01 18:36:06',4,'0/0/0',2205,3400,0,0,3400,0,0,0,0,1665903706,1665903706,0,1665903706,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'12/2022','5e98d23afe19a774d1b2dcbefd5103eb','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(13,'davidstodd','David','AStoddard','workwithdavidstoddard@gmail.com','','','','','','','$2y$10$tlPZ2gr/qMplxSgm8pmAe.fqUPc9sYlSz87/6A365xlUjz.ZdSCQy',0,0.00,0,0,0,0,'Active',0,'2022-05-28 01:10:00',NULL,'','',1,1,'',1,'99.192.97.133','99.192.97.133','','','','2022-07-24 14:45:13',2,'0/0/0',445,400,0,0,400,0,0,0,0,1698542517,1698542517,0,1698542418,0,167,0,0,0,0,49,1,0,0,0,0,0,0,'0/0','8ad56037830fcf5c6396aa69b1c252d0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(14,'mrtommie','Tommie','Bengtsson','mrtommie55@gmail.com','','','','','AU','','$2y$10$mq5tOh14xPDZ4/WIzHjzVekVZpWL6QRUgZmwSI2h/zyPSgbid5QPe',0,0.00,0,0,0,0,'Active',0,'2022-05-28 03:34:45',NULL,'','',1,3,'',1,'92.32.191.108','98.128.204.15','','','','2022-09-08 07:16:33',11,'0/0/0',73809,40000,0,0,42400,0,1654712684,1678153854,0,0,0,1662621552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2022','9f6992966d4c363ea0162a056cb45fe5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(15,'millroy','Keith','Millington','millroy@millroy.co.za','','','','','AU','','$2y$10$kMQTHkhZRb6GvHBMf6UtweBWSVkLc6mIPjmdgliA3wUEJ7uRBhs5O',0,0.00,0,0,0,0,'Active',0,'2022-05-28 04:18:41',NULL,'','',1,3,'',0,'156.155.206.231','169.1.61.89','','','','2022-06-18 09:01:46',2,'0/0/0',2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'05/2022','f770b62bc8f42a0b66751fe636fc6eb0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(16,'subguy','Fred','Raley','fred@submarineguy.com','','','','','AU','','$2y$10$VgFfio.PZ.A7t7RzJbCJkOM7rBtx9MAn4UVCJBXhY0bocTDJzsPKS',0,0.00,0,0,0,0,'Active',0,'2022-05-28 05:42:44',NULL,'','',1,3,'',1,'73.212.143.249','73.163.94.29','','','','2026-02-10 13:36:30',10,'0/0/0',144090,82000,0,0,82000,0,0,0,0,1674217838,1674217838,0,1674217838,0,96,0,0,0,0,10,0,0,0,0,0,0,0,'09/2023','4d8bd3f7351f4fee76ba17594f070ddd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(17,'jwmach','John','Machuik','johnfreeads@gmail.com','','','','','AU','','$2y$10$/8i0qQv45AmZ5AUy1ix5H.WGj.dQQyvptlQDDaC07Vuhh3HcEw2cu',0,0.00,0,0,0,0,'Active',0,'2022-05-28 07:06:42',NULL,'','',1,3,'',1,'24.72.20.99','96.63.168.104','','','','2024-01-01 19:34:03',14,'0/0/0',61535,48000,0,0,48000,0,1772582866,1775971017,1772111504,1693857341,1693857341,1704137730,1693857341,0,0,0,1,1,1,3,0,0,0,0,0,0,0,'01/2024','e205ee2a5de471a70c1fd1b46033a75f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(18,'TopZone','Ben','Ma','myleadsmain@gmail.com','','','','','AU','','$2y$10$vjTWfGv68kzH3w4Dbb6G8uicfR7LDyPvsMpcY1SuddNwSz1yizoQC',0,0.00,0,0,0,0,'Active',0,'2022-05-28 07:27:35',NULL,'','',1,3,'',1,'102.23.160.16','197.228.201.251','','','','2023-10-28 17:52:20',101,'0/0/0',69072,31400,0,0,30400,0,1775406074,1656787700,1775406050,1672952707,1672952707,1698515965,1672952707,0,11,0,1,0,1,12,0,0,0,0,0,0,0,'10/2023','077e29b11be80ab57e1a2ecabb7da330','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(19,'falcon79','Ivica','Berkov','ivica.berkov@gmail.com','','','','','YU','','$2y$10$KlmF2WSQ6ZbdZ1ugwg047uxltNpjL1uomMxrBcPBxAeQmS7fiardm',0,0.00,0,0,0,0,'Active',0,'2022-05-28 09:29:03',NULL,'','ivica.berkov@gmail.com',1,1,'',1,'46.235.97.143','46.235.96.216','','','','2023-09-20 20:18:15',24,'0/0/0',79643,47600,0,0,47600,0,0,0,0,1700467771,1700467771,1669319596,1700467771,0,207,0,0,0,0,43,0,0,0,0,0,0,0,'09/2023','04df4d434d481c5bb723be1b6df1ee65','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(20,'felix','Felix','FegurgurJr','teamfelix69@gmail.com','','','','','AU','','$2y$10$4sSTPHMC7Do2wSuhgj4NeesKf3lijjRsQpgYyPrjXdKSW4qrbSXvK',0,0.00,0,0,0,0,'Active',0,'2022-05-28 10:05:59',NULL,'','',1,3,'',1,'70.59.199.70','174.24.116.45','','','','2023-01-03 01:00:58',4,'0/0/0',5.40625,0,0,0,42000,0,1702711412,0,1770821264,1672981949,1672981949,0,1672981949,0,77,0,0,0,1,4,0,0,0,0,0,0,0,'01/2023','8a9c8ac001d3ef9e4ce39b1177295e03','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(21,'sendler','Stan','Endler','stantecontact@gmail.com','','','','','AU','','$2y$10$AQCh.12bwvbH9splb7ImmONCq21U1GhAoc2K8mcRfEnRD3IYwTAuG',0,0.00,0,0,0,0,'Active',0,'2022-05-28 10:16:29',NULL,'','',1,3,'',1,'68.149.73.82','68.149.73.82','','','','2023-04-20 23:43:49',3,'0/0/0',71237,42400,0,0,42400,0,0,0,0,1704184826,1704184826,0,1704184826,0,175,0,0,0,0,139,0,0,0,0,0,0,0,'04/2023','db90f689b1567600818428ca3dfc88a3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(22,'jeffdionne','Jeffrey','Dionne','hitlagoon@gmail.com','','','','','AU','','$2y$10$9jOI7d8d6WiYphWvWpNzfOsbokgwXUpbZDEWaoXz7hESbgPSSzJ7.',0,0.00,0,0,0,0,'Active',0,'2022-05-28 12:01:05',NULL,'','',1,2,'',1,'172.59.225.255','174.247.224.112','','','','2024-10-31 19:01:49',42,'0/0/0',11751.3,7350,0,0,7950,0,1775988823,1775971017,1772111713,1715964738,1715964738,1730401566,1715964738,0,104,0,1,1,1,25,0,0,0,0,0,0,0,'10/2024','f5e536083a438cec5b64a4954abc17f1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-09-20',0),(23,'urr1','Fred','Johnson','urr1free@gmail.com','','','','','AU','','$2y$10$6Txp/0Aphe3Sdldp9zuor.az7jYmgt60Xw6PEpoVj9Fvmve/jIcRO',0,0.00,0,0,0,0,'Active',0,'2022-05-28 12:38:26',NULL,'','',1,3,'',1,'98.195.11.25','98.195.11.25','','','','2022-05-28 19:46:16',1,'0/0/0',65000,40000,0,0,40000,0,0,0,1770884734,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'0/0','33cf42b38bbcf1dd6ba6b0f0cd005328','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(24,'docking59','harry','jacobs','testthislink@gmail.com','','','','','','','$2y$10$Sqtpurm3aWidarLF4VQ0H.yQXU35amgjggRpU5fWCB/oCSbjaUiSK',0,0.00,0,0,0,0,'Active',0,'2022-05-28 14:01:04',NULL,'','',1,1,'',1,'81.204.23.8','81.204.23.8','','','','2022-06-05 13:56:42',4,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','970af30e481057c48f87e101b61e6994','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(25,'Jasraj','Jasraj','Singh','jasraj@affilinetix.com','','','','','AU','','$2y$10$HdMTKtOL7wCgE3BZ5PZrxODtzHNbQ6oEGEIia6NV0xYkt01VOMdi6',0,0.00,0,0,0,0,'Active',0,'2022-05-28 14:24:14',NULL,'','',1,3,'',1,'102.223.33.43','102.223.33.43','','','','2022-05-30 18:51:45',2,'0/0/0',72000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'05/2022','b53477c2821c1bf0da5d40e57b870d35','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(26,'Xerge','Sergio','Rodriguez','marketingconsultations@gmail.com','','','','','AU','','$2y$10$qI9LDFD8ZrFLNwJrvlJxwe.QbelitD8.1xewT1623HU9YefInUle2',0,0.00,0,0,0,0,'Active',0,'2022-05-28 17:31:31',NULL,'','',1,2,'',1,'35.137.137.206','35.137.137.206','','','','2022-05-29 00:32:25',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f75b757d3459c3e93e98ddab7b903938','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(27,'mschow','Mark','Schow','mschows@gmail.com','2775 St. Clair Rd. Building N-201','Idaho Falls','ID','83404','US','2083578487','$2y$10$2aSQyS5nrDOWW7Cg4iVLD.RtsbheyvS8sxyIskzNDO2Yai1h/WzPi',0,0.00,0,0,0,0,'Active',0,'2022-05-28 17:41:16',NULL,'','mschows@gmail.com',1,3,'',1,'65.129.130.15','65.129.144.73','','','','2024-04-23 20:04:51',65,'0/0/0',20656.7,49300,9800,0,50400,0,1772582879,1690761545,1772587712,1713902767,1713902767,1677423099,1713902680,0,216,0,1,0,1,104,0,0,0,0,0,0,0,'04/2024','169779d3852b32ce8b1a1724dbf5217d','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(28,'infamousdb5','David','Barrett','infamousdab0@gmail.com','','','','','AU','','$2y$10$CiSl6HegsuEET/TFjYbBpeDK/mo1AP3OHchRr.gObTW12GR4H8/rS',0,0.00,0,0,0,0,'Active',0,'2022-05-28 17:57:37',NULL,'','',1,3,'',1,'173.72.14.114','173.72.14.114','','','','2022-06-04 14:45:43',3,'0/0/0',69400,40000,0,0,40000,0,1654748893,1676567032,1772579874,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'0/0','ebbac19a6a88726ff7927a79610bf6be','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(29,'sturgismarket35','Frank','Sturgis','sturgismarket35@gmail.com','','','','','AU','','$2y$10$g7kUQi5ubiIVK6XZYO0cL.GMfLhNturncIQFNlSzssnd0i1d.9HH2',0,0.00,0,0,0,0,'Active',0,'2022-05-28 18:10:33',NULL,'','',1,3,'',1,'185.247.70.174','108.71.190.85','','','','2022-07-26 02:06:49',5,'0/0/0',70201,40400,0,0,40400,0,0,0,0,1653936800,1653936800,0,1653936800,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'0/0','e64c9ec33f19c7de745bd6b6d1a7a86e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(30,'daniel58','daniel','wait','contactdaniel697@gmail.com','','','','','AU','','$2y$10$dPCn5htP5JJLfDHowmaddOJDbTAsusCf24McurlJhWrSry009j9R2',0,0.00,0,0,0,0,'Active',0,'2022-05-28 19:04:57',NULL,'','',1,3,'',1,'174.117.242.68','174.117.228.207','','','','2023-01-31 00:09:43',5,'0/0/0',140200,82400,0,0,82400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2023','97e8527feaf77a97fc38f34216141515','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(31,'dduncan','Dorothy','Duncan','dorothyd575@gmail.com','','','','','AU','','$2y$10$M9xwiqD96qTPkcseqJRmpeJC3rFyrP0Pz9MF6bynjCBa8JFwcr8Ue',0,0.00,0,0,0,0,'Active',0,'2022-05-28 19:07:58',NULL,'','',1,3,'',1,'76.219.109.61','76.219.109.61','','','','2022-08-14 22:41:18',6,'0/0/0',72065,41000,0,0,41000,0,0,0,0,1671500558,1671500558,0,1671500558,0,0,0,0,0,0,3,0,0,0,0,0,0,0,'08/2022','0937fb5864ed06ffb59ae5f9b5ed67a9','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(32,'dlbrooks','Delores','Brooks','4success4me@gmail.com','','','','','','','$2y$10$jmiezBiGxYDf3onstJLUxepj8Y.m1wR7vjgsY9lNMxSdwiF/EFooa',0,0.00,0,0,0,0,'Active',0,'2022-05-28 21:48:49',NULL,'','',1,1,'',1,'108.85.249.16','108.85.249.16','','','','2022-06-05 04:57:47',3,'0/0/0',70000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5a2a330b175fe588c2551b78d18d3207','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(33,'jclarke1380','john','clarke','jclarke1380@gmail.com','','','','','AU','','$2y$10$GjNPxorT2Ajn8y9bKwy1KuxkG/z4jEKHmRoblwNC7l1h2LbOtjpTi',0,0.00,0,0,0,0,'Active',0,'2022-05-28 22:33:02',NULL,'','',1,2,'',1,'209.204.193.177','209.204.193.177','','','','2022-06-01 10:44:53',3,'0/0/0',0,0,0,0,0,0,1654748907,0,1772582419,0,0,1653802736,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'0/0','b3b25a26a0828ea5d48d8f8aa0d6f9af','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(34,'joanbeaulieu','Joan','Beaulieu','joanbmarketing@gmail.com','Box 23207','Grande Prairie','Alberta','T8V 7G7','CA','780-518-5399','$2y$10$YtCSOHjKKWf7tOiQLlaUe.rVwa6.TO8pM9wpT8tNwLCc.55Q.NsnS',0,0.00,0,0,0,0,'Active',0,'2022-05-28 22:56:53',NULL,'','altagoldjoan@gmail.com',1,3,'',1,'23.17.222.161','216.73.162.137','','','','2023-09-19 17:53:48',18,'0/0/0',72888,43400,0,0,43400,0,0,0,1775406074,1658338119,1658338119,1658343004,1658338113,0,6,0,0,0,1,4,0,0,0,0,0,0,0,'09/2023','d04eb5de4d99080be674f159197a514a','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(35,'devildog1000','Greg','Stukes','vigorousincomesynergy@gmail.com','','','','','AU','','$2y$10$eqqE1zU.qwT3o41Ef7KVs.cKOXtQ6Up8wipqvY78YO92j8JuLwlPe',0,0.00,0,0,0,0,'Active',0,'2022-05-28 23:37:41',NULL,'','',1,3,'',1,'3.101.40.113','180.191.49.134','','','','2024-10-04 07:59:49',39,'0/0/0',73967,45175,0,0,48400,0,1772333512,1705615117,0,1704177950,1704177950,1675162443,1704177941,0,139,0,1,0,0,37,0,0,0,0,0,0,0,'10/2024','5cc3749a6e56ef6d656735dff9176074','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(36,'glove1000','Gary','Cunningham','glove1000@gmail.com','','','','','AU','','$2y$10$Vr2R0h.HwCUzscjuVaKsDu7omxCv/He/FxQiIOV5g/ULVM99hJ5LW',0,0.00,0,0,0,0,'Active',0,'2022-05-29 00:06:38',NULL,'','',1,3,'',1,'174.205.98.6','68.2.158.53','','','','2025-09-01 04:32:43',30,'0/0/0',75999.2,50400,0,0,50320,0,1775406050,0,1772587748,1698368104,1698368104,0,1698368104,0,34,0,1,0,1,14,2,0,0,0,0,0,0,'09/2025','e834cb114d33f729dbc9c7fb0c6bb607','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(37,'Travisa04','Travis','Anderson','entrepreneurlife3232@gmail.com','','','','','','','$2y$10$Do1QTocRXOmFjrnTQXWjPeh9bSNKEyBqE2ypeSpv3wxpI4LG29b5.',0,0.00,0,0,0,0,'Active',0,'2022-05-29 00:25:38',NULL,'','',1,1,'',1,'172.58.171.184','172.58.171.184','','','','2022-05-29 07:26:44',1,'0/0/0',1478,400,0,0,400,0,0,0,0,1776203124,1776203124,0,1776203124,0,285,0,0,0,0,530,5,0,0,0,0,0,0,'0/0','07871915a8107172b3b5dc15a6574ad3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(38,'Antons2206','Anthony','Smith','antons3311@gmail.com','','','','','US','','$2y$10$dhklmJBBgz7Xfzw02OY/0uyRZzQjVuSAXBoRvPU2rm9wPFCrKqESm',0,0.00,0,0,0,0,'Active',0,'2022-05-29 01:35:56',NULL,'','',1,3,'',1,'74.130.182.8','76.105.217.103','','','','2025-10-13 03:04:37',30,'0/0/0',143404,88400,0,0,88400,0,0,0,0,1757535646,1757535646,1757535844,1757535646,0,62,0,0,0,0,11,0,0,0,0,0,0,0,'09/2025','c0167d1ca6ea4be5f7907b98a20fc225','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(40,'ScottBos2022','Scott','Bos','scottsaffiliateprograms@gmail.com','','','','','AU','','$2y$10$gu3cqluMlbES.qfSaVTiBeOOUwS6Rs0FxHOyPK4FWUOHmXlb1s51m',0,0.00,0,0,0,0,'Active',0,'2022-05-29 07:26:53',NULL,'','',1,3,'',1,'71.239.178.125','71.239.178.125','','','','2023-06-10 12:32:38',24,'0/0/0',71939.9,43400,0,0,43200,0,0,0,1772582866,1655817292,1655817292,1686323758,1655817292,0,0,0,0,0,1,3,0,0,0,0,0,0,0,'06/2023','ac27b77292582bc293a51055bfc994ee','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(41,'x23y24','Sterling','Couch','x23y24@gmail.com','PO Box 65486','Port Ludlow','WA','98365','US','(360) 437-6888','$2y$10$CLJ4pdHmYsF7HhDaxwpAiedOx39NOJMNILQOetIaErLHUJxSMxMc.',0,0.00,0,0,0,0,'Active',0,'2022-05-29 10:27:43',NULL,'','Eze, Inc., PO Box 65486, Port Ludlow, WA  98365',1,3,'',1,'24.113.158.250','24.113.144.192','','','','2022-08-05 22:55:55',4,'0/0/0',72200,41400,0,0,41400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2022','13f3cf8c531952d72e5847c4183e6910','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(42,'bluewater4','Robert','Granato','bluewatermarketingcorp@gmail.com','','','','','','','$2y$10$aenVPWVtS0nQ4BMYxdu4KO7QYqtqJ41p0xKhkqbCCsxzWmwUqIbsa',0,0.00,0,0,0,0,'Active',0,'2022-05-29 10:34:29',NULL,'','',1,1,'',1,'170.103.50.160','170.103.50.160','','','','2022-05-29 17:37:58',1,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','914101ec47c52b48a7b6ccc6f5a76f1f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(43,'jamesb','James','Brayley','jamesb_61@hotmail.ca','','','','','AU','','$2y$10$amMnyzgfHmP37AvemK/0q.z5I7S/Lxg6sXtrXEteBaH3s/NRJIWMq',0,0.00,0,0,0,0,'Active',0,'2022-05-29 14:03:01',NULL,'','',1,3,'',1,'50.66.140.43','50.66.146.110','','','','2023-01-10 19:30:31',9,'0/0/0',72762,43400,0,0,43400,0,0,0,0,1757609315,1757609315,0,1757609315,0,109,0,0,0,0,347,0,0,0,0,0,0,0,'01/2023','f8037f94e53f17a2cc301033ca86d278','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(44,'soloswap60','Rene','vanBeekum','joinrene54@gmail.com','','','','','AU','','$2y$10$EIh5ILo/M5hhGs4MOfIJE.kYYNfoD6oiuTJmUd.AHQ0qry2V/Dy1C',0,0.00,0,0,0,0,'Active',0,'2022-05-29 15:57:32',NULL,'','',1,3,'',1,'92.109.200.124','92.109.200.124','','','','2022-05-29 22:58:29',1,'0/0/0',73223,40900,0,900,40900,0,0,0,0,1748796991,1748796991,0,1748796991,0,161,0,0,0,0,296,3,0,0,0,0,0,0,'0/0','ad4cc1fb9b068faecfb70914acc63395','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(45,'TheRaysteel','Ray','Steel','bossmusic360@gmail.com','','','','','AU','','$2y$10$NHjczJnHBpYxnuIWDhfxAOKJKeSmQ.Vxx2R8p0P5M9GMIFf6b6/3W',0,0.00,0,0,0,0,'Active',0,'2022-05-29 16:51:10',NULL,'','',1,3,'',1,'148.75.227.60','148.75.227.60','','','','2022-12-25 01:23:58',23,'0/0/0',72233.5,41900,0,0,42000,0,1773587175,1667842343,1659974138,1659931890,1659931890,1656524549,1659931811,0,124,0,1,0,0,21,0,0,0,0,0,0,0,'12/2022','cff02a74da64d145a4aed3a577a106ab','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(46,'causes40network','Donald','Jones','causes40network@gmail.com','','','','','US','9105689158','$2y$10$Pj3IQiMk55LwZpWwb1Hs5usQRNGf2OYde3JBc//2edgVqar72mlTa',0,0.00,0,0,0,0,'Active',0,'2022-05-29 17:51:49',NULL,'','',1,3,'',1,'75.189.252.120','75.189.252.120','','','','2022-06-23 01:01:59',16,'0/0/0',73131,37300,0,0,40000,0,1654889795,1682138264,1772111494,1653929553,1653929553,0,1653929553,0,0,0,0,0,1,1,0,0,0,0,0,0,0,'06/2022','548f45be9b6c68f10bed527bce14246e','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(47,'mrrichardt','Richard','Thurston','richardcthurston@gmail.com','','','','','AU','','$2y$10$wRBEhLBAhU4GAnQX1N6UQOFlWd7M43EQeDa0QyKNz91sNsCmKU1Oq',0,0.00,0,0,0,0,'Active',0,'2022-05-29 18:54:21',NULL,'','',1,3,'',1,'172.58.126.78','98.209.123.237','','','','2023-11-20 19:16:17',11,'0/0/0',45880,41000,0,0,41000,0,0,0,1773547935,0,0,1656940801,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'11/2023','416849da96fb73bee793e2bf65ae43ac','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(48,'chuckles','Chuck','Smith','chuckds76@gmail.com','','','','','AU','','$2y$10$F4kbQBdHQZ58zc/U8stFGeM2WswtzUaWT3.PKyb17u0CGH1LxRzLi',0,0.00,0,0,0,0,'Active',0,'2022-05-29 19:01:28',NULL,'','',1,3,'',1,'47.202.3.112','47.202.3.112','','','','2022-05-30 02:05:46',1,'0/0/0',70000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','1e0feeaff84a19bf3936e693311fa66d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(49,'theentrepreneurdad','Gregg','Johnson','theentrepreneurdad2@gmail.com','','','','','AU','','$2y$10$WdEAv7MpKRFhHssL3vcTBep1P/ZTD1F07uI/Y4UodgGZn9mQU3Em.',0,0.00,0,0,0,0,'Active',0,'2022-05-29 19:29:57',NULL,'','',1,3,'',1,'45.17.187.204','45.17.187.204','','','','2022-08-06 11:41:03',10,'0/0/0',63000,41000,0,0,10000,0,0,1776680874,1773188735,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,'08/2022','d7fd83eaf0a5593a190e8e9c8d7ece84','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(50,'eyetread23','Ernie','Brown','brownernie2015@gmail.com','','','','','AU','','$2y$10$t65dX2zekAtTRQLRw.abru8gEPyijEsnwj9uN7R4xvEmJoN2/wGMC',0,0.00,0,0,0,0,'Active',0,'2022-05-29 20:03:12',NULL,'','',1,2,'',1,'63.143.93.176','104.244.225.193','','','','2026-02-21 11:24:29',26,'0/0/0',8658,1800,0,0,2100,0,1775421514,0,1690833292,1741486501,1741486501,1741486741,1741486501,0,128,0,1,0,0,51,0,0,0,0,0,0,0,'03/2025','4671aeaf49c792689533b00664a5c3ef','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(51,'samantha65','Samantha','Briggs','coachsamanthabriggs@gmail.com','','','','','AU','','$2y$10$hyZkkQevfd5J2ecHH5W/hOLxGqeBwTaEXgBoQOwXb1O3P9Xp7vbM6',0,0.00,0,0,0,0,'Active',0,'2022-05-29 21:48:52',NULL,'','',1,3,'',1,'60.234.109.243','161.29.146.144','','','','2025-06-15 01:15:48',12,'0/0/0',40248.2,8000,0,0,0,0,1775391149,1776680874,1771427143,1757008558,1757008558,1749950303,1757008558,0,110,0,1,1,1,202,0,0,0,0,0,0,0,'06/2025','2f3926f0a9613f3c3cc21d52a3cdb4d9','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(52,'Iambabs','Babacar','Seck','babsmailers@gmail.com','','','','','','','$2y$10$7.cKRy7KoxLd/WCA65iVvui5himO173DahovMBNYmUd7AOOEBXy0a',0,0.00,0,0,0,0,'Active',0,'2022-05-29 22:09:36',NULL,'','',1,1,'',1,'41.83.30.124','41.83.30.124','','','','2022-05-30 05:14:22',1,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,'0/0','9e740b84bb48a64dde25061566299467','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(53,'jward80','Joey','Ward','incomeshifttowealth1@gmail.com','','','','','US','','$2y$10$tuiBHSUkBE6pcBRRiu.93uwHdDMbiCGXKCMTiK0stdPFQd0z.pg7m',0,0.00,0,0,0,0,'Active',0,'2022-05-29 22:24:21',NULL,'','',1,3,'',1,'174.195.195.242','174.195.128.12','','','','2025-09-25 16:14:00',94,'0/0/0',57271.8,48000,900,0,48000,0,1756224284,1693430587,1773547921,1654101028,1654101028,1757000873,1654100890,0,138,0,0,0,1,5,1,0,0,0,0,0,0,'09/2025','7900770abf7086faafd8c122981cc82f','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(54,'Jalila','Jalila','Oung','jalilaoung@icloud.com','','','','','','','$2y$10$T0hkdQSrH2eHkk1nHcmUbOnss/VcpWk//ixYhKOnilC16YagoCGDu',0,0.00,0,0,0,0,'Active',0,'2022-05-29 22:33:01',NULL,'','',1,1,'',1,'76.89.90.149','104.173.101.64','','','','2022-07-28 03:43:30',13,'0/0/0',552,7525,0,0,7525,0,1772619444,0,1658031516,1775979157,1775979157,0,1775979157,0,151,0,1,0,0,261,1,0,0,0,0,0,0,'07/2022','30da227c6b5b9e2482b6b221c711edfd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(55,'jubilee','Jubilee','Frontier','jglobal1714@gmail.com','','','','','AU','','$2y$10$EJEKlDHFQMoOSoqQAaJxs.TRRIJBqy0QxzgnKveVMOBgenKCZUrde',0,0.00,0,0,0,0,'Active',0,'2022-05-29 23:45:55',NULL,'','',1,3,'',1,'105.113.18.61','102.89.2.182','','','','2023-07-03 13:28:12',7,'0/0/0',72010,42000,0,0,42000,0,0,0,0,1659120170,1659120170,0,1659120170,0,0,0,0,0,0,2,0,0,0,0,0,0,0,'07/2023','c43aa697165c1f99d53d37d5d279f9a3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(56,'cyberagora','Craig','Hardee','cyach1227@gmail.com','','','','','AU','','$2y$10$oI03RVXPTQ69lfRgDVJkNeVWQOj8B4Fo9gvqmQm2QUTNlzpn/h30G',0,0.00,0,0,0,0,'Active',0,'2022-05-30 00:55:44',NULL,'','',1,3,'',1,'24.211.235.49','24.211.235.49','','','','2022-05-30 07:59:50',1,'0/0/0',70020,40000,0,0,40000,0,0,0,0,1661882094,1661882094,0,1661882094,0,0,0,0,0,0,3,0,0,0,0,0,0,0,'0/0','c15da1f2b5e5ed6e6837a3802f0d1593','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(57,'hughe','Hugh','Evans','hugh@findfactshere.com','','','','','AU','','$2y$10$7IOeL0Kyuhe8wRQgM.j34erDII.Ojhhe6VDd7Qoe35wKZm3HoZjnu',0,0.00,0,0,0,0,'Active',0,'2022-05-30 04:09:25',NULL,'','',1,3,'',1,'92.16.169.101','79.73.190.175','','','','2023-08-03 19:39:36',60,'0/0/0',65057,48000,0,0,48000,0,0,0,0,1708591384,1708591384,1691091715,1708591384,0,115,0,0,0,0,124,0,0,0,0,0,0,0,'08/2023','5bf73bc6c6e6775d472621264309a88b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(58,'Bigevs','Iestyn','Evans','bigevstraffic@gmail.com','','','','','','','$2y$10$MCDdLKPxe9R7sDXRQU2B/.8r77r7PkH3gygs5woHpXx7D0ZFidT.2',0,0.00,0,0,0,0,'Active',0,'2022-05-30 12:33:38',NULL,'','',1,1,'',1,'213.123.2.250','213.123.2.250','','','','2022-05-30 19:34:45',1,'0/0/0',70000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a3ab4ff8fa4deed2e3bae3a5077675f0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(59,'gaimplan007','Gary','Lloyd','gaimplan@outlook.com','','','','','AU','','$2y$10$9ddN.Fj83DQxNfp8wfSG4eSCVgBJ/a4XskeHgZqKzKIyxZ75m/OOe',0,0.00,0,0,0,0,'Active',0,'2022-05-30 14:48:08',NULL,'','',1,3,'',1,'174.88.202.13','174.88.202.13','','','','2022-05-30 21:48:43',1,'0/0/0',70091,40000,0,0,40000,0,0,0,0,1658064906,1658064906,0,1658064906,0,66,0,0,0,0,10,0,0,0,0,0,0,0,'0/0','6cdd60ea0045eb7a6ec44c54d29ed402','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(60,'dottiglenn','Dorothea','Glenn','dottig2000@yahoo.com','','','','','US','','$2y$10$bfLiYz6YGQq3FtHMdkau/unVhuRuPWL4Col1IT58Jv5s9xJq/8cSy',0,0.00,0,0,0,0,'Active',0,'2022-05-30 16:10:20',NULL,'','admin@shop4thisnthat.com',1,3,'',1,'65.33.139.222','65.33.134.63','','','','2023-09-04 18:43:56',19,'0/0/0',72060,41400,0,0,45400,0,1655819844,0,0,1713903781,1713903781,1688664173,1713903781,0,186,0,0,0,0,72,0,0,0,0,0,0,0,'09/2023','33b3214d792caf311e1f00fd22b392c5','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(61,'Babs','Babacar','Seck','papebabacarseck@gmail.com','','','','','','','$2y$10$1DqRHVEEIfLaLZw.KidEtOxvDqgPVacSFtZfLiLKT5Zx9ETR.5SLK',52,0.00,0,0,0,0,'Active',0,'2022-05-30 17:01:23',NULL,'','',1,1,'',1,'41.83.30.124','41.83.30.124','','','','2022-05-31 00:34:31',2,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e64c9ec33f19c7de745bd6b6d1a7a86e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(62,'softwarejunkie','Roy','Revill','biz4ry@yahoo.com','','','','','','','$2y$10$vhfsWrhQ3NZ7GtERxJeaIuQVIUfcoxaQ5rZWH8WlkE2pMe8E2OQn2',0,0.00,0,0,0,0,'Active',0,'2022-05-30 17:49:39',NULL,'','',1,1,'',0,'69.206.190.165','69.206.190.165','','','','2023-02-24 08:32:01',1,'0/0/0',212,400,0,0,400,0,0,0,0,1676057998,1676057998,1653958439,1676057998,0,63,0,0,0,0,46,1,0,0,0,0,0,0,'0/0','2d36b5821f8affc6868b59dfc9af6c9f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(63,'Juana','Juana','Dillon','ishoplgbt@gmail.com','','','','','','','$2y$10$u8zALKsUQk2JsBP7MmOQw.LQA34b43HGwSM7Vs/5d5EXhRcPwULaO',0,0.00,0,0,0,0,'Active',0,'2022-05-30 19:02:25',NULL,'','',1,1,'',1,'174.68.18.21','174.68.18.21','','','','2022-05-31 02:04:34',1,'0/0/0',70000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','9a96a2c73c0d477ff2a6da3bf538f4f4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(64,'LilianV','Lilian','Visser','liliandaly@gmail.com','','','','','','','$2y$10$tBNUDzIR2.ToxU2qPhn1ZeW0u5m1C6NARGaHflAwRU.Fzjr8b0Ec6',0,0.00,0,0,0,0,'Active',0,'2022-05-31 03:54:47',NULL,'','',1,1,'',1,'41.144.76.56','41.144.93.184','','','','2022-07-18 06:38:59',5,'0/0/0',1,400,0,0,400,0,0,0,1772111686,1659896255,1659896255,0,1659896255,0,0,0,0,0,1,1,0,0,0,0,0,0,0,'0/0','40262352ed6dc77f564704f1d9267ba5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(65,'dealsn22','Rodney','Tuggle','dealsnbuys2020@gmail.com','','','','','','','$2y$10$s0WGVEjhayT/TlVf57Rfje0fl09002RdifmUmmf2Ew/06deHlmg3u',0,0.00,0,0,0,0,'Active',0,'2022-05-31 06:21:40',NULL,'','',1,1,'',1,'','67.83.96.210','','','','0000-00-00 00:00:00',0,'0/0/0',280,0,0,0,0,0,0,0,0,1682186712,1682186712,0,1682186712,0,255,0,0,0,0,112,0,0,0,0,0,0,0,'0/0','e0f19f64f086e393ceb0cf4a8c561b51','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(66,'darkspur1','Jerry','David','darkspur1@gmail.com','','','','','','','$2y$10$elj04dhpylPeIL5RjqGwr.DJEsVFabmBfCdnlEfls71zyieFwdDEi',0,0.00,0,0,0,0,'Active',0,'2022-05-31 09:46:57',NULL,'','',1,1,'',1,'80.44.205.183','80.44.205.183','','','','2022-06-06 01:06:42',2,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b05b57f6add810d3b7490866d74c0053','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(67,'tiomkheoyop','tiomkheoyop','tiomkheoyop','tiomkheoyop@yopmail.com','','','','','','','$2y$10$6dtZ4MFoXnPwRq2.xum1meKk/DvWkcXi8ETRSy/FKnHByIN4ijWRW',0,0.00,0,0,0,0,'Active',0,'2022-05-31 11:24:41',NULL,'','',1,1,'',1,'160.178.21.225','160.178.21.225','','','','2022-05-31 18:25:32',1,'0/0/0',0,0,0,0,0,0,1694838201,0,1775421514,0,0,1654021856,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'0/0','46fc943ecd56441056a560ba37d0b9e8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(68,'ryder74','Mike','Lyons','ezybrand@gmail.com','','','','','','','$2y$10$k82Mysys4gkrWDg8CFSREeo6wMYRmNpZjJd0S.szTviEHlGX22RG.',0,0.00,0,0,0,0,'Active',0,'2022-05-31 11:35:44',NULL,'','',1,1,'',1,'76.119.216.233','76.119.216.233','','','','2022-05-31 18:38:36',2,'0/0/0',70000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f900afc719d7d86bd7d17b9d3be0aafe','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(69,'x99y11','Sterling','Couch','x99y11@gmail.com','PO Box 65486','Port Ludlow','WA','98365','US','(360) 437-6888','$2y$10$4if7bzfJOborC1gWYegXYe0C1.D9X/tjIGInNWlkc/sYyEzZ/2JLe',0,0.00,0,0,0,0,'Active',0,'2022-05-31 12:13:16',NULL,'','Eze, Inc., PO Box 65486, Port Ludlow, WA  98365',1,1,'',1,'24.113.158.250','24.113.158.250','','','','2022-08-05 21:30:49',6,'0/0/0',70000,40025,0,0,40025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2022','07fc15c9d169ee48573edd749d25945d','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(70,'jeffsa1','Jeffrey','Chait','jeffsa12345@gmail.com','','','','','','','$2y$10$8o9m2cNOxuLRbiGWQkNn/eZKz.9cyc6JrlemIgfWoJpjhRyj2e6Tu',0,0.00,0,0,0,0,'Active',0,'2022-05-31 14:20:14',NULL,'','',1,1,'',1,'77.137.2.166','77.137.2.166','','','','2023-08-04 13:43:25',4,'0/0/0',72860,41225,0,800,41225,0,0,0,0,1766402457,1766402457,0,1766402457,0,398,0,0,0,0,260,0,0,0,0,0,0,0,'08/2023','5a5eab21ca2a8fef4af5e35709ecca15','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(71,'dorito','Dorito','Lay','doritotesting@gmail.com','','','','','AU','','$2y$10$iPofQi5NqiXJH4AW2FfHeeb9EoszQWgHnSZAaKyperY7zGXZyrs8C',0,0.00,0,0,0,0,'Active',0,'2022-05-31 14:21:35',NULL,'','',1,4,'',1,'187.252.250.42','187.252.251.126','','','','2022-10-31 19:46:19',2,'0/0/0',100000,10000,0,1000,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2022','082a8bbf2c357c09f26675f9cf5bcba3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-18',0),(72,'morefromles','Leslie','Nisbett','mymorefromles@gmail.com','','','','','AU','','$2y$10$rGKAgR/WVfBFwZ2MwET5ZO428uHgfEqexhAvbhdRbG2vk.n/6Z/cK',0,0.00,0,0,0,0,'Active',0,'2022-05-31 14:45:41',NULL,'','',1,2,'',0,'173.20.221.144','187.252.251.126','','','','2022-06-13 16:42:59',5,'0/0/0',20000,15000,0,0,15000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2022','847cc55b7032108eee6dd897f3bca8a5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(73,'Theo','Marc','Guenette','dotmike888@gmail.com','','','','','CA','','$2y$10$UZvxiQPMU6J1Asp99dJwbeX3NOVumOoL0CSzQfkVr/vDhcYxCdV/G',0,0.00,0,0,0,0,'Active',0,'2022-05-31 17:54:03',NULL,'','',1,3,'',1,'174.92.94.152','24.138.130.128','','','','2023-09-23 03:55:01',10,'0/0/0',141840,82000,0,0,82000,0,1772590842,0,0,1738034917,1738034917,1659274065,1738034917,0,233,0,1,0,0,17,0,0,0,0,0,0,0,'09/2023','6ffad86b9a8dd4a3e98df1b0830d1c8c','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(74,'jeffefron','Jeffrey','Efron','jeffreyefron@gmail.com','','','','','AU','','$2y$10$hPl.yUvd8Zf2S6307o7VO.fAudiX4l5mXftgP90RLaAo3D8BlzuNS',0,0.00,0,0,0,0,'Active',0,'2022-05-31 18:20:55',NULL,'','',1,3,'',1,'108.28.35.48','108.28.35.48','','','','2022-06-01 01:22:26',1,'0/0/0',70000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','73b817090081cef1bca77232f4532c5d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(75,'mackyboy555','Richard','Powell','richardpowell1066@gmail.com','20c Sun Lane','Wakefield','yorkshire','WF1 1JD','GB','','$2y$10$X2lmsH9i8PSLxIjWB9./v.94jIROYISPyTrLupefurJqs/wv5wx6i',27,0.00,0,0,0,0,'Active',0,'2022-05-31 21:24:57',NULL,'','richardwiltshire2361@gmail.com',1,3,'',1,'109.155.115.75','92.30.110.11','','','','2025-12-23 14:40:31',99,'0/0/0',122272,78000,0,0,85000,0,1773547921,1776680874,1772587665,1753614109,1753614109,1766489971,1753614109,0,97,0,1,1,1,13,0,0,0,0,0,0,0,'12/2025','2056d8c1dec3d12cbce646b348d189d1','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-08',0),(77,'Realdore','Allan','Mbangu','bignstable247@gmail.com','','','','','AU','','$2y$10$j0V6jYLVCZU2oUSJJ8duSeNVypBF9CXrf8TyRCsyyw5aExUQte2CW',0,0.00,0,0,0,0,'Active',0,'2022-06-01 08:50:29',NULL,'','',1,3,'',1,'41.216.95.231','41.223.118.75','','','','2023-05-09 22:49:40',7,'0/0/0',71500,41000,0,0,41000,0,1772590854,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,'05/2023','8eefcfdf5990e441f0fb6f3fad709e21','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(78,'LaToyaRogers0987','LaToya','Rogers','latoyarogers3916@gmail.com','','','','','AU','','$2y$10$uH2ALs6J6splmR.g57g1qe5hW6RYjh3eiG8RZAUk6L.K60NsuoYia',0,0.00,0,0,0,0,'Active',0,'2022-06-01 09:40:35',NULL,'','',1,3,'',1,'108.28.154.126','138.88.183.242','','','','2023-12-15 19:11:18',38,'0/0/0',66457,48000,0,0,48000,0,1772337352,1776680874,1772590842,1673446632,1673446632,1702667830,1673446280,0,352,0,1,1,1,40,0,0,0,0,0,0,0,'12/2023','76f1cfd7754a6e4fc3281bcccb3d0902','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(79,'Shrewd','Emmanuel','Adeyemo','solutions.shrewd@gmail.com','','','','','','','$2y$10$yTwEDKvXHZgesQnHXB1QVuHvtlDK53flZ2npGd4lSZQJtYEBwo9SW',0,0.00,0,0,0,0,'Active',0,'2022-06-01 11:42:14',NULL,'','',1,1,'',1,'102.89.34.154','102.89.34.154','','','','2022-06-01 18:51:12',2,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b3b25a26a0828ea5d48d8f8aa0d6f9af','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(80,'garrytat','Garry','Tatnell','garrytatwsl@gmail.com','','','','','AU','','$2y$10$ASLmeWbTJv1hTYQ0kM1L/O4auJz5M13IzRsbrL0A6WyHGdwwa1VBa',0,0.00,0,0,0,0,'Active',0,'2022-06-01 16:54:42',NULL,'','',1,3,'',1,'52.65.176.1','52.65.176.1','','','','2022-06-01 23:55:26',1,'0/0/0',70000,35000,0,0,40000,0,1654748907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','37c9216b00a111ac0e1f81de25ddff77','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(81,'wouellet','Wilf','Ouellette','wilf.olet@gmail.com','','','','','AU','','$2y$10$7kRZxQ2LPp3pZP5JM/NhKuA0YTMtVDVGifRLYcBOYxutpIcDbhPMW',0,0.00,0,0,0,0,'Active',0,'2022-06-01 20:13:21',NULL,'','',1,3,'',1,'64.42.179.239','34.209.127.204','','','','2023-04-22 04:37:43',17,'0/0/0',72720,43500,0,0,45000,0,1772564577,1776788657,1772587679,1682138253,1682138253,1674884184,1682138253,0,88,0,1,1,1,15,0,0,0,0,0,0,0,'04/2023','6101903146e4bbf4999c449d78441606','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(82,'Aubin1','Aubin','KatukuMulumba','aubinkatuku@gmail.com','','','','','AU','','$2y$10$ULZGWXgG400TGPevHPk1XO6.IOI/tmp7pAVS.BU5Y2FnhuO1CSpS2',0,0.00,0,0,0,0,'Active',0,'2022-06-01 21:53:37',NULL,'','',1,3,'',1,'108.63.250.159','108.63.250.159','','','','2022-06-02 04:54:50',1,'0/0/0',70000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','fdda6e957f1e5ee2f3b311fe4f145ae1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(83,'DALD840','Dean','Lind','deanlind71@gmail.com','','','','','AU','','$2y$10$OtvPAzK.uQdN21h9CGy5h.aKVNr9d6Giwa8ZjHXeIFpR1SAaZZEKm',0,0.00,0,0,0,0,'Active',0,'2022-06-02 12:34:38',NULL,'','',1,3,'',1,'47.203.180.185','47.203.180.185','','','','2022-06-02 21:51:57',2,'0/0/0',70000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ef67f7c2d86352c2c42e19d20f881f53','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(84,'Rosemary7131','Rosemary','Fairley','rosemaryfairley1@yahoo.fr','','','','','AU','','$2y$10$73cZc9jjbyWHqB3Qk5rpAuBqpZXUAzquk3wb2xxLIaN6ZKT6DeFHS',0,0.00,0,0,0,0,'Active',0,'2022-06-02 12:45:23',NULL,'','',1,3,'',1,'92.184.112.136','92.184.112.223','','','','2022-06-03 05:56:58',2,'0/0/0',15,0,0,0,0,0,0,0,0,1671265055,1671265055,0,1671265055,0,0,0,0,0,0,2,0,0,0,0,0,0,0,'0/0','793bc52a941b3951dfdb85fb04f9fd06','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(85,'superrich','Terry','Mackey','cashalert108@gmail.com','','','','','AU','','$2y$10$JsTYSbytF18GnIX8G3Iy1OfP/n9JwdZg19bqxqmmIyxNoFiWt1SDy',0,0.00,0,0,0,0,'Active',0,'2022-06-02 16:20:12',NULL,'','',1,3,'',1,'73.76.57.186','99.96.103.15','','','','2023-04-13 12:18:49',4,'0/0/0',70200,41400,0,0,41400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2023','b837305e43f7e535a1506fc263eee3ed','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(86,'Phoenix','Paula','Mitchell','dreamer531111@gmail.com','','','','','AU','','$2y$10$aUqwxZuzGIS6QEDNs2M.9uObDMVfL0Zeid4bUsRtBq2DSCEuvriim',0,0.00,0,0,0,0,'Active',0,'2022-06-03 14:20:18',NULL,'','',1,3,'',1,'173.171.194.158','173.171.220.242','','','','2022-11-21 20:31:47',2,'0/0/0',70000,41000,0,0,41000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'11/2022','c00193e70e8e27e70601b26161b4ae86','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(87,'dradar','Daniel','Rager','dradar@zoominternet.net','','','','','','','$2y$10$3h2zT8EPqSxnLagAgzRm0uOZpB2RwpoKw2LRhiN.Mxthohv3E1ar.',0,0.00,0,0,0,0,'Active',0,'2022-06-03 14:41:01',NULL,'','',1,1,'',1,'','24.144.158.49','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','230e41009413a5a96013ae108300afd2','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(88,'Steven','ArmelSteffen','AttohThiaud','steffen.attoh@gmail.com','','','','','AU','','$2y$10$jX1jXjzI1B37VEhTpqwaEOkRtE9yT9VsF3.q75LHGBrNw7fE89ney',0,0.00,0,0,0,0,'Active',0,'2022-06-03 16:39:40',NULL,'','',1,2,'',0,'160.120.184.228','160.120.184.228','','','','2024-08-31 14:10:18',4,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2723d092b63885e0d7c260cc007e8b9d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(89,'bizventures','Michael','Camire','mhcmailer@gmail.com','','','','','AU','','$2y$10$OfcB/EKFvKNWhkolLLIqE.n3TpdPiYL4msONBqsSdg1GH78YanjX6',0,0.00,0,0,0,0,'Active',0,'2022-06-03 17:32:04',NULL,'','',1,3,'',1,'159.235.137.113','66.168.250.218','','','','2024-07-14 19:55:58',16,'0/0/0',71096.1,12400,0,1000,5000,0,1776203124,1776788657,1770884720,1661475379,1661475379,1720987050,1661475379,0,202,0,1,1,1,27,0,0,0,0,0,0,0,'07/2024','ab541d874c7bc19ab77642849e02b89f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(90,'gordon68','Gordon','Hunsucker','ghunsucker14@gmail.com','12328 E US Highway 50','Seymour','IN','47274','US','19303332032','$2y$10$2VjT1JktsLT318/tdSTEx.griIGTvE9ArY/vgGkwHly.64IJQbybW',0,0.00,0,0,0,0,'Active',0,'2022-06-03 22:26:45',NULL,'','ghunsucker14@gmail.com',1,1,'',1,'68.38.78.151','68.38.78.151','','','','2023-03-19 16:28:55',25,'0/0/0',66001,40025,0,0,40025,0,0,1775924400,1772111716,1673274524,1673274524,0,1673274524,0,0,0,0,1,1,1,0,0,0,0,0,0,0,'03/2023','a85edfa24307bad582dbfb9713d7eb6b','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(91,'LincsSOLOS','Lincoln','Aniteye','lba@esurfit.com','','','','','','','$2y$10$gLlEmYCzpeheflMS4bFB2uPfXQpxP.iFEzh8DmPcyUBRhrxmD5rUa',0,0.00,0,0,0,0,'Active',0,'2022-06-04 06:41:35',NULL,'','',1,1,'',1,'2.99.150.100','79.73.34.139','','','','2026-04-06 09:58:24',100,'0/0/0',49947,25450,0,0,39950,0,1775391166,0,1772337352,1775988947,1775988947,1775391084,1775988947,0,195,0,1,0,1,536,1,0,0,0,0,0,0,'03/2026','c1d0f19c3f827daf0edd3e69c3b195a9','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(92,'sweetandselfless','timothy','Rains','tkrbama@aol.com','','','','','','','$2y$10$hbuH2.atT8IwNrVCVeeheOrSwY4GEiMcC2rGJNpVz5nZzVf8d5Q0.',0,0.00,0,0,0,0,'Active',0,'2022-06-04 12:11:40',NULL,'','',1,1,'',0,'','107.146.170.33','','','','2023-09-25 21:49:24',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','02b1be0d48924c327124732726097157','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(93,'Peezio','Peezio','LLC','peeziollc@gmail.com','','','','','AU','','$2y$10$PtAyKVCEZdl5HzlGfS/Hg.Tsj0o60SxxDAQcgoggkeAZmXhSXVC3e',0,0.00,0,0,0,0,'Active',0,'2022-06-04 12:28:33',NULL,'','',1,3,'',1,'2.57.168.202','2.57.168.187','','','','2022-06-04 19:30:31',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,'0/0','4150d6a4725ff1484640c9d2e458a429','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(94,'immoxie','InternetMarketing','Moxie','gh.career.rocket@gmail.com','','','','','','','$2y$10$LOt1Tb9igkOiNTuCFXkBu.ZHUmrpN5PLoHpkOTqKR.ZJTOX9lHZlC',0,0.00,0,0,0,0,'Active',0,'2022-06-04 12:53:17',NULL,'','',1,1,'',1,'65.191.45.198','65.191.45.198','','','','2022-06-04 19:57:18',3,'0/0/0',57,0,0,0,0,0,0,0,0,1695672956,1695672956,0,1695672956,0,28,0,0,0,0,9,0,0,0,0,0,0,0,'0/0','f9d1152547c0bde01830b7e8bd60024c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(95,'Gary336','Gary','Riding','affmarketeer@gmail.com','','','','','AU','','$2y$10$Y/48RsJ9rcV.qR2rhg2qTej6GyYiVAQGMeznsq7sZJjeDVAm6bXbC',0,0.00,0,0,0,0,'Active',0,'2022-06-04 13:09:57',NULL,'','',1,2,'',1,'','2.100.250.109','','','','0000-00-00 00:00:00',0,'0/0/0',126,0,0,0,0,0,0,0,0,1658734099,1658734099,0,1658734015,0,102,0,0,0,0,24,1,0,0,0,0,0,0,'0/0','6600e06fe9350b62c1e343504d4a7b86','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(96,'Gary337','Gary','Riding','garyriding336@gmail.com','','','','','','','$2y$10$m/BxPq.YOozZHzkU.cVlOux9O1ukHy/XUtj8vKy/8A4jrL6Iz8uMi',0,0.00,0,0,0,0,'Active',0,'2022-06-04 13:31:06',NULL,'','',1,1,'',1,'82.132.187.186','2.100.250.109','','','','2022-06-29 18:21:35',4,'0/0/0',10,0,0,0,0,0,0,0,0,1656527153,1656527153,0,1656526940,0,213,0,0,0,0,10,0,0,0,0,0,0,0,'0/0','17fafe5f6ce2f1904eb09d2e80a4cbf6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(97,'mheadley2000','Michael','Headley','mheadley2000@gmail.com','','','','','','','$2y$10$.3tiCjiTR71VyONheyiNT.zxmPcm0UEpHRp1/GWOaHoBD.ujRdob.',0,0.00,0,0,0,0,'Active',0,'2022-06-04 13:42:03',NULL,'','',1,1,'',1,'71.197.114.20','73.41.120.76','','','','2024-04-11 21:45:19',6,'0/0/0',717,500,0,0,500,0,0,0,0,1772582879,1772582879,1712872073,1772582879,0,529,0,0,0,0,331,3,0,0,0,0,0,0,'04/2024','b4affa4f6b27df047d63d66fe4ac5600','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(98,'rfloydjr','Richard','Floyd','richardfloydjr@yahoo.com','','','','','','','$2y$10$SWDdjGHcReUMz3JSbybzke.WPbCsRyp.VzYWk9CqVkp2yMAl2DZHu',0,0.00,0,0,0,0,'Active',0,'2022-06-04 13:42:54',NULL,'','',1,1,'',1,'174.193.141.92','174.193.141.92','','','','2022-06-04 20:47:06',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','02bf86214e264535e3412283e817deaa','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(99,'green129','Paul','Green','green129@gmail.com','','','','','','','$2y$10$cDeHnOL28UNbMHV9Gmg4F.RPiSBK2qMtclXKqTBv9D6EJyfp.41o2',0,0.00,0,0,0,0,'Active',0,'2022-06-04 14:45:47',NULL,'','',1,1,'',0,'','73.19.124.12','','','','2022-06-07 13:04:59',0,'0/0/0',1,0,0,0,0,0,0,0,0,1654606934,1654606934,0,1654606934,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'0/0','ce6babd060aa46c61a5777902cca78af','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(100,'profitideas','Gregory','Cassius','olgatrong@gmail.com','','','','','AU','','$2y$10$71FtlbaQ4fwI3FwsNoSta.XvOrSAozoNiKAkoGQzuMPypalEb63wW',0,0.00,0,0,0,0,'Active',0,'2022-06-04 15:34:58',NULL,'','',1,3,'',1,'98.183.237.13','98.183.237.13','','','','2022-07-24 06:35:50',2,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b21d2f86beb192143a04671ac93bfd00','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(101,'AMahrissa','Andreah','Holmes','jobs4dreah@gmail.com','','','','','AU','','$2y$10$b7hlzTo0j4CV6gl8oGgQm.EpQiiAfN7e0dbIgi1VRic2sINHV3PJW',0,0.00,0,0,0,0,'Active',0,'2022-06-04 16:39:38',NULL,'','',1,3,'',1,'','98.184.92.208','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','4d5b995358e7798bc7e9d9db83c612a5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(102,'natemorgan','Nate','Morgan','trafficking100@gmail.com','','','','','AU','','$2y$10$KRcqPVXlboJERnPBzwN7e.YWlYJ7dZrmKqKZhhoyRi.g2RRWagDLu',0,0.00,0,0,0,0,'Active',0,'2022-06-04 17:57:48',NULL,'','',1,3,'',1,'172.58.231.220','172.58.229.87','','','','2022-06-20 01:36:57',6,'0/0/0',1916,0,0,0,0,0,0,0,0,1655690648,1655690648,1655690171,1655690395,0,253,0,0,0,0,4,1,0,0,0,0,0,0,'06/2022','5a0c828364dbf6dd406139dab7b25398','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(103,'tommuns','tom','munson','tom.muns1968@gmail.com','','','','','','','$2y$10$l1zCfrISjNY/OpI8bhaAGegWNSefj90858wWz1kAvXX7hjjkjCd7e',0,0.00,0,0,0,0,'Active',0,'2022-06-04 19:35:11',NULL,'','',1,1,'',1,'172.58.168.154','172.58.168.154','','','','2022-06-05 02:38:18',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','961b27cff1f9ef4ee308bb33fe18a91a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(104,'shannann','Susie','Brown','myaffiliatelist101@gmail.com','','','','','AU','','$2y$10$z1wQIox2LlUApKSrQL5X/.N7K5ZlWOTxpJL24JR1t1hjVC6JcK4Bm',0,0.00,0,0,0,0,'Active',0,'2022-06-04 19:53:09',NULL,'','',1,3,'',1,'204.14.36.32','204.14.36.32','','','','2023-10-26 03:50:27',11,'0/0/0',2114,2000,0,0,2000,0,0,0,1772582438,1700461928,1700461928,1697644499,1700461928,0,65,0,0,0,1,56,0,0,0,0,0,0,0,'10/2023','56880339cfb8fe04c2d17c6160d0512f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(105,'clilliston','Cecil','Lilliston','cecil.lilliston@gmail.com','','','','','AU','','$2y$10$eOrDk1ekPMPSIqN/pR5ad.YE6JfLzSZczykmezcZqqfEkPb/PV.am',0,0.00,0,0,0,0,'Active',0,'2022-06-04 23:28:47',NULL,'','',1,3,'',1,'172.13.8.115','172.13.8.115','','','','2022-07-27 08:25:13',6,'0/0/0',72000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2022','99f16d388736f651ac198bf317974481','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(106,'stansu','Stan','Suchenia','stansuchenia@gmail.com','','','','','AU','','$2y$10$DBcBFFeiyoxYa7DRefKNmOON3e6zdPViU5KKhY4EtT0.BulyDexcS',0,0.00,0,0,0,0,'Active',0,'2022-06-05 01:09:35',NULL,'','',1,3,'',1,'101.185.128.11','101.185.128.11','','','','2022-06-29 11:40:30',4,'0/0/0',72000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2022','1301962d8b7bd03fffaa27119aa7fc2b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(107,'Yorky625','Richard','Sixsmith','d6mith@googlemail.com','','','','','','','$2y$10$mDEgV4JxYokfJG/iBbNG3OtYqmu.l0VxJfoRdfNmMhJwUZK5i6yVu',0,0.00,0,0,0,0,'Active',0,'2022-06-05 01:24:48',NULL,'','',1,1,'',0,'86.13.52.151','86.13.52.151','','','','2024-06-02 17:45:30',7,'0/0/0',7,25,0,0,25,0,0,0,0,1675074465,1675074465,0,1675074396,0,69,0,0,0,0,7,0,0,0,0,0,0,0,'09/2022','ff1418e8cc993fe8abcfe3ce2003e5c5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(108,'Appeltaart59','harry','jacobs','hjgjacobs@gmail.com','','','','','','','$2y$10$aJq6rEFBmxmSyF3kW89Pm.EFuibnruF/sAo/L/YYaCRo6tRy/wvdC',0,0.00,0,0,0,0,'Unverified',0,'2022-06-05 06:59:10',NULL,'','',1,1,'',0,'','81.204.23.8','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','08aac6ac98e59e523995c161e57875f5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(109,'just4u123','Mandy','Moomy','mandymoomy@gmail.com','','','','','AU','','$2y$10$HOooMBSkTsYeD/5YS1iHtef7fDp2uOlr2kUWSzmhRnHa5.79b6pBe',0,0.00,0,0,0,0,'Active',0,'2022-06-05 11:51:31',NULL,'','',1,3,'',1,'165.120.96.232','217.43.113.77','','','','2022-07-30 17:17:02',8,'0/0/0',2156,0,0,0,0,0,1773494881,1776082031,1773547928,1687363726,1687363726,0,1687363726,0,174,0,1,1,1,36,0,0,0,0,0,0,0,'07/2022','4fa04fbc0b0ce68711f7550ce6113720','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(110,'boeng137','Owe','Englund','owestp@gmail.com','','','','','','','$2y$10$z2jVO/kyd3bSzjLH8dR19.t4kD9jdhxd2ehcna9gUzlB4Dq1mdzcW',0,0.00,0,0,0,0,'Active',0,'2022-06-05 12:15:30',NULL,'','',1,1,'',1,'78.82.129.148','78.82.129.148','','','','2022-06-05 19:18:50',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','fcc7fbed7c7c66964a52463e7498ad91','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(111,'Kingdingel','Joshua','Fincham','kingdingel1983@hotmail.com','','','','','AU','','$2y$10$eD/3emKMJObR1EJ6KV3tjeTGOSewl1rsfp884GgK789fpUTzpadqG',0,0.00,0,0,0,0,'Active',0,'2022-06-05 16:22:07',NULL,'','',1,3,'',1,'77.169.72.125','86.87.229.122','','','','2025-01-02 13:32:03',55,'0/0/0',68259.8,43000,0,0,47000,0,1775421500,0,1772564585,1655766691,1655766691,1735824857,1655766666,0,70,0,1,0,1,6,0,0,0,0,0,0,0,'01/2025','9c7aa2e1f6b418b0639e5cd3a3557bb6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(112,'ResultsHappen','Linda','Lindberg','resultshappen.surf@gmail.com','','','','','','','$2y$10$e/yOxR5NjnTnQEGpaJkSCOOqIG3KGHl.ms27CeQiDTdNUF67ucVFe',0,0.00,0,0,0,0,'Active',0,'2022-06-05 18:35:48',NULL,'','',1,1,'',1,'47.151.208.100','172.248.113.171','','','','2022-11-17 00:31:03',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'11/2022','2edfeadfe636973b42d7b6ac315b896c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(113,'melbet','zilvinas','zilvis','mixcpm@yandex.com','','','','','','','$2y$10$UzPM42Cwc8G0m88nBmGIIuoVuDLR24owSFERhYNBtWZ.18C8Mnlya',27,0.00,0,0,0,0,'Active',0,'2022-06-05 23:11:09',NULL,'','',1,1,'',1,'85.206.135.205','85.206.135.205','','','','2023-02-05 18:23:42',10,'0/0/0',1,50,0,0,50,0,0,0,0,1675621413,1675621413,0,1675621413,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'02/2023','5a142a55461d5fef016acfb927fee0bd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(114,'EdwinvdK','Edwin','Kerkhof','edwin.paste2021ads@gmail.com','','','','','','','$2y$10$RSjpnZYSzBOfeMNhI2cu8O/1IXfjK/9CVmzkK/R6CLV8aDqiyAR2S',0,0.00,0,0,0,0,'Active',0,'2022-06-06 07:34:25',NULL,'','',1,1,'',1,'90.161.223.141','90.161.223.141','','','','2022-06-06 14:40:56',3,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','1a551829d50f1400b0dab21fdd969c04','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(115,'colinf','Colin','Flook','colinflook1@gmail.com','','','','','','','$2y$10$QoENX7yqmYmLVpgy/P1iJOv8ZVZyaFN1hHwrGoPM1l6Nz9SlBwDiq',0,0.00,0,0,0,0,'Active',0,'2022-06-06 13:00:08',NULL,'','',1,1,'',1,'84.17.51.241','138.199.31.79','','','','2022-08-14 19:17:53',4,'0/0/0',3,25,0,0,25,0,0,0,0,1659648030,1659648030,0,1659648030,0,0,0,0,0,0,3,0,0,0,0,0,0,0,'08/2022','c2368d3d45705a56e51ec5940e187f8d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(116,'philpayton','Phil','Payton','philpayton@vivaldi.net','','','','','AU','','$2y$10$cQ3bx9qNOdALJuLVbbeFVegZFZFlvMG49Y9D9M4pSrRSrtgWaDjHW',0,0.00,0,0,0,0,'Active',0,'2022-06-06 13:48:55',NULL,'','',1,3,'',1,'156.146.60.19','78.0.105.173','','','','2022-11-29 23:06:01',3,'0/0/0',72000,41000,0,0,41000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'11/2022','3ce257b311e5acf849992f5a675188e8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(117,'graytech','Jeremy','Gray','jgrayid@gmail.com','','','','','AU','','$2y$10$wBUY2bgVKM31sUHUhOD0EOeSbCmmizmykOS4EbLlgP/ZdNg6wBx2G',0,0.00,0,0,0,0,'Active',0,'2022-06-06 14:42:39',NULL,'','',1,3,'',1,'73.193.41.172','73.193.41.172','','','','2022-07-21 23:34:53',4,'0/0/0',72016,40400,0,0,40400,0,0,0,0,0,0,1658447258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2022','b56ea7b6aa77f6f9008bc9362fab3597','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(118,'RoostRuler','Lynwood','Jones','lynwoodjones@aol.com','','','','','AU','','$2y$10$C3SEqjeBvmgmEoij42ER/ONfRX1eE0j1L1cOvydtAYaFbPidgd2s2',0,0.00,0,0,0,0,'Active',0,'2022-06-07 11:03:10',NULL,'','',1,3,'',1,'73.87.198.38','73.87.198.38','','','','2022-06-30 21:01:28',19,'0/0/0',72010,40000,0,0,40000,0,0,0,0,1655038561,1655038561,0,1655038561,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'06/2022','b147a61c1d07c1c999560f62add6dbc7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(119,'Albexchange','Odjola','Malaj','shqiptaretvipa@gmail.com','','','','','AU','','$2y$10$Vf6F4/tSjLWZ4pmyson1MOZ04VljYHUT163jpqCUFKrRSTkvFuyQi',0,0.00,0,0,0,0,'Active',0,'2022-06-07 17:42:00',NULL,'','',1,3,'',1,'81.103.144.241','81.103.144.241','','','','2023-10-03 21:31:10',40,'0/0/0',94.0094,48400,0,0,48400,0,1666282693,0,1773587175,1721581103,1721581103,1687988662,1721581103,0,98,0,0,0,1,12,0,0,0,0,0,0,0,'10/2023','800de15c79c8d840f4e78d3af937d4d4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(120,'sergiocodina77','Srdjan','Repic','srdjansasarepic@gmail.com','','','','','AU','','$2y$10$h0hou0jgP7eC16jYvA4T.eL8lQIt5s6xZRnTOaLRXnmjR3jdYxWZi',0,0.00,0,0,0,0,'Active',0,'2022-06-09 07:02:55',NULL,'','',1,2,'',1,'165.225.62.37','165.225.200.117','','','','2022-06-17 11:03:58',4,'0/0/0',4000,7500,0,0,7500,0,1655488500,0,1776203110,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'06/2022','a62178a8e59f8331e1cb4f057cbf0a55','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(121,'efish','Elmer','Fisher','justelmer30@gmail.com','','','','','','','$2y$10$QVFX/sPkRgfpY9z7oSeRZuWeTrvAypILIPfLt7iTvG8.4lvCAne9O',0,0.00,0,0,0,0,'Active',0,'2022-06-09 16:31:37',NULL,'','',1,1,'',1,'146.168.19.37','146.168.45.81','','','','2024-07-13 04:08:35',9,'0/0/0',8,75,0,0,75,0,0,0,0,1720124441,1720124441,0,1720124315,0,126,0,0,0,0,8,1,0,0,0,0,0,0,'07/2024','219ece62fae865562d4510ea501cf349','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(122,'TrafficKing','Justin','Davis','1212juda@gmail.com','','','','','AU','','$2y$10$2g1/Bs.4OF4U6sM6TXX1VOz/ReBtt9Qiv9T75YaW5qd1d3EHvokWW',0,0.00,0,0,0,0,'Active',0,'2022-06-09 22:36:28',NULL,'','',1,3,'',1,'38.133.98.144','172.58.37.179','','','','2022-06-17 15:20:35',3,'0/0/0',70000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f6a673f09493afcd8b129a0bcf1cd5bc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(123,'rburgess2','Ronald','Burgess','rbautomaticbuilder@gmail.com','','','','','','','$2y$10$zt/pF50.FPF7xTpAOt3cGO22OklvvAUZk.NIgWtFn/ttZnxJuH2py',0,0.00,0,0,0,0,'Active',0,'2022-06-10 00:03:09',NULL,'','',1,1,'',1,'67.9.31.181','71.45.1.241','','','','2023-02-05 20:42:04',8,'0/0/0',55830,30050,0,0,20050,0,1772587712,1776082031,1772111687,1675658091,1675658091,1659247333,1675658091,0,0,0,1,1,1,8,0,0,0,0,0,0,0,'02/2023','de01d76e793fec3fba32f4401a45fb20','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(124,'workfromhome','Eileen','Birchmore','eileensfreetraffic@gmail.com','','','','','','','$2y$10$ccTwdX3PM20C78mG8NYDYuwV6AA56zn9cj4l7ZKsfe9zdaImnIkKa',0,0.00,0,0,0,0,'Active',0,'2022-06-10 08:24:23',NULL,'','',1,1,'',1,'5.68.25.170','5.68.25.170','','','','2022-06-10 15:31:24',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','eca89c0554ce99eaf250504971789ede','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(125,'star71','Zedrick','Garrison','autotraffic50@gmail.com','','','','','AU','','$2y$10$TMDv/dOms0gDXQbeeq3d1eeYZ6SXmlipDHdyYKF/YkvvlqsMv5Dau',0,0.00,0,0,0,0,'Active',0,'2022-06-10 15:10:39',NULL,'','',1,2,'',1,'75.66.233.103','75.66.233.103','','','','2022-06-10 22:26:19',2,'0/0/0',10000,7500,0,0,7500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','08048a9c5630ccb67789a198f35d30ec','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(126,'peter','Peter','Ruuska','ruskpet@gmail.com','','','','','','','$2y$10$h4ykHih8TYddZoFIlvPhBuwDRwsUYUKWSdisrv5H7KZUI2JIMUxwC',0,0.00,0,0,0,0,'Active',0,'2022-06-10 16:02:38',NULL,'','',1,1,'',1,'2.248.128.138','2.248.128.138','','','','2022-06-11 21:33:00',5,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','7f3ad9c65beb20ccbd34a05041b4420b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(127,'4pillars','HelmutE','Weiss','maxinfocus@gmail.com','615 Wallace Ave S','Listowel','Ontario','N4W 1Y7','CA','2269884194','$2y$10$GIdL5sdDCkRxh4i782K8QOG2oprd3bmnkEpVMCXXoc4/KKZi6kVMe',0,0.00,0,0,0,0,'Active',0,'2022-06-10 17:16:49',NULL,'','maxinfocus@gmail.com',1,1,'',1,'172.83.209.142','172.83.209.142','','','','2023-11-07 20:38:02',7,'0/0/0',4,25,0,0,25,0,0,0,1654959430,1698518079,1698518079,0,1698518079,0,0,0,0,0,0,4,0,0,0,0,0,0,0,'11/2023','4158f6d19559955bae372bb00f6204e4','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(128,'Jonathan','John','Lynch','jjlynch56@gmail.com','','','','','','','$2y$10$QPRGbFwvXnc9yqiPCQELb.xIofpp7jABZhagowTAM9aWM7SfZz8PC',0,0.00,0,0,0,0,'Active',0,'2022-06-12 04:30:02',NULL,'','',1,1,'',1,'81.98.19.95','81.98.19.95','','','','2022-06-12 11:34:59',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c60d060b946d6dd6145dcbad5c4ccf6f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(129,'kix4flix','Corrisa','Malone','corrisamalonesafe@gmail.com','','','','','US','','$2y$10$d7YQzdl6AMf9TpZq.RJxOu1VCSSk56LczTR3604K2myucZn5pgL1S',0,0.00,0,0,0,0,'Active',0,'2022-06-13 05:00:43',NULL,'','corrisam@gmail.com',1,3,'',1,'172.58.29.235','172.58.21.97','','','','2022-07-16 04:55:19',3,'0/0/0',70000,40000,0,0,40000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c21002f464c5fc5bee3b98ced83963b8','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(131,'frankandres','Frank','Andres','frankandres@gmail.com','','','','','AU','','$2y$10$EaZW/h.jCBZhzHOG7c3drOQi7hbffXezVpUSh1MPr/wkY6DnH3ZJS',0,0.00,0,0,0,0,'Active',0,'2022-06-17 05:56:32',NULL,'','',1,3,'',0,'','187.252.250.248','','','','0000-00-00 00:00:00',0,'0/0/0',7350.14,5000,0,5000,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2022','b181eaa49f5924e16c772dcb718fcd0f','0000-00-00',0.00,0.00,0,1,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(132,'dealsn2022','Rodney','Tuggle','rodney42022@gmail.com','','','','','','','$2y$10$tqx3J1C9.uSvmdzY7Zho3ueAwaAOKGYYj8WrNpyjSBajrB6gQJJvO',0,0.00,0,0,0,0,'Active',0,'2022-06-17 11:26:27',NULL,'','',1,1,'',1,'67.83.96.210','67.83.96.210','','','','2023-04-07 21:17:00',6,'0/0/0',93,225,0,0,425,0,1772153276,0,0,1684584552,1684584552,0,1684584552,0,662,0,1,0,0,85,0,0,0,0,0,0,0,'04/2023','92650b2e92217715fe312e6fa7b90d82','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(133,'birdman82','Jim','Finch','jimfinch82@gmail.com','','','','','AU','','$2y$10$6YXf9sa5mBej4DjPBEZ.UeGFVX5quGc27ncjjjN4tlrK4AaZ4wN8S',0,0.00,0,0,0,0,'Active',0,'2022-06-19 03:59:23',NULL,'','',1,3,'',1,'174.84.58.19','174.84.58.19','','','','2022-09-29 02:20:00',3,'0/0/0',70000,42000,0,0,42000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2022','73640de25b7d656733ce2f808a330f18','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(134,'Blessings4all','D','Willey','smores4u@gmail.com','10564 Arlington St','Adelanto','CALIFORNIA','92301','US','','$2y$10$ydSn8Wmf.wbT/6WWH3isOOhnRkc8uf0gB9nY1iTazSmp0CyK8zElW',0,0.00,0,0,0,0,'Active',0,'2022-06-20 22:53:02',NULL,'','',1,3,'',1,'47.34.154.204','174.81.41.12','','','','2023-06-01 16:47:49',6,'0/0/0',71980,43000,0,0,43000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2023','e07bceab69529b0f0b43625953fbf2a0','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(135,'56chake','Elizabeth','Frischknet','56chake@gmail.com','','','','','','','$2y$10$Q6wUYceO689pw8FFlolO6OuXDeRBDfrm8Y69.LmSga7xLK6glc0mm',0,0.00,0,0,0,0,'Unverified',0,'2022-06-21 04:44:50',NULL,'','',1,1,'',0,'','23.17.99.125','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','967c2ae04b169f07e7fa8fdfd110551e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(136,'rafael5','rafael','deluis','rafaeldeluis5@gmail.com','','','','','','','$2y$10$6HUM521rLV9S9GCrgRnyzOsK6kPns1iVRZwaewKFftjJXlhNOf/Gq',89,0.00,0,0,0,0,'Active',0,'2022-06-28 02:11:10',NULL,'','',1,1,'',1,'2.139.190.212','2.139.190.212','','','','2022-06-28 09:16:18',1,'0/0/0',1,0,0,0,0,0,0,0,0,1670103488,1670103488,0,1670103488,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'0/0','6e2eec9ca19c076736d19ac5426473af','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(137,'masteraccount','Javier','Jimenez','5dollarfriday47@gmail.com','','','','','AU','','$2y$10$AJMkTc0AKqF3gAa46Ii3Vuzp.ExH3Bd0/o5Lj7rtv8KBE7/Kga3rW',0,0.00,0,0,0,0,'Active',0,'2022-06-29 07:16:36',NULL,'','',1,5,'',0,'189.172.53.225','187.252.251.139','','','','2023-02-08 15:06:19',20,'0/0/0',997406000,1000000075,0,1000000000,1000000075,0,1773547935,1775924400,1775406056,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,'12/2022','c92383002f757cddd52df84e68894b5e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-10',0),(138,'HappyDragon','Patricia','Beatty','dragonmailers@gmail.com','','','','','','','$2y$10$aDs86.QtiN8fQPB0lP.W3e1/xbi5ujXZqwXhvH3jI71WMJDYYHxAC',0,0.00,0,0,0,0,'Unverified',0,'2022-06-30 18:12:13',NULL,'','',1,1,'',0,'','24.99.165.148','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','1943102704f8f8f3302c2b730728e023','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(139,'rocks','Gisela','Beckermann','vividwcm@gmail.com','','','','','AU','','$2y$10$.Eus7Vlw3VKrFPcraZGzzeaM7/s/z1Uv1xMnMlZcL3B8TLAW.kpya',0,0.00,0,0,0,0,'Active',0,'2022-07-03 13:57:27',NULL,'','',1,3,'',1,'73.37.0.95','73.37.0.95','','','','2022-07-03 21:00:38',2,'0/0/0',69926,38000,0,0,38000,0,1657753278,0,1770821443,0,0,1656882425,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'0/0','59de0175dc17bcf0f4fb5ae6ae3f444f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(140,'bjsmarket','BobbiJo','Nichols','bjsetc2@gmail.com','7707 Heritage Highway','Jefferson City','Missouri','65109','US','573-680-0961','$2y$10$1JpXkbVuM4vm7GAg7bHDIe3dCh7WQKTgfe2/GMPN02gAeYJkbxBwu',131,0.00,0,0,0,0,'Active',0,'2022-07-07 16:51:09',NULL,'','bjsetc2@gmail.com',1,1,'',1,'172.59.173.157','174.30.116.133','','','','2024-12-23 20:17:45',46,'0/0/0',4.2,125,0,0,50,0,1772333524,0,1772153276,1734985061,1734985061,1717457896,1734985061,0,217,0,1,0,1,62,0,0,0,0,0,0,0,'12/2024','41f1f19176d383480afa65d325c06ed0','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(141,'michelguenette','MICHEL','GUENETTE','michelguenette@persona.ca','','','','','CA','','$2y$10$Uh6MMKqRcAJt2f9t0WSIRuMZnHzHSE7ZC0kIyHNKWIw8m/hsyosB6',0,0.00,0,0,0,0,'Active',0,'2022-07-15 19:59:50',NULL,'','',1,1,'',1,'184.145.42.121','148.170.163.123','','','','2023-10-17 01:21:24',33,'0/0/0',137079,80175,0,0,80175,0,1772579861,0,1772153224,1708121778,1708121778,1662134141,1708121778,0,98,0,1,0,1,51,0,0,0,0,0,0,0,'10/2023','82ca5dd156cc926b2992f73c2896f761','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(142,'Anthony','Anthony','Cameron','acmarketingbiz@gmail.com','','','','','AU','','$2y$10$bNOkRkBHTWaGsHdDaAbShuBh14vZmuUc8WKVZ0WNhx1kZERoYn8Tu',0,0.00,0,0,0,0,'Active',0,'2022-07-16 17:44:28',NULL,'','',1,3,'',1,'71.178.5.108','71.178.5.108','','','','2022-09-05 15:51:29',15,'0/0/0',70240,43400,0,0,43400,0,0,0,0,1676940340,1676940340,0,1676940340,0,30,0,0,0,0,4,0,0,0,0,0,0,0,'09/2022','7dd11ae2d5ed34925bdbdc9b01866349','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(143,'cbeaver420','Clifford','Cardenas','cbeaver420@gmail.com','','','','','','','$2y$10$F4lynO2U6hFoE4Z0kuPxG.cwBCp6CU/GyQU6tP4hyenDnIDGs3yDC',0,0.00,0,0,0,0,'Active',0,'2022-07-19 19:41:10',NULL,'','',1,1,'',1,'69.145.143.129','174.198.135.157','','','','2022-07-23 13:16:51',4,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d7c18718502a444a1a88227b0915de84','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(144,'adambilliot','adam','billiot','womensgeneralstore@gmail.com','','','','','','','$2y$10$JtwpMG/ZgT6yab39n.Ab4uJ7iya3ojRvxA3MBboAldsAhdtc8ojNq',0,0.00,0,0,0,0,'Active',0,'2022-07-19 23:07:08',NULL,'','',1,1,'',1,'99.95.240.182','190.2.138.17','','','','2022-10-19 10:37:24',3,'0/0/0',0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2022','dc0c398086fee58f9d64e1e47aa4e586','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(145,'bronzestar','walter','brady','trafficcredits@gmail.com','','Hooksett','New Hampshire','03106','US','','$2y$10$3HZQjqVhL3BS/CRUk.Ar/.OcbY/eGVUMs0Kql.5dSNd.gSWWI0W3m',0,0.00,0,0,0,0,'Active',0,'2022-07-20 07:55:15',NULL,'','',1,1,'',1,'54.215.230.196','34.220.132.134','','','','2024-08-04 17:43:30',6,'0/0/0',342,125,0,0,125,0,0,0,0,1773587175,1773587175,0,1773587175,0,106,0,0,0,0,74,0,0,0,0,0,0,0,'08/2024','a9eb812238f753132652ae09963a05e9','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(146,'PanosK','Panos','Kouroutzis','pkourout@gmail.com','','','','','','','$2y$10$NCwrCHpngDH/simVsGZUC.qkiBPzu5iumwHob0Bo8CSNr2CkweY0C',0,0.00,0,0,0,0,'Active',0,'2022-07-20 15:48:57',NULL,'','',1,1,'',1,'77.111.247.73','46.177.39.58','','','','2023-07-21 14:11:46',2,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2023','65ae450c5536606c266f49f1c08321f2','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(147,'bcollins411','Bryan','Collins','bryantcollins3042@gmail.com','','','','','','','$2y$10$OCK.QQEB5X6t4CK0umlAgOVGn82v8Un7d/Kygg82OMmYM01UjXf/y',0,0.00,0,0,0,0,'Active',0,'2022-07-21 15:02:37',NULL,'','',1,1,'',1,'73.126.134.106','73.126.134.106','','','','2022-07-23 20:54:28',2,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','7990ec44fcf3d7a0e5a2add28362213c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(148,'slimane29677','meddahi','slimane','meddahi77.slimane@gmail.com','','','','','','','$2y$10$CaWuZPdtS4mz8u6xF.bTXuj4flMJ/WJKOGkyM0CucGTPgLx5/Y1zu',0,0.00,0,0,0,0,'Active',0,'2022-07-22 08:57:02',NULL,'','',1,1,'',1,'41.102.6.179','41.102.6.179','','','','2022-07-22 18:26:14',2,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ec7f346604f518906d35ef0492709f78','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(149,'chaplaincarbogmailcom','Jose','Carbo','chaplaincarbo@gmail.com','','','','','','','$2y$10$a5QcS9tmobysHjp8kQOASOLkpugRD3DKcMKQpa08kvw637ouuP.Mi',0,0.00,0,0,0,0,'Unverified',0,'2022-07-22 15:25:46',NULL,'','',1,1,'',0,'','76.108.196.180','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','26901debb30ea03f0aa833c9de6b81e9','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(150,'tennesseefix','Vicki','OsgoodWhatley','tnfixmailers@gmail.com','','Clermont','FL','34714','US','','$2y$10$QawpKpOuL13xrPC9MTvoFuEAmm3DMUeBz76Bzex0uSIpB4PglpNSO',0,0.00,0,0,0,0,'Active',0,'2022-07-22 15:34:35',NULL,'','',1,3,'',1,'172.58.174.163','172.58.171.187','','','','2022-08-02 07:54:42',4,'0/0/0',70076,36425,0,0,36425,0,1703700323,1703428211,1772111687,1659423352,1659423352,0,1659423130,0,222,0,0,0,1,6,0,0,0,0,0,0,0,'08/2022','5607fe8879e4fd269e88387e8cb30b7e','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(151,'KimTraf','David','Frost','kimtraf@gmail.com','','','','','','','$2y$10$Bv8YolN6HuswZaeVRY.3uOVyREHfSVtOkd9KiExvBF9vBbDHQcqVu',0,0.00,0,0,0,0,'Active',0,'2022-07-22 16:34:07',NULL,'','',1,1,'',1,'70.132.139.171','98.214.90.232','','','','2026-04-06 09:50:07',17,'0/0/0',66299,40125,5000,0,40125,0,1676452700,0,1772117901,1676377552,1676377552,1676377588,1676377552,0,101,0,0,0,1,21,0,0,0,0,0,0,0,'05/2025','9c58da3f0418ebdb53c02615f9ab7282','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(152,'starcy80','StacyAnn','Atkinson','atkinsonstacyann81@gmail.com','','','','','','','$2y$10$iwpg8oRpkYOdPZfckitIE.kXTdnDaIXsL/yUIEaetIxFjNUstRcFu',0,0.00,0,0,0,0,'Active',0,'2022-07-23 06:20:49',NULL,'','',1,1,'',1,'96.43.189.210','96.43.189.210','','','','2022-07-24 20:38:26',1,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e546594ad40b116388b50d48c6955f2b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(153,'scottmoody007','Scott','Moody','scott@scottmoody.co','','','','','US','','$2y$10$zJDteJ3L7yIK5qhOsPhQce8/La7YbWC3LfqBbNxJMLfJGssMnKOAm',0,0.00,0,0,0,0,'Active',0,'2022-07-24 12:28:14',NULL,'','',1,1,'',0,'47.201.29.168','47.201.29.168','','','','2023-01-11 04:36:03',2,'0/0/0',70200,40425,0,0,40425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2022','5e76bef6e019b2541ff53db39f407a98','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(154,'viralmailer2030','Jose','Amoros','viralmailer2030@gmail.com','','','','','','','$2y$10$2JrQUuNLbQwOWq4PUwHLOuJXm3Fy1WJBV7GZhwvOcZbrhzdYFHHRK',0,0.00,0,0,0,0,'Active',0,'2022-07-24 14:36:50',NULL,'','',1,1,'',1,'','217.61.94.249','','','','0000-00-00 00:00:00',0,'0/0/0',1,0,0,0,0,0,0,0,0,1660155298,1660155298,0,1660155298,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'0/0','f01acd85b5e40e93f565627a8bb8bd98','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(155,'benny','Benny','Lo','pengusahadotinfo@gmail.com','','','','','AU','','$2y$10$fl3ipDfQ.NDx29GbRUtTUOLS1a/15dPC8iNptFZR5UK7UOtxL8faq',0,0.00,0,0,0,0,'Active',0,'2022-07-25 15:17:51',NULL,'','',1,2,'',1,'103.121.182.205','36.73.6.153','','','','2024-08-20 12:36:53',8,'0/0/0',12000,8025,0,0,8025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2024','d94e18a8adb4cc0f623f7a83b1ac75b4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(156,'BifBigBucks','Bif','Bartholomay','bifstraffic@gmail.com','','','','','','','$2y$10$8kBfbVFRi3Cq9gGQwmzetevgCurHMJ7QXgJ9Iv3myKvuwolKCqyly',0,0.00,0,0,0,0,'Unverified',0,'2022-07-25 21:41:01',NULL,'','',1,1,'',0,'','24.253.60.251','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','4f20f7f5d2e7a1b640ebc8244428558c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(157,'HABIB','HAMIDI','LAHBIB','hamidilahbib8@gmail.com','','','','','','','$2y$10$CB3/SktV0PViZShU/2.na.u1o6nnD8OxGDpnViAG9zmQECvm7vKzG',0,0.00,0,0,0,0,'Active',0,'2022-07-26 10:18:39',NULL,'','',1,1,'',1,'196.65.120.33','196.65.120.33','','','','2022-07-26 17:21:43',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','51425b752a0b402ed3effc83fc4bbb74','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(158,'fabriziomab','Fabrizio','MAB','fabrizio@mabaffiliate.com','','','','','','','$2y$10$dO9khnH4Nzec6S.JfAdA/.QYLp19r4D1gmggDnbJrgWmr8l07KFUC',0,0.00,0,0,0,0,'Active',0,'2022-07-27 14:16:21',NULL,'','',1,1,'',1,'77.32.94.21','77.32.94.21','','','','2022-07-27 21:17:12',1,'0/0/0',133,425,0,0,425,0,1658957557,0,0,0,0,1658956891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2022','84253ffce9853bdf2518c53ddf3bce65','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(159,'jts60','Randall','Jenkins','justaskrandallj@gmail.com','','','','','','','$2y$10$2UX.o5INbU4U7WKyTEoLEOQ93cev94IcWRDR.NnMtTMb/HUhJ/e8u',0,0.00,0,0,0,0,'Active',0,'2022-07-28 16:26:23',NULL,'','',1,1,'',1,'68.203.178.248','68.203.178.248','','','','2022-07-28 23:28:15',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2022','21186d7b1482412ab14f0332b8aee119','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(160,'Mejishen','ORLANDO','LOFTON','bigbizxl@gmail.com','','','','','','','$2y$10$tR0mBByUlpsbczD.YLYWj.6mD8ydKOwM8RjLX2LnI6t7XAOrB/I3W',0,0.00,0,0,0,0,'Active',0,'2022-07-28 16:41:21',NULL,'','',1,1,'',1,'172.243.175.140','172.243.175.140','','','','2022-07-28 23:43:15',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2022','f29c21d4897f78948b91f03172341b7b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(161,'plmegquier','Pammy','Megquier','plmegquier@gmail.com','','','','','','','$2y$10$LNPLg8fbUYMw1FmIzE0eiOC0LpooKg3xl0CKZqClafbdsYNqSwZbi',0,0.00,0,0,0,0,'Active',0,'2022-07-28 18:44:39',NULL,'','',1,1,'',1,'72.95.110.223','24.92.38.34','','','','2024-10-31 20:38:45',8,'0/0/0',39,0,0,0,300,0,1772619459,0,1699174318,1733767979,1733767979,1730407331,1733767979,0,300,0,1,0,0,319,2,0,0,0,0,0,0,'10/2024','c9d9edbf9b9e23eb5d4819bbcce9b078','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(162,'scoie372','Brett','Scofield','scoie372@gmail.com','','','','','AU','','$2y$10$fjxdTH.XNlb72/yahv7qne1/kvH/8mR7UsJqHxONz0zuCRu7jiLDW',0,0.00,0,0,0,0,'Active',0,'2022-07-29 00:22:21',NULL,'','',1,3,'',1,'106.70.240.12','106.70.240.12','','','','2022-08-06 03:41:41',3,'0/0/0',59847,41000,0,0,41000,0,1772587665,0,1775391166,0,0,1659758586,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,'08/2022','38181d991caac98be8fb2ecb8bd0f166','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(163,'blogger12','JOHN','KALIN','johnakalin@gmail.com','','','','','','','$2y$10$c3QeZtUMxgbiTpVISyqOoOlH9PQ.vD4e5oTVTvfjxBqTnj5UqTVpm',0,0.00,0,0,0,0,'Active',0,'2022-07-29 11:56:44',NULL,'','',1,1,'',1,'66.56.128.78','66.56.128.78','','','','2022-07-29 19:03:00',1,'0/0/0',1,25,0,0,25,0,0,0,0,1659304627,1659304627,0,1659304627,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'07/2022','9379c23ac12dc94053207373040bc791','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(164,'Arlequin','Carlos','Arguello','trueque.mundial@gmail.com','','','','','','','$2y$10$OvTq1OKlCmmFnjXVMMRGr.UiCdRgXiT9B/cfMIAsGnCI7bP3Wxh6a',0,0.00,0,0,0,0,'Active',0,'2022-07-30 11:41:36',NULL,'','',1,1,'',1,'186.77.206.74','190.212.59.147','','','','2025-03-09 02:49:52',3,'0/0/0',748,475,0,0,475,0,0,0,0,1775406074,1775406074,1741488816,1775406074,0,263,0,0,0,0,361,2,0,0,0,0,0,0,'03/2025','6a783b626a6d892a132dc195e5504272','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(166,'Link184','Shubert','Singoyi','ssingoyi@gmail.com','','','','','','','$2y$10$TlAYS2jPDgXxDH9YHr.u9O4B1TPSjiOF/YV7HJyV/6uElBqwCCoj2',0,0.00,0,0,0,0,'Active',0,'2022-08-01 06:51:23',NULL,'','',1,1,'',1,'86.139.119.29','86.139.119.29','','','','2022-08-01 13:51:57',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2022','9b2e035e5362c96aea4c28083f02d6ff','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(167,'seizetheday','Mathias','Lagud','matsabelisting@gmail.com','','','','','','','$2y$10$3DjtWdu7H8388ik8IPi93.G39xiES76D9hGQz91n29UvogZzjjoxG',131,0.00,0,0,0,0,'Active',0,'2022-08-01 10:50:22',NULL,'','',1,1,'',1,'66.27.200.142','66.27.200.142','','','','2022-08-01 17:52:52',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2022','8c01a75941549a705cf7275e41b21f0d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-04',0),(168,'theophille','Joan','Theophille','jtheophille06@gmail.com','','','','','','','$2y$10$jgtK9b7g.quEDLBw5vFmv.sNwGsGUbwn7Z7Vb2BOnu/0uUCb/Njne',0,0.00,0,0,0,0,'Active',0,'2022-08-03 20:51:11',NULL,'','',1,1,'',1,'71.105.53.190','71.105.53.190','','','','2022-08-04 03:56:48',1,'0/0/0',70000,40025,0,0,40025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2022','5d97f4dd7c44b2905c799db681b80ce0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-05',0),(169,'Susieq5643','Susan','Groves','skgroves3@gmail.com','','','','','AU','','$2y$10$PamhXnkNVb9OcuNBF0bFN.f8APZ5XCuoEW5f6ZjZdQap2jwzQrge2',0,0.00,0,0,0,0,'Active',0,'2022-08-05 16:04:59',NULL,'','',1,3,'',1,'162.210.194.35','162.210.194.10','','','','2022-08-20 21:55:06',2,'0/0/0',0,1000,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2022','f3adde26e4fd2dcbfbc56c48396a6d23','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-07',0),(170,'feltenp44','Paulo','Felten','paulofelten4@gmail.com','','','','','','','$2y$10$HOVeUUPzpMKGgTFfsa88qeDWxnyphsmwlaYnJUE0a68oHMD/E8jU6',0,0.00,0,0,0,0,'Active',0,'2022-08-07 12:25:17',NULL,'','',1,1,'',1,'65.128.18.31','73.242.7.147','','','','2022-09-15 20:56:27',3,'0/0/0',110,450,0,0,450,0,0,0,0,0,0,1663275496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2022','0a988fc2992add2d3233e19c7aadfdea','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-08',0),(171,'4tgd','Allen','Turner','4tgdtraffic@gmail.com','','','','','AU','','$2y$10$gmiPltd3lorUpBcT.QbFBuB8A6EC/gBrUdo.2CzTBnSIGINltHMwK',0,0.00,0,0,0,0,'Active',0,'2022-08-08 14:43:19',NULL,'','',1,3,'',1,'107.242.121.29','107.242.121.42','','','','2022-08-26 15:46:50',5,'0/0/0',500200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2022','56bd37d3a2fda0f2f41925019c81011d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-13',0),(172,'eparkos','Godfrey','Pafura','buildmylistmember@gmail.com','','','','','GB','','$2y$10$BbCjF6.IYBccJ7zj5ZvQuuhoTXoUwF/2ChNW012m7uF7i0NtASISC',131,0.00,0,0,0,0,'Active',0,'2022-08-08 19:30:34',NULL,'','accounts@godfreypafura.com',1,1,'',1,'92.10.207.98','82.22.241.224','','','','2022-08-16 13:09:03',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2022','831b342d8a83408e5960e9b0c5f31f0c','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-10',0),(173,'jsadan','Junaid','Sadan','junaidsadan@gmail.com','','','','','','','$2y$10$.6OsXFGjiXqqgDElFBdN4.phULtTGtHQ3imjDUmBm0nOxuguOR.jO',22,0.00,0,0,0,0,'Active',0,'2022-08-10 02:14:18',NULL,'','',1,1,'',1,'41.13.25.226','41.13.25.226','','','','2022-08-10 09:22:03',1,'0/0/0',6,25,0,0,25,0,0,0,0,1687723737,1687723737,0,1687723737,0,115,0,0,0,0,6,0,0,0,0,0,0,0,'08/2022','9b89bedda1fc8a2d88c448e361194f02','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-11',0),(174,'jasonstews77','Jason','Stewart','xtremeteam10x@gmail.com','','','','','','','$2y$10$E9Dj4ic5.AFyuXfDYfLzwuDBzgQtAIQAstYx7Mq0L8GHTKRF12Lvy',0,0.00,0,0,0,0,'Active',0,'2022-08-10 14:02:56',NULL,'','',1,1,'',1,'71.79.100.40','71.79.100.40','','','','2023-01-14 14:29:12',6,'0/0/0',7,450,0,0,450,0,0,0,0,0,0,1666992751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2022','207f88018f72237565570f8a9e5ca240','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-11',0),(175,'karlg','Karl','Olsson','karlge.ols@gmail.com','','','','','','','$2y$10$7BeOueEfgxPBRTiwwayDGOdL/eI0NEwdg.3yGI52MFU/xAyp9bhpS',0,0.00,0,0,0,0,'Active',0,'2022-08-10 17:27:12',NULL,'','',1,1,'',1,'','81.170.227.14','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a1bcb47486d5abaeabf8fc1d64abe62b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-12',0),(176,'jssxj1980','Xiaojun','Sheng','moneydigger1980@gmail.com','','','','','','','$2y$10$boDdetCqH456GwlQvma3neGrWOtGSYvqKNI/eDBAM1rfri/iGP9ne',0,0.00,0,0,0,0,'Active',0,'2022-08-10 23:26:38',NULL,'','',1,1,'',1,'167.253.97.97','104.249.173.237','','','','2026-04-12 05:16:57',12,'0/0/0',68918.7,30550,0,0,30550,0,1775979144,0,1772333512,1660576266,1660576266,1775971091,1660576266,0,0,0,1,0,1,1,0,0,0,0,0,0,0,'04/2026','24896ee4c6526356cc127852413ea3b4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-12',0),(177,'vodzl','Vasiliy','Rybkin','grazhdanindollar@gmail.com','','','','','','','$2y$10$jm3rhBP2r7SwQdhtztd5g.79BMj3RQgecSqAHhoK4aeQdBXPcmGmG',140,0.00,0,0,0,0,'Active',0,'2022-08-12 20:32:35',NULL,'','',1,1,'',0,'94.19.138.171','94.19.138.171','','','','2022-09-03 17:26:38',2,'0/0/0',116,425,0,0,425,0,0,0,0,1661374203,1661374203,1661318220,1661374203,0,0,0,0,0,0,2,0,0,0,0,0,0,0,'08/2022','b8102d1fa5df93e62cf26cd4400a0727','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-14',0),(178,'7to8figures','Bernard','Scudlik','7to8figures@gmail.com','','','','','AU','','$2y$10$Ds2JonvJRwTrcSRV5AoXn.kMknmHdiYEWYd/m8FDFBo0Oyz3nCZMC',0,0.00,0,0,0,0,'Active',0,'2022-08-14 13:36:17',NULL,'','',1,3,'',1,'95.91.209.0','95.90.233.25','','','','2023-10-26 19:28:33',3,'0/0/0',565000,41025,0,0,41025,0,0,0,1773587161,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'10/2023','fa8dbbcb682699544e4e8f2212115f73','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-08',0),(179,'PeterRT','Peter','Turner','onlinewealthstrategist@gmail.com','','','','','','','$2y$10$mcWH7mAinKez7EFqPslXwuz.hCmDqDdygO5YIroivVs8WFMpJegnm',22,0.00,0,0,0,0,'Active',0,'2022-08-15 07:42:08',NULL,'','',1,1,'',1,'86.160.93.75','86.161.46.78','','','','2024-11-09 17:20:29',13,'0/0/0',7,250,0,0,250,0,1660574984,0,1660574984,1731172909,1731172909,1715629717,1731172858,0,60,0,0,0,0,12,0,0,0,0,0,0,0,'11/2024','86a2f353e1e6692c05fe83d6fc79cf9d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-16',0),(180,'EduartTroci','Eduart','Troci','surforcash.com@gmail.com','','','','','','','$2y$10$2DMzByjj.YyvgsKSAIgn0.Mwb8ytkPrEQZTexmycfyJlMPAQLbEia',119,0.00,0,0,0,0,'Active',0,'2022-08-15 15:53:23',NULL,'','',1,1,'',1,'81.103.144.241','81.103.144.241','','','','2023-10-03 21:19:16',20,'0/0/0',155509,40200,0,0,40200,0,0,0,0,1697939267,1697939267,1690465274,1697939267,0,60,0,0,0,0,11,0,0,0,0,0,0,0,'10/2023','73983c01982794632e0270cd0006d407','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-16',0),(181,'Dcole','Derrick','Coleman','2021neew@gmail.com','','','','','','','$2y$10$h47FT3fwGwBLdlKodl6x6eU1dWQitzXBirtuVhnVAzf8SwPiWWfmK',0,0.00,0,0,0,0,'Active',0,'2022-08-19 22:57:22',NULL,'','',1,1,'',1,'50.96.244.162','67.140.79.162','','','','2023-08-19 06:15:44',8,'0/0/0',65111,40450,0,0,40450,0,0,0,1771427169,0,0,1662184273,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'08/2023','d8e1344e27a5b08cdfd5d027d9b8d6de','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-21',0),(182,'dilbert','Mike','Gaudreau','michaelgaudreaudotcom@gmail.com','','','','','','','$2y$10$Qg/ucjACpHhsBymXAaay8u48Oey9X8nRq8xLIGlOgVH5IrYRTnbci',0,0.00,0,0,0,0,'Active',0,'2022-08-21 10:04:35',NULL,'','',1,1,'',1,'173.176.75.170','173.176.75.170','','','','2022-08-24 16:34:51',2,'0/0/0',203,425,0,0,425,0,0,0,0,1661427712,1661427712,0,1661427649,0,63,0,0,0,0,3,0,0,0,0,0,0,0,'08/2022','251bd0442dfcc53b5a761e050f8022b8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-22',0),(183,'henkbruser10','henk','bruser','bruserdave20@gmail.com','','','','','','','$2y$10$74zeBd4juToZ.ZUwCgws.Oa5xWQjepbeBNX6yDIBQboiD/b5rwdTW',0,0.00,0,0,0,0,'Active',0,'2022-08-24 10:38:11',NULL,'','',1,1,'',1,'','77.170.249.134','','','','0000-00-00 00:00:00',0,'0/0/0',1,0,0,0,0,0,0,0,0,1661520057,1661520057,0,1661520057,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'0/0','1305f6c705349316360c3ccfe7cfe847','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-25',0),(184,'jimmyboyd','Jimmy','Boyd','xetpzd78g@gmail.com','','','','','','','$2y$10$R.m1T1L0Pfbc61mi336JfOCymNGIMXOsScB0EPyYfpxRnnxYqMaRC',22,0.00,0,0,0,0,'Active',0,'2022-08-26 09:21:31',NULL,'','',1,1,'',1,'37.75.160.160','37.75.160.160','','','','2022-08-26 16:23:25',1,'0/0/0',201,425,0,0,425,0,0,0,0,1670967548,1670967548,0,1670967548,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'08/2022','dafc8e8cde5d69dafe65cb6907899656','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-27',0),(185,'kingly5','James','Cook','kingly5@mail.com','','','','','','','$2y$10$IrCL5qDc8Jgo8/gbY.M69up1PGgOeVqUq3PBKM95D1wtgZWzAHpSC',111,0.00,0,0,0,0,'Active',0,'2022-08-27 09:57:02',NULL,'','',1,1,'',1,'166.182.254.23','166.182.254.23','','','','2022-08-27 17:05:48',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c8877cff22082a16395a57e97232bb6f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-08-28',0),(186,'andyskaizen','Andy','Barnes','andyscreditlinks@gmail.com','','','','','','','$2y$10$61/qkNROzJu/ccoceaYPtOR0NQLdeOOelBIXw7aRtqjAbin4H24wq',131,0.00,0,0,0,0,'Active',0,'2022-09-04 15:41:30',NULL,'','',1,1,'',1,'86.152.0.175','86.182.154.13','','','','2022-12-28 03:49:50',1,'0/0/0',0,0,0,0,0,0,1673210506,0,1673407526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'12/2022','2bd7f907b7f5b6bbd91822c0c7b835f6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-05',0),(187,'magdi','Magdi','Mikhail','magdicanadian@gmail.com','','','','','','','$2y$10$2WXxneCuL2ZxOoeGkUKZiOutbfaxeb0n//pTIgA.uF7oDPtHSzez.',111,0.00,0,0,0,0,'Active',0,'2022-09-12 09:46:03',NULL,'','',1,1,'',1,'173.238.199.132','173.238.199.132','','','','2022-09-12 16:47:33',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2022','d04eb5de4d99080be674f159197a514a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-13',0),(188,'ViraliZer','Owen','Chance','m4nifestation4u@gmail.com','','','','','AR','','$2y$10$7f8mbiEzm8utBIluh8I9HOm1T7yo1H2qXku3VH9TBu5ZmYzvtpNDq',131,0.00,0,0,0,0,'Active',0,'2022-09-13 12:45:01',NULL,'','sgranavetter@gmail.com',1,1,'',1,'190.191.129.141','190.191.135.78','','','','2024-05-25 16:54:01',15,'0/0/0',784,125,0,0,125,0,0,1775924400,0,1682914680,1682914680,0,1682914680,0,0,0,0,1,0,4,0,0,0,0,0,0,0,'05/2024','a2d10d355cdebc879e4fc6ecc6f63dd7','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-14',0),(189,'wellyngosa5661','Wellington','Mukuwa','wellymukuwa022@gmail.com','','','','','','','$2y$10$5vR.SO0q7yyQFd60Yo8jSOVY0KU1HmNFfynj/6I7vfEsfI/1U4FKm',131,0.00,0,0,0,0,'Active',0,'2022-09-18 19:57:04',NULL,'','',1,1,'',1,'165.58.129.56','165.58.129.56','','','','2022-09-19 03:03:27',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','69d658d0b2859e32cd4dc3b970c8496c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-20',0),(190,'OnPassiveFounder','Kevin','Sanders','aiforextraderhelp@gmail.com','','','','','','','$2y$10$8bScHpXhtW03KBqvQj9OluAitogXpKJdHfjEkBBAAm/El9Iv2V/6a',0,0.00,0,0,0,0,'Active',0,'2022-09-20 20:51:58',NULL,'','',1,1,'',1,'71.196.118.35','71.196.118.35','','','','2022-09-21 03:53:25',1,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2022','7250eb93b3c18cc9daa29cf58af7a004','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-22',0),(191,'bobsherman','Bob','Sherman','bestbusinessresources@gmail.com','','','','','','','$2y$10$23WPFmDLOHjCkXt4rwD5w.JiTKPlxI7gHjRpfskZLgot7KwGaZuCi',0,0.00,0,0,0,0,'Active',0,'2022-09-24 05:12:35',NULL,'','',1,1,'',1,'67.149.5.223','67.149.5.223','','','','2022-09-24 12:13:37',1,'0/0/0',216,425,0,0,425,0,0,0,0,1680179914,1680179914,0,1680179914,0,107,0,0,0,0,16,0,0,0,0,0,0,0,'09/2022','a2d10d355cdebc879e4fc6ecc6f63dd7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-25',0),(192,'oraclex1855','MICHAEL','FUENTES','listbuilderx129@gmail.com','','','','','','','$2y$10$SnCvjmFTIealFlOSxq4DCeR5j9IILmzodWJGko0SpeLdTRT49OgEO',0,0.00,0,0,0,0,'Active',0,'2022-09-25 15:41:05',NULL,'','',1,1,'',1,'24.47.71.159','24.47.71.159','','','','2022-09-25 22:48:55',1,'0/0/0',0,425,0,0,0,0,0,0,1772333524,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'09/2022','cdaeb1282d614772beb1e74c192bebda','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-26',0),(193,'ovee','ojegba','solomon','ovee247@gmail.com','','','','','','','$2y$10$JHJnw3xXDdWSrdkhIzyqlukidmHu7/UpovPY14RgG1YpVSsVj7uA.',0,0.00,0,0,0,0,'Active',0,'2022-09-25 23:53:53',NULL,'','',1,1,'',1,'102.89.45.255','105.112.211.82','','','','2022-10-20 19:49:29',5,'0/0/0',1,50,0,0,50,0,0,0,0,1664215069,1664215069,0,1664215069,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'10/2022','7bfa32686d200c64cb46de03ac2eac0d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-27',0),(194,'tjh2021','Thorsten','Harte','newstocktoday@gmail.com','','','','','','','$2y$10$nBiUOIpKpmux38saaNxuU.cQz9GSdWsWl1FEDb45GGhtG1jqpNpNK',0,0.00,0,0,0,0,'Active',0,'2022-09-27 04:07:37',NULL,'','',1,1,'',1,'92.116.5.153','92.116.30.4','','','','2022-10-05 12:03:47',3,'0/0/0',104,450,0,0,450,0,0,0,0,0,0,1664277266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2022','b950ea26ca12daae142bd74dba4427c8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-28',0),(195,'million21','Jonathan','Hill','rugg3d2017@gmail.com','','','','','','','$2y$10$WvP8djL.h0oiLpFBFifZDOLzxl.NFgQA51L4JIg4Q2tLsVDRwS.Yu',131,0.00,0,0,0,0,'Active',0,'2022-09-27 06:43:46',NULL,'','',1,1,'',1,'71.135.85.207','71.135.85.207','','','','2022-09-27 13:44:30',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2022','96a0cc2f93365fadfcc06ba14e95fae1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-09-28',0),(196,'marylkk14','Mary','Turner','maryturner811@gmail.com','','','','','','','$2y$10$MBuCNq4ikXBGUO7d1XX8f.MZVD75TSf41ZWzQ2IpDFfp/rNqc/aQ.',0,0.00,0,0,0,0,'Active',0,'2022-10-11 12:44:12',NULL,'','',1,1,'',1,'','76.107.211.10','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','309928d4b100a5d75adff48a9bfc1ddb','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-12',0),(197,'Dazy','n','u','neha.umeran@gmail.com','','','','','','','$2y$10$NVKTW2oXFf5Ac1IAVKF9JO3w3viCMNdianq19924bN4yIlnDmAiCG',0,0.00,0,0,0,0,'Active',0,'2022-10-12 13:08:17',NULL,'','',1,1,'',1,'104.50.37.139','104.50.37.139','','','','2022-10-12 23:17:58',2,'0/0/0',9903,7525,0,0,7525,0,0,0,0,0,0,1665617038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2022','dd542bb339e57d2bcf9bdbbf870ac74f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-13',0),(198,'ilse','ilse','','5dollarfriday56@gmail.com','','','','','AU','','$2y$10$IU654FUgmvP1E3RiS6kSxOsSBuWUnREKQ7TKT937eHGLGdcGUte2i',0,0.00,0,0,0,0,'Active',0,'2022-10-17 09:25:55',NULL,'','',1,4,'',0,'187.252.248.81','187.252.250.42','','','','2022-11-21 13:57:12',2,'0/0/0',200000,20000,0,2000,20000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'11/2022','708f3cf8100d5e71834b1db77dfa15d6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-18',0),(199,'julio','julio','','5dollarfriday54@gmail.com','','','','','AU','','$2y$10$Dk3V9HOqECSyshdX8jarf.Kh4kPdYqcCUXo1JFkZqcG.UBJxX9vpW',0,0.00,0,0,0,0,'Active',0,'2022-10-17 09:26:41',NULL,'','',1,4,'',0,'187.252.250.42','187.252.250.42','','','','2022-10-31 19:43:10',1,'0/0/0',100000,10000,0,1000,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2022','7e6b20d014d1c659e4eaf20dc2dcd7eb','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-18',0),(200,'inittowinit','Michael','Harris','drmehsr@gmail.com','','','','','','','$2y$10$MZkLcZTIiidRwuFSA1UoTO5Oyv8g2exXY3zFTqZRol6dBuo0dB0py',176,0.00,0,0,0,0,'Active',0,'2022-10-18 08:19:12',NULL,'','',1,1,'',1,'71.57.221.182','71.57.221.182','','','','2022-10-18 15:22:22',1,'0/0/0',104,425,0,0,425,0,0,0,0,0,0,1666106751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2022','804741413d7fe0e515b19a7ffc7b3027','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-19',0),(201,'koonla','gar','llrl','wanwisanoom.u.a.y.1.6@gmail.com','','','','','','','$2y$10$0xtjAzCkV5YEVk46wb03dum2tMeTfOeMjwbfpncAveqEGLpNo2gyq',176,0.00,0,0,0,0,'Active',0,'2022-10-20 12:50:49',NULL,'','',1,1,'',1,'146.70.99.173','146.70.99.173','','','','2022-10-20 19:51:52',1,'0/0/0',0,425,0,0,425,0,0,0,1692910739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2022','81b44841fd564c347f7f21ae19b97659','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-21',0),(202,'KirkV','Kirk','VanGuilder','kirkv@easywebincome.ws','','','','','US','','$2y$10$7aED6NHZLIvAqAuBXU8DHOjJ53gAf5GQB9r/kdatbPp81gPoQfXOG',131,0.00,0,0,0,0,'Active',0,'2022-10-27 17:34:35',NULL,'','',1,1,'',0,'104.193.114.121','104.193.114.169','','','','2023-09-26 01:27:05',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2022','f44ee263952e65b3610b8ba51229d1f9','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-10-29',0),(203,'julda','Julius','Csicso','vavjul@gmail.com','','','','','','','$2y$10$lzGlM3oASbkdsVQJGpkfM.CBWc0AIDuKhj07ko1Uc5Uh1Mr48hTJ6',141,0.00,0,0,0,0,'Active',0,'2022-11-06 09:54:58',NULL,'','',1,1,'',1,'86.49.245.11','89.103.199.154','','','','2023-06-20 12:48:36',3,'0/0/0',101,450,0,0,25,0,0,0,1773494881,0,0,1667757675,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'06/2023','d10ddbe86fe1df4e50c91d66087cbc6a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-11-07',0),(204,'Rlaws','Rick','Laws','rlaws666@gmail.com','','','','','','','$2y$10$gLyyHlOSqjpUIzx4EQttW.84jbpLMLdNxBGbZkEk85SPkEScHKaJ2',131,0.00,0,0,0,0,'Active',0,'2022-11-13 19:44:13',NULL,'','',1,1,'',1,'24.207.109.61','24.207.103.252','','','','2025-06-04 00:35:34',8,'0/0/0',40.2,525,0,0,525,0,1674903954,0,0,1691953012,1691953012,1669004466,1691953012,0,113,0,0,0,0,15,0,0,0,0,0,0,0,'06/2025','26d4b4313a7e5828856bc0791fca39a2','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-11-15',0),(205,'darlakey','Darla','Key','smwwithclb@gmail.com','','','','','','','$2y$10$Ji4BvX6d2V/uZeIpHQm1/.aw5ODriWwpxDVMK4e4e6UYAv3V4T97y',0,0.00,0,0,0,0,'Active',0,'2022-11-19 14:00:53',NULL,'','',1,1,'',1,'173.191.128.170','173.191.128.170','','','','2022-11-19 22:37:14',2,'0/0/0',99,425,0,0,425,0,0,0,0,0,0,1668897788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'11/2022','69adc1e107f7f7d035d7baf04342e1ca','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-11-20',0),(206,'bbri31','Brian','D','cohoking11@gmail.com','','','','','','','$2y$10$b7.L6U60j2ihM6AzZYnXB.PbDaagtK2kq9xl3XyGrcrbxmyt3dCJK',176,0.00,0,0,0,0,'Active',0,'2022-11-28 09:53:51',NULL,'','',1,1,'',1,'64.180.137.136','64.180.137.136','','','','2023-09-03 18:19:29',6,'0/0/0',2,550,0,0,550,0,0,0,0,1680626891,1680626891,1674671572,1680626891,0,0,0,0,0,0,3,0,0,0,0,0,0,0,'09/2023','29530de21430b7540ec3f65135f7323c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-11-29',0),(207,'Sdiburro51','Scott','Diburro','sdiburro51@gmail.com','','','','','','','$2y$10$noX66rTlW9.NWHhZQ7HKsOcTtA4TuVphDWexGPR5kWll8bFe2sT2i',0,0.00,0,0,0,0,'Active',0,'2022-11-28 15:12:30',NULL,'','',1,1,'',1,'','73.61.242.131','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2bb232c0b13c774965ef8558f0fbd615','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-11-29',0),(208,'MichaelB','Michael','Bell','michael72bell@gmail.com','','','','','','','$2y$10$b2EHgnGxts0k8ja/jwik/ehibqrtfQ4HgQziLWNyridIxOWc7OENK',0,0.00,0,0,0,0,'Active',0,'2022-11-28 16:57:56',NULL,'','',1,1,'',1,'184.14.179.228','50.110.169.138','','','','2025-03-04 00:54:08',17,'0/0/0',86,350,0,0,650,0,1676745941,1694812516,0,1669817300,1669817300,1669683834,1669817300,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'05/2024','b87470782489389f344c4fa4ceb5260c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-11-30',0),(209,'wc0028','Wendell','Clark','smartmoneyx20@gmail.com','','','','','','','$2y$10$2vSq1RWnbbFBu4TJq80hD.HM6.6LSD9vf0fyGNfp3tbnutVwptlka',0,0.00,0,0,0,0,'Active',0,'2022-11-28 19:31:03',NULL,'','',1,1,'',1,'67.173.123.16','67.173.123.16','','','','2023-02-06 04:54:40',2,'0/0/0',203,450,0,0,450,0,0,0,0,1675659053,1675659053,0,1675659053,0,0,0,0,0,0,3,0,0,0,0,0,0,0,'02/2023','e23b16e83342d08d0d3ef4eeed9d3299','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-11-30',0),(210,'johns81','john','sil','dealsonbox@gmail.com','','','','','','','$2y$10$CCERCrm/gsA.eU1V6OatHOdL1omEf9w9.oNIt0yNKkcqWbGVT8qUi',131,0.00,0,0,0,0,'Active',0,'2022-11-29 12:25:29',NULL,'','',1,1,'',1,'32.218.211.59','32.218.211.59','','','','2022-11-29 20:28:17',1,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'11/2022','05b2c0a62ef25ac7c2ea2eb32d3e27bc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-11-30',0),(211,'emmaterbs','Emma','Terblanche','ethome1968@gmail.com','','','','','','','$2y$10$/1Ig8zYL3fBEMOga67zlC.N1y7imqFBSV3CQbuwZWKtNIYdS4uFwS',5,0.00,0,0,0,0,'Active',0,'2022-11-30 10:16:55',NULL,'','',1,1,'',1,'174.1.89.6','174.1.89.6','','','','2022-11-30 18:19:56',1,'0/0/0',93,225,0,0,225,0,1673909908,0,1706059666,0,0,1669832699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'11/2022','4eb82f891b344474e99cab5955f075d7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-01',0),(212,'Raja2345','Rajeswaran','subramaniam','rajesh8163384@gmail.com','','','','','','','$2y$10$Q0k2scBXUPpH/8AWcqS1UeAg46tQhlSTITDqhcVrFJnxxiQOWfiuu',5,0.00,0,0,0,0,'Active',0,'2022-11-30 22:13:18',NULL,'','',1,1,'',1,'38.56.85.146','118.101.169.32','','','','2023-07-17 09:44:38',6,'0/0/0',0,450,0,0,0,0,0,0,1772564577,0,0,1670075664,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'07/2023','1713a23c14b5033adb074b5464fb6c66','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-02',0),(213,'Wilberthea','Tswer','Vrewse','rokiuivoyuui@gmail.com','','','','','','','$2y$10$dqfJ9N8Emz7dFlU2FCWD/uMvw..CV9AE7Uo3y.gLm8mrcjvdcfnoa',176,0.00,0,0,0,0,'Active',0,'2022-12-03 12:40:20',NULL,'','',1,1,'',1,'192.228.231.220','192.228.248.119','','','','2023-01-10 21:14:00',3,'0/0/0',0,450,0,0,450,0,0,0,0,0,0,1672086614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2023','44d5ec303a81339c0d05ec3cab0fccfa','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-04',0),(214,'Rjones2975','Robert','Jones','tony07333392@gmail.com','','','','','','','$2y$10$bMhdvH9r5P2FO.LIoNAAcuBx9.hW4qtm918Gp58Py5aMhF0Hk0W6G',131,0.00,0,0,0,0,'Active',0,'2022-12-04 16:53:22',NULL,'','',1,1,'',1,'72.104.204.25','73.133.42.112','','','','2023-09-07 16:10:11',4,'0/0/0',200,450,0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2023','52bdba949576e6bcec5682a4993bfb58','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-06',0),(215,'dmdbiti49','Constantin','Dumbraveanu','dmdbitisrl1949@gmail.com','','','','','','','$2y$10$xkUlvnU9avPKBhwPp0xjGeWuCD6mnTbkW4WroUEJOR07yzpoc5dAu',204,0.00,0,0,0,0,'Unverified',0,'2022-12-04 20:34:01',NULL,'','',1,1,'',0,'','5.13.125.246','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c783eed3cfc1c978fe76e15af007e0d0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-06',0),(216,'thugy2k','Jeff','Nadro','thug_y2k@hotmail.com','','','','','','','$2y$10$rFZHqffaJhiwFt/xhRnFTORDjZvgtWmu2HrTaD2u/6ON4Yr6k7ubS',0,0.00,0,0,0,0,'Active',0,'2022-12-05 20:11:06',NULL,'','',1,1,'',0,'76.71.221.135','76.71.221.135','','','','2024-05-14 07:55:09',2,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'12/2022','9afe487de556e59e6db6c862adfe25a4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-07',0),(217,'Tjost3','tyler','jost','tylerjost2003@gmail.com','','','','','','','$2y$10$x7UJjiDz47n0wHSkjUS3CuZLNfbXZHz4Gpmi0EEBFO/dL7wwkyzp.',5,0.00,0,0,0,0,'Active',0,'2022-12-08 22:09:37',NULL,'','',1,1,'',1,'149.75.99.70','149.75.99.70','','','','2022-12-09 06:15:18',1,'0/0/0',0,0,0,0,0,0,1672275821,0,1672575681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'12/2022','0a7d7a81e8e3a20e4c34748e98ef45f6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-10',0),(218,'pedro1','Pedro','Xix','5dollarfriday26@gmail.com','','','','','AU','','$2y$10$SlBfgoo5Q9ixa51adDcDb.kL8cbF1MH/EljkxALhukaiVsTj96xOW',0,0.00,0,0,0,0,'Active',0,'2022-12-10 08:41:05',NULL,'','',1,6,'',0,'187.150.214.165','187.150.214.165','','','','2022-12-10 20:46:29',3,'0/0/0',700000,1000000,0,11000000,1000000,0,1775988947,1776788657,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,'12/2022','f442d33fa06832082290ad8544a8da27','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-11',0),(219,'home64','Brenda','SLOAN','sloanb235@gmail.com','','','','','','','$2y$10$8cyITLiFbOk5WpwnpozlVusOolhMgRp8tqo28ebdWUZolawtAKJCW',89,0.00,0,0,0,0,'Unverified',0,'2022-12-12 19:38:22',NULL,'','',1,1,'',0,'','67.48.93.179','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2ea6241cf767c279cf1e80a790df1885','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-14',0),(220,'probillard','Philip','Robillard','big.dreamer57@gmail.com','PO Box 1057','Yellville','Arkansas','72687','US','','$2y$10$aV84wUJgU6Xsx378RBAQleGFEhcu/BxLob/ZsHFGELgXN4tMaoOK6',131,0.00,0,0,0,0,'Active',0,'2022-12-17 23:19:09',NULL,'','therichtwin@gmail.com',1,1,'',1,'216.134.233.250','216.134.233.69','','','','2025-09-23 04:26:06',7,'0/0/0',10,100,0,0,100,0,0,0,0,1758601372,1758601372,0,1758601372,0,48,0,0,0,0,10,0,0,0,0,0,0,0,'09/2025','90306a0237c000d33f4dbd3f8f41ba7c','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-19',0),(221,'simkesrb','Zoran','Simovic','simkekg@gmail.com','','','','','','','$2y$10$wSAsim0Zy0CSl2fY88izZOI5J7dSMpI9QOPX2G.bO41GSwuNvnvNa',176,0.00,0,0,0,0,'Active',0,'2022-12-18 17:05:08',NULL,'','',1,1,'',1,'24.135.148.96','178.237.218.226','','','','2024-09-30 18:22:01',4,'0/0/0',762,500,0,0,500,0,0,0,0,1693575635,1693575635,1727720665,1693575561,0,74,0,0,0,0,6,0,0,0,0,0,0,0,'09/2024','ea1818cbe59c23b20f1a10a8aa083a82','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-20',0),(222,'aace78','Alvin','John','ajmarketsite@gmail.com','','','','','','','$2y$10$BgYl2/GgFHTiVi20PhFFJeS2kBWCZqGpISmMB0fdEV4DNjp2IGN6u',0,0.00,0,0,0,0,'Active',0,'2022-12-20 00:16:10',NULL,'','',1,1,'',1,'8.3.127.62','8.3.127.195','','','','2023-07-02 05:02:26',10,'0/0/0',146,430,0,0,450,0,1691516930,1702078900,0,1687732469,1687732469,1687620532,1687732469,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'06/2023','8b4066554730ddfaa0266346bdc1b202','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-21',0),(223,'Migz1218','Michelle','Bagacina','michellecaiga1218@gmail.com','','','','','','','$2y$10$L4MSwY/5wCmBBi3ZlqOQsu3XW5C38YE/2fwqa2erE0TT/i7qZsj9W',5,0.00,0,0,0,0,'Unverified',0,'2022-12-27 02:04:23',NULL,'','',1,1,'',0,'','112.210.252.165','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','dcd2f3f312b6705fb06f4f9f1b55b55c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-28',0),(224,'Travisn','Travis','Neutzman','ezcash00@gmail.com','','','','','','','$2y$10$gAmozDflvcXWkuUtBdTFDOAigNubXvv5.nBobkrJx9usLoIw8RyzK',0,0.00,0,0,0,0,'Active',0,'2022-12-27 23:54:26',NULL,'','',1,1,'',1,'24.18.143.245','24.18.143.245','','','','2023-01-06 22:47:55',3,'0/0/0',200,450,0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2023','a1afc58c6ca9540d057299ec3016d726','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-29',0),(225,'snack','Justin','l','nimol34@gmail.com','','','','','','','$2y$10$S.0ermRZxYGENIqnbaz6leHBD1l8mT2bshb/5AtJpoT1rVsEteCoa',131,0.00,0,0,0,0,'Active',0,'2022-12-29 12:35:00',NULL,'','',1,1,'',1,'172.58.19.250','172.58.19.250','','','','2022-12-29 20:37:28',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'12/2022','8c01a75941549a705cf7275e41b21f0d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2022-12-30',0),(226,'tammi287','Kernisha','H','kernisha@gmail.com','','','','','','','$2y$10$3sFLe6rd5CM0daQ6aa1JDeGsl7P430yMUXCJLT270VqcdpJxhr1Ci',141,0.00,0,0,0,0,'Active',0,'2023-01-01 20:30:01',NULL,'','',1,1,'',1,'89.187.185.165','89.187.185.171','','','','2023-03-06 01:46:30',5,'0/0/0',478,425,0,0,300,0,1676341206,1678287824,1760975590,1714260033,1714260033,1677960027,1714260033,0,230,0,0,0,0,149,2,0,0,0,0,0,0,'03/2023','aa942ab2bfa6ebda4840e7360ce6e7ef','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-03',0),(227,'kdahlin','Karen','Dahlin','ebizmarketer1@gmail.com','','','','','','','$2y$10$gjLClRdXecY6UkmxtueQpOLYYuEg38.cCaWQIcSz/WexprvuCFniy',0,0.00,0,0,0,0,'Active',0,'2023-01-03 11:27:11',NULL,'','',1,1,'',1,'72.92.224.72','173.69.10.92','','','','2024-05-31 12:30:19',11,'0/0/0',138,500,0,0,500,0,1748742712,0,1673476048,1717158700,1717158700,1673101483,1717158700,0,181,0,0,0,0,18,0,0,0,0,0,0,0,'05/2024','3e98410c45ea98addec555019bbae8eb','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-04',0),(228,'Tripp','Tripp','Tri','b.estwayztomakemoneyonline@gmail.com','','','','','','','$2y$10$SclkhTC1AnQeFssOwpEyLeYPP5If8/BToKVZtwbtciTyKqlb6Wune',176,0.00,0,0,0,0,'Active',0,'2023-01-04 08:42:12',NULL,'','',1,1,'',1,'154.159.252.16','154.159.252.16','','','','2023-01-04 16:42:40',1,'0/0/0',83,425,0,0,425,0,0,0,0,0,0,1672850615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2023','aad21787ac6487a4c71234ac4141e1a8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-05',0),(229,'Gallardo','Gall','Gallardo','be.stwayztomakemoneyonline@gmail.com','','','','','','','$2y$10$BfaC4A4RRyjwm9.XD67p9.84MsrK/LHFjwc68Yg/zQWsYmz6F8Pee',0,0.00,0,0,0,0,'Unverified',0,'2023-01-05 14:37:33',NULL,'','',1,1,'',0,'','105.161.37.177','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2cbca44843a864533ec05b321ae1f9d1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-06',0),(230,'renegade','Jack','Kind','info@renegadecash.fun','','','','','','','$2y$10$QSqkf6p5t1vd93E1dEHYbelk1iFL/yDfweN7X.GEdnEUp8mjHfF8e',0,0.00,0,0,0,0,'Active',0,'2023-01-08 04:34:08',NULL,'','',1,1,'',0,'172.58.178.76','172.58.181.32','','','','2023-01-11 15:18:26',6,'0/0/0',0,425,0,0,425,0,0,0,1775391220,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'01/2023','8452a95c40e2b232acd9b8a8712935d7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-09',0),(231,'Theareetweet','Vews','Rewsw','yucyuitu0779@gmail.com','','','','','','','$2y$10$T30yZPRw5FPUKH6BizutQOVUCrVQZIEeOWDFwLPCdUmfWi2xTV1AS',176,0.00,0,0,0,0,'Active',0,'2023-01-10 13:15:00',NULL,'','',1,1,'',1,'192.228.231.220','192.228.231.220','','','','2023-01-10 21:15:49',1,'0/0/0',81,425,0,0,425,0,0,0,0,0,0,1673385418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2023','b4a721cfb62f5d19ec61575114d8a2d1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-11',0),(232,'LeadersClub','David','Robertson','trowermeister@gmail.com','','','','','','','$2y$10$up/fxeRMF4hM2HtYf8hqXOMfJ1/SPIxa4Nb66o25LvI/fCFVIePo.',131,0.00,0,0,0,0,'Active',0,'2023-01-10 17:07:55',NULL,'','',1,1,'',1,'123.3.155.116','49.185.154.207','','','','2023-06-09 23:48:16',2,'0/0/0',3,50,0,0,50,0,0,0,0,1714558434,1714558434,0,1714558434,0,0,0,0,0,0,3,0,0,0,0,0,0,0,'06/2023','28f0b864598a1291557bed248a998d4e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-12',0),(233,'richyrich','Richard','Granzow','advertisingblowoutmails@gmail.com','','','','','','','$2y$10$0j5jy9U8BdQntVSBWHdJluEaULhB1AHMfYsIDhwa/8oZhUO8EknX2',141,0.00,0,0,0,0,'Active',0,'2023-01-10 20:37:07',NULL,'','',1,1,'',1,'97.128.146.224','72.107.76.243','','','','2023-05-03 10:12:08',14,'0/0/0',5,75,0,0,50,0,1673903408,1775735330,1775421500,1673632161,1673632161,1679391651,1673632161,0,29,0,0,1,1,3,0,0,0,0,0,0,0,'05/2023','49cbb75927723efba3b4c108ed4a12f3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-12',0),(234,'bridgetmalone','Bridget','Malone','bridgetmalone370@gmail.com','','','','','','','$2y$10$rc8h.Poz6lW/1nL.hb.SkedSZsy5dmobRaz7gbpHUDfH5L.cqzQEi',22,0.00,0,0,0,0,'Active',0,'2023-01-13 12:15:09',NULL,'','',1,1,'',1,'98.54.210.202','73.59.199.239','','','','2023-06-01 15:53:59',3,'0/0/0',1,75,0,0,75,0,1676854055,1678241612,1677227637,1685634869,1685634869,0,1685634869,0,389,0,0,0,0,10,0,0,0,0,0,0,0,'06/2023','b71155d90aef3bc38cb92db5a9afe4ce','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-14',0),(235,'Diane2023','Diane','washington','dw420944@gmail.com','','','','','','','$2y$10$tyU0YjQJxUVkJmq5O7pAX.mqyMfP1LEvqYBgXghEf0xSACar.ZzhS',5,0.00,0,0,0,0,'Unverified',0,'2023-01-16 19:27:07',NULL,'','',1,1,'',0,'','76.145.221.178','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b7fede84c2be02ccb9c77107956560eb','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-18',0),(236,'DAHIT','AMADI','CHIBUIKECALEB','utowanyic@gmail.com','','','','','','','$2y$10$mCdwpheGoMY5Bm0XK.uKz.uDHL1ZPSDgBPfCvq9Ka.w3GrkT6ycQi',0,0.00,0,0,0,0,'Active',0,'2023-01-18 21:49:41',NULL,'','',1,1,'',1,'160.152.173.230','160.152.173.230','','','','2023-01-19 05:50:36',1,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2023','61f3a6dbc9120ea78ef75544826c814e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-01-20',0),(238,'cqueen','Juel','Daniel','preciousjuel50@gmail.com','','','','','','','$2y$10$.TFMC5L5yH6NP8OfxYk.JulD6viajc/yufOg5l2TP1yLFj9k3bHNm',0,0.00,0,0,0,0,'Active',0,'2023-02-03 09:07:49',NULL,'','',1,1,'',1,'98.142.160.138','98.142.160.138','','','','2023-02-03 17:09:54',1,'0/0/0',200,400,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','301ad0e3bd5cb1627a2044908a42fdc2','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-02-04',0),(239,'jrodriguez8386','jose','rodriguez','soloads.traffic2021@gmail.com','','','','','','','$2y$10$IlVanMKxbCT1JzrAs5R.7.NtYhVnGoKYAGWE2duxKY.Hi/ywnJgRq',0,0.00,0,0,0,0,'Active',0,'2023-02-04 16:28:15',NULL,'','',1,1,'',1,'73.51.215.176','73.51.215.176','','','','2024-01-24 01:25:15',7,'0/0/0',167,450,0,0,400,0,1702675642,0,1773494936,1706059666,1706059666,0,1706059666,0,141,0,0,0,1,15,0,0,0,0,0,0,0,'01/2024','beb22fb694d513edcf5533cf006dfeae','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-02-06',0),(240,'henkbruser1000','henk','bruser','bruserdave22@gmail.com','','','','','','','$2y$10$orY0ELGweyAJdARumZhtO.XOIDM29a6mMAkKsrM/AIivxxuZTWdqK',0,0.00,0,0,0,0,'Unverified',0,'2023-02-07 05:45:13',NULL,'','',1,1,'',0,'','77.170.249.134','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','639d79cc857a6c76c2723b7e014fccb0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-02-08',0),(241,'Yeakedealke','Tswcer','Gtrew','rooputii77865@gmail.com','','','','','','','$2y$10$N1lt.VMt8EfRt4CcKwcRBe3MEIoLHYKbtNSXOalLQdNda/QNxs6ja',176,0.00,0,0,0,0,'Active',0,'2023-02-10 11:36:37',NULL,'','',1,1,'',1,'192.228.227.247','192.228.227.247','','','','2023-02-10 19:37:06',1,'0/0/0',74,425,0,0,425,0,0,0,0,0,0,1676057877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'02/2023','e44fea3bec53bcea3b7513ccef5857ac','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-02-11',0),(242,'LarryR','Larry','Roach','larry_roach@comcast.net','','','','','','','$2y$10$Wm9oSCp3bMkTCh/QHeh/Z.6I50WH6sPKAXiSLG/fEtFiuzsvIt2K.',131,0.00,0,0,0,0,'Active',0,'2023-02-11 12:37:53',NULL,'','',1,1,'',1,'67.20.2.15','172.8.139.64','','','','2026-03-28 20:41:32',94,'0/0/0',4,300,0,0,375,0,1691429472,0,0,1735831904,1735831904,1719349724,1735831904,0,115,0,0,0,0,257,0,0,0,0,0,0,0,'03/2026','b27d5296bede63b1493a5d321d4e8092','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-02-12',0),(243,'hlynette','Lynette','Haynesworth','hlynette3d@gmail.com','','','','','','','$2y$10$BC30mnuIaAG83XcPQAhvheH1KYRP9En6ze1CQgSF4mqNsLh./XBGK',5,0.00,0,0,0,0,'Active',0,'2023-02-12 06:40:21',NULL,'','',1,1,'',1,'69.122.86.10','69.122.86.10','','','','2023-02-12 14:53:22',2,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'02/2023','2fcd5cf1ebcd4213d8a17edc4cd47ad7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-02-13',0),(244,'shazia1st','shazia','dilawer','shazia.dilawer99@gmail.com','','','','','','','$2y$10$F2Fr/oXvb0aokgP3hCLhN.OSpoI6nIp2kxdDzGpLVAgKEykgvfJD6',5,0.00,0,0,0,0,'Unverified',0,'2023-02-14 14:53:45',NULL,'','',1,1,'',0,'','103.18.22.78','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','84253ffce9853bdf2518c53ddf3bce65','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-02-15',0),(245,'theintrepidadvertiser','Charles','Brewer','advertisinghaven5@gmail.com','','','','','','','$2y$10$WPIrmsNtKF7Thrhzkx9wpOYqMAMblBV34HR8LQSN1ijvLsmQMSjR.',5,0.00,0,0,0,0,'Active',0,'2023-02-17 14:04:27',NULL,'','',1,1,'',1,'72.208.166.160','72.208.166.160','','','','2023-02-17 22:31:57',1,'0/0/0',153,425,0,0,425,0,0,0,0,1741488844,1741488844,1676673904,1741488844,0,0,0,0,0,0,58,1,0,0,0,0,0,0,'02/2023','cd8d5260c8131ca7aeea5d41796d1a0a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-02-18',0),(246,'Joshuacuna','Trews','Vrewqw','rotjikppo5993@gmail.com','','','','','','','$2y$10$Vk9c.shXyIzwpMYlt8mc2.7Yph0GVSeNr6OMqyMgPvSN4rkcZpsrO',176,0.00,0,0,0,0,'Active',0,'2023-03-01 07:59:38',NULL,'','',1,1,'',1,'173.245.211.183','173.245.211.163','','','','2023-03-08 20:11:03',2,'0/0/0',71,425,0,0,425,0,0,0,0,0,0,1677686501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2023','0a30a980e3540e51eb25423caa79f0cb','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-02',0),(247,'infopicz','Jules','Tomlinson','creditsolo@gmail.com','','','','','AU','','$2y$10$foxAUi3D4sZMsvMLBN2cP.ikUAd7TbKnTt7JynnXBoOOF9Q0VL8Q.',0,0.00,0,0,0,0,'Active',0,'2023-03-01 14:27:27',NULL,'','',1,1,'',1,'31.125.221.104','31.125.221.104','','','','2023-12-29 10:30:37',4,'0/0/0',71000,40475,0,0,40475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'12/2023','48f7d3043bc03e6c48a6f0ebc0f258a8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-02',0),(248,'larry79','Larry','Harper','larry2052@gmail.com','','','','','','','$2y$10$A/YG5o4ZrQMUX5J5VKnYlepGnrcgqrNBH5xbSduEylJ1Z7WsKWEWm',5,0.00,0,0,0,0,'Unverified',0,'2023-03-07 12:32:17',NULL,'','',1,1,'',0,'','155.94.99.180','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e7d4c8d4fe04d9b4539a075d809c6d01','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-08',0),(249,'gfrizzell','Garry','Frizzell','elite_747@hotmail.com','','','','','','','$2y$10$xTQxgEAIOdHKY/nf4HKYx.0MuE6AVGvQVt3.r8S9uBjYRWnkXiScK',131,0.00,0,0,0,0,'Active',0,'2023-03-07 23:22:23',NULL,'','',1,1,'',1,'188.215.95.17','188.215.95.182','','','','2023-03-10 21:51:53',6,'0/0/0',7,425,0,0,425,0,1681172403,0,1718238594,1678837830,1678837830,0,1678837830,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'03/2023','b7f7ada7d848002260ee5eb7d8835709','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-09',0),(250,'vibuyer','Ashield','Hodge','coachashield@gmail.com','','','','','','','$2y$10$DtJrMhHDHJF2iRw3UFihh.GTZHOPLVHXopO81woXOXTjYqXDThrBO',5,0.00,0,0,0,0,'Active',0,'2023-03-08 07:01:37',NULL,'','',1,1,'',1,'69.222.132.175','69.222.132.175','','','','2023-03-08 15:03:44',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2023','5acdc9ca5d99ae66afdfe1eea0e3b26b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-09',0),(251,'Rystoned','Vewss','Treww','tunvuruu299776@gmail.com','','','','','','','$2y$10$dNTaDYqDk3joGVT45eqHFenYR7yZneg2YvX81yx3y1AS0tva3XTGe',176,0.00,0,0,0,0,'Active',0,'2023-03-08 12:12:01',NULL,'','',1,1,'',1,'173.245.211.183','173.245.211.183','','','','2023-03-08 20:12:32',1,'0/0/0',67,425,0,0,425,0,0,0,0,0,0,1678306387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2023','83dc55aeb13cc9f621dcbaa80304d506','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-09',0),(252,'cryptome102','anthony','hambrick','awbrickscash@gmail.com','','','','','','','$2y$10$lP4DKl0QdZ4bJHWTXLulPe.ODJ8tLVR4CL7RbFLvbXfpOYfY4Y1T.',5,0.00,0,0,0,0,'Unverified',0,'2023-03-09 06:45:56',NULL,'','',1,1,'',0,'','67.215.1.147','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','de6b1cf3fb0a3aa1244d30f7b8c29c41','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-10',0),(253,'Tonyshley','Ytwer','Vreww','ropyutice1009@gmail.com','','','','','','','$2y$10$rGlxfh4/v/UirXafKuIibecHFVDpsqY8.V0a4XqtyggpKDvM82nbu',176,0.00,0,0,0,0,'Active',0,'2023-03-13 10:05:39',NULL,'','',1,1,'',1,'103.107.197.44','103.107.197.44','','','','2023-03-13 17:06:18',1,'0/0/0',66,425,0,0,425,0,0,0,0,0,0,1678727219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2023','205c3608ecb984c1f5f5d2f52c934428','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-14',0),(254,'c0y0t3','Wiley','Sawyer','sawyerwb.502@gmail.com','','','','','','','$2y$10$uMURaN1pEncnqZ4EwtXgruSDgs1DDc3NBbCdOzcyle4wEz6693are',0,0.00,0,0,0,0,'Active',0,'2023-03-14 13:03:34',NULL,'','',1,1,'',1,'174.193.117.29','186.233.186.135','','','','2024-12-29 22:43:56',4,'0/0/0',0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'12/2024','01161aaa0b6d1345dd8fe4e481144d84','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-15',0),(255,'lifeway','sanjay','vaghasiya','lifeway9900@gmail.com','','','','','','','$2y$10$j6zI5qM3SVNXxDHMFrs6QedzlWH.dwvv/FTWPZmCeQ5OP6V1mwbW2',0,0.00,0,0,0,0,'Active',0,'2023-03-17 23:09:43',NULL,'','',1,1,'',1,'42.108.196.66','42.108.196.152','','','','2023-03-20 14:00:31',2,'0/0/0',1,25,0,0,25,0,0,0,0,1679320800,1679320800,0,1679320800,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'03/2023','3bc71faebe42e1639eb6fded38d714cd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-19',0),(256,'adeuk72','Adrian','Burnett','adeuk72@gmail.com','','','','','','','$2y$10$OyIMYJquctzSCS.Y1mYWG.UdAJb1gfAoq2TpDVuT3NPxdpF6BFc6K',0,0.00,0,0,0,0,'Active',0,'2023-03-27 03:16:50',NULL,'','',1,1,'',1,'92.31.155.64','79.79.116.126','','','','2024-03-27 10:28:30',3,'0/0/0',0,0,0,0,0,0,1681739715,0,1770821289,0,0,1679912923,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'04/2023','b05bf587ec7ce83518b72eb0d011a353','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-28',0),(257,'Arnos','Arno','Spies','arnosmarketing@gmail.com','','','','','','','$2y$10$QD/T.98lPKtCj94bmsBrLeVRIqv7dLJ/V2rFwJR2BhUYB4p84ekiS',5,0.00,0,0,0,0,'Active',0,'2023-03-28 03:49:52',NULL,'','',1,1,'',1,'197.90.158.24','197.90.69.164','','','','2023-03-28 12:35:45',1,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2023','20cf775fa6b5dfe621ade096f5d85d52','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-29',0),(258,'highflier','David','Hulse','david.hulse1@gmail.com','','','','','','','$2y$10$73UoVZAhIvKPG3E1rsRYFOUuA3LK4SumyhCxqHUDOGAiMIbG1Z53m',5,0.00,0,0,0,0,'Active',0,'2023-03-28 04:16:22',NULL,'','',1,1,'',1,'109.156.143.152','109.156.143.152','','','','2023-03-28 11:19:56',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2023','2974788b53f73e7950e8aa49f3a306db','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-29',0),(259,'jankra','Janusz','Krawczak','januszjankra@gmail.com','','','','','','','$2y$10$JZDp1OJIWvm2UmgEEQfRs.B8IsrrnPa79M/6GyD1a95NGENfXl3cy',5,0.00,0,0,0,0,'Active',0,'2023-03-28 06:34:02',NULL,'','',1,1,'',0,'46.134.165.196','46.134.165.196','','','','2024-10-25 18:19:46',1,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2023','0d5bd023a3ee11c7abca5b42a93c4866','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-29',0),(260,'Scholarv23','Tianno','Edmondson','tiannoedmondson@gmail.com','','','','','','','$2y$10$OtZfD828kMHi0Ad0Fv.rR.0vY7DOJbWVbeb.fwZfj.OQ/OCHWz48W',5,0.00,0,0,0,0,'Active',0,'2023-03-28 08:54:55',NULL,'','',1,1,'',1,'104.152.239.57','104.152.239.57','','','','2023-04-08 23:58:57',2,'0/0/0',101,450,0,0,450,0,0,0,0,1680998327,1680998327,1680019363,1680998327,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'04/2023','79fde5402cbc75ae0615c9ae4c335b46','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-29',0),(261,'Ambers616','Amber','Seitz','aseitz03302015@gmail.com','','','','','','','$2y$10$p6Zt.vv6/8DLLZYkVFXiSennAKliV39R.TU8Na6KGMGcgg38eaKZq',5,0.00,0,0,0,0,'Active',0,'2023-03-28 13:29:10',NULL,'','',1,1,'',1,'172.59.112.206','98.183.255.32','','','','2023-06-27 07:21:56',2,'0/0/0',0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2023','e614f646836aaed9f89ce58e837e2310','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-03-29',0),(262,'cashlinkers','GoddyKen','Madukwe','cashlinkersbiz@gmail.com','','','','','','','$2y$10$2a3FQtgUzIXoZjp7hi60ee77xS1CWUecFlJSNAvo465.pL/KR0gau',5,0.00,0,0,0,0,'Active',0,'2023-03-31 01:35:37',NULL,'','',1,1,'',1,'197.210.79.112','197.210.85.224','','','','2023-08-01 01:40:58',2,'0/0/0',1,0,0,0,0,0,1701130884,0,1716135834,1690854025,1690854025,0,1690854025,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'08/2023','82f5e54d8e425cf93af25e86b4be04f8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-04-01',0),(263,'papawstv','Michael','Lines','viralmailz.dlnglobal@gmail.com','','','','','','','$2y$10$1VerxOdqLu1xpU6koGOPwOsD19LdqM/macf2vmMgv0osK08cMHi1e',141,0.00,0,0,0,0,'Active',0,'2023-04-11 07:09:43',NULL,'','',1,1,'',1,'75.183.155.109','75.183.155.109','','','','2023-04-11 14:46:21',1,'0/0/0',204,25,0,0,25,0,1772564585,0,1772117888,1682539660,1682539660,0,1682539660,0,0,0,1,0,1,4,0,0,0,0,0,0,0,'04/2023','14eac0d254a6ccaf9b67584c7830a5c0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-04-12',0),(264,'ckoch','Claire','Koch','goaltosucceed@gmail.com','','','','','','','$2y$10$0nQxrfDHwU8ZNeGkNmJCOuuS7nz7flJ2eYuaVLBpOXLPy1bcvUJum',22,0.00,0,0,0,0,'Active',0,'2023-04-16 18:12:32',NULL,'','',1,1,'',1,'199.168.73.178','199.168.73.178','','','','2023-04-17 01:14:27',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2023','97ea3cfb64eeaa1edba65501d0bb3c86','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-04-18',0),(265,'Bound2evil1','Jeff','Burton','amasteraffiliate@gmail.com','135 Sleepy Hollow Rd','STANTON','KY','40380','US','6064985338','$2y$10$COyTzgBJW.2M.CRbB68/m.RRuvyglLML4JH0SlkAD/cUtANtHT6xS',5,0.00,0,0,0,0,'Active',0,'2023-04-17 06:08:13',NULL,'','crypticchaos82@gmail.com',1,1,'',1,'107.77.236.91','107.77.237.99','','','','2023-04-20 01:36:21',5,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2023','054ab897023645cd7ad69525c46992a0','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-04-18',0),(266,'Ambbro1150','Amber','Seitz','aseitz03302015@outlook.com','','','','','','','$2y$10$NYf/1NTGTffxTNC8lX71u.2rODfNgv2OXHH0aBvPET9kl8V/C7oeO',5,0.00,0,0,0,0,'Active',0,'2023-04-17 22:17:25',NULL,'','',1,1,'',1,'172.59.112.206','207.244.85.155','','','','2023-06-27 07:13:10',2,'0/0/0',5000,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2023','b7ae8fecf15b8b6c3c69eceae636d203','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-04-19',0),(267,'KantanKen','Kantan','Ken','kenoptimal@aol.com','','','','','AU','','$2y$10$ivDpC2aVFrUAzO6UASQhk.x4UBeF6N5gCq1Eid6S3nIqXQSAY1i3.',0,0.00,0,0,0,0,'Active',0,'2023-04-22 13:41:49',NULL,'','',1,3,'',1,'172.250.28.237','146.70.174.211','','','','2023-04-22 22:59:55',1,'0/0/0',500000,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2023','2cfa8f9e50e0f510ede9d12338a5f564','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-04-25',0),(268,'Aissam','Aissam','Aissam','aissamoumhamad329@gmail.com','','','','','','','$2y$10$uYFYZugUPXgBko8qodJfH.q0GvN2GwUmsObVq9ahgbePKSaHer4ca',75,0.00,0,0,0,0,'Active',0,'2023-04-24 10:40:06',NULL,'','',1,1,'',1,'196.65.140.106','196.65.140.106','','','','2023-04-24 17:41:41',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2023','748d6b6ed8e13f857ceaa6cfbdca14b8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-04-25',0),(269,'ScottandTito','Scott','Wirth','goingforprofit@gmail.com','','','','','','','$2y$10$ZxnMJO8uKZkZpfq3CNQDoOItWJcfnVu/C/vAUdLKTbZYDOwGtddym',5,0.00,0,0,0,0,'Active',0,'2023-04-29 02:11:44',NULL,'','',1,1,'',1,'185.141.119.65','185.141.119.103','','','','2023-06-20 08:54:11',6,'0/0/0',15,75,0,0,75,0,1693332422,0,0,1692346714,1692346714,0,1692346714,0,30,0,0,0,0,26,0,0,0,0,0,0,0,'06/2023','73740ea85c4ec25f00f9acbd859f861d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-04-30',0),(270,'archerr','Ivan','Kuntin','ikuntin59@gmail.com','','','','','','','$2y$10$89yIb8WjM2uHnphOvq1Kju6CcdPpEf0KzL3my8HOGiRK1.h9vkMDu',5,0.00,0,0,0,0,'Active',0,'2023-04-30 12:08:12',NULL,'','',1,1,'',0,'93.139.73.162','93.139.73.162','','','','2024-09-19 13:07:54',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2023','fc192b0c0d270dbf41870a63a8c76c2f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-05-01',0),(271,'ronaldkimber','Ronald','Kimber','ronaldkimber2@gmail.com','','','','','','','$2y$10$OVuXrtYZwqBjnOUwVHn5bukK5MoAovRJTUEKvj.R0bpOC.Ai7DPuK',5,0.00,0,0,0,0,'Active',0,'2023-05-09 17:26:38',NULL,'','',1,1,'',1,'71.227.48.218','71.227.48.218','','','','2023-05-10 00:27:43',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'05/2023','dda99de58ff020cfb57fec1404c97003','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-05-11',0),(272,'LindaErAgs','LindaErAgs','LindaErAgsHR','r.e.ed25167@gmail.com','','','','','','','$2y$10$OFwunsmXdRlbDJlpcYggRuLEhdCjiUoTfu.Zh/rGffQF3tHe0Eqka',5,0.00,0,0,0,0,'Unverified',0,'2023-05-12 02:41:03',NULL,'','',1,1,'',0,'','216.73.163.179','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5eb13cb69b6e20dd7a42030f5936a9dc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-05-13',0),(273,'zrazy','ZafarAhmed','Memon','rianyuzoza@gmail.com','','','','','','','$2y$10$kUeRjvjPA6lpGImnMhjwGO8UABnwGOB6NZ5tQDaq3luhHa/3H0GpS',0,0.00,0,0,0,0,'Active',0,'2023-05-14 00:53:02',NULL,'','',1,1,'',1,'39.41.142.10','39.41.142.10','','','','2023-05-14 07:54:09',1,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'05/2023','7ca57a9f85a19a6e4b9a248c1daca185','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-05-15',0),(274,'BrianNderitu','Brian','Nderitu','bmunjugaa@gmail.com','','','','','','','$2y$10$DQqUMDkXxfqHKA7Vh4hfxuoToNywLBZ1lIAn8oz5/AgpZSN4Rhr1a',0,0.00,0,0,0,0,'Active',0,'2023-05-22 02:30:58',NULL,'','',1,1,'',1,'102.223.33.254','102.223.33.3','','','','2023-06-02 13:17:51',2,'0/0/0',0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2023','326fb04c3abf030fe3f4e341f39b573f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-05-23',0),(275,'jimrogers28','James','Rogers','prosperityisthekey@gmail.com','209-15 18th Ave. - Apt. 2K','Bayside','NY','11360','US','5168088728','$2y$10$8s7UIpjSgtE8jA/14akywOIAWoSASTqVUu4Nu8Zzr/EUrukEf/BrG',5,0.00,0,0,0,0,'Active',0,'2023-05-22 13:00:44',NULL,'','jwrppl@gmail.com',1,1,'',1,'98.7.97.197','98.7.97.197','','','','2023-05-22 23:05:06',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'05/2023','d714d2c5a796d5814c565d78dd16188d','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-05-23',0),(276,'moretraffic','im','m','earnmorewiththesetips@gmail.com','','','','','','','$2y$10$CzH7LThqsDSTs0HUkwdekuMLMo3U/JzPMTnbV7vBM2kNF/eKIzjqq',204,0.00,0,0,0,0,'Unverified',0,'2023-05-30 09:21:38',NULL,'','',1,1,'',0,'','169.150.196.10','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','fedc604da8b0f9af74b6cfc0fab2163c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-05-31',0),(277,'Snyps50','Jason','Wright','jw069182@gmail.com','','','','','','','$2y$10$EytS81DTjbJP0Iz.Tlqb2.O/iZC68Al5t2Mm5Iy9WKw5KP9ffGRDq',269,0.00,0,0,0,0,'Unverified',0,'2023-06-01 11:02:29',NULL,'','',1,1,'',0,'','204.16.112.103','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','12092a75caa75e4644fd2869f0b6c45a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-02',0),(278,'ChasGibb','Chas','Gibbons','c9544183@gmail.com','Ave Roberto Eisenmann 45','Las Lajas','Panama Oeste','','PA','','$2y$10$zRhHBdmdHPFd1S27NGrtYea1dmpwFoX3B3dwMbZKARJ8w5onf27R6',34,0.00,0,0,0,0,'Active',0,'2023-06-02 11:12:12',NULL,'','chasgibbenterprise@gmail.com',1,1,'',1,'190.219.34.171','190.219.34.171','','','','2023-06-02 20:38:11',3,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2023','bc3ea21614e0fdc4359bdd4d3315313f','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-03',0),(280,'cyclone123','rubyj','WASHINGTON','grealb@gmail.com','','','','','','','$2y$10$E.UJvm8.qlP5My2Dtc3AOO5L/lMeZ2eHTaPlqsxJeoM8vPy9A9kA.',0,0.00,0,0,0,0,'Active',0,'2023-06-03 03:57:40',NULL,'','',1,1,'',1,'107.219.34.32','107.219.34.32','','','','2023-06-03 12:03:14',2,'0/0/0',1,425,0,0,425,0,0,0,1775979157,1741480453,1741480453,0,1741480453,0,0,0,0,0,1,1,0,0,0,0,0,0,0,'06/2023','8b3bac12926cc1d9fb5d68783376971d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-04',0),(281,'MarketingMoosi','Marketing','Moosi','hmadsno1@gmail.com','','','','','','','$2y$10$VX2fVsXjTqemhlsfwf/oH.IG9HwiJUHCIzTt/KoBgu9U5f4hxHOw2',204,0.00,0,0,0,0,'Active',0,'2023-06-06 11:04:00',NULL,'','',1,1,'',1,'102.182.190.212','102.182.190.212','','','','2023-06-06 18:08:08',2,'0/0/0',1,0,0,0,0,0,1687978340,0,1775988947,1687130332,1687130332,0,1687130332,0,0,0,0,0,1,1,0,0,0,0,0,0,0,'06/2023','54e8912427a8d007ece906c577fdca60','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-07',0),(282,'novanotion','William','Gould','mymailermail@gmail.com','353 Salmon River Rd.','Valley','Nova Scotia','B6L 4E6','CA','','$2y$10$/wQAMwY86RaHnKy6OI106OsL9a/utmTw0lkIcuLe773D072vdk96.',5,0.00,0,0,0,0,'Unverified',0,'2023-06-09 06:24:29',NULL,'','mail@williamhgould.me',1,1,'',1,'173.252.4.17','173.252.4.17','','','','2023-06-14 13:02:48',3,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2023','33beffd09a1b020d1187c6b4b264014a','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-10',0),(283,'69nerim','Faya','Missouga','mfaubert503@gmail.com','','','','','','','$2y$10$MrlJWEIJiTKMMrUbfJDbGeYsiaBAjUpIfatmgBXyVSsyA7QWFAdEe',0,0.00,0,0,0,0,'Active',0,'2023-06-09 19:56:35',NULL,'','',1,1,'',0,'96.255.93.89','96.255.93.89','','','','2024-09-18 18:06:18',4,'0/0/0',1,425,0,0,425,0,0,0,1776203124,1687036661,1687036661,1687033770,1687036661,0,0,0,0,0,1,1,0,0,0,0,0,0,0,'06/2023','9d740bd0f36aaa312c8d504e28c42163','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-11',0),(285,'CLGPP4662L','LAKHIKANTA','PAUL','246lakhikantapaul@gmail.com','Keshabpur Pal Para','Howrah','West Bengal','711411','IN','9477885647','$2y$10$RJE0r.S9PSim2HBrMZmAUuiTn.TFn7T8nSxs5BO1hUmT1Oe2XZCeu',5,0.00,0,0,0,0,'Active',0,'2023-06-10 16:59:29',NULL,'','lakhikantapaul176@gmail.com',1,1,'',1,'117.227.103.152','117.227.111.137','','','','2023-09-02 03:46:37',3,'0/0/0',0,75,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2023','b4edda67f0f57e218a8e766927e3e5c5','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-11',0),(286,'techiety','Tyler','Fiorentino','tyler@techiety.ca','','','','','','','$2y$10$ugl1mLUi/qj7hInKX8fQRuKv90wE5IKd9EKhYusGFQSPa7tHGRZZa',131,0.00,0,0,0,0,'Active',0,'2023-06-12 12:58:14',NULL,'','',1,1,'',0,'50.92.5.252','50.92.5.252','','','','2023-06-21 20:16:31',1,'0/0/0',1001,25,0,0,25,0,0,0,0,1687202881,1687202881,0,1687202881,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'06/2023','e56954b4f6347e897f954495eab16a88','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-13',0),(287,'Lahyandjeh','Washington','Okumu','lahyandjeh@gmail.com','','','','','','','$2y$10$O/xScNyXFnDnclbnDqcvA.Mxiae4CX2h6Ga2QeqZ1E38KH1p0VUcS',204,0.00,0,0,0,0,'Unverified',0,'2023-06-12 18:24:43',NULL,'','',1,1,'',0,'','41.81.183.46','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','90248d0a98105fa534cf2b0696ddd12f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-14',0),(288,'biz23','Alfred','Cwothum','wonkwo23@gmail.com','','','','','','','$2y$10$rMf2kAbvxUWzyKGLTtd7euj/VPmpubERMkfx4TpAw9d9Sy8ECrMLe',204,0.00,0,0,0,0,'Active',0,'2023-06-21 23:48:35',NULL,'','',1,1,'',1,'41.210.147.189','41.210.143.82','','','','2023-06-22 12:39:20',2,'0/0/0',39,425,0,0,425,0,0,0,0,0,0,1687416670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2023','c5c1bda1194f9423d744e0ef67df94ee','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-23',0),(289,'mbwana','MbwanaJuma','Mbwana','m.mbwana@yahoo.com','','','','','','','$2y$10$EHwsqKiWMh87IDrcuZjPROG/ajQDRcMd8GhGob96sYgJTzz55Tt3i',5,0.00,0,0,0,0,'Active',0,'2023-06-27 03:24:56',NULL,'','',1,1,'',1,'41.223.180.96','154.127.13.10','','','','2025-04-08 18:17:30',6,'0/0/0',0,75,0,0,75,0,1687970167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2025','77ef24b42fcecae4ba74fa68137f3e43','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-28',0),(290,'ricky5144','Ricky','Akers','ricky69akers@gmail.com','','','','','','','$2y$10$3SLiBVczDiS06Qc3ot5Yk.zAOQC9HfG1i5uL2d5.Rq55j2i.yvm56',5,0.00,0,0,0,0,'Active',0,'2023-06-28 05:08:34',NULL,'','',1,1,'',1,'72.16.67.103','72.16.67.103','','','','2023-06-29 16:02:16',3,'0/0/0',39,425,0,0,425,0,0,0,0,1688054656,1688054656,1687964727,1688054626,0,30,0,0,0,0,2,0,0,0,0,0,0,0,'06/2023','7dd11ae2d5ed34925bdbdc9b01866349','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-29',0),(291,'rherdez','Rodolfo','Hernandez','rfherdez@gmail.com','','','','','CR','','$2y$10$HZSct35nzgQ0zBy8PDrEp./98qNVZOWnTZ2SD/wi5eReeYPgdVmaS',5,0.00,0,0,0,0,'Active',0,'2023-06-29 16:02:39',NULL,'','rfherdez@gmail.com',1,1,'',1,'186.32.194.32','186.176.63.192','','','','2024-02-23 04:15:36',5,'0/0/0',200,450,0,0,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2023','49d4b2faeb4b7b9e745775793141e2b2','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-06-30',0),(292,'jamesricciardi','James','Ricciardi','ricciardi.james@gmail.com','','','','','US','','$2y$10$X//tCYkR1JA8kBqEQHsjo.WjwbqVwkc.bVev9wsksXyzODXcQiUke',131,0.00,0,0,0,0,'Active',0,'2023-07-02 00:12:27',NULL,'','',1,1,'',1,'38.186.114.222','172.56.92.168','','','','2025-01-28 08:54:47',6,'0/0/0',2,25,0,0,50,0,1689510416,0,0,1727304274,1727304274,0,1727304274,0,0,0,0,0,0,4,0,0,0,0,0,0,0,'01/2025','e48382353dc6c66379fb8e1ebf48c5e8','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-07-03',0),(293,'maxwellsekar','shanmugha','sekaran','maxwellgarments@gmail.com','','','','','','','$2y$10$E7ijD7Eg7SR1R8AKm8lk3.VZ0/7x4PI/aKYwEMNxLaUxWRszIC0t6',35,0.00,0,0,0,0,'Unverified',0,'2023-07-04 08:55:35',NULL,'','',1,1,'',0,'','157.49.189.223','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a3de03cb426b5e36f5c7167b21395323','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-07-05',0),(294,'HustleGuy','JahnPaul','Gordon','airgordon147@gmail.com','','','','','','','$2y$10$hh0aj/Y2CflXBoWISKv4f.bcXgHZqIhcy5HNI.s4fza2Q98C13fXS',0,0.00,0,0,0,0,'Active',0,'2023-07-09 07:01:14',NULL,'','',1,1,'',1,'172.56.121.79','172.56.121.79','','','','2023-07-09 15:54:20',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2023','aac61539fd1fb209b44b9f9d0d8d28ac','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-07-10',0),(295,'AwesomeMe','Alisande','Hall','a30076@yahoo.com','','','','','','','$2y$10$m9EgRb.7RA.1YzQU0Nv5yerJnsbES8ouq8sNJ/gJVPpzb46crlhUG',0,0.00,0,0,0,0,'Active',0,'2023-07-10 19:22:42',NULL,'','',1,1,'',1,'45.30.248.239','45.30.248.239','','','','2023-07-24 19:04:57',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2023','ad80947c9909dd9d70739ca2b8f3fd2d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-07-12',0),(296,'Thuhong82','Hong','Nguyen','nguyenhong140882@gmail.com','','','','','','','$2y$10$CkbdpbSdQiITPgKmCBreZ.7XFn2k7uX103kQJ.kqAI9vkEeRewGva',131,0.00,0,0,0,0,'Active',0,'2023-07-13 12:58:05',NULL,'','',1,1,'',1,'171.248.194.90','171.248.194.90','','','','2023-07-13 20:00:52',1,'0/0/0',1,25,0,0,25,0,0,0,0,1692255462,1692255462,0,1692255462,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'07/2023','dc58e3a306451c9d670adcd37004f48f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-07-14',0),(297,'trusttheplan','Mark','Sell','safelistsell@gmail.com','','','','','AU','','$2y$10$Vw/QQwBTOyKT1Ez9CXaYyeHy3mFBg3H49dAb5cxkzHFsDGKQeeO/u',0,0.00,0,0,0,0,'Active',0,'2023-07-14 07:46:47',NULL,'','',1,3,'',1,'80.142.99.165','79.194.228.140','','','','2026-03-03 19:25:35',50,'0/0/0',503141,3825,0,0,4025,0,1775971152,0,0,1752516091,1752516091,1719145117,1752516091,0,45,0,1,0,0,29,0,0,0,0,0,0,0,'06/2024','5ef99d16d1954578b0df2f38b866449b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-07-23',0),(298,'swdesign','steven','alexandrov','sa.swdesign2@gmail.com','','','','','','','$2y$10$tiWoM0VxFjy45JaUm3nkFOEwKmMD.KtE/D.k6mVWIM0yicoCNJIAO',204,0.00,0,0,0,0,'Active',0,'2023-07-18 20:41:30',NULL,'','',1,1,'',1,'70.191.227.230','98.162.135.110','','','','2024-01-06 04:06:56',19,'0/0/0',0,25,0,0,25,0,1690092764,0,1773511531,1699457657,1699457657,1699458185,1699457624,0,100,0,0,0,1,11,0,0,0,0,0,0,0,'10/2023','07a9d3fed4c5ea6b17e80258dee231fa','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-07-20',0),(299,'Webpromo','Cris','Wood','listbuilder49er@gmail.com','','','','','','','$2y$10$IxykgYVEP/UqQ6FfBg64bub/SgXd2Rt42MrekEoIOt5gleesZQrpe',0,0.00,0,0,0,0,'Active',0,'2023-07-19 06:30:24',NULL,'','',1,1,'',1,'72.19.134.241','72.19.134.241','','','','2023-07-23 06:12:51',4,'0/0/0',215,425,0,0,425,0,0,0,0,1692588593,1692588593,0,1692588482,0,111,0,0,0,0,15,0,0,0,0,0,0,0,'07/2023','fd4d801731725513a4d77aa9bb35534b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-07-20',0),(300,'LeslieB','Leslie','Basco','doctorfabiomoro@gmail.com','','','','','AU','','$2y$10$rUPO0dKmtUiTPrnAqiOHCONb0Sx3UGl536P4FL.VY4BqEj/7m6TSe',0,0.00,0,0,0,0,'Active',0,'2023-07-21 10:21:24',NULL,'','',1,1,'',1,'174.170.170.86','99.179.158.28','','','','2026-03-01 04:41:50',29,'0/0/0',339,550,1,0,550,0,1699924467,0,1715629592,1772333524,1772333524,1693331368,1772333524,0,145,0,0,0,0,205,1,0,0,0,0,0,0,'03/2026','a2557a7b2e94197ff767970b67041697','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-07-22',0),(301,'onesuccess','Jim','Derr','jimderrcontact@gmail.com','','','','','US','','$2y$10$VFL/9RIBIgfMSKNae2yh2OJyXNtP4vgEYgiMJS.iARPo8lhFSLxeu',0,0.00,0,0,0,0,'Active',0,'2023-07-31 15:46:21',NULL,'','',1,1,'',1,'139.138.8.173','73.156.177.97','','','','2025-04-12 14:09:27',13,'0/0/0',0,0,0,0,0,0,1775979157,0,1775988823,0,0,1744467086,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,'04/2025','2fd5d41ec6cfab47e32164d5624269b1','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-08-01',0),(302,'ANITUEL9','OKON','UMANA','ra333ma333@gmail.com','','','','','','','$2y$10$ZWJhEa1fP9jfdDd2Uov9L.z4hne7POEvPZUstbKgJCu2rKcHVwin2',5,0.00,0,0,0,0,'Active',0,'2023-08-05 14:48:24',NULL,'','',1,1,'',1,'32.221.137.151','32.221.137.151','','','','2024-10-24 03:48:57',8,'0/0/0',0,75,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2024','9570efef719d705326f0ff817ef084e6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-08-06',0),(303,'jking27','Jennifer','King','mynetbiz2018@gmail.com','','','','','','','$2y$10$NuSWJ0GbQTKY1FX4TaqKheCED13RDHSjUXDoKGH9o/2iZcSFoYhn2',131,0.00,0,0,0,0,'Active',0,'2023-08-12 18:34:35',NULL,'','',1,1,'',1,'209.121.56.121','209.121.56.121','','','','2023-09-22 22:15:56',3,'0/0/0',0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2023','8db9264228dc48fbf47535e888c02ae0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-08-14',0),(304,'ladews','Laura','Dews','laurasmarketing@gmail.com','','','','','','','$2y$10$fgPtU5n2NIXepMXsQJw0Cu1tgg3.x7S.00RG2MUhGtQuCC4xppPY2',5,0.00,0,0,0,0,'Active',0,'2023-08-20 05:19:29',NULL,'','',1,1,'',1,'216.154.150.80','45.72.221.135','','','','2024-01-27 15:42:54',4,'0/0/0',35,25,0,0,475,0,1772582419,0,0,0,0,1694898656,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,'01/2024','bc27acd4e787c0a32597d6e4b8254851','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-08-21',0),(305,'comoganar','bernardino','villanueva','minemator227@gmail.com','','','','','','','$2y$10$3KXv0UZ36PlOJVoEFkE6G.Wn70pO7NFuwaz96IRuaY3E7g6s2EkO6',5,0.00,0,0,0,0,'Active',0,'2023-08-20 20:28:21',NULL,'','',1,1,'',0,'187.252.108.141','187.252.108.141','','','','2023-10-12 02:26:43',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2023','596059d266f32a63144d67628a53db89','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-08-22',0),(307,'dsprodstor','Don','Veseth','wealthcoach4533@gmail.com','','','','','','','$2y$10$.0/K8BkHvL27uMXpOACRPOIaUX31Rgb6Nm8l/PBozw0GtqUO.0IZS',131,0.00,0,0,0,0,'Active',0,'2023-09-02 18:10:09',NULL,'','',1,1,'',1,'173.173.64.177','173.173.73.91','','','','2023-09-10 21:05:19',2,'0/0/0',21,425,0,0,425,0,0,0,0,0,0,1694380161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2023','0a348ede8ac3768875037baca5de6e26','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-09-04',0),(308,'inlev','Anthony','Faluotico','faluotico1949@gmail.com','','','','','','','$2y$10$gIRHDmTAOYWGL4O5P3XEYuPezihFj6/6qk96MlZlZgJoXqd0FwsBq',5,0.00,0,0,0,0,'Active',0,'2023-09-09 18:56:10',NULL,'','',1,1,'',1,'47.20.166.127','47.20.166.127','','','','2023-09-10 01:57:01',1,'0/0/0',21,0,0,0,0,0,1772587748,0,1775391149,0,0,1694311185,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,'09/2023','5ffaa9f5182c2a36843f438bb1fdbdea','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-09-11',0),(309,'oppor2nities4u','Loretta','Sanders','loretta.marketer.signedup@gmail.com','','','','','US','','$2y$10$KggyaKXSV0OtBNEYyOBlc.rsbJ91hXtZVL7Rkmu8CA/YPxYAAd47.',0,0.00,0,0,0,0,'Active',0,'2023-09-10 21:25:21',NULL,'','',1,1,'',1,'166.196.82.106','166.199.149.129','','','','2023-10-28 02:45:48',6,'0/0/0',205,450,0,0,450,0,0,0,0,1698461416,1698461416,0,1698461294,0,122,0,0,0,0,5,1,0,0,0,0,0,0,'10/2023','5ffaa9f5182c2a36843f438bb1fdbdea','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-09-13',0),(310,'rrissler','Ryan','Rissler','ryanrissler4@gmail.com','','','','','','','$2y$10$t4ZDdE77eFcDfFaP.W194uMFBe1AG9MVuhQL9FJHMh9TMaU5NRnIe',0,0.00,0,0,0,0,'Active',0,'2023-09-17 00:46:10',NULL,'','',1,1,'',1,'70.15.155.73','70.15.155.73','','','','2023-10-10 13:57:32',2,'0/0/0',69000,39050,0,0,40050,0,1775391220,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,'10/2023','218a0aefd1d1a4be65601cc6ddc1520e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-09-18',0),(311,'jrpenwarden','John','Penwarden','jrpenwardensafelists@gmail.com','110 Snowbird Ct.','Kalama','WA','98625','US','(503) 593-1859','$2y$10$7wGsICnmCwN7oKpXX5.i0eFwHJmgK8GdRfUqrBtQ0.BCwvpeWPl4S',0,0.00,0,0,0,0,'Active',0,'2023-09-17 02:23:41',NULL,'','jrpenwarden@msn.com',1,3,'',1,'216.128.103.107','216.128.101.196','','','','2025-01-12 03:06:19',23,'0/0/0',69358,39475,0,0,40500,0,1773188735,0,0,1736651219,1736651219,1723792089,1736651219,0,0,0,1,0,0,11,0,0,0,0,0,0,0,'12/2023','d1d5923fc822531bbfd9d87d4760914b','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-12-10',0),(313,'setuptraffic','Tom','Grindland','tomgadsites@gmail.com','','','','','','','$2y$10$W4VUqqQynz.bjNVxXhB8H.Luxqa3gKSVXfYDPA.LTCSGkyb6EKEQ6',0,0.00,0,0,0,0,'Active',0,'2023-09-19 10:29:52',NULL,'','',1,1,'',1,'84.49.142.239','84.49.142.239','','','','2023-09-19 17:54:24',2,'0/0/0',70000,40025,0,0,40025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2023','29e48b79ae6fc68e9b6480b677453586','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-09-20',0),(314,'mrbiz','Mike','Rios','maniacmike34@gmail.com','','','','','','','$2y$10$Wbqs/VM2m.YiVLFSPhMH7uQeRGGCUpDauZeFsPOmxam3R0B4SWglC',0,0.00,0,0,0,0,'Active',0,'2023-09-19 20:09:00',NULL,'','',1,1,'',1,'97.98.79.192','72.176.88.31','','','','2024-05-01 11:05:32',5,'0/0/0',69900,40075,0,0,40075,0,0,0,0,0,0,1714532949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'05/2024','a3c788c57e423fa9c177544a4d5d1239','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-09-21',0),(316,'bigmikez','Big','Mike','bigmikescash@gmail.com','','','','','','','$2y$10$2Oy38x6SQVrTR2rv99/OrOKm707Qsarc6w14cCL8/s4tfpdt6xMSO',0,0.00,0,0,0,0,'Active',0,'2023-09-24 19:30:26',NULL,'','',1,1,'',1,'68.6.119.59','98.171.170.103','','','','2025-08-07 04:03:23',22,'0/0/0',0,40125,0,0,40125,0,0,0,1772579861,0,0,1696304053,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'07/2025','09ab23b6b607496f095feed7aaa1259b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-09-26',0),(317,'CYBLT','Damian','Eisenmann','creatingyourbestlifetoday@gmail.com','','','','','','','$2y$10$xcCC0x/uLICrkvYzF8soK.hqrfyeTdjXrosLAnHnmm1rbkbUjnVzC',0,0.00,0,0,0,0,'Active',0,'2023-09-30 22:37:06',NULL,'','',1,1,'',1,'173.23.116.201','173.23.116.201','','','','2023-11-17 07:31:00',4,'0/0/0',60000,40050,0,0,40050,0,0,0,1772582879,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'11/2023','7f6caf1f0ba788cd7953d817724c2b6e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-10-02',0),(318,'onhappyline','onhappy','line','palladium7@gmail.com','','','','','','','$2y$10$F4rH.H8zCsZLZAS4LPUX.OspoEH1gxFPCKpWLgWLWbOuS/noXijQC',131,0.00,0,0,0,0,'Unverified',0,'2023-10-07 04:56:59',NULL,'','',1,1,'',0,'','211.111.230.56','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','bc27acd4e787c0a32597d6e4b8254851','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-10-08',0),(319,'traffiknation','Matt','Mason','traffiknation@gmail.com','','','','','','','$2y$10$e8prdZPO8iyfskPK..PnPuOZq/gufawWpIVX0VmOe6b7.PwRSNtge',0,0.00,0,0,0,0,'Active',0,'2023-10-08 06:34:19',NULL,'','',1,1,'',1,'69.137.119.70','69.137.119.70','','','','2023-10-08 13:40:47',2,'0/0/0',70000,40025,0,0,40025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2023','1fe46a07a9ba5f05129cab882582d907','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-10-09',0),(320,'HealthyMoosi','Healthy','Moosi','healthymoosi@gmail.com','','','','','','','$2y$10$6G9J5SFIJTljQLntrPAWGOtfKHc747WYCLOzkk47mxEWdogTBcOQ6',36,0.00,0,0,0,0,'Active',0,'2023-10-11 06:57:45',NULL,'','',1,1,'',1,'165.73.100.251','165.73.100.251','','','','2023-10-11 13:59:44',3,'0/0/0',0,400,0,0,425,0,1775406056,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,'10/2023','6c2fdcf862a752ca2c9e49866a05e1df','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-10-12',0),(321,'Bops101','Robert','Jacobs','cybermoney2023@gmail.com','','','','','','','$2y$10$2baW.OZGOYjJatB72gftFekOY9KG1KQJFqr2fNIvb8QMjHrHpyXF2',5,0.00,0,0,0,0,'Active',0,'2023-10-11 09:58:40',NULL,'','',1,1,'',1,'41.1.142.142','41.1.83.39','','','','2023-10-15 18:08:32',2,'0/0/0',203,425,0,0,425,0,0,0,0,1697902851,1697902851,0,1697902851,0,0,0,0,0,0,3,0,0,0,0,0,0,0,'10/2023','a9813e9550fee3110373c21fa012eee7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-10-12',0),(322,'rexboise','Rex','Boise','rexb@casinternet.net','','','','','','','$2y$10$7Hc/2BxQ0N2sBxYf1xulOeLJQ1LekOL0NABsVLJjtl8BUeFl8OdRu',0,0.00,0,0,0,0,'Active',0,'2023-10-12 17:27:52',NULL,'','',1,1,'',0,'198.179.6.235','198.179.6.235','','','','2024-03-17 16:25:09',3,'0/0/0',65017,40050,0,0,40025,0,0,0,1772111480,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'11/2023','b11c3e3aaf3cfe496174ecc31a3c04d0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-10-14',0),(323,'greglondon','Gregory','London','gklondon67@gmail.com','','','','','','','$2y$10$947OTGHQeDEE4VV6anxRSOkJI2e3L.4CbKaEkkDeZvUYw4HdicWGO',5,0.00,0,0,0,0,'Active',0,'2023-11-02 22:28:46',NULL,'','',1,1,'',1,'149.76.138.156','149.76.138.156','','','','2023-11-03 05:31:12',2,'0/0/0',13,425,0,0,425,0,0,0,0,0,0,1698989758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'11/2023','31784d9fc1fa0d25d04eae50ac9bf787','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-11-04',0),(324,'osamnsa','Osam','Nsa','citest1981@gmail.com','','','','','','','$2y$10$fQUjNC8EPuuVF6SFz4nGfO.wSPNi6zTSIQ0FJU23bBRMX5xgVbOEK',317,0.00,0,0,0,0,'Active',0,'2023-11-10 12:50:52',NULL,'','',1,1,'',1,'197.210.79.140','197.211.53.11','','','','2024-09-06 14:37:38',4,'0/0/0',0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2024','7059b7dea43da04fd342088d7c1698f0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-11-11',0),(325,'Nv12','Nivedita','Vaidya','2021nvnv@gmail.com','','','','','','','$2y$10$i7ttGgrqukEDFH8brTBlMeLJbOfDByeaX/ZaZmaG.veBgDD8LCgVC',5,0.00,0,0,0,0,'Unverified',0,'2023-11-26 03:57:03',NULL,'','',1,1,'',0,'','49.43.97.197','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b59442085644532ef03417a3e5a76437','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-11-27',0),(326,'Chamel','Chamel','Walker','promarketingwave@gmail.com','','','','','','','$2y$10$Hg560b4Qu4UN8AXbvbPSL.RrUN9Og.Rg0aWrgTuBExXEjulfc6jM6',0,0.00,0,0,0,0,'Active',0,'2023-12-04 21:42:34',NULL,'','',1,1,'',1,'184.56.160.40','184.56.160.40','','','','2023-12-14 01:54:38',5,'0/0/0',80200,47925,0,0,47925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'12/2023','3a24b25a7b092a252166a1641ae953e7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-12-06',0),(327,'newagemoney','Martin','F','im.regist@gmail.com','','','','','','','$2y$10$41Wt52cfOa5Z0rnYcsnHVOEwxVeJ3r8H5kyLYmCzOkDRowpQrJOoa',0,0.00,0,0,0,0,'Active',0,'2023-12-16 01:16:59',NULL,'','',1,1,'',1,'81.167.197.237','81.167.237.154','','','','2026-04-04 18:28:49',57,'0/0/0',67058,40475,0,0,35475,0,0,0,1712923903,1775421514,1775421514,1773511453,1775421514,0,18,0,0,0,0,100,0,0,0,0,0,0,0,'03/2026','1b69ebedb522700034547abc5652ffac','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-12-17',0),(328,'shaddy','sharon','graham','bhappyunltd@gmail.com','','','','','','','$2y$10$uZP4NM89IBpoMvRKwUuCFeU7/acziDqtMdTJWek7VUnZks1tCxwym',131,0.00,0,0,0,0,'Active',0,'2023-12-16 22:05:42',NULL,'','',1,1,'',1,'172.56.112.139','172.56.113.135','','','','2024-01-04 00:22:18',2,'0/0/0',22,25,0,0,25,0,0,0,0,1729300477,1729300477,0,1729300477,0,26,0,0,0,0,22,1,0,0,0,0,0,0,'01/2024','f076073b2082f8741a9cd07b789c77a0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2023-12-18',0),(329,'cesca1971','Francesca','Simon','fsimon6@gmail.com','','','','','','','$2y$10$88oktyHKhqBXEMFj8jVFauW6iFY4/IxxipZu3ouilg16fALyqF2.W',131,0.00,0,0,0,0,'Active',0,'2024-01-03 13:05:34',NULL,'','',1,1,'',1,'172.119.85.213','172.119.85.213','','','','2024-01-04 15:50:13',3,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2024','3b5dca501ee1e6d8cd7b905f4e1bf723','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-01-04',0),(330,'dons8522','Don','Sweat','donstrbiz23@gmail.com','','','','','','','$2y$10$cVoHTDpkcoCOxRMi.AOrFevnPafoOtCmj8G6rhirp6DocjPwgY62q',131,0.00,0,0,0,0,'Active',0,'2024-01-04 10:50:20',NULL,'','',1,1,'',1,'97.181.120.147','71.45.148.30','','','','2025-12-16 04:34:09',4,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'12/2025','47fd3c87f42f55d4b233417d49c34783','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-01-05',0),(331,'bokeke','Barnabas','Okeke','bokeke2@yahoo.com','','','','','','','$2y$10$YSYWizPF2krBURdaVGwWV.lzydeFXGgnSjoka0YpC/gq08D6J4LwC',131,0.00,0,0,0,0,'Active',0,'2024-01-19 18:05:25',NULL,'','',1,1,'',1,'100.14.18.151','100.14.18.151','','','','2024-01-20 02:07:07',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a35d11c2f995c60b0341a9c777f1ae03','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-01-21',0),(332,'DeanaG60','Gloria','Wilcher','biz5000global@gmail.com','','','','','','','$2y$10$1xymgpfkIaHKvMZhTZOHhuDjMh5PO5ec6Zx63KB9x9DSlC5dRmRWy',131,0.00,0,0,0,0,'Active',0,'2024-01-20 17:00:25',NULL,'','',1,1,'',1,'73.233.178.9','73.233.178.9','','','','2024-01-21 01:03:37',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2024','60e1deb043af37db5ea4ce9ae8d2c9ea','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-01-22',0),(333,'gift4u','Normand','Plouffe','normandmytraffic@gmail.com','','','','','','','$2y$10$B4Ak1kAlIUZlDhN.ZlzUWOqt9LDawXky79mqvyhbtaG6kJPFx1i5e',5,0.00,0,0,0,0,'Active',0,'2024-01-26 06:16:17',NULL,'','',1,1,'',1,'174.88.158.57','174.88.158.57','','','','2024-03-04 21:48:51',2,'0/0/0',202,450,0,0,450,0,0,0,0,1709984063,1709984063,0,1709984063,0,0,0,0,0,0,2,0,0,0,0,0,0,0,'03/2024','8b9e7ab295e87570551db122a04c6f7c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-01-27',0),(334,'phoenixbiz','Dragan','Krzanovic','liberobusiness22@gmail.com','','','','','','','$2y$10$dFpm2F05C8XxHTwnIP3hUO8FgGlLcjYKeExD60vm4Ir8SeRNZaila',75,0.00,0,0,0,0,'Active',0,'2024-01-27 06:10:18',NULL,'','',1,1,'',1,'212.200.115.94','212.200.115.94','','','','2024-01-27 14:21:29',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2024','c75b6f114c23a4d7ea11331e7c00e73c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-01-28',0),(335,'polas6','Pavelas','Boiko','damngood1980@gmail.com','','','','','','','$2y$10$ctUe9gxhXlRlxulDiDxytuGa14m/mYRkocpwxEFFHjRoUgA.LFpaO',140,0.00,0,0,0,0,'Active',0,'2024-01-27 09:49:58',NULL,'','',1,1,'',1,'78.63.202.119','78.63.202.119','','','','2024-08-18 13:33:24',2,'0/0/0',0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2024','2dd758690d1113777f254f9eae319874','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-01-28',0),(336,'dmaull839','Donald','Maull','dmaull839@gmail.com','','','','','','','$2y$10$T1emYt2rVJsB5pj5.tDQGOdbZZvb9qvN48xnPnxizij/jL6qhKLQe',131,0.00,0,0,0,0,'Active',0,'2024-01-30 10:37:36',NULL,'','',1,1,'',1,'108.218.94.243','108.218.94.243','','','','2024-01-30 18:41:53',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2024','bd5c5e1c04111451ed8b63079ea181e7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-01-31',0),(337,'Sid321','Sidney','Zighem','sidney.zighem5@gmail.com','','','','','','','$2y$10$wn79bVIqtdWxjfKen4ul7es44RgmqlpAInvFT1qwZ5uCGDGXdxai6',140,0.00,0,0,0,0,'Active',0,'2024-02-02 12:02:39',NULL,'','',1,1,'',1,'176.180.62.182','176.180.62.182','','','','2024-04-25 10:25:17',4,'0/0/0',0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2024','2287c6b8641dd2d21ab050eb9ff795f3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-03',0),(338,'Kylieruics','Kylieruics','KylieruicsKB','shreyapazajz@hotmail.com','','','','','','','$2y$10$LIsl2/WDbM9VIrP/VPZBpeebBeDbMpQbodEIoxfNzDwr3ln6DR0Ka',0,0.00,0,0,0,0,'Active',0,'2024-02-13 21:27:39',NULL,'','',1,1,'',1,'37.139.53.87','37.139.53.87','','','','2024-02-14 06:57:19',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','366ce3dedb69b786dae1aa8d75e4e765','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-15',0),(339,'GarrySof','GarrySof','GarrySofXP','gotujeanpierre@inbox.lv','','','','','','','$2y$10$E7Dd0iP1UTHA4Rch2.hlFu0dPqFvWT3zhOiqYsR2aiaFjkldplLHq',0,0.00,0,0,0,0,'Active',0,'2024-02-14 10:45:44',NULL,'','',1,1,'',1,'31.172.80.241','31.172.80.241','','','','2024-02-14 18:50:53',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c4015b7f368e6b4871809f49debe0579','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-15',0),(340,'Jimmyreask','Jimmyreask','JimmyreaskLK','wqxgsqojx@pcht23.com','','','','','','','$2y$10$EevUKSZgdYNeWp2KlrU7Oeiiudr66Rsc8Ux3btdpk1/kKx7tf3fpC',0,0.00,0,0,0,0,'Active',0,'2024-02-14 18:55:56',NULL,'','',1,1,'',1,'193.178.172.49','193.178.172.49','','','','2024-02-15 06:27:11',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5118af07364440598cd7a922ccf4a955','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-16',0),(341,'Victortiw','Victortiw','VictorfniBU','bori.s1.9.8.0.se.ce.no.v@gmail.com','','','','','','','$2y$10$JxW/nQd6yCI/w4hS4q52M.GSuj4ZVLhR/bmPgK79CAezX07CJg6LW',0,0.00,0,0,0,0,'Active',0,'2024-02-16 15:41:39',NULL,'','',1,1,'',1,'','138.199.63.107','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a18aa23ee676d7f5ffb34cf16df3e08c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-17',0),(342,'Thomasopilt','Thomasopilt','ThomasopiltAW','b.en.n.iechavez.61.8.6@gmail.com','','','','','','','$2y$10$61eH7JVG7hk.ekif8CMBc.6T6EdMXr7p47j0AKnHJw6H.ILPyKiWK',0,0.00,0,0,0,0,'Unverified',0,'2024-02-17 12:29:33',NULL,'','',1,1,'',0,'','193.176.187.25','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','60a70bb05b08d6cd95deb3bdb750dce8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-18',0),(343,'Roberttab','Roberttab','RoberttabBF','ifdlmeponvb@gmail.com','','','','','','','$2y$10$CoH1EBsNYrMx7OPL0fDK5uNNTzDmyo3i6ju6/2QuKYY5zf8Ldeyg2',0,0.00,0,0,0,0,'Unverified',0,'2024-02-18 04:41:37',NULL,'','',1,1,'',0,'','178.176.78.227','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e6ff107459d435e38b54ad4c06202c33','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-19',0),(344,'Sandysek','Sandysek','SandysekPH','odndgwdyr@xrumer5.dynainbox.com','','','','','','','$2y$10$l8kGs1ReiRfEJ.NXhAIvUu/iPsvma.TRSeVHWSamN0jOnImtSEVUe',0,0.00,0,0,0,0,'Active',0,'2024-02-18 08:05:25',NULL,'','',1,1,'',1,'37.139.53.34','37.139.53.34','','','','2024-02-18 16:08:07',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','4ab52371762b735317125e6446a51e8f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-19',0),(345,'NikolRoops','NikolRoops','NikolRoopsCS','t1mven@yandex.com','','','','','','','$2y$10$3WC9SA11Bey9g2HoX6SGzuQR0rjp02dPYahCtnnnB3YOasuIuhwvi',0,0.00,0,0,0,0,'Active',0,'2024-02-18 18:03:56',NULL,'','',1,1,'',1,'37.22.79.43','37.22.79.43','','','','2024-02-19 02:55:52',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c6776f93bc9afe2e511a1dbd5478362c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-20',0),(346,'MishaelBag','MishaelBag','MishaelBagVD','trendo90@outlook.com','','','','','','','$2y$10$x88yoJd6NiV/UdQdyxbpluPL7BkblDua4rb3N/BgD654H8ayX/S0W',0,0.00,0,0,0,0,'Active',0,'2024-02-19 04:12:16',NULL,'','',1,1,'',1,'37.115.216.33','37.115.216.33','','','','2024-02-19 12:36:06',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'02/2024','da40657c9fece7e48d30af42d31d4350','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-20',0),(347,'CliffCip','CliffCip','CliffCipKC','kasperronny2024@gmail.com','','','','','','','$2y$10$A7Ui7E/bHWtXZa5hRwwxneu8YdIC4PCZjNoBhSNvXvIWNydEYPzp2',0,0.00,0,0,0,0,'Active',0,'2024-02-19 07:39:46',NULL,'','',1,1,'',1,'212.102.39.208','212.102.39.208','','','','2024-02-24 09:57:38',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'02/2024','10907813b97e249163587e6246612e21','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-20',0),(348,'Robertinada','Robertinada','RobertinadaFG','fxoeb6fnxk@iei.mnmnm.biz','','','','','','','$2y$10$fctBEOCySxiy4I1D7QJryOLMMwiPdD/wWnQcvTMxHvtGqlbX.COqi',0,0.00,0,0,0,0,'Active',0,'2024-02-19 21:42:00',NULL,'','',1,1,'',1,'5.42.67.2','5.42.67.2','','','','2024-02-20 05:45:46',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'02/2024','ebc03fa648c2cd7da9d63b9ed835664e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-21',0),(349,'Esmeraldosika','Esmeraldosika','EsmeraldosmzxQP','zamokpet.rov.sk.y.2.023@gmail.com','','','','','','','$2y$10$fvlmZ00pEhtW26i.sugA4e.6smM/fgDegQRB/I19LBQA1D7tGisWG',0,0.00,0,0,0,0,'Unverified',0,'2024-02-22 10:39:47',NULL,'','',1,1,'',0,'','162.221.206.110','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','91e82999cf7e45da1070ebd673690716','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-23',0),(350,'Robertolendy','Robertolendy','RobertolendyVE','atnesepsudvp1borz6ktg@outlook.com','','','','','','','$2y$10$QR6uW3qvlGKyF6bhxdrUQ.zXbJ.Tcsd5IU44lKF4q74LcxGY.Vq1i',0,0.00,0,0,0,0,'Unverified',0,'2024-02-24 21:16:12',NULL,'','',1,1,'',0,'','5.165.129.37','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f04cd7399b2b0128970efb6d20b5c551','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-26',0),(351,'mining','Beto','st','miningbitcoin16@gmail.com','','','','','','','$2y$10$MFr6g9SrMQFUHLImCZ1s7.E7ki3iuiy.tZHcROdKdhs98Aa8v7CWG',242,0.00,0,0,0,0,'Active',0,'2024-02-26 17:03:56',NULL,'','',1,1,'',1,'191.187.25.69','191.187.14.145','','','','2025-06-02 13:07:30',4,'0/0/0',0,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2025','8d7d8ee069cb0cbbf816bbb65d56947e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-28',0),(352,'uplinaikalo','uplinaikalo','uplinaikaloKD','uplinaikalo@softbox.site','','','','','','','$2y$10$7VfG.JDGTvBW7LpznYApeeOyRpBii6Z8Cj3/H8TSJru.7ebmqzVny',0,0.00,0,0,0,0,'Active',0,'2024-02-27 05:32:00',NULL,'','',1,1,'',1,'185.170.10.187','185.170.10.187','','','','2024-02-27 13:40:08',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','432aca3a1e345e339f35a30c8f65edce','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-02-28',0),(353,'MartaCom','MartaCom','MartaComVX','martinkanowak@gmail.com','','','','','','','$2y$10$UuMQ4fI13MjFcRgXPASuQ./WSZk4bdCxF04eF9NViqlwqcHRT3Ebi',0,0.00,0,0,0,0,'Active',0,'2024-03-01 06:35:24',NULL,'','',1,1,'',1,'37.139.53.88','37.139.53.88','','','','2024-03-01 15:01:30',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','cc638784cf213986ec75983a4aa08cdb','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-02',0),(354,'RobertTot','RobertTot','RobertTotLG','relait_abnq86124@diigo.site','','','','','','','$2y$10$E1I7QHnXV1P2X23jkeN7LeL3p.fFgiS0alWrsp.5sVIVdygU5cGKi',0,0.00,0,0,0,0,'Unverified',0,'2024-03-04 15:03:12',NULL,'','',1,1,'',0,'','45.11.20.53','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','7302e3f5e7c072aea8801faf8a492be0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-05',0),(355,'Monschalidixscenah','Monschalidixscenah','MonschalidixscenahNH','monschalidisce@gmx.com','','','','','','','$2y$10$Naq0k.XhZFcJa2zo5OpmIe6PcfDkZ5FdbBLvHUZnyrOJnY/K1XSJy',0,0.00,0,0,0,0,'Unverified',0,'2024-03-06 06:18:37',NULL,'','',1,1,'',0,'','83.11.213.231','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','cfd66e741860718ddecf1f6eabd05fc6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-07',0),(356,'ThomasEmemy','ThomasEmemy','ThomasEmemyJH','kyfgjnisuba@gmail.com','','','','','','','$2y$10$2ID2QoZ7RSBV3jPiVt/Kke9oWeL.79BdXolK9M5F6oMEzr3ZlXiMO',0,0.00,0,0,0,0,'Unverified',0,'2024-03-06 19:20:03',NULL,'','',1,1,'',0,'','31.173.85.15','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','54ff9e9e3a2ec0300d4ce11261f5169f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-08',0),(357,'Dayanakep','Dayanakep','DayanakepBA','i.bnat.oto.w@gmail.com','','','','','','','$2y$10$t8LnSxaMqtUiSQNCceKeKekf.FWQOQ9CViT6.cI/DUQz08iHg2xXC',0,0.00,0,0,0,0,'Active',0,'2024-03-08 18:06:47',NULL,'','',1,1,'',1,'85.203.44.235','85.203.44.248','','','','2024-03-09 06:33:25',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2024','3f24bb08a5741e4197af64e1f93a5029','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-10',0),(358,'CharlieNeity','CharlieNeity','CharlieNeityMT','aistronghrumer@gmail.com','','','','','','','$2y$10$UGYJmKuwOxDLS.ObITLtt.aT/KcFE1tkteWN7.BeQQk1rJ4TT5bsO',0,0.00,0,0,0,0,'Unverified',0,'2024-03-09 04:57:55',NULL,'','',1,1,'',0,'','77.66.180.10','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ec5aa0b7846082a2415f0902f0da88f2','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-10',0),(359,'Richarddup','Richarddup','RicharddupJX','goldboy1931@gmail.com','','','','','','','$2y$10$ZSErX.bz.kPvlgZcz.BxFOkYnK9HbmZgv7UMLCqJYk5SI0BnpT/VO',0,0.00,0,0,0,0,'Active',0,'2024-03-10 20:25:49',NULL,'','',1,1,'',1,'88.210.6.205','88.210.6.205','','','','2024-03-11 03:27:41',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2024','aa108f56a10e75c1f20f27723ecac85f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-12',0),(360,'Victorins','Victorins','VictorchfBU','bori.s.1.9.80.s.e.ce.n.ov@gmail.com','','','','','','','$2y$10$tjWjFmkT.9OOabo5qP2QUO7IQAMh4ZPz8ArQKJF0OqqbBRoyLuIuG',0,0.00,0,0,0,0,'Active',0,'2024-03-12 19:19:02',NULL,'','',1,1,'',1,'','84.17.49.44','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','678a1491514b7f1006d605e9161946b1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-14',0),(361,'Meganzek','Meganzek','MeganzekZU','xpuhzvegq@farironalds.com','','','','','','','$2y$10$5DWHahn7vTeG3Mll9LyxGOH7tsKIDh4cnkQvf4dvh0/v5iGyxWI9q',0,0.00,0,0,0,0,'Active',0,'2024-03-19 04:24:22',NULL,'','',1,1,'',1,'37.139.53.84','37.139.53.84','','','','2024-03-19 13:12:49',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2ef3e50fd7c1091dda165f25be7f64fd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-20',0),(362,'Jameshit','Jameshit','JameshitGH','lucolucius7@gmail.com','','','','','','','$2y$10$Ru22ZdqIiLoIn4QIy1I60.zo0drRQcFAE.5d8x6IICRtn5PDJfLwS',0,0.00,0,0,0,0,'Unverified',0,'2024-03-19 23:44:59',NULL,'','',1,1,'',0,'','178.176.79.226','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c24f4c5eef7ec01c46e003a9296c8645','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-21',0),(363,'Javiacy','Javiacy','JaviacyMR','kiraseevitch@yandex.ru','','','','','','','$2y$10$tDlbOFkvMDObRHYGpm8owOaMO5lpXXaoF9egW8R/cKI32v5eXqEI2',0,0.00,0,0,0,0,'Active',0,'2024-03-28 19:34:13',NULL,'','',1,1,'',1,'188.234.4.12','188.234.4.12','','','','2024-03-29 04:10:40',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2024','5b4130c9e891d39891289001cc97d86b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-30',0),(364,'stewartsGuilm','stewartsGuilm','StewartGuilmBP','frederickbaca1978@slippmail.com','','','','','','','$2y$10$UrSxB96Eci8.9g3MNM4LS.FXnH3.2gghWsPY/ztLkSi7uhVOUDAmy',0,0.00,0,0,0,0,'Active',0,'2024-03-29 08:55:50',NULL,'','',1,1,'',1,'185.107.56.228','185.107.56.228','','','','2024-03-29 15:56:27',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2024','4b55df75e2e804bab559aa885be40310','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-30',0),(365,'socad','Stan','White','surveywhite@gmail.com','','','','','','','$2y$10$YGfrmOmoUdhbYCBuNh5pi.29vSragtbKgzSk2upzBByPNu3g6Os6C',131,0.00,0,0,0,0,'Active',0,'2024-03-29 14:04:11',NULL,'','',1,1,'',1,'','70.30.228.39','','','','0000-00-00 00:00:00',0,'0/0/0',1,0,0,0,0,0,0,0,0,1712864468,1712864468,0,1712864468,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'0/0','abdf6bdb7570e8f9d4338f84bd169130','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-03-30',0),(366,'MusicSok','MusicSok','MusicSokLC','brudermanni2024@gmail.com','','','','','','','$2y$10$Af2Jxq3yjmXVQpssyIXhiOkFdiksCAdwo3WZqunOGNflT8kR5KjJO',0,0.00,0,0,0,0,'Unverified',0,'2024-03-31 17:56:53',NULL,'','',1,1,'',0,'','85.192.40.160','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','01e00f2f4bfcbb7505cb641066f2859b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-02',0),(367,'Georgekem','Georgekem','GeorgekemNC','georgeg@dig.oueue.com','','','','','','','$2y$10$ISDjsxqLt0Wa8ZE.zOsINeRIQQ.H0W7qLtLosb25Uz7eXx.m4cK1e',0,0.00,0,0,0,0,'Active',0,'2024-03-31 20:41:31',NULL,'','',1,1,'',1,'75.247.9.37','75.247.9.37','','','','2024-04-01 03:43:28',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','fa131721954c3ddae16ee67620ffb2e0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-02',0),(368,'Danakep','Danakep','DanakepPO','a.l.ej.andr.ag.r.imsha.w@gmail.com','','','','','','','$2y$10$mvrKSvKe2Mf.opsksXrIM.UawlsFaSxOXgfxJsi1WaGkLN6P/9GlS',0,0.00,0,0,0,0,'Unverified',0,'2024-04-01 07:03:27',NULL,'','',1,1,'',0,'','196.244.192.14','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','0b8aff0438617c055eb55f0ba5d226fa','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-02',0),(369,'DavidShact','DavidShact','DavidShactAA','juska1111loool@outlook.com','','','','','','','$2y$10$dJfEAJOqnxjKe5RD3biZsuJDEx37PLwJ65zOLBBubOGc9HALF/IAO',0,0.00,0,0,0,0,'Unverified',0,'2024-04-01 18:59:56',NULL,'','',1,1,'',0,'','46.8.16.99','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d6c651ddcd97183b2e40bc464231c962','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-03',0),(370,'KeithLaw','KeithLaw','KeithLawIT','yourfriendfatal309@gmail.com','','','','','','','$2y$10$aYICmwF68BSgKqkh8p/H6ePulwS7kDkL1/4LfqLWbn58UWrte1jWm',0,0.00,0,0,0,0,'Unverified',0,'2024-04-05 10:05:46',NULL,'','',1,1,'',0,'','31.173.85.208','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','07811dc6c422334ce36a09ff5cd6fe71','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-06',0),(371,'zubdokDanna','zubdokDanna','zubdokDannaWL','z.u.b.do.k.t.or.r.u@gmail.com','','','','','','','$2y$10$P2XbfsTDLbRPJOp9h8trwOkAhbQ/68L3puracVvSHwVfhxB.ylFYO',0,0.00,0,0,0,0,'Active',0,'2024-04-08 21:10:45',NULL,'','',1,1,'',1,'95.165.157.34','95.165.157.34','','','','2024-07-04 23:42:46',2,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f610a13de080fb8df6cf972fc01ad93f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-10',0),(372,'DanielBinly','DanielBinly','DanielBinlyXI','winsatall.4ever@gmail.com','','','','','','','$2y$10$H.UB29coQWAkC1cYbca90OclEwqU5.THX0evtj81GlFlGRDnMG8py',0,0.00,0,0,0,0,'Active',0,'2024-04-10 09:13:10',NULL,'','',1,1,'',1,'54.37.234.111','51.68.196.224','','','','2024-11-10 22:49:45',2,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','65f148c815a4ebfaf8eb150460ba94fc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-11',0),(373,'Justininema','Justininema','JustininemaNZ','fanovmitro@yandex.com','','','','','','','$2y$10$igzPJ95sXBtIFu6M/b1k2O43fX9m2W5XbofQmD9dVi3CCplYGJr8K',0,0.00,0,0,0,0,'Unverified',0,'2024-04-10 16:54:46',NULL,'','',1,1,'',0,'','77.222.111.160','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','8725fb777f25776ffa9076e44fcfd776','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-11',0),(374,'freecash','nick','granger','crtswaging@gmail.com','','','','','','','$2y$10$4PUWvqr4.W4XzUdQMEP8aOtSjydtRqwF98Qyvtiq20nmuSjDo/dpi',5,0.00,0,0,0,0,'Unverified',0,'2024-04-13 11:40:14',NULL,'','',1,1,'',0,'','74.68.79.6','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f0b76267fbe12b936bd65e203dc675c1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-14',0),(375,'RaymondCam','RaymondCam','RaymondCamQG','seo2@bahiscom.pro','','','','','','','$2y$10$Yy93dAXYnDUaedogizvjPu76Y9ZtvWsKazu7TQpseh5kkqqYe9Poe',0,0.00,0,0,0,0,'Active',0,'2024-04-15 12:13:20',NULL,'','',1,1,'',1,'92.44.190.148','92.44.190.148','','','','2024-04-15 19:27:38',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2024','da647c549dde572c2c5edc4f5bef039c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-16',0),(376,'GloriaVex','GloriaVex','GloriaVexWX','dovplaczk@farironalds.com','','','','','','','$2y$10$wP14VssfcSRrNCje1lPk8uGYl/cQTXJIAbLTicWdgo18dyd6LhKH.',0,0.00,0,0,0,0,'Active',0,'2024-04-16 05:48:38',NULL,'','',1,1,'',1,'37.139.53.84','37.139.53.84','','','','2024-04-17 13:19:44',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2024','22cf8d98dca2b9de5052ae9253bddef3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-17',0),(377,'RobertElarf','RobertElarf','RobertElarfVZ','inet4747@outlook.com','','','','','','','$2y$10$BW5F8yvkeVJI1uCjsS1mvuDLf4QZjK.AOsLYAN0ylfhcrP/Sn2KmW',0,0.00,0,0,0,0,'Active',0,'2024-04-18 17:12:18',NULL,'','',1,1,'',1,'93.82.141.218','93.82.141.218','','','','2024-04-19 03:57:47',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2024','3c565485bbd2c54bb0ebe05c7ec741fc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-19',0),(378,'amy1978','Amy','Holder','mystoreinfo95@gmail.com','','','','','','','$2y$10$rrYkECLjOfgPHHmQCLqGMOjuNWx0hvdA.t28EdUrpB1a4AXi2pyiW',5,0.00,0,0,0,0,'Active',0,'2024-04-22 04:15:54',NULL,'','',1,1,'',1,'149.167.29.122','149.167.29.122','','','','2024-04-22 22:33:56',3,'0/0/0',200,425,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2024','f7e6c85504ce6e82442c770f7c8606f0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-23',0),(379,'LarryHeill','LarryHeill','LarryHeillFC','wyamsler6666@hotmail.com','','','','','','','$2y$10$EL2tuXEisboNjTtfSKpaJO7g/ujKjB2/3sCPvvQJsP09x.XTZuZeK',0,0.00,0,0,0,0,'Unverified',0,'2024-04-22 05:29:09',NULL,'','',1,1,'',0,'','193.7.219.26','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f4d87ed3b0dbf9c79746d00cedbb5e78','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-23',0),(380,'JacobBaw','JacobBaw','JacobBawKF','raineyled8@gmail.com','','','','','','','$2y$10$AAlwDPa5ffAICIIw3QAqNOA5tx36dzD8qaqEjwDN4r1.3EwS3bsDG',0,0.00,0,0,0,0,'Unverified',0,'2024-04-23 18:47:40',NULL,'','',1,1,'',0,'','31.173.86.212','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','058d6f2fbe951a5a56d96b1f1a6bca1c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-25',0),(381,'kpranav101','Pranav','Kushwaha','kpranav101@yahoo.com','','','','','','','$2y$10$GV687J1Nl6YSreKvpF4MHe/LlIRv3A1ZU/.Y0qiWRvf8lhDR1Pzc.',131,0.00,0,0,0,0,'Active',0,'2024-04-26 00:03:32',NULL,'','',1,1,'',1,'152.58.184.151','152.58.184.151','','','','2024-04-26 07:06:17',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2024','c6776f93bc9afe2e511a1dbd5478362c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-04-27',0),(382,'PromotionAgove','PromotionAgove','PromotionAgoveLX','l.e.n.a.g.op.k.a.l.o.7.3@gmail.com','','','','','','','$2y$10$b0wFfVa5b/VW8qP5AwCAW.uLbgD3EpgS7w1mHdLc5m5Q2GZ1kxAyu',0,0.00,0,0,0,0,'Active',0,'2024-05-04 22:07:11',NULL,'','',1,1,'',1,'185.253.97.235','92.204.188.254','','','','2024-09-06 19:51:47',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'05/2024','0c4cf62204433859b1f8da8f149dd0ca','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-05-06',0),(383,'Frankvoise','Frankvoise','FrankvoiseJW','corneliuselliot662@gmail.com','','','','','','','$2y$10$KxhPREnRbnYKLaFb4KAKWOnux6m0H9XVp1OWkP9rB7.q4jd4ouUO.',0,0.00,0,0,0,0,'Unverified',0,'2024-05-09 01:48:45',NULL,'','',1,1,'',0,'','31.173.84.59','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','3f53d7190148675e3cd472fc826828c5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-05-10',0),(384,'bkDeeds','bkDeeds','bkDeedsCW','pertokarra@mailcos.site','','','','','','','$2y$10$9/oSiZivElAwNDwvyJOz6ufsZzI6LywGaCfGq18YXAPqO6fDrZGv6',0,0.00,0,0,0,0,'Active',0,'2024-05-14 11:05:27',NULL,'','',1,1,'',1,'46.8.10.206','185.181.245.141','','','','2024-05-14 18:09:31',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','8c4f839b287d8a4d311eeaad4f8ceb97','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-05-15',0),(385,'Rhee','Terry','Maloka','listprofile@outlook.com','','','','','','','$2y$10$vAgv7/FeJ../Cenq8dUvEu4fT3V56H1DDTsFRdim4MnThRnneXWUG',131,0.00,0,0,0,0,'Active',0,'2024-05-23 12:58:35',NULL,'','',1,1,'',1,'41.121.4.247','41.121.4.247','','','','2024-05-23 20:01:49',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'05/2024','a1c3ae6c49a89d92aef2d423dadb477f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-05-24',0),(386,'JesusNot','JesusNot','JesusNotKT','pesuhinacap917@gmail.com','','','','','','','$2y$10$110ON9Nu8av0O7Gc90VFw.ECfdofKOTq5VgNqL3L7e6eCCxlr104K',0,0.00,0,0,0,0,'Unverified',0,'2024-05-30 00:00:32',NULL,'','',1,1,'',0,'','31.173.80.27','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','566f0ea4f6c2e947f36795c8f58ba901','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-05-31',0),(387,'Brucelar','Brucelar','BrucelarHD','arbuz2471@outlook.com','','','','','','','$2y$10$b8MzHk4sTic8RFtZMnKNfur2ax8.tnBkNM7Qc7QAlK1IDORk1qc6e',0,0.00,0,0,0,0,'Active',0,'2024-06-02 05:33:35',NULL,'','',1,1,'',1,'84.240.211.234','84.240.211.234','','','','2024-06-07 20:55:15',9,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2024','f5496252609c43eb8a3d147ab9b9c006','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-06-03',0),(388,'teamrotator','Marius','Stander','4mstander@gmail.com','','','','','','','$2y$10$3K3CKqd8P50tG89zF2xhOe9SYqUn.cqeS896tmVz25sgmtVyHKWnC',89,0.00,0,0,0,0,'Active',0,'2024-06-02 23:30:42',NULL,'','',1,1,'',1,'185.219.142.178','192.143.142.156','','','','2026-04-23 10:58:47',673,'0/0/0',0,975,0,0,975,0,0,0,0,1772619459,1772619459,1772630780,1772619459,0,83,0,0,0,0,64,0,0,0,0,0,0,0,'04/2026','123650dd0560587918b3d771cf0c0171','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-06-04',0),(389,'Davidton','Davidton','DavidtonBB','irazanayu91@gmail.com','','','','','','','$2y$10$jjp42sU2sVdqC2FhiCHTquLQ0qkYEmiorwgvDrtBj/azMgaeVcvjO',0,0.00,0,0,0,0,'Unverified',0,'2024-06-11 19:11:05',NULL,'','',1,1,'',0,'','31.173.87.184','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','1b72746255ef01f9d75400995c62ea12','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-06-13',0),(390,'RobertBlalo','RobertBlalo','RobertBlaloWE','darmed1106@outlook.com','','','','','','','$2y$10$Tc5218FWUHxtVBhgx9O6Yu49ggW.JnzN3hgc5scTWTKJIPDJLPDVm',0,0.00,0,0,0,0,'Active',0,'2024-06-15 13:35:18',NULL,'','',1,1,'',1,'84.240.211.234','84.240.211.234','','','','2024-06-21 01:12:05',3,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2024','d3aeec875c479e55d1cdeea161842ec6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-06-16',0),(391,'Drumlion69','Cliff','Collins','drumlion6969@hotmail.com','','','','','','','$2y$10$LtclZOwqgj/UGBSSp1Keh.0F1cnA98zzHiIDKaoOhJcmJ/T8RXWz2',0,0.00,0,0,0,0,'Active',0,'2024-06-18 11:11:19',NULL,'','',1,1,'',1,'99.166.167.82','99.166.167.82','','','','2024-06-20 20:22:55',3,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2024','820a8f5c40c91fbd63f19519314ca277','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-06-19',0),(392,'Karinatak','Karinatak','KarinatakKW','xekxap@world23.online','','','','','','','$2y$10$XXHNBsUAFYnGMBt7nl9FlOILnuwBnTWypvz6RUtmUmtfqUTiclS2a',0,0.00,0,0,0,0,'Active',0,'2024-06-22 10:59:37',NULL,'','',1,1,'',1,'94.25.225.21','94.25.225.21','','','','2024-06-22 18:00:55',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'06/2024','630eff1b380505a67570dff952ce4ad7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-06-23',0),(393,'djoudikam','Kamel','Djoudi','kdjoudi283@gmail.com','','','','','','','$2y$10$RBny92wzsySKihK7TLTLr.dH9o8njrEXtedRyVutnolioDBzv/t.C',5,0.00,0,0,0,0,'Active',0,'2024-06-24 14:24:20',NULL,'','',1,1,'',1,'197.204.185.198','105.100.91.120','','','','2024-06-25 09:39:46',2,'0/0/0',0,425,0,0,425,0,1772582438,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,'06/2024','60495b4e033e9f60b32a6607b587aadd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-06-25',0),(394,'ThomasDycle','ThomasDycle','ThomasDycleHG','erlynbeckham@gmail.com','','','','','','','$2y$10$ZveGz7RevkMAebvWMW1Ycun3XSv.jgo/pvW6dzXbPJrMbEFzmvSP.',0,0.00,0,0,0,0,'Unverified',0,'2024-07-10 04:19:57',NULL,'','',1,1,'',0,'','178.176.77.115','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','4fa04fbc0b0ce68711f7550ce6113720','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-07-11',0),(395,'Chosen1woo','Anthon','Sander','sanderanthon21@gmail.com','','','','','','','$2y$10$xgGAz0nHO4BQC6h2z5tKlOShjpH6lLNyJ3/Ul5Rcd8zWsxTzPmSPC',311,0.00,0,0,0,0,'Active',0,'2024-07-23 03:46:20',NULL,'','',1,1,'',1,'62.80.214.156','62.80.214.156','','','','2024-07-24 07:26:32',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2024','b7ee0d0d4d5ef995aae0fc691e6d840d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-07-24',0),(396,'Cyberion','Bedian','Klaase','beemarkgetbuss@gmail.com','','','','','','','$2y$10$i5Hoo0zpXBUV3HY1JuDVY.r.jq2Hv8XpA6lsI0t.VxDVxQCep1oYi',5,0.00,0,0,0,0,'Active',0,'2024-07-24 23:39:17',NULL,'','',1,1,'',1,'165.0.49.59','165.0.49.59','','','','2024-08-13 17:11:00',4,'0/0/0',200,450,0,0,450,0,0,0,1723569733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2024','070c425fd005e11aec1a90706dda66f5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-07-26',0),(397,'SrejdnStolo','SrejdnStolo','SrejdnStoloHE','www@mail.ru','','','','','','','$2y$10$m9nJuBb3gsU7Rz1nu0JBaeqURwvhdWAvtNYUL5bb6SLsKbwQlNJ1i',0,0.00,0,0,0,0,'Unverified',0,'2024-07-27 17:42:00',NULL,'','',1,1,'',0,'','188.127.225.3','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','4ea6a546c19499318091a9df40a13181','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-07-29',0),(398,'Kissclbew','Kissclbew','KissclbewHE','1@www-marketing.ru','','','','','','','$2y$10$5uQLNhIjl/R/U1iH4MtF/.dkUcZblGeDcuIteEcTJXd6YnNWSlhMS',0,0.00,0,0,0,0,'Unverified',0,'2024-07-29 17:06:15',NULL,'','',1,1,'',0,'','37.228.88.214','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','abe8e03e3ac71c2ec3bfb0de042638d8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-07-30',0),(399,'Francisvof','Francisvof','FrancisvofCV','darci4medrano@gmail.com','','','','','','','$2y$10$RpUIHEWxn2JQkB/Wj.SPguA8bvjXhyADCTJUlAZShZONI/qavSefu',0,0.00,0,0,0,0,'Unverified',0,'2024-08-01 02:28:53',NULL,'','',1,1,'',0,'','31.173.85.78','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','28fc2782ea7ef51c1104ccf7b9bea13d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-08-02',0),(400,'omrane31','amrane','arab','silver91arab@gmail.com','','','','','','','$2y$10$R37dmbfs/kcAqXlKTUGZie3FsjMY41.dNk4UNHsONGH037wYdK/Fu',89,0.00,0,0,0,0,'Active',0,'2024-08-19 14:00:46',NULL,'','',1,1,'',1,'41.99.222.153','41.99.222.153','','','','2024-08-19 21:02:17',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'08/2024','ff8c1a3bd0c441439a0a081e560c85fc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-08-20',0),(401,'100dollars2success','Edward','Taylor','trafficexchangeking4@gmail.com','','','','','','','$2y$10$Qy6d3MwjVYf4WnCpXjZJ9.pWf82LSJGEDFzaGENqIlpnkNBWbwHNS',5,0.00,0,0,0,0,'Active',0,'2024-08-19 19:05:56',NULL,'','',1,1,'',1,'76.87.163.31','76.87.163.31','','','','2024-11-17 03:36:05',6,'0/0/0',2,50,0,0,50,0,1776203110,0,1772153263,1731814561,1731814561,1724195767,1731814561,0,0,0,1,0,1,2,0,0,0,0,0,0,0,'11/2024','b6f0479ae87d244975439c6124592772','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-08-21',0),(402,'AnthonyDrary','AnthonyDrary','AnthonyDraryOU','catch@sit.codepb.com','','','','','','','$2y$10$E.1Bclj3FwmA4ZRtb9Ivk.GRkMv92iiQRV/XHObiHO7lcdAJuUrNy',0,0.00,0,0,0,0,'Unverified',0,'2024-08-21 19:26:14',NULL,'','',1,1,'',0,'','173.165.243.209','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','cb59b747f88a35e0d452377f60f7c25f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-08-23',0),(403,'jdmesser','Darrel','Messer','darrelmesseronline@gmail.com','','','','','','','$2y$10$hgaOvm0dhJrHwzvGaRjYN.aqe.bIliQaU7FFNOGgwoY7.9WtkLmzW',5,0.00,0,0,0,0,'Active',0,'2024-08-24 20:26:14',NULL,'','',1,1,'',1,'74.221.3.104','74.221.3.104','','','','2024-08-31 13:58:02',3,'0/0/0',8,25,0,0,25,0,0,0,0,1741621488,1741621488,0,1741621488,0,21,0,0,0,0,8,0,0,0,0,0,0,0,'08/2024','69ec5030f78a9b735402d133317bf5f6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-08-26',0),(404,'Stephennaisp','Stephennaisp','StephennaispRX','murt4r@yandex.com','','','','','','','$2y$10$dtWTdmvZI3o5VRgrlaL/i.HP7J80nRnIyHGZaFiYPi/pmBg9TQDAW',0,0.00,0,0,0,0,'Unverified',0,'2024-08-29 12:30:23',NULL,'','',1,1,'',0,'','77.222.127.170','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f42c7f9c8aeab0fc412031e192e2119d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-08-30',0),(405,'marketing2k','daniel','dreyfuss','ddreyfuss520@gmail.com','704 west park ave','Belgrade,MT','MT','59714','US','4064518539','$2y$10$HJzYx//hyQF2BiAIIwhqpu2oTGc/NJX68swTHH/pRcth1i8smyciS',5,0.00,0,0,0,0,'Active',0,'2024-09-03 10:54:19',NULL,'','ddreyfuss520@gmail.com',1,1,'',1,'184.167.247.134','184.167.247.134','','','','2024-11-09 22:28:15',7,'0/0/0',202,50,0,0,50,0,1772587679,0,1775979144,1741492530,1741492530,0,1741492530,0,0,0,1,0,1,2,0,0,0,0,0,0,0,'11/2024','02aff7969b61d33fe215dba6bf0056c8','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-09-04',0),(406,'Alexeyhog','Alexeyhog','AlexeyhogXM','hippopotamus1912@gmail.com','','','','','','','$2y$10$tJIBXBgEsghqzbi2zJ6Pf.dh475OkqKsZDJbwrLSHB9.w2lHoMCB2',0,0.00,0,0,0,0,'Unverified',0,'2024-09-17 22:36:06',NULL,'','',1,1,'',0,'','95.164.203.238','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','357a6fdf7642bf815a88822c447d9dc4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-09-19',0),(407,'larrycharles777','LarryC','Charles','prosperitylarryc777@gmail.com','','','','','','','$2y$10$AblBTFvWSbcV0aqz2SAbheyOWp6zbE/dIN4J4BK7Q2nuW32tt3Tlu',131,0.00,0,0,0,0,'Active',0,'2024-09-18 22:59:10',NULL,'','',1,1,'',1,'204.83.29.27','204.83.29.27','','','','2024-09-19 06:29:21',3,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2024','7fa1575cbd7027c9a799983a485c3c2f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-09-20',0),(408,'rnickels','steven','nickels','jackdanyule89@gmail.com','','','','','','','$2y$10$.aCt7AaEar3NQR7WWjhIUu2nDdXMIONhL/TZWQUghH8r7ADDnnW2u',131,0.00,0,0,0,0,'Active',0,'2024-09-20 21:06:34',NULL,'','',1,1,'',1,'69.57.111.229','69.57.111.229','','','','2024-10-08 05:44:50',4,'0/0/0',1000,50,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2024','048e9aee4ffe42efbf7865f0bd5a2fa4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-09-22',0),(409,'MichaelQuike','MichaelQuike','MichaelQuikeTH','siobrowwoodje1976@mail.ru','','','','','','','$2y$10$q8lgk6IicJCTpqkMx/Lok.bIVJPv7sBej6G9HrSWd5zplYPmZ.tRq',0,0.00,0,0,0,0,'Unverified',0,'2024-09-22 01:54:16',NULL,'','',1,1,'',0,'','195.2.79.165','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a223c6b3710f85df22e9377d6c4f7553','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-09-23',0),(410,'wealthmakers','Jeffrey','Bennett','familyblitz@gmail.com','','','','','','','$2y$10$7J5NjqiI02ogwDc5aDCvhuYplKxa0UvBZzpzRYX5dhAqRw7rFzvru',5,0.00,0,0,0,0,'Active',0,'2024-09-22 03:51:12',NULL,'','',1,1,'',1,'205.206.111.215','205.206.111.215','','','','2024-12-13 00:05:33',5,'0/0/0',4,75,0,0,75,0,0,0,0,1734048326,1734048326,0,1734048326,0,0,0,0,0,0,4,0,0,0,0,0,0,0,'12/2024','0aae0fede9a4d278e2f9a171e62fc76b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-09-23',0),(411,'RonaldTus','RonaldTus','RonaldTusTQ','zimmermanyvonne551@gmail.com','','','','','','','$2y$10$Ew9sCqH50rBLUbgoL2eQMekTNJZrMVx/I4ZoQrf57CIuleR7CyUsq',0,0.00,0,0,0,0,'Unverified',0,'2024-09-24 11:51:33',NULL,'','',1,1,'',0,'','31.173.85.76','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','141aa4fef48df77f954d60a373a3c322','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-09-25',0),(412,'mstclayton','Theresa','Clayton','workathomevenues@gmail.com','','','','','','','$2y$10$U4XOWzzRCtb1ua3LnklKhOQ/DGd4aWjQBSWgRsooiNMvTPVlrdjay',89,0.00,0,0,0,0,'Active',0,'2024-09-26 17:16:32',NULL,'','',1,1,'',1,'184.88.88.212','184.88.88.212','','','','2024-09-27 18:11:58',3,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'09/2024','3e60e09c222f206c725385f53d7e567c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-09-27',0),(413,'mswtmgr1','Matt','Shapiro','mswtmgr1lists@gmail.com','','','','','','','$2y$10$zyh7k36cnMA5zb3ddFswteY2wmI7WFKLMns099wSOIctKe9NQFUYG',75,0.00,0,0,0,0,'Active',0,'2024-09-27 10:11:03',NULL,'','',1,1,'',1,'66.177.155.63','66.177.155.63','','','','2025-03-28 02:11:47',5,'0/0/0',203,0,0,0,475,0,1775391215,0,0,1731658673,1731658673,0,1731658673,0,0,0,1,0,0,3,0,0,0,0,0,0,0,'03/2025','63c4b1baf3b4460fa9936b1a20919bec','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-09-28',0),(414,'Bengals698','Brian','Kappes','brianjkappes@gmail.com','','','','','','','$2y$10$vgxdHAIBoggkE/9pvixtY.s4AUPNi2rYcftEyiDNZWOc4tGyax5uC',5,0.00,0,0,0,0,'Active',0,'2024-10-06 02:16:00',NULL,'','',1,1,'',1,'67.115.75.226','67.115.75.226','','','','2024-10-06 09:19:51',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2024','e8dfff4676a47048d6f0c4ef899593dd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-10-07',0),(415,'Georgepaund','Georgepaund','GeorgepaundLY','arcangelakoepp@gmail.com','','','','','','','$2y$10$sfMkGVIZBTTx6AePmZNYtuWWYC2gHiTsiFZasUr/iDVSScfYfCgmC',0,0.00,0,0,0,0,'Unverified',0,'2024-10-08 10:45:39',NULL,'','',1,1,'',0,'','31.173.86.208','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','41ae36ecb9b3eee609d05b90c14222fb','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-10-09',0),(416,'Ismaelcrync','Ismaelcrync','IsmaelcryncOQ','jisankape@list.ru','','','','','','','$2y$10$aMRvs638HHbehvb9g8HmTumNBWATsmjw4yQA7H6ttyRqk7Uzbf5Rq',0,0.00,0,0,0,0,'Unverified',0,'2024-10-09 22:22:06',NULL,'','',1,1,'',0,'','195.2.79.165','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','bb997292e2545f3c79efb7eecdf5dece','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-10-11',0),(417,'btw300','Bobby','Williams','btwfunds@gmail.com','','','','','','','$2y$10$dyUAoJa2kR1N6NxxlGws6uZKeId3zWC5PY1dLhE6/nOixxBT0N6A.',50,0.00,0,0,0,0,'Active',0,'2024-10-22 07:27:40',NULL,'','',1,1,'',1,'66.74.217.63','66.74.217.63','','','','2024-10-22 16:53:30',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'10/2024','36f4d832825380f102846560a5104c90','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-10-23',0),(418,'AnnelTom','AnnelTom','AnnelTomTG','timspell@fvmaily.com','','','','','','','$2y$10$TSJK9G6emdqLCRHt5dfBROuHMNUTbYouxLP.mpOdnn6cJVzL9KqZm',0,0.00,0,0,0,0,'Unverified',0,'2024-11-26 10:13:36',NULL,'','',1,1,'',0,'','51.89.6.184','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','685217557383cd194b4f10ae4b39eebf','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-11-27',0),(419,'CharlesDen','CharlesDen','CharlesDenPR','olusayojix510@gmail.com','','','','','','','$2y$10$7UMoZ927..rrGp3UObb6gOowuuTKdmCVjGM3ojiDxX1qqLRq1dH0m',0,0.00,0,0,0,0,'Unverified',0,'2024-11-29 19:09:20',NULL,'','',1,1,'',0,'','178.176.78.140','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','fbad540b2f3b5638a9be9aa6a4d8e450','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-12-01',0),(420,'tcarr5283','Tyler','Carr','farrone831@gmail.com','','','','','','','$2y$10$RUsiToHL4XTqJFNQXQQK.uQPWGWiu6CRP/EJfZEpP87/0QU8UZzvi',5,0.00,0,0,0,0,'Active',0,'2024-12-10 23:10:29',NULL,'','',1,1,'',1,'173.47.247.124','173.47.247.124','','','','2025-01-18 13:19:39',2,'0/0/0',0,450,0,0,450,0,0,0,0,0,0,1733901559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2025','754dda4b1ba34c6fa89716b85d68532b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-12-12',0),(421,'m3emp100','AvinashS','S','m3emp100@gmail.com','','','','','','','$2y$10$qfoPfvlP6yYGLtTwYoXDIu8ggG2KNY/0Zwx4LPIwbXMq00ZIEsyPa',0,0.00,0,0,0,0,'Unverified',0,'2024-12-18 08:25:09',NULL,'','',1,1,'',0,'','103.241.226.253','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','39027dfad5138c9ca0c474d71db915c3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2024-12-19',0),(422,'johnsoftley','John','Softley','jsoftley335@gmail.com','','','','','','','$2y$10$5fzdc33PFInljHCmbOjmbO3nOv1efbjSWe13xYBjqzpsRQEPJWCpC',5,0.00,0,0,0,0,'Active',0,'2025-01-05 14:25:09',NULL,'','',1,1,'',1,'50.98.25.159','50.98.25.159','','','','2025-01-06 16:36:06',3,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2025','ee0e95249268b86ff2053bef214bfeda','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-01-06',0),(423,'Shavon6192','Shavon','George','shavongeorge@gmail.com','','','','','','','$2y$10$HCB3Btr.6YWc2azkCnrlTOB9u0qvszCXMvjf8bu3qguA87BUYIdT6',89,0.00,0,0,0,0,'Active',0,'2025-01-09 09:40:55',NULL,'','',1,1,'',1,'71.167.47.18','71.167.47.18','','','','2025-01-09 17:44:50',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'01/2025','66e8ba8216a1e152d72653d99a4f03ab','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-01-10',0),(424,'Receive10581BitcoinPaymentsTapHe','Receive10581BitcoinP','Receive10581BitcoinPaymentsTap','hru8@kirzzioh.store','','','','','','','$2y$10$JkmacUAIQlSkAo1S6KP8Mex0zY39oNugScSFCwr37jVPaJMNteDs2',0,0.00,0,0,0,0,'Unverified',0,'2025-01-27 22:39:17',NULL,'','',1,1,'',0,'','138.99.37.28','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a5fdfa672284da6bf4f4326e2b3698bd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-01-29',0),(425,'VernonThopy','VernonThopy','VernonThopyNP','bozhenok992@gmail.com','','','','','','','$2y$10$uU3MI4wt4zmzrewFnV1qZefZMmiUEUmo0Q.kmomAZjR09rw6GAs9y',0,0.00,0,0,0,0,'Unverified',0,'2025-01-28 15:55:31',NULL,'','',1,1,'',0,'','31.173.82.181','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d6539d3b57159babf6a72e106beb45bd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-01-29',0),(426,'Walterhig','Walterhig','1xslots','001xrum@sitesseo.site','','','','','','','$2y$10$xibc.aFnBE9Q9bY7n1vmye9WpTPkxDDj7tP9a1P1DmysMtaFvl2N2',0,0.00,0,0,0,0,'Active',0,'2025-02-17 10:07:33',NULL,'','',1,1,'',1,'37.212.82.230','37.212.82.230','','','','2025-02-17 18:11:19',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'02/2025','7c21c080c204c2ec7523ae6fc12033a6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-02-18',0),(428,'danwatson','Dan','Watson','arkhamindustries@gmail.com','','','','','','','$2y$10$BKQePb.c4XU1KuAFLMwrL.Cr8CQHlqpuYBz20UdrRHKLjRoox1qge',5,0.00,0,0,0,0,'Active',0,'2025-02-24 15:33:05',NULL,'','',1,1,'',1,'173.28.153.168','173.28.153.168','','','','2025-02-24 23:33:39',1,'0/0/0',0,0,0,0,425,0,1772579874,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,'02/2025','9af76329c78e28c977ab1bcd1c3fe9b8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-02-25',0),(429,'utopiljdki','utopiljdki','utopiligkiBB','dqbsbztomki@domhost.website','','','','','','','$2y$10$8grmGuhqOBVthm9od8Qa3uIczKTqIr5tyooNoEFeh9bcvs3mJYh6.',0,0.00,0,0,0,0,'Unverified',0,'2025-03-02 04:33:31',NULL,'','',1,1,'',0,'','104.207.43.239','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','6aadca7bd86c4743e6724f9607256126','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-03-03',0),(430,'Gjohie','John','Goodall','johngoodall30@gmail.com','','','','','','','$2y$10$s0jpYNTKOiZ4HMSw7stvTOqyoWG.tvze/J9nBO3/i1UmctAClVjZi',0,0.00,0,0,0,0,'Active',0,'2025-03-07 09:09:26',NULL,'','',1,1,'',1,'166.199.8.65','166.199.8.65','','','','2025-03-07 17:11:31',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','38181d991caac98be8fb2ecb8bd0f166','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-03-08',0),(431,'blueflash','ariel','washington','arielwashington315@gmail.com','','','','','','','$2y$10$Zr3hYA0oT0gnURCWMXltmuNXJMiLBbAwL/EgvP9AEwu6nCfSswoQK',0,0.00,0,0,0,0,'Active',0,'2025-03-10 14:42:31',NULL,'','',1,1,'',1,'108.195.33.157','108.195.33.157','','','','2025-03-10 21:45:30',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2025','01882513d5fa7c329e940dda99b12147','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-03-11',0),(432,'glenpalo','Glen','Palo','glen.palo71@gmail.com','','','','','','','$2y$10$CUzyceTUwM5pCyi91Qb7benE8NTFiSqc78jkgQVyzqlcjhj4UsAba',0,0.00,0,0,0,0,'Active',0,'2025-03-10 18:33:08',NULL,'','',1,1,'',1,'100.15.50.73','100.15.50.73','','','','2025-03-11 01:56:24',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2025','931af583573227f0220bc568c65ce104','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-03-12',0),(433,'roysmith','Roy','Smith','roywsmith@gmail.com','','','','','','','$2y$10$LxgSjHSXi6y6uPd4uKjP/eJQFV7JC76R9gYpGXIef8nlvyENtet5y',0,0.00,0,0,0,0,'Active',0,'2025-03-15 21:40:11',NULL,'','',1,1,'',1,'76.168.165.151','76.168.165.151','','','','2025-03-20 04:52:59',5,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2025','0224cd598e48c5041c7947fd5cb20d53','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-03-17',0),(434,'Ken Banks','Ken','Banks','ken@kenbanks.net','','','','','AU','','$2y$10$MBBn1kfsYTiwdxeJq0F3veub9.J/X4h7dzmQ.ltCX/O.Puyhk0DXC',0,0.00,0,0,0,0,'Active',0,'2025-03-17 14:17:41',NULL,'','',1,1,'',1,'68.56.198.164','68.56.198.164','','','','2025-03-21 10:52:51',4,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2025','df5354693177e83e8ba089e94b7b6b55','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-03-18',0),(435,'Bluegrassbaddi','Alexandra','Goggins','alexandragoggins66@gmail.com','','','','','','','$2y$10$/7tW7idcb3SzhHxxSCvY9ucpePz4yRjkUtFmYZGNa5xgZBytIjeGC',0,0.00,0,0,0,0,'Active',0,'2025-03-17 15:38:30',NULL,'','',1,1,'',1,'199.168.73.27','199.168.73.27','','','','2025-03-17 23:00:36',5,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2025','cd89fef7ffdd490db800357f47722b20','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-03-18',0),(436,'MDcompany','MUSTAFA','danishmand','mdcompany1819@gmail.com','','','','','','','$2y$10$7SH0UiOef12UvPqDcqVLYeasjzNUjlkmY6/ONokUmrXy/M6ka0TDa',0,0.00,0,0,0,0,'Unverified',0,'2025-03-27 07:17:49',NULL,'','',1,1,'',0,'','213.89.144.239','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ac64504cc249b070772848642cffe6ff','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-03-28',0),(437,'Barryvak','Barryvak','BarryvakOL','ladalijerfery@gmail.com','','','','','','','$2y$10$mNWIJfiqy1epqgHzHqQHfuIbFEEwEHdPE144O2HxjVIy/uSe90X6y',0,0.00,0,0,0,0,'Unverified',0,'2025-04-01 08:06:19',NULL,'','',1,1,'',0,'','83.220.239.180','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5c7a3b81a677c639c76989610183c0e0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-04-02',0),(438,'IraTobby','IraTobby','IraTobbyCT','vir-chat@inbox.lv','','','','','','','$2y$10$E3nOSwZc/nhPkEz9b3lyuuEphpyrXd/qv3Zb5Orm8OV.E0aD.ayPi',0,0.00,0,0,0,0,'Active',0,'2025-04-03 23:31:57',NULL,'','',1,1,'',1,'5.167.100.142','5.167.100.142','','','','2025-04-04 06:33:51',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','dcf3219715a7c9cd9286f19db46f2384','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-04-05',0),(439,'steverob1066','Steve','Roberts','steverob1066@gmail.com','','','','','','','$2y$10$ik93/49Aj7mZYwcamVDbtu8XtZ2ih4QMazOqonyrCNFbv4hJ.aemW',0,0.00,0,0,0,0,'Active',0,'2025-04-12 13:05:04',NULL,'','',1,1,'',1,'86.132.246.98','86.132.246.98','','','','2025-04-12 20:05:51',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2025','e5841df2166dd424a57127423d276bbe','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-04-13',0),(440,'veirDeeds','veirDeeds','veirDeedsAV','ninertile@gismail.online','','','','','','','$2y$10$56Ryi6wiUZDyOfaFkJyTGuAfyQan7Adz8SJ9nqTta/Hyxy91YlYne',0,0.00,0,0,0,0,'Active',0,'2025-04-18 06:27:57',NULL,'','',1,1,'',1,'188.130.129.58','185.181.246.244','','','','2025-04-18 13:30:54',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'04/2025','7b4773c039d539af17c883eb9283dd14','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-04-19',0),(441,'socialgrowthassist','vinod','cp','socialgrowthassist@gmail.com','','','','','','','$2y$10$ubCaNPfdPPxbVEnQjpX4Ku1Vxfgs2MmSl0pzx9ek/EEad3TSh7Kvy',5,0.00,0,0,0,0,'Active',0,'2025-04-25 20:31:58',NULL,'','',1,1,'',1,'223.186.83.178','192.140.152.67','','','','2025-06-04 15:27:27',4,'0/0/0',0,450,0,0,450,0,0,0,1772590854,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'06/2025','1ea97de85eb634d580161c603422437f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-04-27',0),(442,'Davidhig','Davidhig','DavidhigXH','nadezhdaperevalova426@gmail.com','','','','','','','$2y$10$nAimAVOxz.q8CB5hBTK6n.idAYO1oFUrT4u54zP/TCYHQUo2yzcSa',0,0.00,0,0,0,0,'Unverified',0,'2025-05-29 08:33:30',NULL,'','',1,1,'',0,'','178.176.76.143','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d83de59e10227072a9c034ce10029c39','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-05-30',0),(443,'mizDeeds','mizDeeds','mizDeedsGE','papepemi@gismail.online','','','','','','','$2y$10$iupbOQWJcY89pR7H8lJSxepaWQzgDFhs5dUAINtWIo/DOCN4dzs7O',0,0.00,0,0,0,0,'Active',0,'2025-06-19 13:55:29',NULL,'','',1,1,'',1,'46.8.57.209','109.248.143.16','','','','2025-06-19 20:57:14',1,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','0f3c5d0c3666eec8cd311bec6d878915','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-06-20',0),(444,'PhillipGuerb','PhillipGuerb','PhillipGuerbKZ','pavlikkakavonivuro@gmail.com','','','','','','','$2y$10$BykCR2Ovulnm5AKmRYC4lu/bRkvLj.aZb.lsSjFLFBGQM6pEB3cWq',0,0.00,0,0,0,0,'Unverified',0,'2025-06-29 04:53:47',NULL,'','',1,1,'',0,'','31.173.87.88','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','8df707a948fac1b4a0f97aa554886ec8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-06-30',0),(445,'shirleyr','Shirley','Robinson','shirleyr2727@gmail.com','','','','','','','$2y$10$Zq2qU6YjZsb7XIMsEB/8..PbhQqcu1AARcUywnMuH8813z28evQ2C',0,0.00,0,0,0,0,'Active',0,'2025-06-30 20:52:46',NULL,'','',1,1,'',1,'98.187.105.105','155.117.201.41','','','','2025-07-01 13:28:56',6,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2025','9b644ca9f37e3699ddf2055800130aa9','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-07-02',0),(446,'ukexima66','Aneng','LamShong','ukexima66@gmail.com','','','','','','','$2y$10$ISOOFvMPWM2tyd5O468Qr.97tb8jzc6hwFmaEO7zoWULBy8ji4Yhu',89,0.00,0,0,0,0,'Active',0,'2025-07-09 03:36:19',NULL,'','',1,1,'',1,'49.47.140.1','49.47.140.1','','','','2025-07-09 10:37:38',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'07/2025','0c1c995b77ea7312f887ddd9f9d35de5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-07-10',0),(447,'GeorgeDow','GeorgeDow','GeorgeDowOR','allabevruip@gmail.com','','','','','','','$2y$10$QYXK5Mv4K3WKQoV2RYSRAe.wIaIYrWqt0ZX/7pGDscu43jOpU.BbW',0,0.00,0,0,0,0,'Unverified',0,'2025-08-11 00:21:26',NULL,'','',1,1,'',0,'','31.173.87.112','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','251dbb5e528421776ff6e17c87be507f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-08-12',0),(448,'bobz','Bob','Zeis','zbob1050@gmail.com','','','','','US','','$2y$10$L0wUfRNpm4SVyJzjmnjHqOgAHcJJWG6jiJwNPp0AMDAU/XCbskJnS',5,0.00,0,0,0,0,'Active',0,'2025-08-17 09:56:39',NULL,'','',1,1,'',1,'38.248.90.83','138.197.3.222','','','','2026-03-03 23:48:37',6,'0/0/0',398,450,0,0,250,0,0,0,1772619459,1772579874,1772579874,1772582140,1772579874,0,0,0,0,0,1,5,0,0,0,0,0,0,0,'03/2026','73c14008d55c730e10bb9412a5be1a16','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-08-18',0),(449,'Hifv9mbeehttpsztqbt2zwjncom12dap','Hifv9mbeehttpsztqbt2','Hifv9mbeehttpsztqbt2zwjncom12d','fut4@kirzzioh.ru','','','','','','','$2y$10$ZSCGd8svg3BAdVB.P6dZP.0uWGUGPc7MuUmt8PDEuvfgxl4kD1uSu',0,0.00,0,0,0,0,'Unverified',0,'2025-08-23 17:26:59',NULL,'','',1,1,'',0,'','94.131.54.43','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e140dbab44e01e699491a59c9978b924','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-08-25',0),(450,'Maheen421','Maheen','Patel','m3emp109@gmail.com','','','','','','','$2y$10$pz4nnW.Rhrd7oxvy622Z7upu8jhdwAKO2aG3nIQsAbmNluQNGsD7u',0,0.00,0,0,0,0,'Unverified',0,'2025-11-03 10:04:00',NULL,'','',1,1,'',0,'','223.185.41.254','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','cfbc6c5cfb8a3e10fab12aa3512153df','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-11-04',0),(451,'Davidjmoore','David','Moore','dave@uniquecampaigns.ca','','','','','','','$2y$10$48J3k5cC9esXKtLbB5GVk.iK44/tATJNH89XExO5UpZF.Ikh.mscG',131,0.00,0,0,0,0,'Active',0,'2025-11-03 13:36:59',NULL,'','',1,1,'',1,'','173.238.234.100','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','cd0dce8fca267bf1fb86cf43e18d5598','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-11-04',0),(452,'yousesk90bks','Jose','Amoros','joseamoros784@gmail.com','Juan Carlos Primero 28 1Âº D','Callosa de Segura','Alicante/Alacant','03360','ES','618695175','$2y$10$K94ZtuZih8vPgNsKvxDraeZh1UUtECUOaa08aNV.u2beAW.qd.vLe',0,0.00,0,0,0,0,'Active',0,'2025-11-06 10:44:11',NULL,'','',1,1,'',1,'88.98.121.32','88.98.121.32','','','','2025-11-06 18:48:41',2,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'11/2025','93d9033636450402d67cd55e60b3f926','0000-00-00',0.00,0.00,0,0,0,0,0,0,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-11-07',0),(453,'Thesleeper','Daniel','Duncan','duncanjay074@gmail.com','','','','','','','$2y$10$4TIDLkStm1XU.fKqObtBt.jju6CF3IpSQRA94ICBl3c4Ljx1t7Mpm',75,0.00,0,0,0,0,'Unverified',0,'2025-11-07 23:53:39',NULL,'','',1,1,'',0,'','166.199.114.62','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','be767243ca8f574c740fb4c26cc6dceb','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-11-09',0),(454,'CHIRPtwx','CHIRPtwx','zzusalmegmxvdemGP','telepanium@hotmail.com','','','','','','','$2y$10$.//pp2.kd4sjzkeF8MBy7ePtzasg.FQTY4d1UMqTdvOyBZESWcI4W',0,0.00,0,0,0,0,'Unverified',0,'2025-11-13 08:05:21',NULL,'','',1,1,'',0,'','45.170.123.252','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a18aa23ee676d7f5ffb34cf16df3e08c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-11-14',0),(455,'Visionhvb','Visionhvb','xvusalmeuttkduzGP','mtucker51@verizon.net','','','','','','','$2y$10$aOzJV97kCWwlJ0yrCNdPU.CatwWl3T6.BRmp2czef8orot1Y8vkHW',0,0.00,0,0,0,0,'Unverified',0,'2025-11-16 23:40:27',NULL,'','',1,1,'',0,'','98.178.72.30','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','9fd81843ad7f202f26c1a174c7357585','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-11-18',0),(456,'hb100','henk','bruser','henkbruser109@gmail.com','','','','','','','$2y$10$4TKm3I8L.LHanTc2SJJicOfMsbL36dXyCiAkIwG1NDdrVag6gwPBq',5,0.00,0,0,0,0,'Active',0,'2025-12-01 02:10:45',NULL,'','',1,1,'',1,'77.170.249.134','77.170.249.134','','','','2025-12-01 10:24:04',3,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'12/2025','39ea40e164f970c54b0530436d5a9f7a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-12-02',0),(457,'Keypadazhj','Keypadazhj','xzusayme3mhcdwhGP','will@williamro.se','','','','','','','$2y$10$hM3wR/gki5A3KVHM2X2PmuwNwF8vEKNOWhuG/CZ/PawHrgLoDKgjC',0,0.00,0,0,0,0,'Unverified',0,'2025-12-04 07:03:33',NULL,'','',1,1,'',0,'','85.237.62.189','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','375abb16ea7c1f83be31ce4c3495ec41','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-12-05',0),(458,'DavidFrupt','DavidFrupt','DavidFruptNT','cemusuzawot72@gmail.com','','','','','','','$2y$10$v95fZFRnbdYWPMtQw61AWukN8FtVAPvzczRiRsbCfk//w8e0sDRGW',0,0.00,0,0,0,0,'Unverified',0,'2025-12-09 13:21:07',NULL,'','',1,1,'',0,'','31.173.80.245','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','8a56257ea05c74018291954fc56fc448','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-12-10',0),(459,'Kamlesh06','Kamlesh','Khotekar','kamleshkhotekar06@gmail.com','','','','','','','$2y$10$jaRXbyj5pz/ZnpUOPZ3ENe46ADIukpw0oHATf.TuysKmjcUgpKB3y',5,0.00,0,0,0,0,'Unverified',0,'2025-12-23 05:40:05',NULL,'','',1,1,'',0,'','106.192.224.85','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2794f6a20ee0685f4006210f40799acd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2025-12-24',0),(460,'StanleyRer','StanleyRer','StanleyRerSY','qexemozebo68@gmail.com','','','','','','','$2y$10$1t5iOy/3eMJuPUEeT9L8lu2ItI5G//vmDonUKVnS13rLodHzCR42.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-24 08:41:48',NULL,'','',1,1,'',0,'','31.173.87.70','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','15ae3b9d6286f1b2a489ea4f3f4abaed','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-25',0),(461,'CharlesmAith','CharlesmAith','CharlesmAithAP','murtalaaa4@gmail.com','','','','','','','$2y$10$9GiKtdOp6vgpDqbYaeVzmutoZCaXVbLeoJKwK48pD6TR62lB3Sc2q',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:19:11',NULL,'','',1,1,'',0,'','31.173.84.59','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a4814fbe4abdad91842ef1795dcd465b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-26',0),(462,'WesleySOK','WesleySOK','WesleySOKZM','florentinotorres@gmail.com','','','','','','','$2y$10$EAb846Aw1d1vxyVvGFDauOUmby4/YP/icN7yEB4rpJpekNEVGEoAy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:19:30',NULL,'','',1,1,'',0,'','178.176.75.134','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','dd8eb9f23fbd362da0e3f4e70b878c16','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-26',0),(463,'Staceydoole','Staceydoole','StaceydooleJG','twinsrestorationlv@yahoo.com','','','','','','','$2y$10$VcOxlc4guuTzaKU94u.yX.GZv/WWY/SyxpfYp4qqENMXUqLX5PMo.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:28:06',NULL,'','',1,1,'',0,'','94.25.173.220','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','eab9c5e9815adc4c40a6557495eed6d3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(464,'Richardral','Richardral','RichardralWL','cthompson160@cfl.rr.com','','','','','','','$2y$10$a5LYmSNrvhE5mcxTdsHIZ.BaRcJtf1gjIquaSw9Jxp72yhy7hn8ra',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:29:34',NULL,'','',1,1,'',0,'','178.176.73.88','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b440509a0106086a67bc2ea9df0a1dab','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(465,'JosephThock','JosephThock','JosephThockOY','nadinesanderson@msn.com','','','','','','','$2y$10$3nvdN3fM6TiivlxTtXnbnex56IYEAuZhtRh5569apRisliMdJUNQi',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:31:47',NULL,'','',1,1,'',0,'','178.176.79.205','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','1aa057313c28fa4a40c5bc084b11d276','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(466,'Samueltip','Samueltip','SamueltipYE','isabel.mg.812@gmail.com','','','','','','','$2y$10$zkZhfDxAYVTu.12aqRY0zOGRlxUBfniZNvJH.mvTvKk6F7qckWVLK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:31:54',NULL,'','',1,1,'',0,'','31.173.82.16','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','37a749d808e46495a8da1e5352d03cae','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(467,'AndrewApony','AndrewApony','AndrewAponyZA','nicolenowlin6@aol.com','','','','','','','$2y$10$mVCSJAgvfmO1hXsTBMahsOAPFgtzbzAeE.oNu4t6lkK0gfef9F9De',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:40:02',NULL,'','',1,1,'',0,'','31.173.83.1','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','831b342d8a83408e5960e9b0c5f31f0c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(468,'RobertAcelm','RobertAcelm','RobertAcelmKG','ashley.lagrone7@gmail.com','','','','','','','$2y$10$ea0yUcdTwL.joRK6vTb1XO2nqBox3fhpWTxfE52FdGFKpz33fYio6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:44:02',NULL,'','',1,1,'',0,'','178.176.75.139','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','58ec72df0caca51df569d0b497c33805','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(469,'Jameschony','Jameschony','JameschonyDA','robertraylopez@outlook.com','','','','','','','$2y$10$sa3xbY.ay9UXouz0ydTrueh12CYjuIU0Lr5dXY75EwONpGxZjvlq6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:53:00',NULL,'','',1,1,'',0,'','94.25.173.220','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c09f9caf5e08836d4673ccdd69bb041e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(470,'Williamjeono','Williamjeono','WilliamjeonoCM','jediez@gmail.com','','','','','','','$2y$10$TCKW7gZKlJ7/K36gVYfIHOjW/283JJdvId9qe8V1SZRKpyJ8d49Wa',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:55:36',NULL,'','',1,1,'',0,'','178.176.74.81','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','39d4b545fb02556829aab1db805021c3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(471,'DarrenPen','DarrenPen','DarrenPenTG','fareglobe@outlook.com','','','','','','','$2y$10$yCs7jWA87XtiMtXA8/jY9uaER13WPJk/TRgXrU2LFmQ2azuU0keEK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:56:15',NULL,'','',1,1,'',0,'','94.25.173.220','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b22b257ad0519d4500539da3c8bcf4dd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(472,'Rubenslami','Rubenslami','RubenslamiHB','jesska.farrow13@gmail.com','','','','','','','$2y$10$AnWC6Vkuwfw0st6/B9/oPetld8mEQuIbw2n72Zmz.vWOVj7N.MMTG',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 16:56:26',NULL,'','',1,1,'',0,'','31.173.83.1','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','03c6b06952c750899bb03d998e631860','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(473,'HobertHut','HobertHut','HobertHutWA','danelly_arias@yahoo.com','','','','','','','$2y$10$E8IlCO8IZUu/2niJEyU1Fuwhswl50GimLh367jP8VxkDM.b7/t0h.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:07:56',NULL,'','',1,1,'',0,'','178.176.75.90','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','eb6dc8aba23375061b6f07b137617096','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(474,'GordonHib','GordonHib','GordonHibIZ','kybhjobs@yahoo.com','','','','','','','$2y$10$FVY4fYcAKSCXDI8Q.W2Qo.gI.pzHkzkr1STcF8yz4X0kpmXhGkVdC',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:08:16',NULL,'','',1,1,'',0,'','178.176.77.10','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5898d8095428ee310bf7fa3da1864ff7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(475,'Jamesodomi','Jamesodomi','JamesodomiAP','tommyj958@gmail.com','','','','','','','$2y$10$eYgyJnD5ehhJzZMIvP8rs.Nma33/5PlLoBth91h2ykynPH4xp2KPm',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:20:58',NULL,'','',1,1,'',0,'','178.176.79.31','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','3f8e8bb571cc086ca44e9605ad23ffde','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(476,'Kirbyunpag','Kirbyunpag','KirbyunpagVI','peterussell2328@aol.com','','','','','','','$2y$10$3t6cZ45Io5Po6PL/6SNXo.yL5KRHv66KYBwsvwLHvdGQHknfkBhuq',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:20:59',NULL,'','',1,1,'',0,'','31.173.81.192','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','3e441eec3456b703a4fe741005f3981f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(477,'DavidVok','DavidVok','DavidVokKU','justinbaker89pcfootball@gmail.com','','','','','','','$2y$10$xWP1JVY6xcc6AQmg1pcj8.wfowZ0SuswEzX/Kuy9Q6V/qErWj3lcC',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:27:32',NULL,'','',1,1,'',0,'','31.173.87.167','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','10a7cdd970fe135cf4f7bb55c0e3b59f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(478,'WilbertFrori','WilbertFrori','WilbertFroriZN','whitespirit@frontiernet.net','','','','','','','$2y$10$ibVKJhUCltdIyDu58p/x6.GR/oIP7XkkbDoEvAar5Kf49GLqbXO1i',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:29:42',NULL,'','',1,1,'',0,'','178.176.77.10','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2e0aca891f2a8aedf265edf533a6d9a8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(479,'Edwardroasy','Edwardroasy','EdwardroasyNT','eddi_nathaniel@yahoo.com','','','','','','','$2y$10$d1T9FYHDmTjejSDH0/ItXu0ORkCkn9RFWsIhgcHUnd6a3DNQasbce',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:31:48',NULL,'','',1,1,'',0,'','178.176.77.10','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','3e7e0224018ab3cf51abb96464d518cd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(480,'Tomasacimi','Tomasacimi','TomasacimiPQ','ramosa2901@gmail.com','','','','','','','$2y$10$JiHJN1aJm973zeq66ohGqe3kiQzz/Wa5RmRNeFOht8SW3dJ44OyFK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:40:42',NULL,'','',1,1,'',0,'','94.25.172.72','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','9f9a2e9ab3dc74b58ef7c5b974807751','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(481,'AlfonsoDug','AlfonsoDug','AlfonsoDugMK','nadinesanderson@gmail.com','','','','','','','$2y$10$VSxjIQxTEsbA9Ga9Cejdz.jZqM9Qc0zSN.lKlEyLdcWxyfhJGV3rK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:50:14',NULL,'','',1,1,'',0,'','31.173.82.245','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','bad5f33780c42f2588878a9d07405083','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(482,'Garrymargy','Garrymargy','GarrymargyFA','asadeghi@hotmail.com','','','','','','','$2y$10$KMmlz7vhnCzqYUEGqS1r3uDiAx40JbYDF1xzvkkDFyG6SEzkzLALO',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:51:06',NULL,'','',1,1,'',0,'','31.173.83.1','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','978fce5bcc4eccc88ad48ce3914124a2','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(483,'MichaelTah','MichaelTah','MichaelTahAH','athletics1593@aol.com','','','','','','','$2y$10$jK.wy9btDcRcYj1prwPPXe9JyAiRoaHwjMmaFOyGrGaZdPVz19.tu',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 17:52:29',NULL,'','',1,1,'',0,'','178.176.73.138','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f93882cbd8fc7fb794c1011d63be6fb6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(484,'Jeffreytug','Jeffreytug','JeffreytugME','cairnsbk@gmail.com','','','','','','','$2y$10$iJZ732yx9azEXn2EmpcLWuJdB.CyfCbhmBq.bg/DaS.OUP.5pYrQC',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 18:20:42',NULL,'','',1,1,'',0,'','31.173.81.192','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a01f3ca6e3e4ece8e1a30696f52844bc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(485,'DouglasTut','DouglasTut','DouglasTutQO','radium76@yahoo.com','','','','','','','$2y$10$gHUB9tTwZOsqgUqTfBMIfucRNfohpoNDL1DnxK0Z1Xg7O91IAQer6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 18:32:10',NULL,'','',1,1,'',0,'','31.173.83.1','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','443dec3062d0286986e21dc0631734c9','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(486,'AntonioVok','AntonioVok','AntonioVokKD','yuri.dias.amorim@gmail.com','','','','','','','$2y$10$V/ek04mB.ThW0A47IauRiejJwuSrdcxlD54NatYTf10XM7dqxbjie',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 18:42:11',NULL,'','',1,1,'',0,'','178.176.75.188','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e92d74ccacdc984afa0c517ad0d557a6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(487,'ManuelMOp','ManuelMOp','ManuelMOpWG','nabilamariam@live.com','','','','','','','$2y$10$V3XvYgVXJ1PaMdt6MOFdfObh0Uo7uiOq5B4ri4CUgyjy0bKh554gK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 19:17:46',NULL,'','',1,1,'',0,'','178.176.77.43','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','4efb80f630ccecb2d3b9b2087b0f9c89','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(488,'Michaelnef','Michaelnef','MichaelnefNU','jbauzemery@yahoo.fr','','','','','','','$2y$10$kBxiQSXhy71pvuyJEldwhOiqm4Iier5lnxYuKJZqH8.3/sakBy3NC',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 19:52:25',NULL,'','',1,1,'',0,'','178.176.79.79','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','be767243ca8f574c740fb4c26cc6dceb','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(489,'Kennethspazy','Kennethspazy','KennethspazyHZ','waustindavis@gmail.com','','','','','','','$2y$10$R2WsFAe.w2Tj6KcipIKyKexEKkyf76J9CbiWs.uo/B9FilI2v3Ea.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 20:45:12',NULL,'','',1,1,'',0,'','31.173.85.104','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','437d46a857214c997956eaf0e3b21a55','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(490,'Timothylearo','Timothylearo','TimothylearoZR','chris@lonestarknife.com','','','','','','','$2y$10$esN/KqWbXjrbmZ3uKuUGu.8LZ/jhEz.qgUWjFcQfcCpcP2VSvj8w.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 20:49:00',NULL,'','',1,1,'',0,'','31.173.87.159','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','6ebb69ffbebe9fd95d160ffc29e0fe5d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(491,'Shanesnuri','Shanesnuri','ShanesnuriVG','kylerepinski@gmail.com','','','','','','','$2y$10$jcrGTltT/IrjgjdJ29cv4.p6Hbv80J/qaGMkHWAgXAet5ovSQ6mve',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 21:05:40',NULL,'','',1,1,'',0,'','31.173.85.88','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','440924c5948e05070663f88e69e8242b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(492,'Geraldtuh','Geraldtuh','GeraldtuhQT','michael@thederoses.com','','','','','','','$2y$10$L1hY/FW1cNoJTUMcxKMzNeOPvA8kEz/jsN4VzF7UpfHVQpEJABAaO',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 21:20:11',NULL,'','',1,1,'',0,'','31.173.85.88','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','58ec998e5f04921d22afdd67759db6e4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(493,'Danielcow','Danielcow','DanielcowQW','carolshut1@gmail.com','','','','','','','$2y$10$r8fUMzSEpxMIpPn6xyXgA.1oFvQ0iDsgEJ9zN65otILXjuoFPFjNu',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 21:35:50',NULL,'','',1,1,'',0,'','31.173.81.85','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','af87f7cdcda223c41c3f3ef05a3aaeea','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(494,'Bernardintab','Bernardintab','BernardintabIJ','davi.diberna123@gmail.com','','','','','','','$2y$10$X4yf/WT1QyaxDuDcuwVF3eU688I0dVu3rFa99GTkDmW6YIWBTDB6q',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 22:11:29',NULL,'','',1,1,'',0,'','178.176.78.203','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c0c783b5fc0d7d808f1d14a6e9c8280d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(495,'Donaldwoock','Donaldwoock','DonaldwoockSP','brandonsweetfip@gmail.com','','','','','','','$2y$10$isQmX9tpZyqBnJQvMTnsxeiGFfKGh8rppdCugs..kY8YeONKjtEKy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 22:21:54',NULL,'','',1,1,'',0,'','31.173.87.132','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','0c048b3a434e49e655c1247efb389cec','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(496,'BennyLieva','BennyLieva','BennyLievaOF','commercialfishingmerch@gmail.com','','','','','','','$2y$10$7LqTIhSWeHGBDpcWl64itOsQtG95tOgWQ1C4zzerZ68q/PcRo.QWq',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 22:27:00',NULL,'','',1,1,'',0,'','178.176.77.210','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','16c244e39517c1e577a0b778cb1ce568','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(497,'JefferyEmusa','JefferyEmusa','JefferyEmusaBR','jrgadson@sbcglobal.net','','','','','','','$2y$10$ocNDtPG3POR.Siw6JgLSAeLl4APbLwKUZyOBVJxwq/GDDPCE6y4tC',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 22:40:46',NULL,'','',1,1,'',0,'','31.173.85.116','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2812e5cf6d8f21d69c91dddeefb792a7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(498,'Matthewpaw','Matthewpaw','MatthewpawZK','bradenbennett11@gmail.com','','','','','','','$2y$10$D5HH/dG7CF3Brd4UIjZM5.6vLd.3CHLREK3Tmwye..suxviDGD1uq',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 22:43:35',NULL,'','',1,1,'',0,'','31.173.86.150','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','df27d2e23bf500eb010b2bc1a59b56d1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(499,'Rockydob','Rockydob','RockydobPC','eschieffe@gmail.com','','','','','','','$2y$10$sbsdDmxtS6KlVYlb.qlaw.YIkpZQOn808SBMukKYcqDcnTX58VAEq',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 22:58:34',NULL,'','',1,1,'',0,'','94.25.171.144','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','93ac0c50dd620dc7b88e5fe05c70e15b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(500,'PatrickJiz','PatrickJiz','PatrickJizXQ','pietsimonis05@gmail.com','','','','','','','$2y$10$ucVwdLbd3Q5eOFfvTafIk.LHryDQfyODoc3WN.KQThJL8JnfiuaYS',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 23:10:31',NULL,'','',1,1,'',0,'','178.176.78.154','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','85353d3b2f39b9c9b5ee3576578c04b7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(501,'Carlosjed','Carlosjed','CarlosjedXM','dustunrogers@gmail.com','','','','','','','$2y$10$Drr27TGEa2hpcocnk3uXc.7ErXA5ZwzM1D/E7USi2qTcjfdLP2K2O',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 23:12:33',NULL,'','',1,1,'',0,'','178.176.78.154','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b0a665a28efd91535abb111d656ecd04','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(502,'KevinSpomi','KevinSpomi','KevinSpomiWX','kimberly@parratto.com','','','','','','','$2y$10$cwl5vwKC4p/ICmAgeNa.6ef05TKZtGvAhxo6sZEQ6vLu8wQWZkDLK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 23:22:43',NULL,'','',1,1,'',0,'','178.176.78.203','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ef8f94395be9fd78b7d0aeecf7864a03','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(503,'Scottpoern','Scottpoern','ScottpoernKQ','justicehq4@gmail.com','','','','','','','$2y$10$eVwZ3R3wz2noKR8o57Uk0usqO3POFa8RBZ4../mlleEp.qMbXqqAC',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 23:24:20',NULL,'','',1,1,'',0,'','178.176.78.203','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','29c0605a3bab4229e46723f89cf59d83','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(504,'MichaelSnice','MichaelSnice','MichaelSniceBO','samrnemtp@aol.com','','','','','','','$2y$10$4gTXKLe4pk7l/2rBzQ/VcOospJaKlYdpjkWF8h7/RTxkuO/Nr0FKK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 23:37:02',NULL,'','',1,1,'',0,'','31.173.87.34','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','8dd291cbea8f231982db0fb1716dfc55','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(505,'Willardnoria','Willardnoria','WillardnoriaEK','lukasz.banaszek89@gmail.com','','','','','','','$2y$10$hcANvgYX3EwFA1.EUS0gyemy1VypseVhP.O9z2aItVqaBCdZOy7si',0,0.00,0,0,0,0,'Unverified',0,'2026-01-25 23:49:53',NULL,'','',1,1,'',0,'','178.176.72.200','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c57daa0bc9c4d8e35a21e9a2801aecb2','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(506,'Danieltag','Danieltag','DanieltagPM','m.mercado8392@gmail.com','','','','','','','$2y$10$HOxwpBQq425cwjjJ8eVlL.nivNT/K8eDm0/myD1ScOXxcd0q1bwAe',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 00:00:36',NULL,'','',1,1,'',0,'','31.173.85.156','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','46a558d97954d0692411c861cf78ef79','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(507,'Kevinnip','Kevinnip','KevinnipSC','mariodzinic@icloud.com','','','','','','','$2y$10$yJ379TBPwYBBA2./.hP1GepXQ9yXOl7NkvXL4qLq6d./NY.u1mcVG',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 00:25:57',NULL,'','',1,1,'',0,'','31.173.81.250','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c44bebb973e14fe539676e0e9155b121','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(508,'Jamesduh','Jamesduh','JamesduhBT','joycehtlam@gmail.com','','','','','','','$2y$10$iHfRRZlBlLpNAg2hCE02bO0dXvokoZoIvw3jc64mzP22OTSWD/nyW',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 00:28:25',NULL,'','',1,1,'',0,'','31.173.85.248','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','9b2f00f37307f2c2f372acafe55843f3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(509,'JamesExpex','JamesExpex','JamesExpexLZ','mcgiga1@googlemail.com','','','','','','','$2y$10$6hUaminuDCz2E8h4KEBuseW7x6OMoRKjxrS71LroF3ddzqq5oEYhy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 00:41:03',NULL,'','',1,1,'',0,'','94.25.173.50','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','3e313b9badf12632cdae5452d20e1af6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(510,'CurtisThese','CurtisThese','CurtisThesePR','norine.domenge@yahoo.com','','','','','','','$2y$10$HxRit4Hmicz/2DxLGNRLrO4WxLXmlqIdIa3lkKXRXl/.u3PztgdtW',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 01:08:56',NULL,'','',1,1,'',0,'','178.176.72.45','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c6f798b844366ccd65d99bc7f31e0e02','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(511,'Lucasjarry','Lucasjarry','LucasjarryTL','sev2488@yahoo.com','','','','','','','$2y$10$8hXaPxZuk8akukrxQvL/pO2pkTLgaweqC21ojY0nmEpuTYzpLv.Ea',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 01:40:53',NULL,'','',1,1,'',0,'','31.173.83.239','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a9c397afa342c368ba24e7620ee41a94','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(512,'Danielkic','Danielkic','DanielkicKI','dgbautista9@gmail.com','','','','','','','$2y$10$9hDjtA9TLWMzjpIOvkpBHeIPjv8b5FI19fxUsaWWdNST2ee1iQZMy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 02:09:08',NULL,'','',1,1,'',0,'','31.173.87.219','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a0d3973ad100ad83a64c304bb58677dd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(513,'Stephenpaura','Stephenpaura','StephenpauraAI','logangaulton1@gmail.com','','','','','','','$2y$10$BPSXVJLkqnctFDxMkS7fIu0Ef8rJmhPKSb07hGSJvFitu9ZcLSWp.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 02:10:19',NULL,'','',1,1,'',0,'','31.173.85.86','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','03573b32b2746e6e8ca98b9123f2249b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(514,'Scottjet','Scottjet','ScottjetSA','tyjm81@outlook.com','','','','','','','$2y$10$D2yi.0OaWkvFxyofHtkijeVG0yQPAVL74fdVtUxZijfn3bhL9CMyy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 02:44:26',NULL,'','',1,1,'',0,'','178.176.73.211','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a4351b79d9ea3d842efa89fae5d02b24','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(515,'JerryIcego','JerryIcego','JerryIcegoVS','junetang1198@hotmail.com','','','','','','','$2y$10$7QOPVWZReAo2a5FOqCbR5ePrUoJN/nd03gsRQD.nD43KIBcKqasee',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 02:48:50',NULL,'','',1,1,'',0,'','178.176.76.64','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','7dab099bfda35ad14715763b75487b47','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(516,'Jamesgaisy','Jamesgaisy','JamesgaisyKA','botteicherb@chsupplyinc.com','','','','','','','$2y$10$IVazxP3IY5npn6GU.hDuVuz4wr1qNUJZTcZ9GrEv8HZQM6CIjFPVW',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 03:14:40',NULL,'','',1,1,'',0,'','178.176.77.133','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','27d8d40b22f812a1ba6c26f8ef7df480','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(517,'Waynehak','Waynehak','WaynehakYE','m.lindlahr@web.de','','','','','','','$2y$10$/9dSIYiiQkXfo6HboIvSAeYc8psiVk9PjMIuPJal0oTDFkmARoPLK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 03:32:07',NULL,'','',1,1,'',0,'','178.176.73.254','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','69cb3ea317a32c4e6143e665fdb20b14','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(518,'Danielpem','Danielpem','DanielpemVI','chosobo7@outlook.fr','','','','','','','$2y$10$MoMv5Yn91cSeRukMz74P2erxGIMcjxsJt1dOThPky8FLBU2KUsDyG',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 03:40:40',NULL,'','',1,1,'',0,'','31.173.81.90','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b56ea7b6aa77f6f9008bc9362fab3597','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(519,'Brendancrync','Brendancrync','BrendancryncGS','pg.vogelsang2194@gmail.com','','','','','','','$2y$10$yU90byFGqGAKIbyzDVtyvuoh8HHYY85WieEj.b2u6WBhx9eYIEyM6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 03:42:51',NULL,'','',1,1,'',0,'','31.173.83.143','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ff82db7535530637af7f8a96284b3459','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(520,'DouglasECONA','DouglasECONA','DouglasECONARE','roslynpeters@mail.usf.edu','','','','','','','$2y$10$o/9n0LdXLcHdmGa4NMMW5.IbAshOsd.CbCwAg.kysrMjK8lCyX11.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 03:46:03',NULL,'','',1,1,'',0,'','178.176.72.208','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','28a7602724ba16600d5ccc644c19bf18','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(521,'LloydSit','LloydSit','LloydSitIP','jsorenson@pointenorthins.com','','','','','','','$2y$10$R1JFuvngs8qQRsKWbhN3aON0HidbSAWLHZCAH0vcZyYDLNUJ5jGtO',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 03:56:53',NULL,'','',1,1,'',0,'','178.176.72.208','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5a499f6e26313e19bd4049009bbed5bd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(522,'VernonniX','VernonniX','VernonniXZO','shawn.applegate@startech.com','','','','','','','$2y$10$mfzduQcuSzEdQYBPPTSNNu3AF1u4RVjsBCxtzdyfP1HittWvxYTZ.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 03:59:35',NULL,'','',1,1,'',0,'','31.173.87.127','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2b9bd744f7c0d06123d9d9557310fa80','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(523,'Shawnchify','Shawnchify','ShawnchifyUZ','kortny.rolston-duce@quantinuum.com','','','','','','','$2y$10$TIx1adqtnq/najf7Fs9JFuZBTLa.CXFC.6VjdoU0C4a9H7SmeI6Gq',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 03:59:47',NULL,'','',1,1,'',0,'','178.176.79.147','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f76a89f0cb91bc419542ce9fa43902dc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(524,'Matthewgunny','Matthewgunny','MatthewgunnyXN','kstringer@saybruspartners.com','','','','','','','$2y$10$PpZQ25VcB6qHghFKwsj9yejV21r8i8nTCtoaJxD145JU2GOVoOSCW',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 04:20:16',NULL,'','',1,1,'',0,'','178.176.72.71','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b0169350cd35566c47ba83c6ec1d6f82','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(525,'MichaelBoimb','MichaelBoimb','MichaelBoimbXI','daveandcole68@yahoo.com','','','','','','','$2y$10$o6RTJJoz4HBYzXcF8jUjCeCBYfyRieewLU6ET0HNNrXptfKznb2ue',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 04:27:57',NULL,'','',1,1,'',0,'','31.173.86.40','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','08ae6a26b7cb089ea588e94aed36bd15','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(526,'HenryPer','HenryPer','HenryPerLZ','mbennett@distech-controls.com','','','','','','','$2y$10$I6wAXYd4Z0i0nDrdsYACqOLO4hXZ9MEE2V4.8siwAFZmgEG8jzh4O',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 04:29:54',NULL,'','',1,1,'',0,'','178.176.78.24','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','73d915c91b99b170993ea97d875a6330','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(527,'KennethOxics','KennethOxics','KennethOxicsGL','cratliff@txfb-ins.com','','','','','','','$2y$10$v.AvabdeD1x6bf40cStXVOpqTdLlQwVl3hOgBj9SIQbC4nDfeOcyy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 04:34:13',NULL,'','',1,1,'',0,'','31.173.80.5','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','44089d5f715bc4112ad95576555d0f4e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(528,'Keithcaw','Keithcaw','KeithcawPO','jhall@perrknight.com','','','','','','','$2y$10$4M9Wn1Z6e16jASOXEpVq5.eTFkIma6Zb26sVEREKMrSiEna4AkVtC',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 04:41:18',NULL,'','',1,1,'',0,'','31.173.83.68','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','da0b1b5bec71b468bcab872a64595541','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(529,'DanielNeept','DanielNeept','DanielNeeptKJ','rmurphy@sunroadenterprises.com','','','','','','','$2y$10$Tr..PMR07zAh33Kh5OJqyeEzoul.AJtnj7JllNeLcjfRxQbJvkZky',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 04:43:23',NULL,'','',1,1,'',0,'','31.173.83.249','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','170c944978496731ba71f34c25826a34','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(530,'RichardHit','RichardHit','RichardHitOV','jordan.mccarter@lexitaslegal.com','','','','','','','$2y$10$L4im7x/Umqd2LFn1Orm.DeYDkMnxGTMm1am3Iq97yZTWf7944y3hm',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 04:48:01',NULL,'','',1,1,'',0,'','31.173.81.177','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c4fac8fb3c9e17a2f4553a001f631975','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(531,'Richardsnory','Richardsnory','RichardsnoryYJ','jeremy.jarrell@bkr.com','','','','','','','$2y$10$UMnBy6UBIB18i1VzDmVStOPzfFweq5HQBYXuX7sIJVrLXx9ZXyxpK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 04:48:03',NULL,'','',1,1,'',0,'','94.25.173.129','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','77305c2f862ad1d353f55bf38e5a5183','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(532,'Grantsox','Grantsox','GrantsoxJE','kray@boosterjuice.com','','','','','','','$2y$10$DBl4dTdZBRgwRuJ84rDQkevlsg5oeb9VxZmP1RmAZFtd6Mzonc5WG',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 04:54:42',NULL,'','',1,1,'',0,'','31.173.84.137','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a24281a03c28fa405eb29b54ebfe5d9b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(533,'AllanBiP','AllanBiP','AllanBiPLA','ahernandez@motorcontrols.com','','','','','','','$2y$10$q8WACdO0oFbxr4mUbah2POGQz9E7679DVK84QnF/zqM4cZVdAGS2u',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 04:56:49',NULL,'','',1,1,'',0,'','178.176.74.70','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d04eb5de4d99080be674f159197a514a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(534,'Brianerofs','Brianerofs','BrianerofsPJ','christianosuna292@gmail.com','','','','','','','$2y$10$YtzV7l27x0Qz59XW0vivxuwRMnV9MQHIGqHSkKBa4WBN79BF3KSOm',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 05:01:28',NULL,'','',1,1,'',0,'','178.176.76.25','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','384babc3e7faa44cf1ca671b74499c3b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(535,'ThomasKek','ThomasKek','ThomasKekRP','jbard@skydance.com','','','','','','','$2y$10$WvOWCkYIvTakFuC3RdF/l.VbtIGiJVg8PDuSeWKeY0EXHbD0oVCLS',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 05:01:28',NULL,'','',1,1,'',0,'','31.173.86.221','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5cc3749a6e56ef6d656735dff9176074','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(536,'FloydZoots','FloydZoots','FloydZootsVG','johnmilner@uesga.com','','','','','','','$2y$10$5T3iNSAxM5Ymw01Dyh0U3Oys2wUT0mFu0011wHzi8SN/OltbxZEYe',0,0.00,0,0,0,0,'Active',0,'2026-01-26 05:07:35',NULL,'','',1,1,'',1,'','31.173.80.74','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','9271905e840548b8cada6d60c0cfd93b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(537,'BrandonCum','BrandonCum','BrandonCumVX','gdourado@dialogdesign.ca','','','','','','','$2y$10$LZFLmnbcgpHpsxwb4v8i6OdxpQBLHrZbmb4FAFImM8OP.j1XELxjq',0,0.00,0,0,0,0,'Active',0,'2026-01-26 05:09:59',NULL,'','',1,1,'',1,'','31.173.80.44','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b9937273f2b46912b56d09c8faa7da23','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(538,'GlennQuody','GlennQuody','GlennQuodyJI','deyadijoel@gmail.com','','','','','','','$2y$10$UZRHuK2D27bbYIZiqvSyT.Kw9OFYMza55EpVTH5xhc3ka8GwDciDi',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 05:21:20',NULL,'','',1,1,'',0,'','31.173.83.29','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c9f06bc7b46d0247a91c8fc665c13d0e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(539,'JasonZesix','JasonZesix','JasonZesixXH','hbrown@ghsmart.com','','','','','','','$2y$10$mPDBiWZecruwgsmz/Mu6luY2yXtUvEia1YR5Hf0FGQYNEMnktH4ge',0,0.00,0,0,0,0,'Active',0,'2026-01-26 05:21:23',NULL,'','',1,1,'',1,'','31.173.83.29','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','117ffc1acd844e431a4b73f0867adae5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(540,'Rubenfup','Rubenfup','RubenfupXM','arodenberger@maynardcooper.com','','','','','','','$2y$10$kCb0UCgsb/PURbiU2562P.00N6yE3dfSvurjFTvvDNmGy.DtERRJS',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 05:32:46',NULL,'','',1,1,'',0,'','31.173.81.231','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','bc3ea21614e0fdc4359bdd4d3315313f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(541,'Eddiequomy','Eddiequomy','EddiequomySY','tbird@smithbrothersusa.com','','','','','','','$2y$10$hw67RBd3g7R30IvbRaRbhOVGmc9xaBiAiJtkLgAYxsAfdsNq3FMD6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 05:33:56',NULL,'','',1,1,'',0,'','31.173.86.227','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c82b013313066e0702d58dc70db033ca','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(542,'Franktouby','Franktouby','FranktoubyKS','lsteinberg@sandw.com','','','','','','','$2y$10$tik/m4tzHYf6cr.3kYhAxuplq3Aup1aE/69ZtRsFRDY9pOl1G9.fa',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 05:47:36',NULL,'','',1,1,'',0,'','31.173.86.40','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','49c9adb18e44be0711a94e827042f630','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(543,'MichaelBog','MichaelBog','MichaelBogER','jbello@stilacosmetics.com','','','','','','','$2y$10$Fex7QCzzHO.h7TgP7ff.8O0MQXW7GUeLRxFmdRUdjlEstCnHvO5qK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 05:55:54',NULL,'','',1,1,'',0,'','94.25.174.28','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','466accbac9a66b805ba50e42ad715740','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(544,'Alvincrova','Alvincrova','AlvincrovaJA','w4djb77@charter.net','','','','','','','$2y$10$UT0dvPbETPmW80lpPrzFs.D.tAnSSyIoETeUXjPIa5NzGnUbWidaO',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:00:31',NULL,'','',1,1,'',0,'','178.176.79.231','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5bd844f11fa520d54fa5edec06ea2507','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(545,'Edwardjeava','Edwardjeava','EdwardjeavaYJ','jessiemwilley@gmail.com','','','','','','','$2y$10$NDvdtBFQvWKBia2p4AuSK.E1mQkFcoPlK9X8DgJGQKwDG/1Dxjwqm',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:00:34',NULL,'','',1,1,'',0,'','31.173.83.29','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f187a23c3ee681ef6913f31fd6d6446b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(546,'SteventIg','SteventIg','SteventIgGQ','qqrwtpcspq@privaterelay.appleid.com','','','','','','','$2y$10$EMuWvBOa0L/knW1jo.IbiOvH/PGdCxejr5eNgen9c5NiJ6KxMfCyC',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:00:51',NULL,'','',1,1,'',0,'','31.173.82.138','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','7de32147a4f1055bed9e4faf3485a84d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(547,'BarryWhida','BarryWhida','BarryWhidaSG','ing.matteo.segat@gmail.com','','','','','','','$2y$10$zVidpTXD6F799nWeVvt0p.bdwe9uo6DoiVvfmE/Au0.Nv5ZAJrBPS',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:08:32',NULL,'','',1,1,'',0,'','178.176.77.104','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5fbb4eb0e7c2cedf731ec7c18e344141','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(548,'Richardved','Richardved','RichardvedNE','jeffreytmarsh@gmail.com','','','','','','','$2y$10$/aAyFZMqFF3HMPCNACsvGe5.SGFIdt2qUuqso.sS2bFMtADdRN7Yq',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:12:24',NULL,'','',1,1,'',0,'','31.173.85.148','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d38901788c533e8286cb6400b40b386d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(549,'Williamfed','Williamfed','WilliamfedUO','annadavis182@gmail.com','','','','','','','$2y$10$3qt60MTxH2Z.IhgiVzY4K.q1.P8nPEcTytRBxWg75tWerYfrUQ59m',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:22:21',NULL,'','',1,1,'',0,'','178.176.77.167','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','7cdace91c487558e27ce54df7cdb299c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(550,'DerekTix','DerekTix','DerekTixBH','joshua.tanner89@gmail.com','','','','','','','$2y$10$y5x5z89Mz3UOkSCRaLJNn.vKx/z3j0CvGLS9OMaY1pPgTv.LeFUG.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:22:22',NULL,'','',1,1,'',0,'','31.173.83.29','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','489d0396e6826eb0c1e611d82ca8b215','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(551,'PhillipquAro','PhillipquAro','PhillipquAroAE','hoffmanq@gmail.com','','','','','','','$2y$10$4a1MuefcHG.iS34QjB.x3e.LCj0UaYy0LWa/yRn2y0G5ZQLWmYFO2',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:33:31',NULL,'','',1,1,'',0,'','31.173.80.192','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','22eda830d1051274a2581d6466c06e6c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(552,'RobertChuby','RobertChuby','RobertChubyAN','sharronemontgomery@gmail.com','','','','','','','$2y$10$5hM78CXD0d/bzwdp/nZRLOA6A8LcnU7tGdF5UAF08PrFgmgyS8ARu',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:43:24',NULL,'','',1,1,'',0,'','31.173.85.161','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','3c3c139bd8467c1587a41081ad78045e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(553,'Bryanhah','Bryanhah','BryanhahNB','pamela.corcoran@gmail.com','','','','','','','$2y$10$B7icU19lk4qYha1QZKgNV.zoEjGWDtZG33.El8kFvhQEqD.mGq2qy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:50:21',NULL,'','',1,1,'',0,'','94.25.174.28','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d523773c6b194f37b938d340d5d02232','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(554,'Davidbaf','Davidbaf','DavidbafUM','gaki7788@yahoo.com','','','','','','','$2y$10$CDIdirH60qFihA.k5eDvo.VG7WYWramNQj3OIqIyPLgosF2Jl9byO',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:50:30',NULL,'','',1,1,'',0,'','178.176.72.25','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','55063089b08df5797d3eebca7c087ed4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(555,'CharlesNup','CharlesNup','CharlesNupLD','t.mccalla@verizon.net','','','','','','','$2y$10$HuaqxXp7JcEJT19T0zUKXeMybVcu3nJQG08sTxxXwXZEsAEHuCj5W',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 06:59:22',NULL,'','',1,1,'',0,'','178.176.73.180','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','77ef24b42fcecae4ba74fa68137f3e43','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(556,'JeremyTrita','JeremyTrita','JeremyTritaYB','p37e45@gmail.com','','','','','','','$2y$10$./6yCyszxvh/zIzuyzFK8OHleWdpqD3Mq6XHXM3C1VI6dMuq8Xh8S',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 07:04:26',NULL,'','',1,1,'',0,'','94.25.174.28','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ddd9dda6bfaf0bb1525a8a27c3ee6131','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(557,'Rubenbup','Rubenbup','RubenbupGB','dmcgonagle@msn.com','','','','','','','$2y$10$AoA/kFgEgTAlO8u0AQoDkuUN/GQvF4QlxLm.8EesoeYfNKs.Wc87q',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 07:06:02',NULL,'','',1,1,'',0,'','178.176.73.180','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','251bd0442dfcc53b5a761e050f8022b8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(558,'CharlesRen','CharlesRen','CharlesRenJP','adamsj37@sky.com','','','','','','','$2y$10$PbN1GoDEF0YcL8SwZH/nh.hPqUxozKv3P5BpFi0B.uoWGMmu9Alne',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 07:06:08',NULL,'','',1,1,'',0,'','31.173.87.233','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e00944d55e6432ccf20f9fda2492b6fd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(559,'Darylmak','Darylmak','DarylmakUQ','heartofgold1@comcast.net','','','','','','','$2y$10$pQ70HJXJ7XHVo5XxrfE5k.DHKWPtH//JBE6oxP7L/Uq./ajjXERrm',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 07:19:20',NULL,'','',1,1,'',0,'','31.173.87.2','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c8dfece5cc68249206e4690fc4737a8d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(560,'Josephunamb','Josephunamb','JosephunambVE','jeremy.mendoza@upr.edu','','','','','','','$2y$10$AMiXcd4Z/2pJPafDV8AXNe.ESKUUOu/F.Qp75F962l5TcjGtxhqge',0,0.00,0,0,0,0,'Active',0,'2026-01-26 07:21:31',NULL,'','',1,1,'',1,'','178.176.75.181','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','adad9e1c91a7e0f63a139458941b1c66','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(561,'WalterTof','WalterTof','WalterTofQM','wshive1@yahoo.com','','','','','','','$2y$10$fxUFjN8Ioray1g66UgaRteR3tRd36MkM70KCWwfHHDjLQLc8m5x7W',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 07:22:59',NULL,'','',1,1,'',0,'','31.173.85.84','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a36b598abb934e4528412e5a2127b931','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(562,'RonnieSax','RonnieSax','RonnieSaxOI','virginiabking68@aol.com','','','','','','','$2y$10$JpjiHomlOuidWN/TF5Ywgemmv9BVuns0T/k.K.zL7vLJbEJLXHnLK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 07:33:15',NULL,'','',1,1,'',0,'','31.173.81.130','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','44a2e0804995faf8d2e3b084a1e2db1d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(563,'EdwardFiefe','EdwardFiefe','EdwardFiefeIV','hien_ngo90@yahoo.com','','','','','','','$2y$10$e2MDi7qkop0hKgdMz12HtuvA8cOdejj2IoWeeeLLROqPmc08ALbu6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 07:35:10',NULL,'','',1,1,'',0,'','31.173.87.141','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','118921efba23fc329e6560b27861f0c2','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(564,'WayneGof','WayneGof','WayneGofYO','angel.navarro@upr.edu','','','','','','','$2y$10$o1cCeXMNQtfUb7SW3Ve0/O7sX9bgloSoeMmSOi6alWid4KNkM8HjS',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 07:36:16',NULL,'','',1,1,'',0,'','31.173.83.128','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','8c6744c9d42ec2cb9e8885b54ff744d0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(565,'StevenAsper','StevenAsper','StevenAsperYA','blocaste@jfshouston.org','','','','','','','$2y$10$Hti7lkaAA1VbcuBZnF0sauV3WZK0oZhuetmuBzdi8qpkDUi0WuQeS',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 07:47:22',NULL,'','',1,1,'',0,'','94.25.174.28','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','0394ea68951e3299bcdfa75a097d7c11','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(566,'BrianLinty','BrianLinty','BrianLintySC','bonnieaking@aol.com','','','','','','','$2y$10$tHpVh8pujRHih96Stoi9aO20vXZPV0Y5IJ4oNeVCcHTnj.BUTc8uG',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 07:51:09',NULL,'','',1,1,'',0,'','178.176.74.151','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','8ca696ca160520b1cf5a569b4be525e8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(567,'Leslietek','Leslietek','LeslietekGG','playsta4gta4@gmail.com','','','','','','','$2y$10$ItzWMoygcUctMdaHwg6DeejuKzK7/JqU8ntiaLelHRiK8IHxc/MT6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:04:30',NULL,'','',1,1,'',0,'','178.176.75.127','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a8baa56554f96369ab93e4f3bb068c22','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(568,'DavidTup','DavidTup','DavidTupXM','christina.weaver10@gmail.com','','','','','','','$2y$10$NIj1cEHjoQFax2yGcahXyefyYYvHS41kvE2DNSfJvzxne0.p9Ypee',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:12:25',NULL,'','',1,1,'',0,'','37.139.53.230','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','3ebd728de6fa78aa8bc932e9abece9c0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(569,'Timothydoumn','Timothydoumn','TimothydoumnQN','alia.kaakani@gmail.com','','','','','','','$2y$10$/hvQ0/oGtE4Y3RT66N8KrO5ZYytfprQM.AYrWZtfKk02N4a3V6QHK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:19:32',NULL,'','',1,1,'',0,'','37.139.53.230','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2109737282d2c2de4fc5534be26c9bb6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(570,'Williamalack','Williamalack','WilliamalackEJ','jason.gatlin@gmail.com','','','','','','','$2y$10$w/ztt.M12keieo9hUL658uZZgdO5SWevkniIVqH2kbuaAXOOBcrGy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:20:10',NULL,'','',1,1,'',0,'','94.25.174.28','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2cd4e8a2ce081c3d7c32c3cde4312ef7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(571,'Carloslag','Carloslag','CarloslagSM','roday2@msn.com','','','','','','','$2y$10$V22H6k.IHW6Jv1Ik6X0jCeo2CtsctNTl355GDOFu789C9jMbsuX1y',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:23:09',NULL,'','',1,1,'',0,'','31.173.81.110','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','91ba4a4478a66bee9812b0804b6f9d1b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(572,'JulianLoarp','JulianLoarp','JulianLoarpCR','imamario123@gmail.com','','','','','','','$2y$10$n.EOca6YFmr4xNci5MEo7e6ipD68lm4V8nmYIhtEmoso5tPhIq7Vm',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:25:13',NULL,'','',1,1,'',0,'','178.176.77.67','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','95a7e4252fc7bc562a711ef96884a383','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(573,'DouglasFrush','DouglasFrush','DouglasFrushLB','parrus1980@hotmail.com','','','','','','','$2y$10$Be.GcZoeRsaRngWe8isjWOHQgcOhoIBhpZJYRXiBV8ztBnR1zkGz6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:27:33',NULL,'','',1,1,'',0,'','37.139.53.230','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','1b90614883e606d5621b45c14f4f2963','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(574,'DonaldNix','DonaldNix','DonaldNixGT','thauw005@umn.edu','','','','','','','$2y$10$fBsBvfrSGLdtAIcMDxb/relWEzS1TOTh477MOpTu13PfE1fwLF6Oy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:35:37',NULL,'','',1,1,'',0,'','37.139.53.230','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ab233b682ec355648e7891e66c54191b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(575,'Allenvaf','Allenvaf','AllenvafJK','brian.heil@teamww.com','','','','','','','$2y$10$YnLNI1kZDwa/vO0dUwQNwu139ZnSOFi7abez0CG.tjHr3RJJgGJ16',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:39:04',NULL,'','',1,1,'',0,'','31.173.83.101','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','517f24c02e620d5a4dac1db388664a63','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(576,'JosephWhott','JosephWhott','JosephWhottRL','hermanma89@yahoo.com','','','','','','','$2y$10$LS3pZEbBeRf6.srmW4IPpON0dkPv6T7TZDDIE3K62lOBFQVUBG6M6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:50:24',NULL,'','',1,1,'',0,'','178.176.77.67','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','30f8f6b940d1073d8b6a5eebc46dd6e5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(577,'RobertTaX','RobertTaX','RobertTaXIM','kprice@stetson.edu','','','','','','','$2y$10$xtOJ1MK7R.R8vG4pcFFC0.xeX93eEi.eb5SIMLbt/xbYQBieKT1i2',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 08:54:05',NULL,'','',1,1,'',0,'','31.173.85.130','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','19702ce80aa823cd508f85c0034a7e97','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(578,'Anthonysob','Anthonysob','AnthonysobDD','hshtutoring@hotmail.com','','','','','','','$2y$10$4FA4THiVrFC5iyffwBEJGu83fx6dMbtLPueQFNsJ59oAxD8MPywGO',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 09:07:29',NULL,'','',1,1,'',0,'','178.176.78.8','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','4c56ff4ce4aaf9573aa5dff913df997a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(579,'Nathanmow','Nathanmow','NathanmowMJ','olivia.charlotte14@gmail.com','','','','','','','$2y$10$moXTGMWmleonq3k5vzHi2.DJ3Yg0wviADj/k7ycvxzJD5t3rHsJgK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 09:19:49',NULL,'','',1,1,'',0,'','178.176.72.208','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','47698c15fb83a1e5bb1400accbb17f82','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(580,'RubenHet','RubenHet','RubenHetFW','vera4life@gmail.com','','','','','','','$2y$10$crcJ3ut2B7DXWYmVMdQXVO/o1CNsbVgegrfLHGfB6dL3Kx2Te/7C.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 09:22:00',NULL,'','',1,1,'',0,'','31.173.83.205','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','13d2b7361a27dbc9960ae158598a6a96','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(581,'Robertosow','Robertosow','RobertosowHZ','nosborne@lvpaiute.com','','','','','','','$2y$10$MWYjSYAf8oZvewSM3mbeFuXEKm5/zn0MrK.lM7ORaVdiQP4Gwwo.2',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 09:24:59',NULL,'','',1,1,'',0,'','31.173.81.36','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5055cbf43fac3f7e2336b27310f0b9ef','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(582,'Dwaynejar','Dwaynejar','DwaynejarKC','wauschekm@gmail.com','','','','','','','$2y$10$fEy.749YqYlvBu.0mPYNIu.UlKVW/x0UcMBGLa3pjrMzf2osGWuju',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 09:33:06',NULL,'','',1,1,'',0,'','178.176.78.8','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','86ecfcbc1e9f1ae5ee2d71910877da36','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(583,'RobertBon','RobertBon','RobertBonJQ','kramirez12@su.edu','','','','','','','$2y$10$dZeNCZhzpWbZqTEuXRFic.E4ZVwZn4hCOgSEvUKPlNTqF5KLZulEi',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 09:35:26',NULL,'','',1,1,'',0,'','31.173.87.81','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','024677efb8e4aee2eaeef17b54695bbe','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(584,'ThomasGrand','ThomasGrand','ThomasGrandIJ','chris@grouptourcompany.com','','','','','','','$2y$10$ZX2MyNaUFq17FO67RYrJGO0aQP6U/HYVpVtSwd59dthZhl2GQYff6',0,0.00,0,0,0,0,'Active',0,'2026-01-26 09:37:52',NULL,'','',1,1,'',1,'','31.173.87.252','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','92c8c96e4c37100777c7190b76d28233','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(585,'DonaldExady','DonaldExady','DonaldExadyLX','rmwise1@msn.com','','','','','','','$2y$10$yG/gOfEIE2bI9rwDBLoXqOf4GsyZSY89fmIvrR2DuJqufvYLL4vpy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 09:51:28',NULL,'','',1,1,'',0,'','178.176.77.115','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d97d404b6119214e4a7018391195240a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(586,'Mylesglipt','Mylesglipt','MylesgliptQR','baileymark.miller@gmail.com','','','','','','','$2y$10$IekUL4DQQQPaP51dX5lMXeK4PUJWBy8IH0Go7V3d6h8SYwgyDGk3S',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 10:00:10',NULL,'','',1,1,'',0,'','31.173.81.217','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','3b24156ad560a696116454056bc88ab4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(587,'Jameseduth','Jameseduth','JameseduthXB','barrito1272@gmail.com','','','','','','','$2y$10$MMfK2TyZy5NiKZeu8YDIJ.muxohLfP7RgShzOCHKYJC4UNFBJLlP6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 10:02:26',NULL,'','',1,1,'',0,'','31.173.83.146','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','303ed4c69846ab36c2904d3ba8573050','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(588,'DavidBlals','DavidBlals','DavidBlalsKO','kakicook@me.com','','','','','','','$2y$10$aE63FGcKfG.u23ienRzVcOLR6kdvVIXU6KwqQCt0JL4v9oF91YYD2',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 10:04:17',NULL,'','',1,1,'',0,'','31.173.81.217','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','20c1945eae4b9868cbbfd09675f7d76e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(589,'Johnnyexape','Johnnyexape','JohnnyexapeCT','gilbert.erin@gmail.com','','','','','','','$2y$10$R7DgIXBprk3dcpG.bNOsSeLDkzXOpi82K90fCmEZKVXoDt1NtZYDW',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 10:13:04',NULL,'','',1,1,'',0,'','31.173.83.29','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','49ad23d1ec9fa4bd8d77d02681df5cfa','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(590,'WilliamSag','WilliamSag','WilliamSagPB','randyfhall@yahoo.com','','','','','','','$2y$10$S3ODCifSgeRNFTCNPms63OUq8yrMNPW14itbPWVdNbzerbmnyYEve',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 10:14:55',NULL,'','',1,1,'',0,'','31.173.81.217','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','cdfa4c42f465a5a66871587c69fcfa34','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(591,'GerryDut','GerryDut','GerryDutVD','tokareva-gi@mail.ru','','','','','','','$2y$10$7bAdWl9QdZ1K3Fh0BH2Wk.anxNifBzbP3w3vBeglNrXIcIwfHm.Aa',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 10:39:22',NULL,'','',1,1,'',0,'','178.176.75.225','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','445e1050156c6ae8c082a8422bb7dfc0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(592,'DerrickZes','DerrickZes','DerrickZesVV','pierceeric2000@hotmail.com','','','','','','','$2y$10$HPE177DSUKrnXPvxzW7fuexrNZ2y62qVfAWWgYw/Ctth5OXHZHcjq',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 10:41:05',NULL,'','',1,1,'',0,'','31.173.84.166','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a57ecd54d4df7d999bd9c5e3b973ec75','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(593,'Eliascen','Eliascen','EliascenJD','nainassh@gmail.com','','','','','','','$2y$10$IEqIjP2zAFB3utbmVby.9eWRdcF2q9fEsHuifQV/3/QNOUkToTlP6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 10:53:47',NULL,'','',1,1,'',0,'','178.176.76.114','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','bf1b2f4b901c21a1d8645018ea9aeb05','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(594,'Benitocizab','Benitocizab','BenitocizabWY','skato@soka.edu','','','','','','','$2y$10$JGJDYE1rcZZ3mzREngrADO1KaLTVPHlrGZio4VK8MAqT2XyIF3YUW',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 10:56:06',NULL,'','',1,1,'',0,'','178.176.78.6','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ac8cd1808dc30460a81cab1b0e6652fa','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(595,'Michaelbup','Michaelbup','MichaelbupGH','colincollette@msn.com','','','','','','','$2y$10$hxYBh5R4IMlM6qaJhax/Be5nEq5bBUYlQ2HuXVxQ8M66/79qNuD1e',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 11:07:22',NULL,'','',1,1,'',0,'','31.173.87.80','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c5383525e91474a4e5d7dcfee92c054f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(596,'EduardoSquaw','EduardoSquaw','EduardoSquawPL','jordan_daniely@yahoo.com','','','','','','','$2y$10$VqTfj.AK/BtBRZHtC4Ej4.CsrPPg3uyR4ezRhYUGl..Y0i96ScHaW',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 11:09:45',NULL,'','',1,1,'',0,'','31.173.82.77','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ffc58105bf6f8a91aba0fa2d99e6f106','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(597,'RichardReori','RichardReori','RichardReoriCX','wcludtdo@gmail.com','','','','','','','$2y$10$sFTSJQ5bZuSc8/ay7ZZub.chPIcbRxbEoGMllaT4zi38hvMK351Zm',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 11:22:27',NULL,'','',1,1,'',0,'','178.176.79.252','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','1bc2029a8851ad344a8d503930dfd7f7','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(598,'ShawnSWAMS','ShawnSWAMS','ShawnSWAMSYF','renegadethetank@gmail.com','','','','','','','$2y$10$OyQURljNAeJ/VP54tQnx3eeQIbUmKUwWOnt1t3vgSP985QwzXYx6u',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 11:24:06',NULL,'','',1,1,'',0,'','31.173.85.40','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','0127b06252935c330e9f23651b398ce4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(599,'Jamesgrelf','Jamesgrelf','JamesgrelfMM','maryanneleroy@aol.com','','','','','','','$2y$10$US05i9R/k5nYSwU.AEYb1.aSIIyQCc.xAxBXBAkk5RYRjsDRyGQ9i',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 11:26:11',NULL,'','',1,1,'',0,'','31.173.87.72','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','aaebdb8bb6b0e73f6c3c54a0ab0c6415','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(600,'Robertwox','Robertwox','RobertwoxCB','sintra1@hotmail.com','','','','','','','$2y$10$Lwk.eIE1d60JqGQn3TfY3.DV/c3AAJy/k5eCO8cQ.FLS3FmpoTLyu',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 11:34:46',NULL,'','',1,1,'',0,'','31.173.84.135','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a9a6653e48976138166de32772b1bf40','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(601,'KendallJoipt','KendallJoipt','KendallJoiptIC','pnzn711@gmail.com','','','','','','','$2y$10$bMDgkppNcoVqaFtz5cIZAuW3gU90SJYMEojTPE9XvHM7HUC722epK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 11:38:22',NULL,'','',1,1,'',0,'','178.176.79.252','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','8af95fe2ab1a54b488ef8efb3f3b0797','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(602,'Wayneoxymn','Wayneoxymn','WayneoxymnGD','lexi.johnson9@yahoo.com','','','','','','','$2y$10$rHDkB3bZx095ogaWBHsrxuR/QuzIGBdT.ffX63MaVd.49RE85fRRy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 11:59:09',NULL,'','',1,1,'',0,'','178.176.77.149','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c91e3483cf4f90057d02aa492d2b25b1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(603,'KennethNerge','KennethNerge','KennethNergeOM','clnelson223@hotmail.com','','','','','','','$2y$10$MlXr0X11juZq1ootFVQAH.COSo5oZHIbsLhHbu3YMmew2FWwOpSH.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 12:01:16',NULL,'','',1,1,'',0,'','31.173.84.138','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','fc2c7c47b918d0c2d792a719dfb602ef','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(604,'Clarkdus','Clarkdus','ClarkdusHP','brandonpence@gmail.com','','','','','','','$2y$10$RSgWR5ccUM863k8dnxvIz.LpPvfNTXCSLA6QkeBOXID.D/Nujjjbe',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 12:13:22',NULL,'','',1,1,'',0,'','178.176.73.153','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','1aa057313c28fa4a40c5bc084b11d276','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(605,'ArchieBax','ArchieBax','ArchieBaxZW','muhammed_gideer@hotmail.com','','','','','','','$2y$10$.R0.NIC7lwBqh9bmziKrcOTwZi9//k31giHThqDjAzX5pA6jtm75K',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 12:23:06',NULL,'','',1,1,'',0,'','31.173.82.230','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','674e68d7f978c31eafc8e7a300ce9bc2','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(606,'BruceIroli','BruceIroli','BruceIroliCX','skogen0147@msn.com','','','','','','','$2y$10$dbvFpCHXkRGsNvLpxxiNguj/4SK.vqkMzaNSNQp5If3gYpRbfRdxm',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 12:25:41',NULL,'','',1,1,'',0,'','178.176.79.98','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','94c0915ab3bcbc61c1c61624dd6d7cd5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(607,'WilliamCaund','WilliamCaund','WilliamCaundDN','marketing@jscomunalegroup.com','','','','','','','$2y$10$hZ98ct3vqueLqHJQ8OY96OEVGN2EO/bpibjwCaiDshMdRbtKW4NL6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 12:27:52',NULL,'','',1,1,'',0,'','31.173.83.141','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','0f2818101a7ac4b96ceeba38de4b934c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(608,'Mariojub','Mariojub','MariojubGN','faith1st2004@yahoo.com','','','','','','','$2y$10$UJk29Cf1Gv0ofmWmVpQvluknfS0NMB9RIK5KOoka7Wp8pVEkN.lAS',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 12:40:21',NULL,'','',1,1,'',0,'','31.173.81.71','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e97a4f04ef1b914f6a1698caa364f693','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(609,'GeraldThown','GeraldThown','GeraldThownMO','celia.13@hotmail.es','','','','','','','$2y$10$HxRBSD5FlXGnEF9ONhh6juK3.x9eWJEk4lyZcMD1.VA/U/C9ZMTxu',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 12:40:23',NULL,'','',1,1,'',0,'','31.173.82.230','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','4747f5ca63b8e8bd670b26e4b1573961','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(610,'MiguelSox','MiguelSox','MiguelSoxHE','wbmiller75@gmail.com','','','','','','','$2y$10$QqTr66SUbhuWT6YJunf1ruEBMDXHgvgjUZ9rlJk0URlksRpR6rOne',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 13:12:09',NULL,'','',1,1,'',0,'','31.173.82.192','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','1349b36b01e0e804a6c2909a6d0ec72a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(611,'Andrebit','Andrebit','AndrebitIF','samuelschris12@yahoo.co.uk','','','','','','','$2y$10$b3T4XsHeKHR68ZyA4KYO1OVviccTldZsrTGEmLxBO8akZmBRK98JS',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 13:14:31',NULL,'','',1,1,'',0,'','31.173.80.182','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2342d8a616837cd6d79017fe68172b28','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(612,'KevinZet','KevinZet','KevinZetMH','terrik_832@msn.com','','','','','','','$2y$10$yJ6uHg0Wgdqaud0r6FUsYuODRq67LnmHDmN1xTpP/jeWMPUCHlORe',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 13:14:40',NULL,'','',1,1,'',0,'','178.176.77.29','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','71f6278d140af599e06ad9bf1ba03cb0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(613,'FreddieGrete','FreddieGrete','FreddieGreteXB','ykingyau@gmail.com','','','','','','','$2y$10$sYQIFhu9k3GN5AH.miXgsuxjhotSSmjZ5YnImF9m6KlfE66eRXFNS',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 13:22:47',NULL,'','',1,1,'',0,'','178.176.73.14','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','331609c975310d6486391e92a67c5492','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(614,'JamesZef','JamesZef','JamesZefCP','willouw5@gmail.com','','','','','','','$2y$10$bzOIofo4Za.6aJRkFdvDyuM2jfC1h9VjqNDguSSZbTCeW8LMd8go2',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 13:27:35',NULL,'','',1,1,'',0,'','31.173.84.231','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f1c1592588411002af340cbaedd6fc33','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(615,'ScottNelry','ScottNelry','ScottNelryFF','kathrynsatoh@gmail.com','','','','','','','$2y$10$uHNehhBIY6FSescAHkTYbe8AT.ZJSvazlKOc3bEasTnsgVcSdT5.C',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 13:36:09',NULL,'','',1,1,'',0,'','178.176.76.31','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b2eeb7362ef83deff5c7813a67e14f0a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(616,'Jamesmob','Jamesmob','JamesmobMH','angela@202am.com','','','','','','','$2y$10$dr40DsUjtzhmV0b4I.m7F.Vqu1Fw.10pMIolJWnPy7xqVBy4rpq2C',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 13:38:05',NULL,'','',1,1,'',0,'','31.173.80.182','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','6f518c31f6baa365f55c38d11cc349d1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(617,'CharlesSaf','CharlesSaf','CharlesSafMI','rstratton@brewdigital.uk','','','','','','','$2y$10$lR2j.vliidvdquNlJF3Zs.Dotv5D5D//i62zVqVRmzMGreP6uUN1O',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 13:43:50',NULL,'','',1,1,'',0,'','31.173.80.182','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','0a1bf96b7165e962e90cb14648c9462d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(618,'ClydeTow','ClydeTow','ClydeTowYU','moshe@adimarketing.com','','','','','','','$2y$10$tLEo.103eyi6mNLJ6P/V1eGViDSJ6bJRaLMfAffV02RB.2uoF2qT2',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 13:46:47',NULL,'','',1,1,'',0,'','178.176.73.14','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','94841421fb5e84a4d83e303949e6b211','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(619,'WalterinOto','WalterinOto','WalterinOtoNA','crawfordc@earthlink.net','','','','','','','$2y$10$n4vondC3fWH8moJbFAEHBOy0cZo.HeuarzZuP4PAKpdUdpYqZPLT6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 13:58:43',NULL,'','',1,1,'',0,'','31.173.80.182','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','11958dfee29b6709f48a9ba0387a2431','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(620,'BarryQuags','BarryQuags','BarryQuagsJX','denisetim@aol.com','','','','','','','$2y$10$.MvdsLR8TcLjxZcCCvPBauAyZZEx2JYjRkhh6cpK1q.DG8za5MreC',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 14:04:36',NULL,'','',1,1,'',0,'','178.176.73.213','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f3ada80d5c4ee70142b17b8192b2958e','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(621,'OscarFon','OscarFon','OscarFonOY','yunleihu@outlook.com','','','','','','','$2y$10$870dFRFJmLsa4PfMVv4oKe2nB6E0aTPuC6Pq1ce.gABCUtcylqz.m',0,0.00,0,0,0,0,'Active',0,'2026-01-26 14:09:13',NULL,'','',1,1,'',1,'','178.176.73.213','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','6bf733bb7f81e866306e9b5f012419cb','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(622,'Kevinanaes','Kevinanaes','KevinanaesVG','orca.tix@gmail.com','','','','','','','$2y$10$dz/aj7Jc70taBivNAvtS.e.T7VzpEywPERJi8Yyw1BUm3IjjHJNhG',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 14:15:01',NULL,'','',1,1,'',0,'','31.173.80.108','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','0e01938fc48a2cfb5f2217fbfb00722d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(623,'Shawnhog','Shawnhog','ShawnhogAS','hamilke3@gmail.com','','','','','','','$2y$10$O5T1QBqnkOYlDlHhskIqOu4LKeYXe8UBpNHW1XM4lpw4vFavLC/UO',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 14:17:51',NULL,'','',1,1,'',0,'','178.176.73.213','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','058d6f2fbe951a5a56d96b1f1a6bca1c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(624,'WallaceLor','WallaceLor','WallaceLorRF','toofxmous@gmail.com','','','','','','','$2y$10$v4CgKpxM9ZHbNNXTRtyooe1c9TRKWRP5CU7OiFvJv9M8VKqcRb8UG',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 14:19:51',NULL,'','',1,1,'',0,'','178.176.73.213','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e1d4b23fb807f2a1de063bfb84a468d4','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(625,'KennethPrisk','KennethPrisk','KennethPriskKG','jerricka.thompson@trojans.dsu.edu','','','','','','','$2y$10$WPN/LvSXYrgi8LAn95grKeKE/x.XMbQ5mo3Mnv12RSPtmtFGjkiVu',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 14:24:23',NULL,'','',1,1,'',0,'','31.173.83.127','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','130ea938864f051b9a40c85b6a713306','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(626,'DonovanVeica','DonovanVeica','DonovanVeicaQT','austin.gelbard@gmail.com','','','','','','','$2y$10$0FIjYTi0nUa9dVZWrnR6zeu/Mkbn516TwTSYyqsGdrP9Y6DEz0zzO',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 14:26:45',NULL,'','',1,1,'',0,'','31.173.84.227','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','de73998802680548b916f1947ffbad76','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(627,'Thomasblura','Thomasblura','ThomasbluraOO','sr2js@aol.com','','','','','','','$2y$10$E1ZtgsMFHs70pxi.8e.WzeDX8V7J7nI2AyT0x.FrE3u03z/f15tu6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 14:28:36',NULL,'','',1,1,'',0,'','31.173.85.66','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','58aaee7ae94b52697ad3b9275d46ec7f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(628,'ManuelTow','ManuelTow','ManuelTowLD','cmc539@nyu.edu','','','','','','','$2y$10$NduwbOxuCMJWgOlcYnBBgOPyposzoztOpmEnPyci8EEL.ZErFA1SO',0,0.00,0,0,0,0,'Active',0,'2026-01-26 14:37:17',NULL,'','',1,1,'',1,'','178.176.75.196','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','5d3145e1226fd39ee3b3039bfa90c95d','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(629,'Gerardocrync','Gerardocrync','GerardocryncIE','samuelagustoo@gmail.com','','','','','','','$2y$10$5nPCqknHhN5CH9nDgwyrVugpNcrh.d8drJ65lsgxNzasWPuWZiaUW',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 14:38:44',NULL,'','',1,1,'',0,'','31.173.85.24','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','be23c41621390a448779ee72409e5f49','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(630,'Shawnaquam','Shawnaquam','ShawnaquamSV','kharroubi@hotmail.co.uk','','','','','','','$2y$10$/vATtIRk0AVX7e0o3I7Mp.OAaMZNhv7Ny4o1AmUsAkU4ILAR2WMje',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 14:45:42',NULL,'','',1,1,'',0,'','31.173.83.24','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','7da9fd85999f583e3906f99a3ee58911','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(631,'Jerrynof','Jerrynof','JerrynofUM','gillespie_quentin@yahoo.com','','','','','','','$2y$10$lkBoPH/VP7DTp58towxb5uHAaEte5OwLuUZaBDwP4M2rByQ8G8a8C',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 14:59:18',NULL,'','',1,1,'',0,'','31.173.87.8','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b4b758962f17808746e9bb832a6fa4b8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(632,'PeterLeM','PeterLeM','PeterLeMWE','dcjackson@championhomes.com','','','','','','','$2y$10$CBHobz/mgKBiYup6gfCdXecKOeASIQH24ThjElQp4RnaHGujYVI0O',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 15:09:15',NULL,'','',1,1,'',0,'','31.173.87.194','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','53c5b2affa12eed84dfec9bfd83550b1','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(633,'Kevinfex','Kevinfex','KevinfexYH','lindseyhille@gmail.com','','','','','','','$2y$10$O8CyQQ6sNewB1EeJxGz8reR/KYBRfS5v4enBR7fqNxZQq6/aF4xRq',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 15:09:27',NULL,'','',1,1,'',0,'','178.176.77.43','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','adfe565bb7839b83ea8812e860d73c79','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(634,'KevinMok','KevinMok','KevinMokQL','tkrause03@gmail.com','','','','','','','$2y$10$HfC1LG6D.2A/s5NGjmss2esWguOdX.Hqpeel0nH9fBKGHbPGgfnVi',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 15:17:41',NULL,'','',1,1,'',0,'','178.176.73.115','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','83f2550373f2f19492aa30fbd5b57512','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(635,'Kennethchulk','Kennethchulk','KennethchulkRT','ironhorsedp@aol.com','','','','','','','$2y$10$T6lwOOpaM6UW54Jp3Er8euqXrDed.m4WARLugZEsronugVnhs5H/K',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 15:28:17',NULL,'','',1,1,'',0,'','31.173.87.242','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','6e3197aae95c2ff8fcab35cb730f6a86','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(636,'MichaelJak','MichaelJak','MichaelJakFN','tgramigna@comcast.net','','','','','','','$2y$10$frebvBo37dx00lRtIt8fWu.w9y89/5LcERG5vuQPnqeXjVUAieodW',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 15:40:47',NULL,'','',1,1,'',0,'','178.176.75.170','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','3dde889723e33ace6af907cd5cc8e187','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(637,'Davidvisse','Davidvisse','DavidvisseCE','ria1223@me.com','','','','','','','$2y$10$SmNHczvumJob0gkZWhHmyuK0e/FbGZDlsV7jARGP95yfPGUBbcyre',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 15:51:37',NULL,'','',1,1,'',0,'','178.176.78.164','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','740a02d0786a4239a62076f650cd26da','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(638,'Coreyvop','Coreyvop','CoreyvopKV','woodpaq@yahoo.com','','','','','','','$2y$10$1bgIJqMgE1Ohoxlx7ptM4OD4ONMXPMOdwRjBNR7SkLAhrYiYKFUbS',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 15:59:34',NULL,'','',1,1,'',0,'','31.173.87.242','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d465f14a648b3d0a1faa6f447e526c60','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(639,'JosephDig','JosephDig','JosephDigHC','blanca.martinez1113@gmail.com','','','','','','','$2y$10$8NhfjWHiKFZoOtCcY2tHleQaONKzDC8svz/U2AqYSk6kHUnGYlO.6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 16:01:21',NULL,'','',1,1,'',0,'','31.173.81.118','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','793bc52a941b3951dfdb85fb04f9fd06','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(640,'Thomascak','Thomascak','ThomascakAM','info@misspiscescreations.com','','','','','','','$2y$10$PNMhE9RFfrAvueLgtH3lqecWkz4v4XHucROhJEZT2rNrxut40garm',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 16:10:39',NULL,'','',1,1,'',0,'','31.173.81.237','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','aac61539fd1fb209b44b9f9d0d8d28ac','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(641,'KeithBar','KeithBar','KeithBarDR','delgado_derek@hotmail.com','','','','','','','$2y$10$HaZz9SFYYpCslNbN3EZgc.nw4N0FxcarvXLzBuVD0Wgf1pyOpfucO',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 16:11:16',NULL,'','',1,1,'',0,'','31.173.81.103','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d1f255a373a3cef72e03aa9d980c7eca','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(642,'AbrahamHeign','AbrahamHeign','AbrahamHeignVD','takasoukishuku@hotmail.com','','','','','','','$2y$10$22hIjK4ce1GKyn72VCKKWO08FBMtxzHUiDoDzmAFb2wGO0doJuc36',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 16:25:51',NULL,'','',1,1,'',0,'','31.173.81.118','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','84b64e537f08e81b8dea8cce972a28b2','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-27',0),(643,'DavidBon','DavidBon','DavidBonBR','shoegirl591@gmail.com','','','','','','','$2y$10$VIv8ZB/hxZ7ajiKxIR1MGe/I2AkJSrJu1dJeybhrlmgl7L0EWdC4C',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 16:28:42',NULL,'','',1,1,'',0,'','31.173.84.206','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','ed519c02f134f2cdd836cba387b6a3c8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(644,'GeraldFlody','GeraldFlody','GeraldFlodyJO','shammahjoy7@gmail.com','','','','','','','$2y$10$dkYE.PkpAx6CfAaMDIdDJe0bofotcn/W0jHj6WAUIqfYI6DDb5mv.',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 16:28:52',NULL,'','',1,1,'',0,'','178.176.76.7','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','47e51e9d11cf800ff08674dbb68a48ab','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(645,'IsiahNam','IsiahNam','IsiahNamPK','joe8700@gmail.com','','','','','','','$2y$10$RWofZBdIkm25lZnP5YNFAeF0f8bLxF/Wt52y4EJoOP82Ktzpa8tai',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 16:38:41',NULL,'','',1,1,'',0,'','31.173.81.150','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f0873a91b499e265ff6d78ff6e8985a0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(646,'Charlespok','Charlespok','CharlespokUE','mmccleary86@gmail.com','','','','','','','$2y$10$cqSAXk0TowSpYLRsvA2sROkdI35KVC0t1IYfgCRw4jCdE6rvZMZm6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 16:58:35',NULL,'','',1,1,'',0,'','178.176.76.102','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f900afc719d7d86bd7d17b9d3be0aafe','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(647,'BruceJab','BruceJab','BruceJabKI','dyoswick@comcast.net','','','','','','','$2y$10$IS0GuLG9zx3mUFVq0HU3p.aAbYG3fD5wogjE9fCJhZ5of7Pm5vKP6',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 17:08:48',NULL,'','',1,1,'',0,'','31.173.82.198','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a7c628dced6a691f1fd31aebc647a0a8','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(648,'DuaneTah','DuaneTah','DuaneTahMI','revin.lil18@gmail.com','','','','','','','$2y$10$OI2L4GHxCrZDWPDqowfg5ucX34r18cn7yGE4BQIv6gIYkFPrMtKHu',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 17:47:09',NULL,'','',1,1,'',0,'','178.176.78.200','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','7012ef0335aa2adbab58bd6d0702ba41','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(649,'Eugenedriew','Eugenedriew','EugenedriewRD','mvaldovinos661@yahoo.com','','','','','','','$2y$10$UmFsliVVyVNo4ZLdskIKR.X6fv0gnUZTzx/ezR0SJIGzvCn6.M/Qq',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 17:58:28',NULL,'','',1,1,'',0,'','178.176.78.40','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','7f9d88fe83d3e7fce3136e510b0a9a38','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(650,'Dallasswags','Dallasswags','DallasswagsAP','pjanelle@gmail.com','','','','','','','$2y$10$KZK73hUBioaFJwk2W8/WgOwiCIfM2874z6SD4kx/Lq0LnqKTHzFpK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 18:19:42',NULL,'','',1,1,'',0,'','31.173.81.96','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','9c8661befae6dbcd08304dbf4dcaf0db','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(651,'Philiplut','Philiplut','PhiliplutKF','cohen.j.sam@gmail.com','','','','','','','$2y$10$tuymO5bqyLlvFedauw27fumR.VnXb4ayBsvjUVaIlz2f89S4KQGsW',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 18:21:07',NULL,'','',1,1,'',0,'','178.176.73.249','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','389bc7bb1e1c2a5e7e147703232a88f6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(652,'Scottexpix','Scottexpix','ScottexpixQR','veggie345@aol.com','','','','','','','$2y$10$iGw5XGItK3c8tiO/05uJteDiJppEEDvUmOhlBqn/3bHw7FWxFfKAu',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 18:28:45',NULL,'','',1,1,'',0,'','31.173.80.193','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d57edf2d2082b0865e15d11edaecdb20','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(653,'Albertbip','Albertbip','AlbertbipAS','a1esinc@aol.com','','','','','','','$2y$10$meO53HGqtAmJEgASR5e2eeGHfDU1CumZpI9wIv.wUWUL4kiGsAbZK',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 18:29:49',NULL,'','',1,1,'',0,'','31.173.83.26','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b1563a78ec59337587f6ab6397699afc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(654,'JohnnyCruct','JohnnyCruct','JohnnyCructUN','linda.ortegon@rmtaxcenters.com','','','','','','','$2y$10$hQHVj5aHNkTHsl2s/7YRnekRb3i0OIG2JawIMu8tO61qBC9gQZjtC',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 18:40:34',NULL,'','',1,1,'',0,'','31.173.81.168','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b105e5a192f80ef3ec4ee4756af089a3','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(655,'ClydeDib','ClydeDib','ClydeDibAQ','anjumjose01@gmail.com','','','','','','','$2y$10$S44fJbfDc38A9nv/mdaQBe85a4V0Z.bm5Mvsn7fyllR5bDKWHGBva',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 18:42:35',NULL,'','',1,1,'',0,'','31.173.81.168','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','a3842ed7b3d0fe3ac263bcabd2999790','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(656,'Edwardnex','Edwardnex','EdwardnexKR','slbushs3@hotmail.com','','','','','','','$2y$10$UJpLVEpbE6J0GErlp2VdYOMb5HUqXBwcYhTvtuDUkc0WE7.OwJo5C',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 18:42:38',NULL,'','',1,1,'',0,'','178.176.73.249','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','0e080857e96278e6dba76ac029faf291','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(657,'CyrilMaync','CyrilMaync','CyrilMayncZA','winnieh80@yahoo.com','','','','','','','$2y$10$6sf5excSYrjL4RdrvWRBVu6Y4UuSqbFQT/P7xBbMCenq3N7s43QWu',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 19:17:37',NULL,'','',1,1,'',0,'','178.176.73.249','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e0e6518d2cac6a5b1fa6b05498a5e7be','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(658,'JamieGob','JamieGob','JamieGobUF','deerfearme90@yahoo.com','','','','','','','$2y$10$7yJUx.uk4LItNg.uo6QkN.Z1Wx3ZNkTpLSl7sGxkYGCEZmoiRIPDa',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 19:21:49',NULL,'','',1,1,'',0,'','31.173.86.7','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b83aac23b9528732c23cc7352950e880','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(659,'Ronaldsat','Ronaldsat','RonaldsatYD','christine.wrigley@att.net','','','','','','','$2y$10$7JtllcNwmP4etuvXALMRcuzsvKOksmtV6F5co5dyEwUsLRR1rACH2',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 19:33:37',NULL,'','',1,1,'',0,'','178.176.77.116','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','69b09198d4248b8f24494f27a01367b9','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(660,'Franciskig','Franciskig','FranciskigVR','wandrewpuckett@yahoo.com','','','','','','','$2y$10$fFyednZxyooUiRh4IkrTBOKq0ln560G7lV9zgD/EbvdZKIlwZyL7C',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 19:39:55',NULL,'','',1,1,'',0,'','31.173.85.184','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b72a5a099433a2099fc3d92f6ad3accf','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(661,'Anthonyfrand','Anthonyfrand','AnthonyfrandVB','babs3010@hotmail.com','','','','','','','$2y$10$Yg6TnMmFrVtYi9eZqTPq5.g944baw5kEYcttmerh4WVV6CCnc84Jy',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 20:01:04',NULL,'','',1,1,'',0,'','178.176.79.139','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','0765933456f074d2c75bbbad63af95e6','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(662,'BennieMek','BennieMek','BennieMekFY','saywhite@umich.edu','','','','','','','$2y$10$ve4.iZjGrDpiY8sOuBhZRu.sQ3cbyT/IcL6O5UUCGJQ3wo/2smbVa',0,0.00,0,0,0,0,'Unverified',0,'2026-01-26 20:04:38',NULL,'','',1,1,'',0,'','178.176.74.1','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','d5e2c0adad503c91f91df240d0cd4e49','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-28',0),(663,'Vortexzaz','Vortexzaz','zwusafme2tlidokGP','dguent@windstream.net','','','','','','','$2y$10$znlSZAT51YDlYuAs6rcFg.l1tVaox0.AvmuXKy9W9wqvp.BOegQui',0,0.00,0,0,0,0,'Unverified',0,'2026-01-30 04:48:06',NULL,'','',1,1,'',0,'','70.166.167.38','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','58521e4e2bd3d4b988cbd17d7365df3c','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-31',0),(664,'Rubbercfb','Rubbercfb','zzusaymegmlzxleGP','dahlquisthvacandplumbing@gmail.com','','','','','','','$2y$10$WyHVr5l0GIuHDNWqEFXWEO/KtmthVBXALdgjvh18a7BEKkPHjpO3q',0,0.00,0,0,0,0,'Unverified',0,'2026-01-30 13:03:01',NULL,'','',1,1,'',0,'','72.205.0.67','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','e52ad5c9f751f599492b4f087ed7ecfc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-01-31',0),(665,'Kakesehikosminork112soloswapscom','Kakesehikosminork112','Kakesehikosminork112soloswapsc','f.aerisarvoodoorn@gmail.com','','','','','','','$2y$10$xBQ93nSXjNxA4vpfuVMdbO3MUQ9yGplsCt3xTPjp1A7ZvGwjFlsre',0,0.00,0,0,0,0,'Unverified',0,'2026-02-01 00:05:52',NULL,'','',1,1,'',0,'','130.49.216.135','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','63a7769efbcc83107e5e385ccc6429de','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-02-02',0),(666,'Vitamixida','Vitamixida','zvusafme2nstxlnGP','bneuzil@me.com','','','','','','','$2y$10$T2OMb9qaFgGdUHUpNWUdgevCzT2CbU1E5jKwv3ssWbwy3Zcx59wHi',0,0.00,0,0,0,0,'Unverified',0,'2026-02-01 03:59:07',NULL,'','',1,1,'',0,'','68.71.243.14','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','9d3d9b8861c97e6bb5992d51d3232f8b','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-02-02',0),(667,'Blendernvp','Blendernvp','svusalmeqnnecqpGP','leonard@steinerleisure.com','','','','','','','$2y$10$Sg8fAzfuHzuldRuFzndxwO7Q6QYihA4bCAVbCVttyh6MVMbglp1B2',0,0.00,0,0,0,0,'Unverified',0,'2026-02-02 18:43:48',NULL,'','',1,1,'',0,'','192.252.209.155','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','c213877427b46fa96cff6c39e837ccee','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-02-04',0),(668,'Furrionvcr','Furrionvcr','xwusafmesndmdkpGP','lmiller22@hotmail.com','','','','','','','$2y$10$hlhGJMzKdUE0K.pD/xtU4Oz2eIgWBta19VGb7x22kkBZdw/GBuVha',0,0.00,0,0,0,0,'Unverified',0,'2026-02-05 17:40:26',NULL,'','',1,1,'',0,'','83.219.1.130','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2288f691b58edecadcc9a8691762b4fd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-02-07',0),(669,'Interfacehxm','Interfacehxm','xwusalmeemmlzueGP','b25mitchel@aol.com','','','','','','','$2y$10$Nmro1kE89GemCczUHZliee5UuNzZstOH8Omryk2BAJResjQWOvy8q',0,0.00,0,0,0,0,'Unverified',0,'2026-02-10 14:07:27',NULL,'','',1,1,'',0,'','193.158.12.140','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','39cd7b469beae7c617c73e0d008195ef','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-02-11',0),(670,'instantadvertising','Richard','Anderson','instant.advertising.online@gmail.com','','','','','','','$2y$10$C6OafzKY2f/tcvAd8olbhOq89AQJj1Kh7x6t60K5n6NxMG1UWKy.6',89,0.00,0,0,0,0,'Active',0,'2026-02-12 05:14:32',NULL,'','',1,1,'',1,'82.77.158.92','82.77.158.92','','','','2026-02-12 13:15:14',1,'0/0/0',0,25,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'02/2026','61b4a64be663682e8cb037d9719ad8cd','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-02-13',0),(671,'mallen88','Ricky','Mallen','mallen062610@gmail.com','','','','','','','$2y$10$/MdIaVUTH1zRSI12Va/H7OkLKF3O7aZmajp5Q.Ex18fGuVTJbVeSS',89,0.00,0,0,0,0,'Unverified',0,'2026-02-13 08:12:23',NULL,'','',1,1,'',0,'','222.127.196.66','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f1298750ed09618717f9c10ea8d1d3b0','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-02-14',0),(672,'RainMachinereb','RainMachinereb','zwusaymenncpznvGP','geftedimanche@hotmaip.com','','','','','','','$2y$10$FIFt8v09JGh0zQpDZQ2qeebxzYMng2aK9OcIhwZhDlGVrk9KYaw0i',0,0.00,0,0,0,0,'Unverified',0,'2026-02-23 21:35:56',NULL,'','',1,1,'',0,'','67.201.59.70','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','b52340b4de4566b804c9880aa0b4af5f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-02-25',0),(673,'runup','darnell','brown','ceoboney@gmail.com','','','','','','','$2y$10$9vCy/fB/OdbPy47JXRSmNeuAnIU.TR7JNFeNOrgiYX4O3GitD7LCC',131,0.00,0,0,0,0,'Active',0,'2026-03-08 14:41:36',NULL,'','',1,1,'',1,'68.33.202.64','73.213.246.23','','','','2026-03-08 22:19:32',2,'0/0/0',0,25,0,0,25,0,1773188735,0,1773188735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'03/2026','c8877cff22082a16395a57e97232bb6f','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-03-09',0),(674,'LanceLic','LanceLic','LanceLicTG','wudagiquyo377@gmail.com','','','','','','','$2y$10$JFBiQTYH1Fj9X4lzAH0gdO12I4lO64BMTCQONKELAuqIaKj3/D97m',0,0.00,0,0,0,0,'Unverified',0,'2026-03-14 12:57:36',NULL,'','',1,1,'',0,'','31.173.81.208','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','8859a81bd114df94d9f432350c934f4a','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-03-15',0),(675,'strenght55b','paul','persaud','strenght55b@gmail.com','','','','','','','$2y$10$hVyG3WniCQxWXN064p2h5uBCWWSIdbU/Jd407okjiAtf.TIT.wjx6',22,0.00,0,0,0,0,'Active',0,'2026-03-20 16:10:51',NULL,'','',1,1,'',1,'','65.88.88.252','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','9e740b84bb48a64dde25061566299467','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-03-21',0),(676,'AntonioJox','AntonioJox','AntonioJoxOA','odosawehawi88@gmail.com','','','','','','','$2y$10$tD/lsIlv9SOyQilje.nmLOyLUb5sY9/dXmNn8hEOJzZNUPB.MkcL.',0,0.00,0,0,0,0,'Unverified',0,'2026-04-03 07:30:09',NULL,'','',1,1,'',0,'','31.173.85.162','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','f76a89f0cb91bc419542ce9fa43902dc','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-04-04',0),(677,'Jamestounc','Jamestounc','JamestouncOO','t.can4@yandex.com','','','','','','','$2y$10$VK0mG/UILrprXG0jFgCZ9emLwKh1vVGZgmbSWT1Mle1uKDt15rmvi',0,0.00,0,0,0,0,'Unverified',0,'2026-04-14 12:54:41',NULL,'','',1,1,'',0,'','77.238.253.153','','','','0000-00-00 00:00:00',0,'0/0/0',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'0/0','2b64c2f19d868305aa8bbc2d72902cc5','0000-00-00',0.00,0.00,0,0,0,0,0,1,0,0.00,'0000-00-00','0000-00-00 00:00:00','Free',0,'2026-04-15',0);
/*!40000 ALTER TABLE `oto_members` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_membersd`
--

DROP TABLE IF EXISTS `oto_membersd`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_membersd` (
  `Id` int(11) NOT NULL AUTO_INCREMENT,
  `username` varchar(32) NOT NULL DEFAULT '',
  `firstname` varchar(20) NOT NULL DEFAULT '',
  `lastname` varchar(30) NOT NULL DEFAULT '',
  `email` varchar(100) NOT NULL DEFAULT '',
  `address` varchar(50) NOT NULL DEFAULT '',
  `city` varchar(40) NOT NULL DEFAULT '',
  `state` varchar(40) DEFAULT NULL,
  `postcode` varchar(16) NOT NULL DEFAULT '',
  `country` char(3) NOT NULL DEFAULT '',
  `telephone` varchar(30) NOT NULL DEFAULT '',
  `password` varchar(255) NOT NULL DEFAULT '',
  `refid` int(11) unsigned DEFAULT 0,
  `commission` float(6,2) unsigned DEFAULT 0.00,
  `mailbounce` int(11) NOT NULL DEFAULT 0,
  `status` varchar(16) NOT NULL DEFAULT 'Active',
  `otoview` int(11) DEFAULT 0,
  `joindate` datetime DEFAULT '0000-00-00 00:00:00',
  `disableddate` datetime DEFAULT NULL,
  `geo` varchar(4) DEFAULT NULL,
  `paypal_email` varchar(100) DEFAULT NULL,
  `groupid` int(11) unsigned DEFAULT 0,
  `mtype` int(11) unsigned DEFAULT 0,
  `cb_id` varchar(50) DEFAULT NULL,
  `newsletter` int(11) NOT NULL DEFAULT 1,
  `lastip` varchar(50) NOT NULL DEFAULT '',
  `signupip` varchar(50) NOT NULL DEFAULT '',
  `lastlogin` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `numLogins` int(11) NOT NULL DEFAULT 0,
  `affnotify` int(11) NOT NULL DEFAULT 1,
  `expirydate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `paymentplan` varchar(20) NOT NULL DEFAULT 'Free',
  `upgend` date NOT NULL DEFAULT '0000-00-00',
  `vericode` varchar(50) NOT NULL DEFAULT '',
  `allowreac` int(11) NOT NULL DEFAULT 0,
  `deletedate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `deletereason` varchar(255) NOT NULL DEFAULT '',
  `credits` float NOT NULL DEFAULT 0,
  `bannerimps` int(11) NOT NULL DEFAULT 0,
  `textimps` int(11) NOT NULL DEFAULT 0,
  `lastbonus` varchar(20) NOT NULL DEFAULT '0/0',
  PRIMARY KEY (`Id`),
  UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=428 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_membersd`
--

LOCK TABLES `oto_membersd` WRITE;
/*!40000 ALTER TABLE `oto_membersd` DISABLE KEYS */;
INSERT INTO `oto_membersd` (`Id`, `username`, `firstname`, `lastname`, `email`, `address`, `city`, `state`, `postcode`, `country`, `telephone`, `password`, `refid`, `commission`, `mailbounce`, `status`, `otoview`, `joindate`, `disableddate`, `geo`, `paypal_email`, `groupid`, `mtype`, `cb_id`, `newsletter`, `lastip`, `signupip`, `lastlogin`, `numLogins`, `affnotify`, `expirydate`, `paymentplan`, `upgend`, `vericode`, `allowreac`, `deletedate`, `deletereason`, `credits`, `bannerimps`, `textimps`, `lastbonus`) VALUES (6,'dianaag','Diana','Aguilar','5dollarfriday51@gmail.com','','','','','','','$2y$10$cyttwqNyCRWqUapzKlRnjuTdi30tm5gDWIlbgDiXjld8hd6dPW116',0,0.00,0,'Active',0,'2022-05-24 13:25:57',NULL,'','',1,1,NULL,1,'','187.252.248.96','0000-00-00 00:00:00',0,1,'0000-00-00 00:00:00','Free','0000-00-00','1d38dd921e15520709f86320185c5e1d',0,'2022-12-10 08:31:28','Deleted By Admin',0,0,0,'0/0'),(7,'bbrida','Brida','Bautista','5dollarfriday55@gmail.com','','','','','','','$2y$10$i6uPLbYyUe1nwlKT0UeAtuk9bN2WEF0Ftr1FsAJK6VqAI3E1.hAa6',0,0.00,0,'Active',0,'2022-05-24 13:29:40',NULL,'','',1,1,NULL,1,'187.252.251.126','187.252.251.94','2022-07-27 14:47:19',12,1,'0000-00-00 00:00:00','Free','0000-00-00','c0f168ce8900fa56e57789e2a2f2c9d0',0,'2022-12-10 08:31:28','Deleted By Admin',0,25,25,'07/2022'),(76,'mackylad3','micheal','Powell','mickrichp33@gmail.com','','','','','GB','','$2y$10$MHuCgzmauO2Qd2ieC.5SoO.QI3URBF2LLkxurg4ywXcOUl.o0i9mm',27,0.00,0,'Active',0,'2022-05-31 21:25:56',NULL,'','freeleadssystem247@gmail.com',1,1,NULL,1,'92.30.110.11','92.30.110.11','2022-09-22 09:15:49',27,0,'0000-00-00 00:00:00','Free','0000-00-00','856fc81623da2150ba2210ba1b51d241',0,'2022-10-07 12:26:14','Deleted By Admin',69742,30025,32025,'09/2022'),(165,'LISASUEMAX888','Richard','Powell','richardwiltshire2361@gmail.com','20c Sun Lane','Wakefield','Yorkshire','WF1 1JD','GB','','$2y$10$7ic6GkiEJjBsRWW4DvuNWuEzFHXv7vZVv8/rsUap2XUN5ylkFIgZm',0,0.00,0,'Active',0,'2022-07-31 13:43:09',NULL,'','richardwiltshire2361@gmail.com',1,1,NULL,1,'92.30.110.11','92.30.110.11','2022-10-05 21:19:59',19,0,'0000-00-00 00:00:00','Free','0000-00-00','1e51e0f3b6b60070219ccb91bb619a6b',0,'2022-10-07 07:57:07','Deleted By Admin',70120,39525,40075,'10/2022');
/*!40000 ALTER TABLE `oto_membersd` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_membertypes`
--

DROP TABLE IF EXISTS `oto_membertypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_membertypes` (
  `mtid` int(11) NOT NULL AUTO_INCREMENT,
  `accname` varchar(30) NOT NULL DEFAULT '',
  `accfee` float(6,2) NOT NULL DEFAULT 0.00,
  `acclevel` int(11) NOT NULL DEFAULT 0,
  `comm` int(11) NOT NULL DEFAULT 0,
  `enabled` tinyint(4) NOT NULL DEFAULT 0,
  `otocomm` int(11) NOT NULL DEFAULT 0,
  `promocode` varchar(10) DEFAULT NULL,
  `template_data` mediumtext DEFAULT NULL,
  `recur` char(1) NOT NULL DEFAULT 'N',
  `_2co_productid` varchar(20) DEFAULT NULL,
  `utemplate_data` mediumtext DEFAULT NULL,
  `description` mediumtext DEFAULT NULL,
  `commfixed` float(6,2) DEFAULT 0.00,
  `enablepdate` int(11) NOT NULL DEFAULT 0,
  `pp_p3` int(11) NOT NULL DEFAULT 0,
  `comm2` int(11) NOT NULL DEFAULT 0,
  `otocomm2` int(11) NOT NULL DEFAULT 0,
  `commfixed2` float(6,2) NOT NULL DEFAULT 0.00,
  `pp_p1` int(11) NOT NULL DEFAULT 0,
  `pp_t1` char(1) NOT NULL DEFAULT 'N',
  `rank` int(11) NOT NULL DEFAULT 0,
  `pp_srt` int(11) NOT NULL DEFAULT 0,
  `cb_paylink` varchar(255) DEFAULT NULL,
  `pp_a1` float(6,2) DEFAULT 0.00,
  `surfratio` float NOT NULL DEFAULT 0.5,
  `surftimer` tinyint(3) NOT NULL DEFAULT 10,
  `refcrds` tinyint(3) NOT NULL DEFAULT 0,
  `refcrds2` tinyint(3) NOT NULL DEFAULT 0,
  `hitvalue` int(11) NOT NULL DEFAULT 1,
  `bannervalue` int(11) NOT NULL DEFAULT 10,
  `widgetadsvalue` float NOT NULL DEFAULT 10,
  `widgetadsunvalue` float NOT NULL DEFAULT 0.1,
  `widgetadscrd` int(11) NOT NULL DEFAULT 1,
  `sqbanvalue` int(11) NOT NULL DEFAULT 10,
  `textvalue` int(11) NOT NULL DEFAULT 15,
  `maxbanners` int(11) NOT NULL DEFAULT 10,
  `maxwidgetads` int(11) NOT NULL DEFAULT 10,
  `maxsqbans` int(11) NOT NULL DEFAULT 10,
  `maxtexts` int(11) NOT NULL DEFAULT 10,
  `manbanners` tinyint(1) NOT NULL DEFAULT 0,
  `manwidgetads` tinyint(1) NOT NULL DEFAULT 0,
  `mansqbans` tinyint(1) NOT NULL DEFAULT 0,
  `mantexts` tinyint(1) NOT NULL DEFAULT 0,
  `monthcrds` int(11) NOT NULL DEFAULT 0,
  `monthbimps` int(11) NOT NULL DEFAULT 0,
  `monthwidgetads` int(11) NOT NULL DEFAULT 0,
  `monthsqbans` int(11) NOT NULL DEFAULT 0,
  `monthtimps` int(11) NOT NULL DEFAULT 0,
  `mailpriority` int(11) NOT NULL DEFAULT 1,
  `mailhours` int(11) NOT NULL DEFAULT 48,
  `maillimit` int(11) NOT NULL DEFAULT 2000,
  `maxmailings` int(11) NOT NULL DEFAULT 40,
  `maildownline` tinyint(1) NOT NULL DEFAULT 0,
  `enablesched` tinyint(1) NOT NULL DEFAULT 0,
  `credrefund` float NOT NULL DEFAULT 0,
  `limitranks` tinyint(1) NOT NULL DEFAULT 0,
  `maxtemplates` int(11) NOT NULL DEFAULT 5,
  `maxscheddays` int(11) NOT NULL DEFAULT 3,
  `mailerenabled` tinyint(1) NOT NULL DEFAULT 1,
  `maxopentabs` int(11) NOT NULL DEFAULT 3,
  `cantransfer` tinyint(1) NOT NULL DEFAULT 1,
  `mintransfer` int(11) NOT NULL DEFAULT 10,
  `maxtransfer` int(11) NOT NULL DEFAULT 0,
  `downgrade_mtype` int(11) NOT NULL DEFAULT 1,
  `ipnid` int(11) NOT NULL DEFAULT 0,
  `upgenabled` tinyint(4) NOT NULL DEFAULT 0,
  `spotlight_view` int(11) NOT NULL DEFAULT 10,
  `spotlight_view_cash` decimal(5,2) unsigned NOT NULL DEFAULT 0.00,
  `spotlight_rate` int(11) NOT NULL DEFAULT 30,
  `spotlight_rate_cash` decimal(5,2) unsigned NOT NULL DEFAULT 0.00,
  `multidlbmaxcust` int(11) NOT NULL DEFAULT 0,
  `multidlbreorder` int(11) NOT NULL DEFAULT 0,
  `multidlbhide` int(11) NOT NULL DEFAULT 0,
  `randrefs` int(1) NOT NULL DEFAULT 0,
  `rotator_limit` int(10) unsigned NOT NULL DEFAULT 1,
  `rotator_approve` tinyint(1) NOT NULL DEFAULT 0,
  `tracker_limit` int(10) unsigned NOT NULL DEFAULT 10,
  `rot_noframe` int(10) unsigned NOT NULL DEFAULT 0,
  `rot_convtrk` int(10) unsigned NOT NULL DEFAULT 1,
  `rot_sr_enable` int(10) unsigned NOT NULL DEFAULT 0,
  `rot_sr_dailyrates` int(10) unsigned NOT NULL DEFAULT 50,
  PRIMARY KEY (`mtid`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_membertypes`
--

LOCK TABLES `oto_membertypes` WRITE;
/*!40000 ALTER TABLE `oto_membertypes` DISABLE KEYS */;
INSERT INTO `oto_membertypes` (`mtid`, `accname`, `accfee`, `acclevel`, `comm`, `enabled`, `otocomm`, `promocode`, `template_data`, `recur`, `_2co_productid`, `utemplate_data`, `description`, `commfixed`, `enablepdate`, `pp_p3`, `comm2`, `otocomm2`, `commfixed2`, `pp_p1`, `pp_t1`, `rank`, `pp_srt`, `cb_paylink`, `pp_a1`, `surfratio`, `surftimer`, `refcrds`, `refcrds2`, `hitvalue`, `bannervalue`, `widgetadsvalue`, `widgetadsunvalue`, `widgetadscrd`, `sqbanvalue`, `textvalue`, `maxbanners`, `maxwidgetads`, `maxsqbans`, `maxtexts`, `manbanners`, `manwidgetads`, `mansqbans`, `mantexts`, `monthcrds`, `monthbimps`, `monthwidgetads`, `monthsqbans`, `monthtimps`, `mailpriority`, `mailhours`, `maillimit`, `maxmailings`, `maildownline`, `enablesched`, `credrefund`, `limitranks`, `maxtemplates`, `maxscheddays`, `mailerenabled`, `maxopentabs`, `cantransfer`, `mintransfer`, `maxtransfer`, `downgrade_mtype`, `ipnid`, `upgenabled`, `spotlight_view`, `spotlight_view_cash`, `spotlight_rate`, `spotlight_rate_cash`, `multidlbmaxcust`, `multidlbreorder`, `multidlbhide`, `randrefs`, `rotator_limit`, `rotator_approve`, `tracker_limit`, `rot_noframe`, `rot_convtrk`, `rot_sr_enable`, `rot_sr_dailyrates`) VALUES (1,'Free',0.00,1,10,1,20,'','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://onedrive.live.com/view.aspx?resid=FC8A0A8FA48201D4%2185415&authkey=!AAbx28pUmX4DFLs\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>','N','','','',0.00,0,0,0,0,0.00,0,'N',0,0,NULL,0.00,1,10,10,0,1,1,10,0.1,1,10,1,1,10,10,1,1,0,0,1,0,25,0,0,25,1,72,1000,10,1,0,0,1,5,3,1,1,1,10,0,1,0,1,10,0.00,30,0.00,0,0,0,0,1,0,10,0,1,0,50),(2,'Gold Member',0.00,0,20,0,20,'','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-area/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>','M','',NULL,'Mail Every Day<br>\r\nMail Your Downline For Free<br>\r\n5 Credits Per Click<br>\r\n8 Second Timer<br>\r\n1000 Bonus Credits Per Month<br>\r\n40% Commissions On Referral Purchases',0.00,0,1,5,5,0.00,0,'N',2,0,'',0.00,2,8,20,5,1,5,10,0.1,1,25,5,10,10,1000,10,1,0,0,1,1000,250,0,0,250,3,48,3000,10,1,1,0,1,10,3,1,3,1,10,0,1,5,0,10,0.00,30,0.00,0,0,0,0,1,0,10,0,1,0,50),(3,'VIP Member',0.00,0,60,0,60,'','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-area/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>','M','',NULL,'Mail 2x Day<br>\r\nMail Your Downline For Free<br>\r\n10 Credits Per Click<br>\r\n6 Second Timer<br>\r\n2000 Bonus Credits Per Month<br>\r\n40% Commissions On Referral Purchases<br>\r\nSchedule Your Mailings',0.00,0,1,25,25,0.00,0,'N',3,0,'',0.00,5,6,60,25,1,10,10,0.1,1,25,10,10,10,1000,25,1,0,0,1,0,1000,0,0,1000,4,24,5000,10,1,1,0,0,10,7,1,5,1,10,0,1,1,1,10,0.00,30,0.00,0,0,0,0,1,0,10,0,1,0,50),(4,'Partner Level',0.00,0,60,0,60,'','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-area/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>','N','',NULL,'',0.00,0,0,25,25,0.00,0,'N',5,0,'',0.00,5,5,60,0,1,10,10,0.1,1,10,15,100,10,10,100,1,0,0,1,100000,10000,0,1000,10000,10,0,5000,10,1,1,0,0,25,14,1,5,1,10,0,0,0,0,10,0.00,30,0.00,0,0,0,0,1,0,10,0,1,0,50),(5,'Upgraded',0.00,0,0,0,0,'',NULL,'N','',NULL,'',0.00,0,0,0,0,0.00,0,'N',1,0,'',0.00,0.5,10,0,0,1,25,10,0.1,1,25,25,10000,10,100000,10000,1,0,0,1,0,0,0,0,0,2,48,2000,10,0,0,0,0,5,3,1,3,1,10,0,1,0,0,10,0.00,30,0.00,0,0,0,0,1,0,10,0,1,0,50),(6,'admin',0.00,0,0,0,0,'',NULL,'N','',NULL,'',0.00,0,0,0,0,0.00,0,'N',4,0,'',0.00,100,1,0,0,1,100,10,0.1,1,10,150,100,10,10000,100,0,0,0,0,1000000,1000000,0,11000000,1000000,1,48,2000,40,0,0,0,0,5,3,1,100,1,10,0,0,0,0,10,0.00,30,0.00,0,0,0,0,1,0,10,0,1,0,50);
/*!40000 ALTER TABLE `oto_membertypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_memgrid`
--

DROP TABLE IF EXISTS `oto_memgrid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_memgrid` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(30) NOT NULL,
  `value` varchar(200) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_memgrid`
--

LOCK TABLES `oto_memgrid` WRITE;
/*!40000 ALTER TABLE `oto_memgrid` DISABLE KEYS */;
INSERT INTO `oto_memgrid` (`id`, `field`, `value`) VALUES (1,'showgrav','1'),(2,'showid','1'),(3,'showfirst','1'),(4,'showlast','1'),(5,'showusername','1'),(6,'showemail','1'),(7,'showpaypal','0'),(8,'showmtype','1'),(9,'showjoined','0'),(10,'showlogin','1'),(11,'showlastmail','0'),(12,'showcredits','1'),(13,'showbanners','0'),(14,'showtexts','0'),(15,'showcomm','1'),(16,'showcommp','0'),(17,'showsales','0'),(18,'showrefs','1'),(19,'showclicks','1'),(20,'showclicksyester','0'),(21,'showstatus','1'),(22,'showcustom',''),(23,'showupgend','0'),(24,'showpurchmonth','0'),(25,'showpurchyear','0'),(26,'showpurchlife','0'),(27,'showpiggybnk','1'),(28,'showsqban','0'),(29,'showminibr','0'),(30,'showpeels','0'),(31,'showwidgets','0');
/*!40000 ALTER TABLE `oto_memgrid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_memtemplates_backups`
--

DROP TABLE IF EXISTS `oto_memtemplates_backups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_memtemplates_backups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `savetime` datetime NOT NULL,
  `mtid` int(11) NOT NULL DEFAULT 0,
  `template_data` mediumtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=90 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_memtemplates_backups`
--

LOCK TABLES `oto_memtemplates_backups` WRITE;
/*!40000 ALTER TABLE `oto_memtemplates_backups` DISABLE KEYS */;
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (38,'2022-07-20 10:42:30',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Our Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (41,'2022-07-21 08:46:08',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(59,'2022-11-07 09:32:20',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(63,'2022-11-07 09:32:39',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(60,'2022-11-07 09:32:20',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(64,'2022-11-07 09:32:39',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (42,'2022-07-21 08:46:08',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (45,'2022-07-21 09:14:48',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed for premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(67,'2022-11-07 09:33:16',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(68,'2022-11-07 09:33:16',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (46,'2022-07-21 09:14:48',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed for premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (49,'2022-10-08 07:59:51',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n      \r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed for premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(71,'2022-11-08 06:03:12',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(72,'2022-11-08 06:03:12',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(54,'2022-11-07 09:32:05',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-1Us_z2gmL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"1Us_z2gmL\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-B_JjHVbtUQ\"><strong><u><a href=\"https://my.demio.com/ref/Ufyvjn99tSVy8e90\" rel=\"noopener noreferrer\" target=\"_blank\" class=\"gdel54\">SignUp</a></u></strong><u><a href=\"https://my.demio.com/ref/Ufyvjn99tSVy8e90\" rel=\"noopener noreferrer\" target=\"_blank\" class=\"gdel54\"> here to Monday\'s Webinar to get FULL DETAILS!</a></u></h2></div><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(55,'2022-11-07 09:32:05',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-1Us_z2gmL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"1Us_z2gmL\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-B_JjHVbtUQ\"><strong><u><a href=\"https://my.demio.com/ref/Ufyvjn99tSVy8e90\" rel=\"noopener noreferrer\" target=\"_blank\" class=\"gdel54\">SignUp</a></u></strong><u><a href=\"https://my.demio.com/ref/Ufyvjn99tSVy8e90\" rel=\"noopener noreferrer\" target=\"_blank\" class=\"gdel54\"> here to Monday\'s Webinar to get FULL DETAILS!</a></u></h2></div><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(75,'2022-11-21 05:57:39',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (76,'2022-11-21 05:57:39',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(58,'2022-11-07 09:32:20',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(62,'2022-11-07 09:32:39',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(66,'2022-11-07 09:33:16',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(79,'2022-11-22 06:21:00',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/nomember/?wlfrom=%2Ftraining-area%2F\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(80,'2022-11-22 06:21:01',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/nomember/?wlfrom=%2Ftraining-area%2F\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(84,'2022-11-22 06:47:38',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-hub/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(70,'2022-11-08 06:03:12',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(88,'2022-11-22 08:31:26',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-area/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(83,'2022-11-22 06:47:38',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-hub/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(87,'2022-11-22 08:31:26',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-area/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (74,'2022-11-21 05:57:39',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(30,'2022-07-02 11:48:11',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(31,'2022-07-02 11:48:11',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(78,'2022-11-22 06:21:00',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/nomember/?wlfrom=%2Ftraining-area%2F\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(81,'2022-11-22 06:47:38',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-hub/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(82,'2022-11-22 06:47:38',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-hub/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(85,'2022-11-22 08:31:26',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-area/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (34,'2022-07-18 11:35:49',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/tb-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d32570b50347618123e572\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d32570b50347618123e572\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d32570b50347618123e572\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XrDCEn6Cv\" class=\"style-XrDCEn6Cv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XrDCEn6Cv {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XrDCEn6Cv {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XrDCEn6Cv {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XrDCEn6Cv {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XrDCEn6Cv {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style class=\"style-tlyUV3OCV\" data-gp-styled-element=\"tlyUV3OCV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-tlyUV3OCV {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-tlyUV3OCV {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-tlyUV3OCV {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-tlyUV3OCV {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-tlyUV3OCV {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600;color: rgba(173, 183, 194, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600;color: rgba(173, 183, 194, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600;color: rgba(173, 183, 194, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600;color: rgba(173, 183, 194, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600;color: rgba(173, 183, 194, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" style=\"\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-tlyUV3OCV\">You Get The Most Our Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-XrDCEn6Cv\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/traffic-site-members-home-template/#\" data-gp-button-id=\"S5RFmXqVj\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a data-gp-button-id=\"NlWKamVou\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n      <script id=\"script-Z6gjHz66c\">\r\n      (function(){\r\n          var button = document.querySelectorAll(\'[data-gp-button-id=\"NlWKamVou\"]\')[0];\r\n          button.addEventListener(\'click\', function() {\r\n            if (!window.inBuilder) {\r\n              document.querySelectorAll(\'[data-gp-popup-id=\"RtPF5ulWi\"]\')[0].classList.remove(\'hidden-popup\');\r\n            }\r\n          });\r\n        })();\r\n      </script>\r\n      \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (35,'2022-07-18 11:35:49',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/tb-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d32570b50347618123e572\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d32570b50347618123e572\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d32570b50347618123e572\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgb(6, 48, 41);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XrDCEn6Cv\" class=\"style-XrDCEn6Cv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XrDCEn6Cv {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XrDCEn6Cv {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XrDCEn6Cv {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XrDCEn6Cv {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XrDCEn6Cv {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style class=\"style-tlyUV3OCV\" data-gp-styled-element=\"tlyUV3OCV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-tlyUV3OCV {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-tlyUV3OCV {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-tlyUV3OCV {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-tlyUV3OCV {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-tlyUV3OCV {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgb(173, 183, 194);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600;color: rgba(173, 183, 194, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600;color: rgba(173, 183, 194, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600;color: rgba(173, 183, 194, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600;color: rgba(173, 183, 194, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600;color: rgba(173, 183, 194, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" style=\"\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-tlyUV3OCV\">You Get The Most Our Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-XrDCEn6Cv\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/traffic-site-members-home-template/#\" data-gp-button-id=\"S5RFmXqVj\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a data-gp-button-id=\"NlWKamVou\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n      <script id=\"script-Z6gjHz66c\">\r\n      (function(){\r\n          var button = document.querySelectorAll(\'[data-gp-button-id=\"NlWKamVou\"]\')[0];\r\n          button.addEventListener(\'click\', function() {\r\n            if (!window.inBuilder) {\r\n              document.querySelectorAll(\'[data-gp-popup-id=\"RtPF5ulWi\"]\')[0].classList.remove(\'hidden-popup\');\r\n            }\r\n          });\r\n        })();\r\n      </script>\r\n      \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(86,'2022-11-22 08:31:26',2,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/training-area/\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(89,'2023-11-23 05:42:25',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://onedrive.live.com/view.aspx?resid=FC8A0A8FA48201D4%2185415&authkey=!AAbx28pUmX4DFLs\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (39,'2022-07-20 10:42:30',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Our Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (40,'2022-07-21 08:46:05',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (43,'2022-07-21 08:46:08',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (44,'2022-07-21 09:14:45',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed for premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (47,'2022-07-21 09:14:48',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n    <div data-gp-popup-id=\"RtPF5ulWi\" style=\"background-color: rgba(25, 29, 58, 0.8); position: fixed; right: 0; left: 0; width:100vw; height:100vh; max-height:100vh; overflow-y: auto; display: flex; z-index: 30; align-items:center; justify-content:center; padding-left:1.5rem; padding-right:1.5rem; padding-top:3rem; padding-bottom:3rem;\" class=\"hidden-popup\">\r\n      <div style=\"margin: auto; position: relative; width: 1020px\">\r\n        <button class=\"gp-close-popup popup-close-size-small\" style=\"position: absolute; right: 0; top:-40px;width:32px;\">\r\n        <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 32 32\"><title>Close</title><g stroke-linecap=\"square\" stroke-linejoin=\"miter\" stroke-width=\"1\" transform=\"translate(0.5 0.5)\" fill=\"#dcdcea\" stroke=\"#dcdcea\"><line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"5\" x2=\"5\" y2=\"27\"></line> <line fill=\"none\" stroke=\"#dcdcea\" stroke-miterlimit=\"10\" x1=\"27\" y1=\"27\" x2=\"5\" y2=\"5\"></line></g></svg>\r\n        </button>\r\n        <div style=\"position: relative\" class=\"data-gp-popup-container\" data-gp-block=\"\" data-gp-component=\"\">\r\n        \r\n        </div>\r\n      </div>\r\n    </div>\r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed for premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (48,'2022-10-08 07:59:51',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n      \r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed for premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (50,'2022-10-08 07:59:51',3,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n      \r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed for premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(51,'2022-10-07 14:59:51',4,'');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (52,'2022-10-08 07:59:51',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Members Area</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-mh/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62d831c9c456551511029025\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"4Y9SPtxnT\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62d831c9c456551511029025\" data-gp-style class=\"gpblsh\">\r\n      \r\n    <script>\r\n      window.addEventListener(\'load\',function() {\r\n        if( document.body.classList.contains(\'gpblsh\') ){\r\n          setTimeout(() => {\r\n            const popupRtPF5ulWi = document.querySelector(\"[data-gp-popup-id=\'RtPF5ulWi\']\");\r\n            const popupRtPF5ulWi_content = `<style data-gp-styled-element=\"TC42kZNRz\" class=\"style-TC42kZNRz\">\r\n        \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TC42kZNRz {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"style-PN4XnyE4Ub\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 640px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 768px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 992px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 100vh;max-width: 1200px;justify-content: center;align-items: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu-overlay\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"style-lB0J19b0Iu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu[data-gp-component] {\r\n          height: 100vh;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NUmnon5I0\" class=\"style-NUmnon5I0\">\r\n        \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NUmnon5I0 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"908qmjZ6y7\" class=\"style-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-908qmjZ6y7 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><section class=\"gp-component-id-lB0J19b0Iu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lB0J19b0Iu\" style=\"\"><a name=\"lB0J19b0Iu\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"PN4XnyE4Ub\" class=\"gp-component-id-NUmnon5I0\">\r\n        \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PN4XnyE4Ub {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lB0J19b0Iu\" class=\"gp-component-id-908qmjZ6y7\">\r\n        \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lB0J19b0Iu.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-PN4XnyE4Ub\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"PN4XnyE4Ub\" data-gp-component=\"container\" style=\"\"><img src=\"https://images.groovetech.io/fJQBhXJV27vwFUE7lvc7YD-n28RSBLHkEaqcb5toTRI/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzM2NTI3X21odURLcUMtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TC42kZNRz\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TC42kZNRz\"></div>\r\n    </section>`;\r\n            \r\n            popupRtPF5ulWi.querySelector(\".data-gp-popup-container\").innerHTML = popupRtPF5ulWi_content.replaceAll(\'gdscript\',\'script\');\r\n\r\n            for (const popupClose of popupRtPF5ulWi.querySelectorAll(\'.gp-close-popup\')) {\r\n              popupClose.addEventListener(\'click\', () => {\r\n                popupRtPF5ulWi.classList.add(\'hidden-popup\')\r\n              });\r\n            }\r\n          }, 500);\r\n        };\r\n      })\r\n      </script>\r\n    \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI0WTlTUHR4blQiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[{\"type\":\"Standard\",\"delay\":\"0\",\"pages\":[\"4Y9SPtxnT\"],\"parsed\":\"false\",\"width\":\"1020\",\"behaviour\":null,\"appearingAnimation\":null,\"leavingAnimation\":null,\"showOptionSelected\":\"show\",\"closeButtonSize\":\"small\",\"name\":\"Members Area Tutorials Popup\",\"id\":\"RtPF5ulWi\"}],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62d831c9c456551511029025\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"4Y9SPtxnT\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"12ZaIkT35N\" class=\"style-12ZaIkT35N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-12ZaIkT35N {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\" class=\"style-Hsd4apxk2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hsd4apxk2 {\r\n          font-size: 17px !important;font-weight: 600 !important;color: rgba(151, 180, 205, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          padding-top: 30px;height: 695px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 698px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln[data-gp-component] {\r\n          height: 260px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"style-O1SAUVmEln-overlay\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3[data-gp-component] {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"style-Wn60XyTI_3-overlay\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u0XxZ44_v_\" class=\"style-u0XxZ44_v_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-u0XxZ44_v_ {\r\n          font-size: 30px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\" class=\"style-q18JbKklv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 36px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 44px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q18JbKklv {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx-overlay\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BMrmYRrtwy\" class=\"style-BMrmYRrtwy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BMrmYRrtwy[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          margin-bottom: 0px;height: auto;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"style-Imketa8EXd-overlay\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"style-ctGgoiVRkG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;height: auto;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 0px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-bottom: 60px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piqSSwE0e\" class=\"style-piqSSwE0e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: auto;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;height: 545px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piqSSwE0e[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuCvn4biB\" class=\"style-wuCvn4biB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: null;height: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;height: 630px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuCvn4biB[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 97%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8sfb7oU34g\" class=\"style-8sfb7oU34g\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 46%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 540px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8sfb7oU34g[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\" class=\"style-XvVi06R_C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);text-align: center;font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XvVi06R_C {\r\n          font-size: 2em;font-weight: 700;color: rgb(51, 51, 51);font-family: \"Fira Sans\";margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aWAOtCK8R\" class=\"style-aWAOtCK8R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-left: 0px;margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aWAOtCK8R[data-gp-component] {\r\n          margin-bottom: 60px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_zlT8CCIi\" class=\"style-_zlT8CCIi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_zlT8CCIi[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnkb9AZp6\" class=\"style-Mnkb9AZp6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnkb9AZp6[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4s7u9X1u\" class=\"style-r4s7u9X1u\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-left: 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4s7u9X1u[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPtUXOISiX\" class=\"style-RPtUXOISiX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 90%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPtUXOISiX[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQ82nwpv04\" class=\"style-sQ82nwpv04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQ82nwpv04[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oOa41FGZTI\" class=\"style-oOa41FGZTI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oOa41FGZTI[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WBSJQi2EY0\" class=\"style-WBSJQi2EY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WBSJQi2EY0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gUmHtxg3Ok\" class=\"style-gUmHtxg3Ok\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gUmHtxg3Ok[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fjgaWg7ap8\" class=\"style-fjgaWg7ap8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fjgaWg7ap8[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VGU0HzUHwU\" class=\"style-VGU0HzUHwU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VGU0HzUHwU[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WZhbiNBKZy\" class=\"style-WZhbiNBKZy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WZhbiNBKZy[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 97%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"suuns7OsQx\" class=\"style-suuns7OsQx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 5px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-suuns7OsQx[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WHmc_Moys\" class=\"style-WHmc_Moys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WHmc_Moys[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 1px 0px 10px 5px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 35px;padding-bottom: 30px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jgXNpASr9b\" class=\"style-jgXNpASr9b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 40px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 80px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"al2RTZA_t\" class=\"style-al2RTZA_t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          margin-left: 20px;width: 90%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-al2RTZA_t[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0G3vITXBf\" class=\"style-E0G3vITXBf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 40px;width: null;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-E0G3vITXBf {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t9XvRH76p\" class=\"style-8t9XvRH76p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;margin-top: 0px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 30px;padding-bottom: 30px;width: 100%;max-width: 640px;justify-content: center;display: flex;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MVnhupqEZ\" class=\"style-MVnhupqEZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 67%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MVnhupqEZ[data-gp-component] {\r\n          margin-top: 0px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0tv_fVP30f\" class=\"style-0tv_fVP30f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 56px;margin-top: -125px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: 58px;margin-top: -126px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 157px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0tv_fVP30f[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"liWvz1wOz0\" class=\"style-liWvz1wOz0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 201px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-liWvz1wOz0[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b4w6naFV11\" class=\"style-b4w6naFV11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 56px;margin-top: -117px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: 58px;margin-top: -113px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 146px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b4w6naFV11[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OuzqOC4df\" class=\"style-2OuzqOC4df\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;margin-bottom: 30px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 5px;padding-right: 5px;padding-top: 5px;padding-bottom: 5px;width: 95%;height: 250px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 0px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2OuzqOC4df[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -97px;padding-left: 25px;padding-right: 25px;padding-top: 25px;padding-bottom: 25px;width: 95%;height: 240px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTAxWmymH0\" class=\"style-VTAxWmymH0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 56px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: 58px;margin-top: -190px;width: 245px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 179px;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 230px;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTAxWmymH0[data-gp-component] {\r\n          margin-left: -100px;width: 245px;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2UHd_G4Ckm\" class=\"style-2UHd_G4Ckm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: 0px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 95%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 5px;padding-right: 5px;padding-top: 10px;padding-bottom: 5px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 0px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2UHd_G4Ckm[data-gp-component] {\r\n          border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;background-color: rgb(32, 191, 85);box-shadow: rgba(0, 0, 0, 0.1) 10px 0px 10px 6px;margin-top: -57px;padding-left: 25px;padding-right: 25px;padding-top: 15px;padding-bottom: 25px;width: 97%;height: 165px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C50_7tDKe\" class=\"style-C50_7tDKe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C50_7tDKe[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i567gPQjB\" class=\"style-i567gPQjB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i567gPQjB[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQc9tLr8tN\" class=\"style-cQc9tLr8tN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQc9tLr8tN[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dfSLUSUrPS\" class=\"style-dfSLUSUrPS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 299px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dfSLUSUrPS[data-gp-component] {\r\n          margin-top: 0px;padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXYOJEFT2_\" class=\"style-SXYOJEFT2_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 7%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXYOJEFT2_[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ObKfypKhT0\" class=\"style-ObKfypKhT0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 267px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ObKfypKhT0[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AfFkukrY0i\" class=\"style-AfFkukrY0i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 5%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AfFkukrY0i[data-gp-component] {\r\n          width: 26%;height: 100%;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yEZ0uM4udM\" class=\"style-yEZ0uM4udM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-yEZ0uM4udM {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IzziU9eIQd\" class=\"style-IzziU9eIQd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 44px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IzziU9eIQd {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l9Vl_4dTpS\" class=\"style-l9Vl_4dTpS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 48px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-l9Vl_4dTpS {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i1qskC_D05\" class=\"style-i1qskC_D05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i1qskC_D05[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cx6p90aPn\" class=\"style-cx6p90aPn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cx6p90aPn[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cx6p90aPn[data-gp-component]:hover,.gp-component-id-cx6p90aPn[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"826muj3NkS\" class=\"style-826muj3NkS\">\r\n        \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-826muj3NkS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QDrNeXOAJ5\" class=\"style-QDrNeXOAJ5\">\r\n        \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QDrNeXOAJ5 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Jn06VOpw2Y\" class=\"style-Jn06VOpw2Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Jn06VOpw2Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3PxM12Bi\" class=\"style-u3PxM12Bi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3PxM12Bi[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-u3PxM12Bi[data-gp-component]:hover,.gp-component-id-u3PxM12Bi[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hWR6tJGYmk\" class=\"style-hWR6tJGYmk\">\r\n        \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hWR6tJGYmk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7cu08J7Hxp\" class=\"style-7cu08J7Hxp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7cu08J7Hxp[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g8w5w4PP0\" class=\"style-g8w5w4PP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g8w5w4PP0[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-g8w5w4PP0[data-gp-component]:hover,.gp-component-id-g8w5w4PP0[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vx0xN7CueG\" class=\"style-Vx0xN7CueG\">\r\n        \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vx0xN7CueG {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KL79TDmvPi\" class=\"style-KL79TDmvPi\">\r\n        \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KL79TDmvPi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E8v1ydRz7Y\" class=\"style-E8v1ydRz7Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E8v1ydRz7Y[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mQ9es38lL\" class=\"style-mQ9es38lL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mQ9es38lL[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-mQ9es38lL[data-gp-component]:hover,.gp-component-id-mQ9es38lL[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l8KNKLqxrg\" class=\"style-l8KNKLqxrg\">\r\n        \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l8KNKLqxrg {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xb5LYkaRky\" class=\"style-xb5LYkaRky\">\r\n        \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xb5LYkaRky {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gEM3YmIkMd\" class=\"style-gEM3YmIkMd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gEM3YmIkMd[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F8vgR0mSJ\" class=\"style-F8vgR0mSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F8vgR0mSJ[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-F8vgR0mSJ[data-gp-component]:hover,.gp-component-id-F8vgR0mSJ[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500 !important;color: rgb(255, 255, 255);font-family: \"Fira Sans\" !important;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"VYyQTQ4vQc\" class=\"style-VYyQTQ4vQc\">\r\n        \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VYyQTQ4vQc {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"X3DPBepkWX\" class=\"style-X3DPBepkWX\">\r\n        \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X3DPBepkWX {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pE0xW8O1f6\" class=\"style-pE0xW8O1f6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pE0xW8O1f6[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4gDiW3dQ3\" class=\"style-4gDiW3dQ3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4gDiW3dQ3[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500;font-family: Fira Sans;background-color: rgba(228, 228, 228, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-4gDiW3dQ3[data-gp-component]:hover,.gp-component-id-4gDiW3dQ3[data-gp-component].gp-hover {\r\n          font-size: 18px !important;font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgba(11, 79, 108, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"yGUPqvX28v\" class=\"style-yGUPqvX28v\">\r\n        \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yGUPqvX28v {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cQPrczF_l\" class=\"style-cQPrczF_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cQPrczF_l[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-cQPrczF_l[data-gp-component]:hover,.gp-component-id-cQPrczF_l[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgba(255, 255, 255, 1);font-family: Fira Sans;background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN34n7Qobo\" class=\"style-TN34n7Qobo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TN34n7Qobo[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NnxqX0AcxS\" class=\"style-NnxqX0AcxS\">\r\n        \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NnxqX0AcxS {\r\n          flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vz5kSEis1_\" class=\"style-vz5kSEis1_\">\r\n        \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vz5kSEis1_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"py0AhN4XB_\" class=\"style-py0AhN4XB_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-py0AhN4XB_[data-gp-component] {\r\n          background-color: rgba(248, 248, 248, 1);padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5Iv2P6SZC\" class=\"style-5Iv2P6SZC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5Iv2P6SZC[data-gp-component] {\r\n          font-size: 18px !important;font-weight: 500 !important;font-family: \"Fira Sans\" !important;background-color: rgb(228, 228, 228);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;display: block;cursor: pointer;\r\n      }\r\n        .gp-component-id-5Iv2P6SZC[data-gp-component]:hover,.gp-component-id-5Iv2P6SZC[data-gp-component].gp-hover {\r\n          font-weight: 500;color: rgb(255, 255, 255);font-family: \"Fira Sans\";background-color: rgb(11, 79, 108);\r\n      }\r\n        }</style><style data-gp-styled-element=\"l2lbFRGnsD\" class=\"style-l2lbFRGnsD\">\r\n        \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l2lbFRGnsD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"APYjcl7cM\" class=\"style-APYjcl7cM\">\r\n        \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-APYjcl7cM {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wRSWzqOmbi\" class=\"style-wRSWzqOmbi\">\r\n        \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wRSWzqOmbi {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yDDuVHYmiz\" class=\"style-yDDuVHYmiz\">\r\n        \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yDDuVHYmiz {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XvVi06R_C\">\r\n        \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XvVi06R_C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\" class=\"style-xyQa1lYPD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xyQa1lYPD {\r\n          font-size: 17px !important;font-weight: 500;color: rgba(153, 153, 153, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xyQa1lYPD\">\r\n        \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xyQa1lYPD {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r8o8MVQRL\" class=\"style-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r8o8MVQRL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZQ2WK0Kih\" class=\"style-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qZQ2WK0Kih {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DUHsAJep_\" class=\"style-DUHsAJep_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DUHsAJep_[data-gp-component] {\r\n          background-color: rgb(255, 255, 255);margin-bottom: 60px;padding-top: 0px;padding-bottom: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pZ0024dPP0\" class=\"style-pZ0024dPP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pZ0024dPP0 {\r\n          font-size: 16px !important;font-weight: 700;color: rgba(17, 195, 66, 1);text-align: center;font-family: Roboto;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RPPR8xpMW9\" class=\"style-RPPR8xpMW9\">\r\n        \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RPPR8xpMW9 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iJyI9lVOw\" class=\"style-6iJyI9lVOw\"></style><style data-gp-styled-element=\"ilvRPvPCAE\" class=\"style-ilvRPvPCAE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ilvRPvPCAE[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:hover,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-ilvRPvPCAE[data-gp-component]:active,.gp-component-id-ilvRPvPCAE[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lnv1bNn8HA\" class=\"style-Lnv1bNn8HA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lnv1bNn8HA[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LxhgUnsqJ4\" class=\"style-LxhgUnsqJ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LxhgUnsqJ4 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DTPfbTKBtX\" class=\"style-DTPfbTKBtX\">\r\n        \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DTPfbTKBtX {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MFacFMIOEH\" class=\"style-MFacFMIOEH\">\r\n        \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MFacFMIOEH {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wBHhtODQhS\" class=\"style-wBHhtODQhS\">\r\n        \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wBHhtODQhS {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WM0lsYNX5\" class=\"style-WM0lsYNX5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WM0lsYNX5[data-gp-component] {\r\n          margin-top: 0px;margin-bottom: 30px;padding-left: 15px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ODkp2esDIe\" class=\"style-ODkp2esDIe\"></style><style data-gp-styled-element=\"uHL5PKF6E6\" class=\"style-uHL5PKF6E6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uHL5PKF6E6[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:hover,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-uHL5PKF6E6[data-gp-component]:active,.gp-component-id-uHL5PKF6E6[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"JwrFhcyfHO\" class=\"style-JwrFhcyfHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JwrFhcyfHO[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DGTfJVK6ID\" class=\"style-DGTfJVK6ID\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DGTfJVK6ID {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6kvzHlkUSC\" class=\"style-6kvzHlkUSC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6kvzHlkUSC {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DMyUTz0diL\" class=\"style-DMyUTz0diL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DMyUTz0diL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JdDsteZt18\" class=\"style-JdDsteZt18\">\r\n        \r\n        .gp-component-id-JdDsteZt18 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JdDsteZt18 {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6NVRMyDe0u\" class=\"style-6NVRMyDe0u\"></style><style data-gp-styled-element=\"DXC5VGDQuF\" class=\"style-DXC5VGDQuF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DXC5VGDQuF[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:hover,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-DXC5VGDQuF[data-gp-component]:active,.gp-component-id-DXC5VGDQuF[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"hIbxDSrfVp\" class=\"style-hIbxDSrfVp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hIbxDSrfVp[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GuMIkfxJYi\" class=\"style-GuMIkfxJYi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GuMIkfxJYi {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6QLotT8FIJH\" class=\"style-6QLotT8FIJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6QLotT8FIJH {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dmqTycG1Ls\" class=\"style-dmqTycG1Ls\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dmqTycG1Ls[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0XccYSgURV\" class=\"style-0XccYSgURV\">\r\n        \r\n        .gp-component-id-0XccYSgURV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0XccYSgURV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P0LhMtNZSC\" class=\"style-P0LhMtNZSC\"></style><style data-gp-styled-element=\"y7qnYILWCS\" class=\"style-y7qnYILWCS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y7qnYILWCS[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:hover,.gp-component-id-y7qnYILWCS[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-y7qnYILWCS[data-gp-component]:active,.gp-component-id-y7qnYILWCS[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMnEpb6C1j\" class=\"style-YMnEpb6C1j\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMnEpb6C1j[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bRr0ouCMWY\" class=\"style-bRr0ouCMWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bRr0ouCMWY {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9hN1AzDF5f\" class=\"style-9hN1AzDF5f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9hN1AzDF5f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9GDf3ILUNL\" class=\"style-9GDf3ILUNL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9GDf3ILUNL[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a93tbWszem\" class=\"style-a93tbWszem\">\r\n        \r\n        .gp-component-id-a93tbWszem {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a93tbWszem {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kW4obTp1Zg\" class=\"style-kW4obTp1Zg\">\r\n        \r\n        .gp-component-id-kW4obTp1Zg {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kW4obTp1Zg {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S0___6kyMF\" class=\"style-S0___6kyMF\"></style><style data-gp-styled-element=\"zb0ErMpliZ\" class=\"style-zb0ErMpliZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zb0ErMpliZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:hover,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-zb0ErMpliZ[data-gp-component]:active,.gp-component-id-zb0ErMpliZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Of3NOyjy5F\" class=\"style-Of3NOyjy5F\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Of3NOyjy5F[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"an3XJHs7dT\" class=\"style-an3XJHs7dT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-an3XJHs7dT {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"df2lt8QpCT\" class=\"style-df2lt8QpCT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-df2lt8QpCT {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bKaWp9fmBF\" class=\"style-bKaWp9fmBF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bKaWp9fmBF[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GXyH9ZPH6F\" class=\"style-GXyH9ZPH6F\">\r\n        \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GXyH9ZPH6F {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lYQk2tIaYx\" class=\"style-lYQk2tIaYx\"></style><style data-gp-styled-element=\"kdHGojlYLx\" class=\"style-kdHGojlYLx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kdHGojlYLx[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:hover,.gp-component-id-kdHGojlYLx[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-kdHGojlYLx[data-gp-component]:active,.gp-component-id-kdHGojlYLx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"90Qr2Z6GG0\" class=\"style-90Qr2Z6GG0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90Qr2Z6GG0[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pr1ovNQrCJ\" class=\"style-pr1ovNQrCJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pr1ovNQrCJ {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2wMm31GfchU\" class=\"style-2wMm31GfchU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2wMm31GfchU {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qlb8VnRh11\" class=\"style-qlb8VnRh11\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qlb8VnRh11[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c_RoEFV5CT\" class=\"style-c_RoEFV5CT\">\r\n        \r\n        .gp-component-id-c_RoEFV5CT {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c_RoEFV5CT {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NoXUzxuP_U\" class=\"style-NoXUzxuP_U\"></style><style data-gp-styled-element=\"oMttbeVkK_\" class=\"style-oMttbeVkK_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oMttbeVkK_[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:hover,.gp-component-id-oMttbeVkK_[data-gp-component].gp-hover {\r\n          background-color: rgb(1, 218, 255);\r\n      }\r\n        .gp-component-id-oMttbeVkK_[data-gp-component]:active,.gp-component-id-oMttbeVkK_[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLH6vIq_xX\" class=\"style-RLH6vIq_xX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLH6vIq_xX[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DybQ8kDjC9\" class=\"style-DybQ8kDjC9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DybQ8kDjC9 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FojGCotaBE\" class=\"style-FojGCotaBE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FojGCotaBE[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"geqwBrcboc\" class=\"style-geqwBrcboc\">\r\n        \r\n        .gp-component-id-geqwBrcboc {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-geqwBrcboc {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YhNo3t8mmR\" class=\"style-YhNo3t8mmR\">\r\n        \r\n        .gp-component-id-YhNo3t8mmR {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YhNo3t8mmR {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4cfPyJVuXZ\" class=\"style-4cfPyJVuXZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:hover,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-4cfPyJVuXZ[data-gp-component]:active,.gp-component-id-4cfPyJVuXZ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YiJgPdDmi\" class=\"style-YiJgPdDmi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YiJgPdDmi[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:hover,.gp-component-id-YiJgPdDmi[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-YiJgPdDmi[data-gp-component]:active,.gp-component-id-YiJgPdDmi[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"1K_mN610hJ\" class=\"style-1K_mN610hJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1K_mN610hJ[data-gp-component] {\r\n          font-size: 16px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: \"Fira Sans\";border-top-left-radius: 15px;border-top-right-radius: 15px;border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;background-color: rgb(1, 186, 239);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;height: 85%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: inherit;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:hover,.gp-component-id-1K_mN610hJ[data-gp-component].gp-hover {\r\n          background-color: rgba(1, 218, 255, 1);\r\n      }\r\n        .gp-component-id-1K_mN610hJ[data-gp-component]:active,.gp-component-id-1K_mN610hJ[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"G9ylJr1Wz\" class=\"style-G9ylJr1Wz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G9ylJr1Wz[data-gp-component] {\r\n          width: 99%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYxk0lS2Uf\" class=\"style-aYxk0lS2Uf\"></style><style data-gp-styled-element=\"i6sSbZOr5P\" class=\"style-i6sSbZOr5P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i6sSbZOr5P[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q9CVI9HA9Z\" class=\"style-Q9CVI9HA9Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Q9CVI9HA9Z {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZg6oNo44r\" class=\"style-HZg6oNo44r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZg6oNo44r {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YJvfG98Dsd\" class=\"style-YJvfG98Dsd\"></style><style data-gp-styled-element=\"behEsFvQ8i\" class=\"style-behEsFvQ8i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-behEsFvQ8i[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"73RKa7xggL\" class=\"style-73RKa7xggL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-73RKa7xggL {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p03LaoDJb\" class=\"style-p03LaoDJb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p03LaoDJb[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_MFIbntysx\" class=\"style-_MFIbntysx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_MFIbntysx[data-gp-component] {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pULBI5QPnK\" class=\"style-pULBI5QPnK\"></style><style data-gp-styled-element=\"X_3FG2fmbl\" class=\"style-X_3FG2fmbl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-X_3FG2fmbl[data-gp-component] {\r\n          width: 100%;height: 56px;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"70EmUR09AF\" class=\"style-70EmUR09AF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-70EmUR09AF {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ACkSNbXdNh\" class=\"style-ACkSNbXdNh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ACkSNbXdNh {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);text-align: center;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iWbx1qzfDJ\" class=\"style-iWbx1qzfDJ\">\r\n        \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iWbx1qzfDJ {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9RK6PCwdej\" class=\"style-9RK6PCwdej\">\r\n        \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9RK6PCwdej {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PmmqzafUfe\" class=\"style-PmmqzafUfe\">\r\n        \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PmmqzafUfe {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qrADFCYka\" class=\"style-qrADFCYka\">\r\n        \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qrADFCYka {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"style-lEigBFolGx\">\r\n        \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jtnmgxD0i\" class=\"style-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jtnmgxD0i {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jKaePGD4kQ\" class=\"style-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jKaePGD4kQ {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PdvccKSbx\" class=\"style-PdvccKSbx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PdvccKSbx[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 10px;border-top-right-radius: 10px;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;background-color: rgba(11, 79, 108, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:hover,.gp-component-id-PdvccKSbx[data-gp-component].gp-hover {\r\n          background-color: rgba(17, 116, 156, 1);\r\n      }\r\n        .gp-component-id-PdvccKSbx[data-gp-component]:active,.gp-component-id-PdvccKSbx[data-gp-component].gp-active {\r\n          background-color: rgb(32, 45, 60);\r\n      }\r\n        }</style><style data-gp-styled-element=\"ffPi6z47v\" class=\"style-ffPi6z47v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ffPi6z47v[data-gp-component] {\r\n          font-size: 17px !important;font-weight: 600;font-family: Fira Sans;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Uf4Sqe_iJ\" class=\"style-Uf4Sqe_iJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Uf4Sqe_iJ {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\" class=\"style-gHEJkyAZG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gHEJkyAZG {\r\n          font-size: 30px !important;font-weight: 600 !important;color: rgb(255, 255, 255);line-height: 1.25;font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\" class=\"style-HN4oQsDb2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HN4oQsDb2 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HZzDhz37eV\" class=\"style-HZzDhz37eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HZzDhz37eV {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgb(119, 119, 119);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"obL0pA7QJn\" class=\"style-obL0pA7QJn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-obL0pA7QJn {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"l_4td7_QvD\" class=\"style-l_4td7_QvD\">\r\n        \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-l_4td7_QvD {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rHh7y0rmz7\" class=\"style-rHh7y0rmz7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rHh7y0rmz7 {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mE3E0KOT7m\" class=\"style-mE3E0KOT7m\">\r\n        \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mE3E0KOT7m {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DWO4H8aB8G\" class=\"style-DWO4H8aB8G\">\r\n        \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DWO4H8aB8G {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6wnC1BeVg\" class=\"style-6wnC1BeVg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6wnC1BeVg[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BOTSwj6Kx\" class=\"style-BOTSwj6Kx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BOTSwj6Kx[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VsqNa_4L0f\" class=\"style-VsqNa_4L0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VsqNa_4L0f {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgb(32, 45, 60);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QphU3UF9Mt\" class=\"style-QphU3UF9Mt\">\r\n        \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QphU3UF9Mt {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FloIkvuVxB\" class=\"style-FloIkvuVxB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FloIkvuVxB {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(11, 79, 108);font-family: \"Fira Sans\" !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ahgYdHxthZ\" class=\"style-ahgYdHxthZ\">\r\n        \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ahgYdHxthZ {\r\n          padding-left: 8px;padding-right: 8px;width: 50%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ewpok6C_i\" class=\"style-ewpok6C_i\">\r\n        \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ewpok6C_i {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yQmfj_8LU\" class=\"style-yQmfj_8LU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yQmfj_8LU[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XqYigCJ7LW\" class=\"style-XqYigCJ7LW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XqYigCJ7LW {\r\n          font-size: 16px !important;font-weight: 400 !important;color: rgba(119, 119, 119, 1);text-align: center;font-family: Roboto !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gHEJkyAZG\">\r\n        \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gHEJkyAZG {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NYUzz29hn\" class=\"style-NYUzz29hn\">\r\n        \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NYUzz29hn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pBUYyZqYTM\" class=\"style-pBUYyZqYTM\">\r\n        \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pBUYyZqYTM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sgVYAH9t5L\" class=\"style-sgVYAH9t5L\">\r\n        \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sgVYAH9t5L {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HN4oQsDb2\">\r\n        \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HN4oQsDb2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Zi8mhb5cV\" class=\"style-Zi8mhb5cV\">\r\n        \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Zi8mhb5cV {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z6Ti55iKOl\" class=\"style-z6Ti55iKOl\">\r\n        \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-z6Ti55iKOl {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Paj1K8ACok\" class=\"style-Paj1K8ACok\">\r\n        \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Paj1K8ACok {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GOjFHE49i0\" class=\"style-GOjFHE49i0\">\r\n        \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GOjFHE49i0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WV3SaXeVW\" class=\"style-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WV3SaXeVW {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hSyPzy1NBL\" class=\"style-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hSyPzy1NBL {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"style-qqt0ElUJtf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe\">\r\n        \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pG8IRO0rf\" class=\"style-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pG8IRO0rf {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P_S0Jj9uL4\" class=\"style-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P_S0Jj9uL4 {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"style-0I8_OUErCe style-0I8_OUErCe-overlay\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6M5wC5csbf\" class=\"style-6M5wC5csbf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 640px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 768px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 992px;position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-top: 50px;padding-bottom: 10px;width: 100%;max-width: 1200px;position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf-overlay\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          background-color: rgb(248, 248, 248);z-index: 14 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UPXU0xRid\" class=\"style-UPXU0xRid\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UPXU0xRid[data-gp-component] {\r\n          margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"style-vcGDvoxjYf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf[data-gp-component] {\r\n          z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o3gEhMfeX\" class=\"style-o3gEhMfeX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o3gEhMfeX[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;justify-content: center;display: flex;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7BfXnirhJ\" class=\"style-7BfXnirhJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7BfXnirhJ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yja9QbpSb\" class=\"style-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yja9QbpSb {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hel1qskZqD\" class=\"style-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hel1qskZqD {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"style-GwBlWTcKJx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx[data-gp-component] {\r\n          margin-bottom: 0px;padding-top: 0px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tZMS4V9iW\" class=\"style-tZMS4V9iW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tZMS4V9iW[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8zDQf823\" class=\"style-Y8zDQf823\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8zDQf823[data-gp-component] {\r\n          margin-top: 20px;margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q18JbKklv\">\r\n        \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q18JbKklv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hsd4apxk2\">\r\n        \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hsd4apxk2 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0u40lAWUh\" class=\"style-0u40lAWUh\">\r\n        \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0u40lAWUh {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"686coJczFg\" class=\"style-686coJczFg\">\r\n        \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-686coJczFg {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tgpcs0k4Wk\" class=\"style-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tgpcs0k4Wk {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EF8899oCnt\" class=\"style-EF8899oCnt\">\r\n        \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EF8899oCnt {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uYnS3EcbeH\" class=\"style-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uYnS3EcbeH {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0UPdITuciO\" class=\"style-0UPdITuciO\">\r\n        \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0UPdITuciO {\r\n          position: relative;z-index: 15;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"style-_l0LUL8Kel\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          position: relative;z-index: 15;width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"style-vAa95CECbC\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><section class=\"gp-component-id-Wn60XyTI_3 gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Wn60XyTI_3\" id=\"Wn60XyTI_3\" tabindex=\"0\"><a name=\"Wn60XyTI_3\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"GwBlWTcKJx\" class=\"gp-component-id-0u40lAWUh\">\r\n        \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GwBlWTcKJx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"gp-component-id-686coJczFg\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"gp-component-id-Tgpcs0k4Wk\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vAa95CECbC\" class=\"gp-component-id-EF8899oCnt\">\r\n        \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vAa95CECbC {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_l0LUL8Kel\" class=\"gp-component-id-uYnS3EcbeH\">\r\n        \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_l0LUL8Kel {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wn60XyTI_3\" class=\"gp-component-id-0UPdITuciO\">\r\n        \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wn60XyTI_3.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-_l0LUL8Kel\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"_l0LUL8Kel\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-vAa95CECbC gp-component dndbefore-top\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"vAa95CECbC\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GwBlWTcKJx gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GwBlWTcKJx\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-tZMS4V9iW gp-component dndbefore-top\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tZMS4V9iW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-aH9rfmjE8z dndbefore-middle\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aH9rfmjE8z\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-Hsd4apxk2\" data-id=\"quill-node-0\">TURNING FREE TRAFFIC INTO MASSIVE LEADS & SALES</h5></div><div class=\"gp-component-id-Y8zDQf823 gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Y8zDQf823\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-bSXlb4zZvN dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"bSXlb4zZvN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-q18JbKklv\" data-id=\"quill-node-0\">Welcome to Solo Swaps</h1></div></div><div class=\"gp-text-container gp-component gp-component-id-yX2PEbYBa dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yX2PEbYBa\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-0\">Pay Close Attention To The knowledge Base Below To Guarantee</h5><h5 class=\"gp-component-id-12ZaIkT35N\" data-id=\"quill-node-1\">You Get The Most Out Of Our FREE Traffic and FREE Premium Tools</h5></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-vcGDvoxjYf gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"vcGDvoxjYf\" style=\"\" id=\"vcGDvoxjYf\" tabindex=\"0\"><a name=\"vcGDvoxjYf\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6M5wC5csbf\" class=\"gp-component-id-Yja9QbpSb\">\r\n        \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6M5wC5csbf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vcGDvoxjYf\" class=\"gp-component-id-Hel1qskZqD\">\r\n        \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vcGDvoxjYf.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-6M5wC5csbf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6M5wC5csbf\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\"><strong>#USERNAME#...</strong>You Have <strong>#CREDITS#</strong> Credits In Your Account</h5></div></ul><div class=\"gp-component-id-UPXU0xRid gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UPXU0xRid\" tabindex=\"0\"><img src=\"https://images.groovetech.io/q7SsstOK8i5Vv-L1XQaANtsxbiqdMVQF19vbPSQcsGo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMTcwODc5X3FrdW5oR0YtSW1ndXIucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-7BfXnirhJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7BfXnirhJ\" tabindex=\"0\"></div></div>\r\n    </section><section class=\"gp-component-id-0I8_OUErCe gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"0I8_OUErCe\" style=\"\" id=\"0I8_OUErCe\" tabindex=\"0\"><a name=\"0I8_OUErCe\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"qqt0ElUJtf\" class=\"gp-component-id-pG8IRO0rf\">\r\n        \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qqt0ElUJtf {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0I8_OUErCe\" class=\"gp-component-id-P_S0Jj9uL4\">\r\n        \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0I8_OUErCe.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-qqt0ElUJtf\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qqt0ElUJtf\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-GG40wu1KZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GG40wu1KZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-0\">HOW TO WIN WITH SOLO SWAPS</h1><h1 class=\"gp-component-id-u0XxZ44_v_\" data-id=\"quill-node-1\"><span style=\"color: rgb(1, 186, 239);\">Promo Codes</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Tools</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">FREE Marketing Products</span>Â +Â <span style=\"color: rgb(1, 186, 239);\">Downloads</span></h1></div><div class=\"gp-component-id-al2RTZA_t gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"al2RTZA_t\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Duvf6xdDQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Duvf6xdDQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-E0G3vITXBf\">Full training tutorial on best business practices to get the maximum benefit from all Traffic Network and all its tools</h5></div></div></div>\r\n    </section><section class=\"gp-component-id-O1SAUVmEln gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"O1SAUVmEln\" id=\"O1SAUVmEln\" tabindex=\"0\"><a name=\"O1SAUVmEln\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"8t9XvRH76p\" class=\"gp-component-id-WV3SaXeVW\">\r\n        \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t9XvRH76p {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O1SAUVmEln\" class=\"gp-component-id-hSyPzy1NBL\">\r\n        \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O1SAUVmEln.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-8t9XvRH76p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8t9XvRH76p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-MVnhupqEZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"MVnhupqEZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-Zi8mhb5cV\">\r\n        <div class=\"gp-component-id-z6Ti55iKOl\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2OuzqOC4df gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2OuzqOC4df\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yQmfj_8LU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yQmfj_8LU\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-ObKfypKhT0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"ObKfypKhT0\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-ewpok6C_i\">\r\n        <div class=\"gp-component-id-ahgYdHxthZ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-AfFkukrY0i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AfFkukrY0i\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-W9G3Ep2cAy\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"W9G3Ep2cAy\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-FloIkvuVxB\">1</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-QphU3UF9Mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VTAxWmymH0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VTAxWmymH0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yaBIul2xis\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yaBIul2xis\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-VsqNa_4L0f\">Start Tutorial</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4_CqpBa_0Y\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4_CqpBa_0Y\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-yEZ0uM4udM\">We suggest you follow the trainings in the order we present them to you.Â This will guarantee you receive the most Traffic, Leads Sales and Premium Marketing Tools</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-Paj1K8ACok\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-liWvz1wOz0 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"liWvz1wOz0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6wnC1BeVg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6wnC1BeVg\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dfSLUSUrPS\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"dfSLUSUrPS\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DWO4H8aB8G\">\r\n        <div class=\"gp-component-id-mE3E0KOT7m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-SXYOJEFT2_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"SXYOJEFT2_\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Os6VKA461\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Os6VKA461\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-rHh7y0rmz7\">2</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-l_4td7_QvD\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b4w6naFV11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b4w6naFV11\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-4wm4jFx4AM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"4wm4jFx4AM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-obL0pA7QJn\">Take Action</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-p9rFE1DXsM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"p9rFE1DXsM\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-HZzDhz37eV\">The best training and method can only produce results if they are put into massive imperfect action</h2></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GOjFHE49i0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-2UHd_G4Ckm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"2UHd_G4Ckm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-BOTSwj6Kx gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BOTSwj6Kx\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-i567gPQjB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"i567gPQjB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-NYUzz29hn\">\r\n        <div class=\"gp-component-id-pBUYyZqYTM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-cQc9tLr8tN gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"cQc9tLr8tN\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TlyLkk7g_5 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"TlyLkk7g_5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-HN4oQsDb2\">3</h1></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-sgVYAH9t5L\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-0tv_fVP30f gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0tv_fVP30f\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hHknOBlNKb dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hHknOBlNKb\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-gHEJkyAZG\">Start</h2><p class=\"gp-component-id-Uf4Sqe_iJ\">Learning</p></div><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/\" data-gp-button-id=\"cWRtuQIE5\" class=\"dndbefore-bottom items-center gp-component gp-component-id-PdvccKSbx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"PdvccKSbx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ffPi6z47v\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ffPi6z47v\">GET STARTED</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div>\r\n        </div>\r\n      </div>\r\n    </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component-id-lEigBFolGx gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"lEigBFolGx\" style=\"\" id=\"lEigBFolGx\" tabindex=\"0\"><a name=\"lEigBFolGx\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"jgXNpASr9b\" class=\"gp-component-id-jtnmgxD0i\">\r\n        \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jgXNpASr9b {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lEigBFolGx\" class=\"gp-component-id-jKaePGD4kQ\">\r\n        \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lEigBFolGx.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-jgXNpASr9b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"jgXNpASr9b\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_zlT8CCIi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"_zlT8CCIi\" tabindex=\"0\"><div class=\"gp-component-id-qrADFCYka\">\r\n        <div class=\"gp-component-id-PmmqzafUfe\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WHmc_Moys\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WHmc_Moys\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-p03LaoDJb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"p03LaoDJb\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HbZnNxYdEJ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HbZnNxYdEJ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-73RKa7xggL\">Promo Codes</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_VlpbM1ikK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_VlpbM1ikK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-l9Vl_4dTpS\">How to activate Traffic and Spin & Win Promo Codes</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-behEsFvQ8i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"behEsFvQ8i\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/promo-codes/\" data-gp-button-id=\"KZiMNny3i\" class=\"dndbefore-bottom items-center gp-component gp-component-id-YiJgPdDmi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"YiJgPdDmi\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-YJvfG98Dsd\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"YJvfG98Dsd\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-9RK6PCwdej\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-suuns7OsQx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"suuns7OsQx\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-G9ylJr1Wz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"G9ylJr1Wz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-R2oO20q8Jm\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"R2oO20q8Jm\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-HZg6oNo44r\">Unlimited FREE Traffic</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-v1v31JWLJX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"v1v31JWLJX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Q9CVI9HA9Z\">Our Traffic Network gives you the ability to earn UNLIMITED FREE Traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-i6sSbZOr5P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"i6sSbZOr5P\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/unlimited-free-traffic/\" data-gp-button-id=\"nUzOLQrJG\" class=\"dndbefore-bottom items-center gp-component gp-component-id-1K_mN610hJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"1K_mN610hJ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-aYxk0lS2Uf\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"aYxk0lS2Uf\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-iWbx1qzfDJ\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WZhbiNBKZy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WZhbiNBKZy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-_MFIbntysx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_MFIbntysx\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AQ0Q030mS_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AQ0Q030mS_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-ACkSNbXdNh\">Reward Me Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MC_OE9GNCH\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MC_OE9GNCH\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-70EmUR09AF\">Earn unlimited points that can be redeemed for premium marketing product</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-X_3FG2fmbl\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"X_3FG2fmbl\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/reward-me-access/\" data-gp-button-id=\"Lb76rWisz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-4cfPyJVuXZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"4cfPyJVuXZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-pULBI5QPnK\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"pULBI5QPnK\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-Mnkb9AZp6\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"Mnkb9AZp6\" tabindex=\"0\"><div class=\"gp-component-id-kW4obTp1Zg\">\r\n        <div class=\"gp-component-id-a93tbWszem\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VGU0HzUHwU\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VGU0HzUHwU\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9GDf3ILUNL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9GDf3ILUNL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-nxd0Srtg7S\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nxd0Srtg7S\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-9hN1AzDF5f\">FREE Tools Access</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0_R9_g9Ljv\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0_R9_g9Ljv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-bRr0ouCMWY\">Access and How To Tutorials for our premium FREE Tools</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-YMnEpb6C1j\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YMnEpb6C1j\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-tools-access/\" data-gp-button-id=\"rx7W62SN8\" class=\"dndbefore-bottom items-center gp-component gp-component-id-y7qnYILWCS\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"y7qnYILWCS\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-P0LhMtNZSC\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"P0LhMtNZSC\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0XccYSgURV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-fjgaWg7ap8\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"fjgaWg7ap8\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-dmqTycG1Ls\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"dmqTycG1Ls\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-A_UkmIPYJR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"A_UkmIPYJR\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6QLotT8FIJH\">Easy Passive Income</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-QaZM7Pxj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"QaZM7Pxj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-GuMIkfxJYi\">Give the Gift of Traffic and earn easy passive income</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-hIbxDSrfVp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hIbxDSrfVp\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/easy-passive-income/\" data-gp-button-id=\"9W4WRxScz\" class=\"dndbefore-bottom items-center gp-component gp-component-id-DXC5VGDQuF\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DXC5VGDQuF\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6NVRMyDe0u\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6NVRMyDe0u\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JdDsteZt18\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-gUmHtxg3Ok\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gUmHtxg3Ok\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-DMyUTz0diL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DMyUTz0diL\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Sa8TYnbN0r\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Sa8TYnbN0r\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-6kvzHlkUSC\">Copy and Paste Profits</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-93gyhKgQtX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"93gyhKgQtX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DGTfJVK6ID\">Step by Step method on how I made 7 Figure without buying any Ads</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-JwrFhcyfHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JwrFhcyfHO\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/copy-and-paste-profits/\" data-gp-button-id=\"vPt9N7OjY\" class=\"dndbefore-bottom items-center gp-component gp-component-id-uHL5PKF6E6\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"uHL5PKF6E6\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-ODkp2esDIe\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"ODkp2esDIe\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component dndbefore-bottom gp-component-id-r4s7u9X1u\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"r4s7u9X1u\" tabindex=\"0\"><div class=\"gp-component-id-YhNo3t8mmR\">\r\n        <div class=\"gp-component-id-geqwBrcboc\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-WBSJQi2EY0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WBSJQi2EY0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-FojGCotaBE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FojGCotaBE\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-08CV4KCCsZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"08CV4KCCsZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-DybQ8kDjC9\">Build Your Offer</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gHw2sarwj5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gHw2sarwj5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-IzziU9eIQd\">How to build the best converting offer for buyer traffic</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-RLH6vIq_xX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RLH6vIq_xX\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/build-your-offer/\" data-gp-button-id=\"g6aHYX6VK\" class=\"dndbefore-bottom items-center gp-component gp-component-id-oMttbeVkK_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"oMttbeVkK_\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-NoXUzxuP_U\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"NoXUzxuP_U\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-c_RoEFV5CT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-oOa41FGZTI\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"oOa41FGZTI\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-qlb8VnRh11\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qlb8VnRh11\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XEI2Lzp0lt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XEI2Lzp0lt\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-2wMm31GfchU\">FREE Downloads</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zrdhrTNU9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zrdhrTNU9\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pr1ovNQrCJ\">Access hidden downloads to Top Selling marketing product 100% free</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-90Qr2Z6GG0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"90Qr2Z6GG0\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/free-downloads/\" data-gp-button-id=\"bX9wMSXGZ\" class=\"dndbefore-bottom items-center gp-component gp-component-id-kdHGojlYLx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"kdHGojlYLx\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-lYQk2tIaYx\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"lYQk2tIaYx\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-GXyH9ZPH6F\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sQ82nwpv04\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sQ82nwpv04\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-bKaWp9fmBF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bKaWp9fmBF\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-tm927kHVRi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"tm927kHVRi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-df2lt8QpCT\">Biggest Sales Secret</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-LLpszq9x6c\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"LLpszq9x6c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-an3XJHs7dT\">The #1 Sales Secret every online solopreneur needs to know</h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Of3NOyjy5F\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Of3NOyjy5F\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/biggest-sales-secret/\" data-gp-button-id=\"Vc3SnC45b\" class=\"dndbefore-bottom items-center gp-component gp-component-id-zb0ErMpliZ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zb0ErMpliZ\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-S0___6kyMF\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"S0___6kyMF\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component-id-DUHsAJep_ gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DUHsAJep_\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-RPtUXOISiX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RPtUXOISiX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-YAaUFuYpSg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YAaUFuYpSg\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LxhgUnsqJ4\">GRAND OPENING MILLION DOLLAR MADNESS</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Cb0ju0xajd\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Cb0ju0xajd\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-pZ0024dPP0\"><strong>WIN OVER $1,000,000 IN PREMIUM MARKETING TOOL 100% FREE!!!</strong></h2></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lnv1bNn8HA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lnv1bNn8HA\" tabindex=\"0\"><a target=\"_blank\" href=\"https://messagemagic.net/traffic-network-tutorials/opening-million-dollar/\" data-gp-button-id=\"wCsIuR4t0\" class=\"dndbefore-bottom items-center gp-component gp-component-id-ilvRPvPCAE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"ilvRPvPCAE\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-6iJyI9lVOw\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"6iJyI9lVOw\">Click Here For Tutorials</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-WM0lsYNX5\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"WM0lsYNX5\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-wBHhtODQhS\">\r\n        <div class=\"gp-component-id-MFacFMIOEH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-DTPfbTKBtX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-RPPR8xpMW9\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component-id-Imketa8EXd gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"Imketa8EXd\" id=\"Imketa8EXd\" tabindex=\"0\"><a name=\"Imketa8EXd\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"ctGgoiVRkG\" class=\"gp-component-id-r8o8MVQRL\">\r\n        \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctGgoiVRkG {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Imketa8EXd\" class=\"gp-component-id-qZQ2WK0Kih\">\r\n        \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Imketa8EXd.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-ctGgoiVRkG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ctGgoiVRkG\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-C50_7tDKe gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"C50_7tDKe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-n1i9x_7syA dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"n1i9x_7syA\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-xyQa1lYPD\">READ WHAT OTHER USERS ASKED</h2></div><div class=\"gp-component-id-aWAOtCK8R gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"aWAOtCK8R\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-l7QJU9UCK1 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l7QJU9UCK1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-XvVi06R_C\">Frequently Asked Questions</h1></div></div><div class=\"gp-component-id-piqSSwE0e gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piqSSwE0e\" tabindex=\"0\"><div class=\"gp-component-id-wuCvn4biB gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"wuCvn4biB\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-APYjcl7cM\">\r\n        <div class=\"gp-component-id-wRSWzqOmbi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-8sfb7oU34g gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"8sfb7oU34g\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-kh0tKvdnz gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"kh0tKvdnz\" tabindex=\"0\" style=\"\"><div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-5Iv2P6SZC gp-component\" data-gp-style=\"\" data-gp-component-id=\"5Iv2P6SZC\" data-gp-component=\"null\">How do I post a free ad?</div><div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-py0AhN4XB_ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"py0AhN4XB_\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-w3aTKbwqcL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w3aTKbwqcL\" data-gp-component=\"null\"><p class=\"gp-component-id-l2lbFRGnsD\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div><script id=\"script-PTe-NLmb6\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script></div><div class=\"gp-component-id-Nc_zO6bVh gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"Nc_zO6bVh\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cQPrczF_l gp-component\" data-gp-style=\"\" data-gp-component-id=\"cQPrczF_l\" data-gp-component=\"null\">How to upload a banner ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-TN34n7Qobo gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"TN34n7Qobo\" tabindex=\"0\">\r\n          \r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-CiBoYMZOZq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CiBoYMZOZq\" data-gp-component=\"null\"><div class=\"gp-component-id-NnxqX0AcxS\">\r\n            <p class=\"gp-component-id-vz5kSEis1_\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-MhEFkdRIB\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HC631XUgA gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HC631XUgA\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-4gDiW3dQ3 gp-component\" data-gp-style=\"\" data-gp-component-id=\"4gDiW3dQ3\" data-gp-component=\"null\">How can I create a text Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-pE0xW8O1f6 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"pE0xW8O1f6\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-xobMlNHC0e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"xobMlNHC0e\" data-gp-component=\"null\"><p class=\"gp-component-id-yGUPqvX28v\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-J-QwV7yO2\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-V7eSX29jK gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"V7eSX29jK\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-F8vgR0mSJ gp-component\" data-gp-style=\"\" data-gp-component-id=\"F8vgR0mSJ\" data-gp-component=\"null\">Collapse heading</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-gEM3YmIkMd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gEM3YmIkMd\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-HFe7ZwJOjc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"HFe7ZwJOjc\"><div class=\"gp-component-id-VYyQTQ4vQc\">\r\n            <p class=\"gp-component-id-X3DPBepkWX\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pEMJ3T_Ld\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yDDuVHYmiz\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-BMrmYRrtwy gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"BMrmYRrtwy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-sQqm7b27f gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"sQqm7b27f\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-mQ9es38lL gp-component\" data-gp-style=\"\" data-gp-component-id=\"mQ9es38lL\" data-gp-component=\"null\">How can I earn commission with your Traffic Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-E8v1ydRz7Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E8v1ydRz7Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-3b0KVYdCMf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"3b0KVYdCMf\" data-gp-component=\"null\"><div class=\"gp-component-id-l8KNKLqxrg\">\r\n            <p class=\"gp-component-id-xb5LYkaRky\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-9GXRGLSBW\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-f0oJY8Nsg gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"f0oJY8Nsg\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-g8w5w4PP0 gp-component\" data-gp-style=\"\" data-gp-component-id=\"g8w5w4PP0\" data-gp-component=\"null\">How can I post a Login Ad?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-7cu08J7Hxp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"7cu08J7Hxp\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-ZvSZGIuTWq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"ZvSZGIuTWq\"><div class=\"gp-component-id-Vx0xN7CueG\">\r\n            <p class=\"gp-component-id-KL79TDmvPi\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-rzf6Jm4kd\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-HyfVjKVud gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"HyfVjKVud\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-u3PxM12Bi gp-component\" data-gp-style=\"\" data-gp-component-id=\"u3PxM12Bi\" data-gp-component=\"null\">Do you offer lifetime memberships?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-Jn06VOpw2Y gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Jn06VOpw2Y\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-5lqQLxzTIL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5lqQLxzTIL\" data-gp-component=\"null\"><p class=\"gp-component-id-hWR6tJGYmk\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-pVVzDS6ka\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div><div class=\"gp-component-id-ta3MtNSQY gp-component dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" x-data=\"{ isOpen: false,isOverride: true}\" data-gp-classes=\"\" data-gp-component=\"collapse\" data-gp-component-id=\"ta3MtNSQY\" tabindex=\"0\" style=\"\">\r\n      <div @click=\"isOpen = !isOpen;if(isOpen)setTimeout(() => {isOverride = !isOverride}, 300);else isOverride = !isOverride;\" class=\"gp-component-id-cx6p90aPn gp-component\" data-gp-style=\"\" data-gp-component-id=\"cx6p90aPn\" data-gp-component=\"null\">What are the other traffic sites in your Network?</div>\r\n      <div class=\"max-h-0\" x-ref=\"collapseBody\" x-bind:style=\"(isOpen ? \'max-height:\'+$refs.collapseBody.scrollHeight+\'px;display:block;\' : \'max-height:0px;\')+(isOverride ? \'overflow:hidden;display:block;\':\'display:inline;\')\" style=\"max-height:0px;overflow:hidden;display:block;\">\r\n        <div class=\"gp-component-id-i1qskC_D05 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i1qskC_D05\" data-gp-component=\"container\" tabindex=\"0\">\r\n          \r\n          <div class=\"gp-text-container gp-component gp-component-id-pOh8eyXs9d\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"pOh8eyXs9d\"><div class=\"gp-component-id-826muj3NkS\">\r\n            <p class=\"gp-component-id-QDrNeXOAJ5\">Ullam qui culpa officiis quo accusamus et numquam. Non dolor exercitationem expedita et rerum. In corporis delectus et magnam rerum. Et maxime natus sed aut temporibus dolor qui.</p>\r\n          </div></div>\r\n        \r\n        </div>\r\n      </div>\r\n      \r\n      <script id=\"script-uXDhBxO17\">\r\n        (function() {\r\n          if (!window[\'Alpine\']) {\r\n            window[\'Alpine\'] = true;\r\n            var script = document.createElement(\'SCRIPT\');\r\n            script.src = \'https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.7.0/dist/alpine.min.js\';\r\n            script.setAttribute(\'defer\', \'\');\r\n            document.head.appendChild(script);\r\n          }\r\n        })();\r\n      </script>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(53,'2022-11-07 09:32:05',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-1Us_z2gmL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"1Us_z2gmL\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-B_JjHVbtUQ\"><strong><u><a href=\"https://my.demio.com/ref/Ufyvjn99tSVy8e90\" rel=\"noopener noreferrer\" target=\"_blank\" class=\"gdel54\">SignUp</a></u></strong><u><a href=\"https://my.demio.com/ref/Ufyvjn99tSVy8e90\" rel=\"noopener noreferrer\" target=\"_blank\" class=\"gdel54\"> here to Monday\'s Webinar to get FULL DETAILS!</a></u></h2></div><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(56,'2022-11-07 09:32:05',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-1Us_z2gmL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"1Us_z2gmL\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-B_JjHVbtUQ\"><strong><u><a href=\"https://my.demio.com/ref/Ufyvjn99tSVy8e90\" rel=\"noopener noreferrer\" target=\"_blank\" class=\"gdel54\">SignUp</a></u></strong><u><a href=\"https://my.demio.com/ref/Ufyvjn99tSVy8e90\" rel=\"noopener noreferrer\" target=\"_blank\" class=\"gdel54\"> here to Monday\'s Webinar to get FULL DETAILS!</a></u></h2></div><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(57,'2022-11-07 09:32:20',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(61,'2022-11-07 09:32:39',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?mf=li\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(65,'2022-11-07 09:33:16',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>');
INSERT INTO `oto_memtemplates_backups` (`id`, `savetime`, `mtid`, `template_data`) VALUES (69,'2022-11-08 06:03:12',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With PremiumAdSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(73,'2022-11-21 05:57:39',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653687180_giveaway-01.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using soloswaps.com and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"_blank\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Bonus Page \r\n</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox: \r\n</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>'),(77,'2022-11-22 06:21:00',1,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Videography Service</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswapshm/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d3b110d519340d1592a92\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Wt6-TIJUY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d3b110d519340d1592a92\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJXdDYtVElKVVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Videography Service\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d3b110d519340d1592a92\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Wt6-TIJUY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"JZvLGRlKK\" class=\"style-JZvLGRlKK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JZvLGRlKK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 20px;margin-bottom: 20px;height: auto;max-width: 55%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9elDes1wP\" class=\"style-i9elDes1wP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-i9elDes1wP {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whFYimzVP0\" class=\"style-whFYimzVP0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-whFYimzVP0 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3yw9A52r_l\" class=\"style-3yw9A52r_l\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 15px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 16px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 18px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 64px;padding-right: 64px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3yw9A52r_l {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZFiIorAtks\" class=\"style-ZFiIorAtks\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 40px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZFiIorAtks {\r\n          font-size: 47px !important;font-weight: 600 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 40px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B_JjHVbtUQ\" class=\"style-B_JjHVbtUQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 32px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 30px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 50px;margin-right: 50px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 22px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 28px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-left: 0px;padding-right: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B_JjHVbtUQ {\r\n          font-size: 35px !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"m7pPsgeV0b\" class=\"style-m7pPsgeV0b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-m7pPsgeV0b {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-bottom: 30px;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"adseOyhX10\" class=\"style-adseOyhX10\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;margin-top: 25px;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-adseOyhX10 {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: justify;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n7uG6qVLjr\" class=\"style-n7uG6qVLjr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: center;line-height: 1.5;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-n7uG6qVLjr {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Pl8ciO6q34\" class=\"style-Pl8ciO6q34\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Pl8ciO6q34 {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1t8jp5sx7\" class=\"style-1t8jp5sx7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1t8jp5sx7[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B3qxpdVwrI\" class=\"style-B3qxpdVwrI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-B3qxpdVwrI {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CkOb7I2wHm\" class=\"style-CkOb7I2wHm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-CkOb7I2wHm {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9dgb0oqgO\" class=\"style-9dgb0oqgO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 40px;padding-right: 40px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;padding-left: 70px;padding-right: 70px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9dgb0oqgO[data-gp-component] {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);font-family: Poppins !important;margin-bottom: 20px;padding-left: 80px;padding-right: 80px;display: block;position: relative;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auSDvnYHf_\" class=\"style-auSDvnYHf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 10px;padding-right: 10px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 40px;padding-right: 40px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 70px;padding-right: 70px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-auSDvnYHf_ {\r\n          font-size: 19px !important;color: rgb(120, 136, 155);text-align: left;line-height: 1.5;padding-left: 80px;padding-right: 80px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vclg3pzjyr\" class=\"style-vclg3pzjyr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 10px;padding-right: 10px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 40px;padding-right: 40px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 70px;padding-right: 70px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vclg3pzjyr {\r\n          font-size: 25px !important;font-weight: 700 !important;font-family: Poppins !important;padding-left: 80px;padding-right: 80px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z5k9qfWsm\" class=\"style-Z5k9qfWsm\">\r\n        \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z5k9qfWsm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sjP99fRK9T\" class=\"style-sjP99fRK9T\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sjP99fRK9T[data-gp-component] {\r\n          background-color: rgba(0, 0, 0, 0);padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;flex-direction: column;justify-content: flex-start;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xaN75iWJN\" class=\"style-xaN75iWJN\">\r\n        \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xaN75iWJN {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;display: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M90KY0DKQ\" class=\"style-M90KY0DKQ\">\r\n        \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M90KY0DKQ {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tkqHumAnZs\" class=\"style-tkqHumAnZs\">\r\n        \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tkqHumAnZs {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8xEDIKBkF\" class=\"style-c8xEDIKBkF\">\r\n        \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8xEDIKBkF {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K5MM5iBsC0\" class=\"style-K5MM5iBsC0\">\r\n        \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K5MM5iBsC0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iO351HA7Y5\" class=\"style-iO351HA7Y5\">\r\n        \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iO351HA7Y5 {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_YbYuGqUZa\" class=\"style-_YbYuGqUZa\">\r\n        \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_YbYuGqUZa {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HTmEdZn0QP\" class=\"style-HTmEdZn0QP\">\r\n        \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HTmEdZn0QP {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Q14UnbVz_\" class=\"style-Q14UnbVz_\">\r\n        \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Q14UnbVz_ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHOVJ3S2CO\" class=\"style-xHOVJ3S2CO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHOVJ3S2CO[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oSqr0l60vr\" class=\"style-oSqr0l60vr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-oSqr0l60vr[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tWXWJ3bIAn\" class=\"style-tWXWJ3bIAn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tWXWJ3bIAn[data-gp-component] {\r\n          background-size: cover;padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;min-height: 50px;position: relative;z-index: auto !important;background-repeat-x: no-repeat;background-repeat-y: no-repeat;background-position-x: 100%;background-position-y: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style>\r\n    <section class=\"gp-component gp-component-id-tWXWJ3bIAn\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"tWXWJ3bIAn\" tabindex=\"0\" data-gp-block-id=\"18204\" id=\"tWXWJ3bIAn\" style=\"\"><a name=\"tWXWJ3bIAn\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt {\r\n    \r\n      width: 100%;\r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      margin-top: 0px;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt {\r\n    \r\n      margin-top: 0px;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-left: -0.5rem;\r\n      margin-right: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      width: 100%;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n  }</style><style data-gp-styled-element=\"hvWtGO7ZQf\" class=\"style-hvWtGO7ZQf\">\r\n\r\n  .gp-component-id-hvWtGO7ZQf {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"Dgy5R9mFD\" class=\"style-Dgy5R9mFD\">\r\n\r\n  .gp-component-id-Dgy5R9mFD {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"244223uYWt\" class=\"style-244223uYWt\">\r\n\r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n      padding-left: 0.5rem;\r\n      padding-right: 0.5rem;\r\n      width: 100%;\r\n  }\r\n@media (min-width: 640px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 768px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 992px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}\r\n@media (min-width: 1200px) {\r\n  \r\n  .gp-component-id-244223uYWt[data-gp-component] {\r\n    \r\n      margin-top: 0;\r\n  }\r\n}</style><style data-gp-styled-element=\"HMsD_HK4iS\" class=\"style-HMsD_HK4iS\">\r\n\r\n  .gp-component-id-HMsD_HK4iS {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"auAsaMaUW\" class=\"style-auAsaMaUW\">\r\n\r\n  .gp-component-id-auAsaMaUW {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"DlOzMBJErH\" class=\"style-DlOzMBJErH\">\r\n\r\n  .gp-component-id-DlOzMBJErH {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style><style data-gp-styled-element=\"8cDH67orA\" class=\"style-8cDH67orA\">\r\n\r\n  .gp-component-id-8cDH67orA {\r\n    \r\n      margin-right: -0.5rem;\r\n      margin-left: -0.5rem;\r\n  }</style><style data-gp-styled-element=\"6WnRPhA1Nl\" class=\"style-6WnRPhA1Nl\">\r\n\r\n  .gp-component-id-6WnRPhA1Nl {\r\n    \r\n      padding-right: 0.5rem;\r\n      padding-left: 0.5rem;\r\n      width: 100%;\r\n  }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-xHOVJ3S2CO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"xHOVJ3S2CO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-6WnRPhA1Nl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"6WnRPhA1Nl\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-8cDH67orA\">\r\n        <div class=\"gp-component-id-DlOzMBJErH\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div>\r\n    </div>\r\n<center><ul class=\"gp-component-id-o3gEhMfeX gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"o3gEhMfeX\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uZ5hb_m_m dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"uZ5hb_m_m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h5 class=\"gp-component-id-XqYigCJ7LW\">#USERNAME#...<strong>You Have #CREDITS# Credits In Your Account</strong></h5></div></ul></center>\r\n\r\n\r\n<div class=\"gp-component gp-component-id-oSqr0l60vr topdragger\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"oSqr0l60vr\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-auAsaMaUW\">\r\n        <div class=\"gp-component-id-HMsD_HK4iS\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sjP99fRK9T\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sjP99fRK9T\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653410868_banner-viralmailer.jpg\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-Q14UnbVz_\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Q14UnbVz_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-3HMmGiMb2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"3HMmGiMb2\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-ZFiIorAtks\">Welcome To Solo Swaps!</h2></div><div class=\"gp-text-container gp-component gp-component-id-dMFFkkvED\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dMFFkkvED\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-whFYimzVP0\">To earn more credits, look for e-mails sent by other soloswaps.com members. At the bottom of each message, you should see a link that you can click on to earn credits.</p><p class=\"gp-component-id-i9elDes1wP\">Each credit can be used to send an e-mail to another soloswaps.com member. Just click on the \"Send Mailing\" link on the main menu to send your mailing. The number of credits you can use for each mailing will vary, depending on your account level and the number of other members that are currently available to receive a mailing.</p></div><div class=\"gp-text-container gp-component gp-component-id-P6mTmA7Rr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"P6mTmA7Rr\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/qS6YDVs.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-JZvLGRlKK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JZvLGRlKK\"><div class=\"gp-text-container gp-component gp-component-id-GOYCPtc5S\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"GOYCPtc5S\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-3yw9A52r_l\">Below are three steps that you should follow to start using SoloSwaps and earn some commissions promoting it!</p></div><div class=\"gp-component-id-Z5k9qfWsm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z5k9qfWsm\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-nBl7W0NY0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"nBl7W0NY0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-vclg3pzjyr\">Step 1</p></div><div class=\"gp-text-container gp-component gp-component-id-H7_e_PkJ2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"H7_e_PkJ2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auSDvnYHf_\">Visit the Special</p></div><a target=\"https://soloswaps.com/members.php?mf=md&tabid=home\" href=\"https://soloswaps.com/bonuspage.php\" data-gp-button-id=\"Le49KzkO4\" class=\"gp-component gp-component-id-9dgb0oqgO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"9dgb0oqgO\">\r\n  Download Page</a><div class=\"gp-text-container gp-component gp-component-id-OLZ0_j_b0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"OLZ0_j_b0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-CkOb7I2wHm\">Step 2</p></div><div class=\"gp-text-container gp-component gp-component-id-4slYTt6In\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"4slYTt6In\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-B3qxpdVwrI\">Visit the</p></div><a target=\"_blank\" href=\"https://soloswaps.com/members.php?page=afft\" data-gp-button-id=\"kjDn88-T1\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\n  Affiliate ToolBox</a><div class=\"gp-text-container gp-component gp-component-id-yT5N7zHPL\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"yT5N7zHPL\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-m7pPsgeV0b\">To help you make money by promotingÂ soloswaps.com, I\'ve created a ton of great marketing tools that you can find in the affiliate tool box - so you can get started right away!</p></div><div class=\"gp-text-container gp-component gp-component-id-Ysj0N046UN\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ysj0N046UN\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Pl8ciO6q34\">Step 3</p></div><div class=\"gp-text-container gp-component gp-component-id-P80ZCbBLB\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"P80ZCbBLB\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-n7uG6qVLjr\">Get Started With SoloSwaps!</p></div><div class=\"gp-text-container gp-component gp-component-id-LYaevb1Tc\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"LYaevb1Tc\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-adseOyhX10\">Use the links in the navigation menu to add your URL to the traffic exchange. Don\'t forget to add your banners and text links to the system too.</p>\r\n<a target=\"_blank\" href=\"https://messagemagic.net/nomember/?wlfrom=%2Ftraining-area%2F\" data-gp-button-id=\"gBHw36U5W\" class=\"gp-component gp-component-id-1t8jp5sx7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"link\" data-gp-component-id=\"1t8jp5sx7\">\r\nVisit our Training Area here\r\n</a>\r\n</div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-244223uYWt\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"244223uYWt\" tabindex=\"0\"><div class=\"gp-component-id-Dgy5R9mFD\">\r\n        <div class=\"gp-component-id-hvWtGO7ZQf\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-xaN75iWJN gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" tabindex=\"0\" data-gp-component-id=\"xaN75iWJN\">\r\n      <div class=\"gp-component-id-M90KY0DKQ\">\r\n        <div class=\"gp-component-id-tkqHumAnZs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-c8xEDIKBkF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c8xEDIKBkF\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-K5MM5iBsC0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-iO351HA7Y5 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"iO351HA7Y5\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_YbYuGqUZa\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-HTmEdZn0QP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"HTmEdZn0QP\" style=\"\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n<center><table border=\"0\" cellpadding=\"20\" cellspacing=\"5\"><tr><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=775410\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=775410\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=523095\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=523095\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=414328\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=414328\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=991362\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=991362\" border=\"0\"></a></td><td><a target=\"_blank\" href=\"http://soloswaps.com/clicksqban.php?imgid=771990\"><img width=\"125\" height=\"125\" src=\"http://soloswaps.com/showsqban.php?imgid=771990\" border=\"0\"></a></td></tr></table>>center>   \r\n      </body>\r\n    </html>');
/*!40000 ALTER TABLE `oto_memtemplates_backups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_miniwidgetpositions`
--

DROP TABLE IF EXISTS `oto_miniwidgetpositions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_miniwidgetpositions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `widgetid` int(11) NOT NULL,
  `adminid` int(11) NOT NULL,
  `rank` int(11) NOT NULL DEFAULT 0,
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `widgetid` (`widgetid`),
  KEY `adminid` (`adminid`),
  KEY `enabled` (`enabled`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_miniwidgetpositions`
--

LOCK TABLES `oto_miniwidgetpositions` WRITE;
/*!40000 ALTER TABLE `oto_miniwidgetpositions` DISABLE KEYS */;
INSERT INTO `oto_miniwidgetpositions` (`id`, `widgetid`, `adminid`, `rank`, `enabled`) VALUES (1,1,0,3,1),(2,2,0,4,1),(3,3,0,5,1),(4,4,0,6,1),(5,5,0,2,1),(6,6,0,1,1);
/*!40000 ALTER TABLE `oto_miniwidgetpositions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_miniwidgets`
--

DROP TABLE IF EXISTS `oto_miniwidgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_miniwidgets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `descr` text NOT NULL,
  `widgetfile` varchar(100) NOT NULL,
  `settingsfile` varchar(100) NOT NULL,
  `candelete` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_miniwidgets`
--

LOCK TABLES `oto_miniwidgets` WRITE;
/*!40000 ALTER TABLE `oto_miniwidgets` DISABLE KEYS */;
INSERT INTO `oto_miniwidgets` (`id`, `name`, `descr`, `widgetfile`, `settingsfile`, `candelete`) VALUES (1,'Abuse Reports','Shows any new abuse reports','abusereports.php','',0),(2,'New Members','Shows how many members joined today','newmembers.php','',0),(3,'Sales Today','Shows the daily sales','salestoday.php','',0),(4,'Mailed 24 Hours','Shows how many members have sent a mailing in the past 24 hours','mailedtoday.php','',0),(6,'PiggyBank','Shows any pending PiggyBank deposits','piggybank.php','',1);
/*!40000 ALTER TABLE `oto_miniwidgets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_msqbans`
--

DROP TABLE IF EXISTS `oto_msqbans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_msqbans` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `state` tinyint(1) NOT NULL DEFAULT 0,
  `memid` int(11) NOT NULL,
  `img` varchar(100) NOT NULL,
  `target` varchar(100) NOT NULL,
  `imps` int(11) NOT NULL DEFAULT 0,
  `hits` int(11) NOT NULL DEFAULT 0,
  `clicks` int(11) NOT NULL DEFAULT 0,
  `hitstoday` int(11) NOT NULL DEFAULT 0,
  `hitsyesterday` int(11) NOT NULL DEFAULT 0,
  `lasthit` int(11) NOT NULL DEFAULT 0,
  `abassign` tinyint(3) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `state` (`state`,`memid`,`imps`,`lasthit`)
) ENGINE=MyISAM AUTO_INCREMENT=156 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_msqbans`
--

LOCK TABLES `oto_msqbans` WRITE;
/*!40000 ALTER TABLE `oto_msqbans` DISABLE KEYS */;
INSERT INTO `oto_msqbans` (`id`, `state`, `memid`, `img`, `target`, `imps`, `hits`, `clicks`, `hitstoday`, `hitsyesterday`, `lasthit`, `abassign`) VALUES (26,1,109,'http://rewards4surfing.com/getimg.php?id=2','http://rewards4surfing.com/?rid=1222',2016,484,1,0,0,1776082031,0),(27,1,90,'https://www.myleadgensecret.com/design/banners/125x125.gif','https://www.myleadgensecret.com/?rid=32222',14759,241,0,0,0,1773830419,0),(28,1,90,'https://i.imgur.com/LE6Bg1H.gif','https://theclickengine.com/thanks52878177',4750,250,1,0,0,1775924400,0),(29,1,123,'https://imgallery.llsvr.com/rb2g411.62e6156db7c6d.jpg','https://lllpg.com/rbHNL-2forUcp1',9873,107,0,0,0,1774282207,0),(9,1,51,'https://i.imgur.com/sp8Kv4b.gif','https://virallistbuilder.xyz/aimb/samantha',4860,140,1,0,0,1773012022,0),(32,1,9,'http://cashsystemmailer.com/images/125x125.gif','http://cashsystemmailer.com/index.php?referid=cyberco',4757,243,0,0,0,1774124916,0),(12,1,9,'https://residualincome.team/images/slot125.jpg','https://lynxtrax.com/ritslot',1241,259,1,0,0,1775924400,0),(13,1,49,'https://res.cloudinary.com/greggj2003/image/upload/v1642948459/Paraiba/static-125-125_nysdlo.jpg','https://llpgpro.com/crypto-income-mw4u',12258,242,0,0,0,1774730508,0),(14,1,49,'https://res.cloudinary.com/greggj2003/image/upload/v1642948450/Paraiba/paraiba-banner-125_ftrigh.gif','https://llpgpro.com/bitcoin-on-demand',12238,262,0,0,0,1776680874,0),(155,1,75,'https://imgur.com/pUBPOrX.gif/a','https://jemi.so/freewebtraffic76',24688,312,7,0,0,1776680874,0),(154,1,188,'https://ymcempire.com/ban22.gif','https://ymcempire.com/viralizer',1701,299,1,0,0,1775924400,0),(18,1,22,'https://mymarketingschool.com/getimg.php?id=2','https://earn.sentext.jeffdionne.com/splashpage.php?splashid=7',72,78,0,0,0,1773008616,0),(19,1,22,'https://mymarketingschool.com/getimg.php?id=6','https://mymarketingschool.com/content.php?page=ada1s',71,79,0,0,0,1773511395,0),(120,1,51,'https://www.satoshimultiplier.com/images/banner2.gif','http://www.trafficleads2incomevm.com/lcp8.php?rid=18245&id=1343',24895,105,0,0,0,1773579467,0),(35,1,123,'https://imgallery.llsvr.com/rb2g411.629d6bf810de3.png','https://automaticbuilder.com/nxrcp2.php?user=rburgess',8847,123,0,0,0,1776082031,0),(38,1,22,'https://myadawidget.com/getimg.php?id=2','https://myadawidget.com',134,66,0,0,0,1774282207,0),(131,1,22,'https://earn.sentext.jeffdionne.com/getimg.php?id=143','https://downlineintegrity.com/splashpage.php?splashid=16&rid=1',14,46,0,0,0,1770895280,0),(70,1,137,'http://baboimageshare.com/uploads/87ff679a2f/3262.gif','http://actualhits4u.com/t/12buckjk',1290461,15,0,0,0,1772882393,0),(43,1,123,'https://imgallery.llsvr.com/rb2g411.62e615dbce954.gif','https://lllpg.com/go-TextALN',9891,109,0,0,0,1772967051,0),(44,1,123,'https://imgallery.llsvr.com/rb2g411.62e6165f8d062.jpg','https://lllpg.com/rbVirtualCashflowSystem',9897,103,0,0,0,1773511395,0),(49,1,89,'https://ebbt.us/br/BC6A4BA3A5464BF48D7C120C5B6B7A7A.jpg','https://ebbt.us/br/BC6A4BA3A5464BF48D7C120C5B6B7A7A.html',2476,24,0,0,0,1762853587,0),(50,1,89,'https://ebbt.us/br/A0D9257AE4AB457BA009FACDA328647E.jpg','https://ebbt.us/br/A0D9257AE4AB457BA009FACDA328647E.html',2473,27,0,0,0,1765307011,0),(51,1,89,'https://ebbt.us/br/31D0200189FC49D4B05395C47AD45CFE.jpg','https://ebbt.us/br/31D0200189FC49D4B05395C47AD45CFE.html',2476,24,0,0,0,1765825334,0),(52,1,89,'https://ebbt.us/br/C6029F7FB8184DACB7346E9070543406.jpg','https://ebbt.us/br/C6029F7FB8184DACB7346E9070543406.html',2477,23,0,0,0,1766343742,0),(53,1,89,'https://ebbt.us/br/9BDDF9C4FC33415C99A555DC84E11CE8.jpg','https://ebbt.us/br/9BDDF9C4FC33415C99A555DC84E11CE8.html',2475,25,1,0,0,1767268879,0),(54,1,89,'https://ebbt.us/br/D72B2E56375B4B33922F21E599AD3568.jpg','https://ebbt.us/br/D72B2E56375B4B33922F21E599AD3568.html',2478,22,0,0,0,1769447261,0),(55,1,89,'https://ebbt.us/br/64CB44F0BD5F455D8C752C12C4E22697.jpg','https://ebbt.us/br/64CB44F0BD5F455D8C752C12C4E22697.html',2474,26,0,0,0,1768324132,0),(56,1,89,'https://ebbt.us/br/702B39BBD64849CFB0F3FDAC86832A4E.jpg','https://ebbt.us/br/702B39BBD64849CFB0F3FDAC86832A4E.html',2472,28,0,0,0,1762196562,0),(57,1,89,'https://ebbt.us/br/6AF714BD23DB4C129C37B67DD49D71FA.jpg','https://ebbt.us/br/6AF714BD23DB4C129C37B67DD49D71FA.html',2476,24,0,0,0,1763924431,0),(58,1,89,'https://ebbt.us/br/CA1A019895D7459991771CA8CF216D22.jpg','https://ebbt.us/br/CA1A019895D7459991771CA8CF216D22.html',2469,31,0,0,0,1776788657,0),(59,1,89,'https://ebbt.us/br/6B8425D408774AB8A1B9F59ECD3B86E5.jpg','https://ebbt.us/br/6B8425D408774AB8A1B9F59ECD3B86E5.html',2471,29,0,0,0,1773770038,0),(60,1,89,'https://ebbt.us/br/77469694B6BF42ACAD63C5559A4DEBAD.jpg','https://ebbt.us/br/77469694B6BF42ACAD63C5559A4DEBAD.html',2474,26,0,0,0,1775043014,0),(61,1,89,'https://ebbt.us/br/9AA3B8A141CB4786ACE24D0A9E65FF7C.jpg','https://ebbt.us/br/9AA3B8A141CB4786ACE24D0A9E65FF7C.html',2472,28,0,0,0,1772581727,0),(62,1,89,'https://ebbt.us/br/6DE789F2743647C4AF69FF987CB54700.jpg','https://ebbt.us/br/6DE789F2743647C4AF69FF987CB54700.html',2476,24,0,0,0,1773246966,0),(63,1,89,'https://ebbt.us/br/8FA451DE00634E53AB3E068D47E9E331.jpg','https://ebbt.us/br/8FA451DE00634E53AB3E068D47E9E331.html',2475,25,0,0,0,1772333596,0),(64,1,89,'https://ebbt.us/br/2C2F036D1A4B4C3D9B2AE60F93E7F68C.jpg','https://ebbt.us/br/2C2F036D1A4B4C3D9B2AE60F93E7F68C.html',2473,27,0,0,0,1771940875,0),(65,1,89,'https://ebbt.us/br/DB119E4FB3384C5087F32D8BA9268AA8.jpg','https://ebbt.us/br/DB119E4FB3384C5087F32D8BA9268AA8.html',2473,27,0,0,0,1770902216,0),(66,1,51,'https://tl2icashmailer.com/getimg.php?id=1','http://www.trafficleads2incomevm.com/lcp.php?rid=18245',12376,124,0,0,0,1776680874,0),(67,1,81,'https://i.imgur.com/j8MrTPq.jpg','https://llpgpro.com/3HCMachin2/soloswaps-125',227,273,1,0,0,1776788657,0),(71,1,137,'https://dadsolopreneur.com/promos/a2-250x250.png','https://hlink.us/dsvalue2',1290461,15,1,0,0,1771940875,0),(72,1,137,'https://i.imgur.com/kbVCIAv.png','https://llclickpro.com/escapecapll/bf',1290459,17,0,0,0,1770902114,0),(73,1,137,'https://imgur.com/PaGOhyZ.jpg','https://socialtraffictips.biz/youringoldenhandsno-costfacebooktraffic/',1290461,15,0,0,0,1769004310,0),(74,1,137,'https://storage.builderall.com//franquias/2/76562/editor-html/10127811.gif','https://llpgpro.com/pfpw2z8m',1290462,14,0,0,0,1768221696,0),(75,1,137,'https://i.imgur.com/NN6iaDi.gif','https://llpgpro.com/theclickengine-magicfunnel/lifetrarot',1290457,19,0,0,0,1766516598,0),(76,1,137,'https://storage.builderall.com//franquias/2/76562/editor-html/10127812.gif','https://llclickpro.com/r/ktk7s6wy/',1290459,17,0,0,0,1765911762,0),(77,1,137,'https://storage.builderall.com//franquias/2/6783529/editor-html/9592702.gif','https://warriorplus.com/o2/a/fj603c/0',1290462,14,0,0,0,1765652514,0),(79,1,137,'https://storage.builderall.com//franquias/2/76562/editor-html/10127811.gif','https://www.rapidprofitmachine.com/cp2/?id=Godisable',1290462,14,1,0,0,1758391416,0),(80,1,137,'https://i.imgur.com/NN6iaDi.gif','https://llclickpro.com/MyLLMain/',1290461,15,0,0,0,1757432370,0),(81,1,137,'https://i.imgur.com/NN6iaDi.gif','https://leadsleap.com/?r=delta88',1290459,17,0,0,0,1756649645,0),(82,1,137,'https://genusitytools.com/images/custom/c233/c233_1670394829.png','https://llpgpro.com/c6px8cyj',1290460,16,0,0,0,1755626437,0),(153,1,1,'https://imgallery.llsvr.com/ltommie.6441b04536e0f.jpg','https://llclickpro.com/r/global-prosperiteam/frankandres250/',99830,170,0,0,0,1775735330,0),(83,1,218,'https://imgur.com/kiLwooJ.gif','http://actualhits4u.com/t/12buckjk',99971,29,0,0,0,1763406171,0),(84,1,218,'https://imgur.com/TrwwX7W.png','https://hlink.us/dsvalue2',99973,27,0,0,0,1765770913,0),(85,1,218,'https://imgur.com/4bR3K2I.png','https://llclickpro.com/escapecapll/bf',99978,22,0,0,0,1766343742,0),(86,1,218,'https://imgur.com/QFBnj4S.png','https://socialtraffictips.biz/youringoldenhandsno-costfacebooktraffic/',99978,22,0,0,0,1767268880,0),(87,1,218,'https://imgur.com/ydm41J6.jpg','https://llpgpro.com/pfpw2z8m',99977,23,0,0,0,1768675088,0),(88,1,218,'https://imgur.com/trVCuMW.gif','https://llpgpro.com/theclickengine-magicfunnel/lifetrarot',99971,29,0,0,0,1769879058,0),(89,1,218,'https://imgur.com/sY3rc9L.gif','https://llclickpro.com/r/ktk7s6wy/',99971,29,0,0,0,1771462938,0),(90,1,218,'https://imgur.com/pVrXhU8.gif','https://llpgpro.com/8nwv5rrh/',99971,29,0,0,0,1772234062,0),(91,1,218,'https://imgur.com/N9n7vUh.png','https://warriorplus.com/o2/a/fj603c/0',99974,26,0,0,0,1764584654,0),(92,1,218,'https://imgur.com/K5a2tgd.jpg','https://www.trker.com/go/149015/frankandres250banner',99976,24,0,0,0,1762454945,0),(93,1,218,'https://imgur.com/GeDO1Uk.gif','https://www.rapidprofitmachine.com/cp2/?id=Godisable',99974,26,0,0,0,1776788657,0),(94,1,218,'https://imgur.com/MHCjG9o.gif','https://llclickpro.com/MyLLMain/',99972,28,0,0,0,1775043014,0),(95,1,218,'https://imgur.com/wi6tGg3.gif','https://leadsleap.com/?r=delta88',99970,30,0,0,0,1773579467,0),(96,1,218,'https://imgur.com/EJ1AWIm.png','https://llpgpro.com/xdrkyzbd/',99972,28,0,0,0,1773061294,0),(97,1,218,'https://imgur.com/7jWh3j2.gif','https://www.williamglover.co/15daychallenge',99975,25,0,0,0,1772564434,0),(152,1,1,'https://imgallery.llsvr.com/keyte.63c719bd63acd.jpg','https://llpgpro.com/lgfunneljosch/5DF125',9832,168,0,0,0,1773830419,0),(99,1,137,'https://i.imgur.com/IbZGfVU.png','https://marketingpro.e1ulife.com/optin/OptinPage5/index.php?betomiranda',1290461,15,0,0,0,1764270157,0),(100,1,137,'https://zone12.secondsplash.com/b/300%C3%97250b.jpg','https://www.trker.com/go/170124',1290462,14,0,0,0,1763060621,0),(101,1,137,'https://i.imgur.com/7tqrncp.jpg','https://allinoneprofits.com/rotator.php?id=theophille',1290462,14,0,0,0,1762454803,0),(102,1,137,'https://i.imgur.com/kApaej9.png','https://promo-bot.com/?id=28382',1290460,16,0,0,0,1761242672,0),(103,1,137,'https://storage.builderall.com//franquias/2/6783529/editor-html/9592720.gif','https://warriorplus.com/o2/a/xlnr47/0',1290462,14,0,0,0,1759432542,0),(151,1,2,'https://i.imgur.com/OTXbRAi.png','http://llclick.com/FreeListBuildingFunnel',99964,36,0,0,0,1773830419,0),(104,1,137,'https://easytrafficblueprint.com/imagesrte/d456791/150lpd-banner1-250x250.jpg','https://llclickpro.com/r/my150leads/5blackfriday',1190460,16,0,0,0,1754676233,0),(105,1,137,'https://i.imgur.com/Obh1bl6.jpg','https://mb101.net/no-cost-fb-traffic',1190460,16,0,0,0,1755450022,0),(106,1,2,'https://i.imgur.com/ZNfItsE.jpg','http://freeemailads.com/?rid=148',99955,45,0,0,0,1773446806,0),(107,1,2,'https://i.imgur.com/xaoFdso.png','http://llclick.com/hhphdhs3/',99954,46,0,0,0,1775735330,0),(109,1,2,'https://i.imgur.com/fN2JSXI.gif','https://www.trker.com/bclick/59511/1',99960,40,0,0,0,1771427028,0),(110,1,2,'https://i.imgur.com/BSgTYY3.png','https://redeyedeal.com/onboarding',99958,42,0,0,0,1767294166,0),(114,1,2,'https://i.imgur.com/N4iJIBY.png','https://victorefughi.members.hbafunnelbuilder.com/fast-25-dollars',99956,44,0,0,0,1769641259,0),(116,1,2,'https://pbs.twimg.com/media/EYKObtWWoAItm2c.png','https://tny.sh/zaEtH5m',99955,45,0,0,0,1772339714,0),(117,1,2,'https://i.imgur.com/IbZGfVU.png','https://alfredcdebose.wearelegalshield.com/',99955,45,0,0,0,1768675088,0),(118,1,137,'https://pbs.twimg.com/media/EYKObtWWoAItm2c.png','https://tny.sh/zaEtH5m',99984,16,0,0,0,1773446806,0),(119,1,137,'https://i.imgur.com/IbZGfVU.png','https://alfredcdebose.wearelegalshield.com/',99985,15,0,0,0,1772339714,0),(122,1,137,'http://www.prosperitymarketingsystem.com/images/125x125.gif','https://www.trker.com/rotate/58922/3',99982,18,0,0,0,1774124916,0),(123,1,137,'https://storage.builderall.com//franquias/2/76562/editor-html/10127817.gif','https://www.clkmg.com/Gordon876/5DollarRPM',99987,13,0,0,0,1775924400,0),(124,1,137,'https://imgur.com/Y7DGX3J.jpg','https://llclickpro.com/5drotator',99985,15,0,0,0,1753120983,0),(138,1,17,'https://infinitymailerboost.com/ba-nn-ers/125x125.gif','https://llclick.com/zbmbbwg5/bannersafe',866,384,0,0,0,1775971017,0),(128,1,137,'https://i.imgur.com/LE6Bg1H.gif','https://llclickpro.com/dg26n3yh/',99986,14,0,0,0,1753812194,0),(129,1,51,'https://robocashmachine.com/banmachine3.gif','https://robocashmachine.com/banmachine3.gif',49907,93,1,0,0,1774730508,0),(130,1,22,'https://robocashmachine.com/banmachine4.gif','https://robocashmachine.com/i/jeffdionne',202,48,0,0,0,1775971017,0),(132,1,22,'https://mymarketingschool.com/images/affbonus125.png','https://mymarketingschool.com/splashpage.php?splashid=5&rid=1',12,48,0,0,0,1771679423,0),(133,1,22,'https://highclasshits.com/getimg.php?id=2','https://highclasshits.com/?rid=2',15,45,0,0,0,1772234062,0),(135,1,22,'https://hitblitz.com/getimg.php?id=6','https://hitblitz.com/?rid=1',13,47,0,0,0,1772564434,0),(136,1,233,'http://3n1ads.com/images/banner125x125.gif','http://3n1ads.com/a34',627,371,0,0,0,1775735330,0),(137,1,2,'https://freeimghost.net/images/2023/01/08/LiveGoodGif125x125.gif','https://www.trker.com/go/170313',99960,40,0,0,0,1772019191,0),(140,1,78,'https://www.moolameme.com/displaymeme.php?id=101367','https://clicktrakr.biz/ManifestWealthwithLaToya',12112,388,1,0,0,1776680874,0),(141,1,5,'https://cdn.staticdcp.com/uploads/business/be714043706211ea/library/1674348807qKHOPkJ5Vj.gif','http://llclickpro.com/MassiveTrafficNetwork/02soloswap125',749919,81,0,0,0,1774124916,0),(142,1,5,'https://cdn.staticdcp.com/uploads/business/be714043706211ea/library/1674349599alGFb0AHQ1.jpg','http://llclickpro.com/500DollarsSoftware/02soloswap125',749922,78,0,0,0,1773500598,0),(143,1,5,'https://cdn.staticdcp.com/uploads/business/be714043706211ea/library/1674346642GcjeAf2CNz.gif','http://llclickpro.com/30DaysWebsiteTraffic/02soloswapl125',749924,76,0,0,0,1772967051,0),(144,1,5,'https://cdn.staticdcp.com/uploads/business/be714043706211ea/library/1674347585I16dHcypsr.gif','https://llclickpro.com/BigBookFreeTraffic/02soloswap125',749921,79,0,0,0,1772340110,0),(145,1,5,'https://cdn.staticdcp.com/uploads/business/be714043706211ea/library/1671227513tNu0UewTOs.gif','http://llclickpro.com/milliondollargiveaway/02soloswaps125',749925,75,0,0,0,1775924400,0),(146,1,81,'https://myfreecryptolist.com/images/LLMax125x125.png','https://myfreecryptolist.com/leadsleapmaxsplash?ll=wouellet',3081,194,2,0,0,1775043014,0),(148,1,2,'https://giselabeckermann.com/wp-content/uploads/2023/02/How-to-earn-from-this-FREE-system.png','https://cutt.ly/Z3j452y',99963,37,1,0,0,1772581748,0);
/*!40000 ALTER TABLE `oto_msqbans` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_mtexts`
--

DROP TABLE IF EXISTS `oto_mtexts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_mtexts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `state` tinyint(1) NOT NULL DEFAULT 0,
  `memid` int(11) NOT NULL,
  `text` varchar(30) NOT NULL DEFAULT '',
  `target` varchar(100) NOT NULL,
  `imps` int(11) NOT NULL DEFAULT 0,
  `hits` int(11) NOT NULL DEFAULT 0,
  `clicks` int(11) NOT NULL DEFAULT 0,
  `hitstoday` int(11) NOT NULL DEFAULT 0,
  `hitsyesterday` int(11) NOT NULL DEFAULT 0,
  `numchars` tinyint(2) NOT NULL DEFAULT 50,
  `lasthit` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `state` (`state`,`memid`,`imps`,`numchars`,`lasthit`)
) ENGINE=MyISAM AUTO_INCREMENT=312 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_mtexts`
--

LOCK TABLES `oto_mtexts` WRITE;
/*!40000 ALTER TABLE `oto_mtexts` DISABLE KEYS */;
INSERT INTO `oto_mtexts` (`id`, `state`, `memid`, `text`, `target`, `imps`, `hits`, `clicks`, `hitstoday`, `hitsyesterday`, `numchars`, `lasthit`) VALUES (233,1,2,'Click Here to Claim Your Free ','http://llclick.com/FreeListBuildingFunnel',99990,10,0,0,0,50,1749955394),(3,1,23,'Make A Fortune Showing People','https://sotiny.link/px52',74592,408,1,0,0,50,1770884734),(4,1,28,'Get an insane deal on Traffic','https://infamousmarketer.com/TrafficBlaster',2592,408,12,0,0,50,1772579874),(5,1,33,'NPNBUILDER.COM','https://globalnpn.com/lds/?id=195432&tag=',7093,407,0,0,0,50,1772582419),(36,1,109,'best site for real views...','http://rewards4surfing.com/?rid=1222',2768,232,0,0,0,50,1764873990),(7,1,46,'Prime Self Help Resources','https://causes40network.com/prime-affiliate-programs/',1433,67,0,0,0,50,1750719713),(8,1,46,'QUICK START To Health and Weal','https://www.shopfreemart.com/lp/lp31.php/causes40network',1433,67,0,0,0,50,1748968464),(9,1,46,'The Causes Of Over 200 Disease','https://200diseases.com/?ref=86736',1432,68,0,0,0,50,1772111494),(10,1,46,'Causes40Network Store','https://causes40network.com/store/',1432,68,0,0,0,50,1761454852),(11,1,46,'NugenCoin is a crypto exchange','https://nugencoin.com/causes40network',1432,68,0,0,0,50,1757013106),(12,1,46,'NEW SHOPPING CLUB GIANT!','https://www.shopfreemart.com/causes40network',1432,68,0,0,0,50,1753619517),(301,1,51,'It Finally Happened','https://llclick.com/gz6hg48s/soloswaps',19999,1,0,0,0,50,1757010208),(299,1,51,'This Is Your Ultimate Gift','https://llclick.com/r9hym9mr/soloswaps',19999,1,0,0,0,50,1753618176),(300,1,51,'Times Are Tough Out There','https://llclick.com/r9hym9mr/soloswaps',19999,1,0,0,0,50,1761445382),(101,1,89,'ðŸš€ Blast YOUR Ads ðŸª‚','https://ebbt.us/trk/bLVxVT',4971,29,0,0,0,50,1761288421),(99,1,89,'ðŸˆ COME MEET LIMEY LIME','https://ebbt.us/trk/bK0UK4',4971,29,0,0,0,50,1757008558),(96,1,89,'ðŸ”¥ Get Your Ads Shown ðŸ”¥','https://7dollarads.com/?rid=5',4971,29,0,0,0,50,1753614080),(22,1,18,'Profit Fundamentals','https://warriorplus.com/o2/a/x6h3cp/0',12655,345,0,0,0,50,1760584444),(298,1,51,'Transactions speak louder than','https://llclickpro.com/sizzlefactor/soloswaps',20999,1,0,0,0,50,1750612304),(100,1,89,'ðŸ§‘Real People Real Traffic','https://ebbt.us/trk/bL506L',4971,29,0,0,0,50,1750355592),(116,1,78,'Need Money?','https://clicktrakr.biz/ManifestEveryVisionwithLaToya',871,129,0,0,0,50,1772590842),(278,1,322,'Receive 21 FREE Emails to Use','https://llpgpro.com/2tjvzhzy/',4951,49,0,0,0,50,1772111480),(23,1,64,'100% GUARANTEED FIX FOR A $0.0','https://3daychallenge.access123.net/',2599,401,1,0,0,50,1772111686),(245,1,281,'Unlock Lifetime Traffic Now!','https://ezhitzs.com/m/5219',334,91,0,0,0,50,1775988947),(24,1,36,'Take The Leap','https://llpgpro.com/44rvnxcp/',457,22,0,0,0,50,1772587748),(25,1,67,'$89/Hour & Up To $789/Day','http://incomeway.com/?ref=338900',39600,400,0,0,0,50,1775421514),(28,1,11,'100% Commissions','https://www.prosperitymarketingsystem.com/go/?s=113088',4602,398,0,0,0,50,1775391215),(238,1,17,'Earning with this is so easy','https://llclickpro.com/r/ecflgotp/safe',934,66,0,0,0,50,1761464795),(63,1,139,'FREE system spits out money','https://olspsystem.com/join/5769',1668,332,0,0,0,50,1770821443),(237,1,9,'ChatGPT CaðŸ’²h Machine','https://stealourlist.com/t/chatgptcash',12070,80,0,0,0,50,1756768135),(182,1,20,'Breakthrough Marketing System','http://www.ourwaytosuccess.com',1559643,217,1,0,0,50,1770821264),(236,1,256,'Everyone Gets 100% Commissions','https://100percentclicks.com/splashpage.php?id=4&r=100percentcommiseven&t=soloswapsTx',360,105,5,0,0,50,1770821289),(29,1,47,'Autopilot U.S. Leads for YOU,','https://lllpg.com/873j33x8',157554,64,0,0,0,50,1773547935),(239,1,263,'One Million Clicks','https://onemillionclicks.im-club.com/?papawstv',295,105,3,0,0,50,1772117888),(86,1,162,'Can You Afford FREE?','https://Free2Join.tcplifestylesystem.com',13235,98,0,0,0,50,1760201859),(289,1,9,'Unlimited Visitors & Cash-Flow','https://gohere247.com/ics2',1996,4,0,0,0,50,1760972185),(37,1,90,'An honest message for','https://www.myleadgensecret.com/info/?rid=32222',29616,384,0,0,0,50,1772111716),(39,1,47,'Lack of Income -- OUR SOLUTION','https://bit.ly/3FReR9w',97575,43,0,0,0,50,1741482236),(49,1,27,'Want more traffic and signups?','http://rebrand.ly/loqcym3',50852,148,0,0,0,50,1764614822),(79,1,36,'Tripple Your Traffic with This','https://paykstrt.com/11732/69977',349,51,0,0,0,50,1753763065),(65,1,47,'100Ways To Increase Your Sales','https://mrrichardt.gumroad.com/l/yajri',63296,37,0,0,0,50,1752888707),(55,1,120,'Copy my Crypto & Earn','https://bit.ly/copy_my_crypto_special_offer',29629,371,1,0,0,50,1776203110),(40,1,47,'This Simple FREE System','https://bit.ly/3x8HHjh',97575,43,0,0,0,50,1736332774),(41,1,47,'STOP drinking the water','https://bit.ly/3xn6GxN',97575,43,0,0,0,50,1748742712),(42,1,47,'One Signup A Day','https://leadsleap.com/1signupaday/?r=mrrichardt',97575,43,0,0,0,50,1749981255),(43,1,47,'FREE Lifetime Membership','https://leadsleap.com/?r=mrrichardt',97575,43,0,0,0,50,1760194663),(44,1,47,'My Lead Gen Secret','https://lllpg.com/873j33x8',97575,43,0,0,0,50,1764874348),(45,1,111,'$9997 FREE Sales Machine','https://llpgpro.com/v7dkzsw3',812,188,0,0,0,50,1763060063),(46,1,111,'Best Crypto Bots Online!','https://llpgpro.com/1wp0d5tz',812,188,0,0,0,50,1772564585),(102,1,89,'Lose The Free Mentality','https://ebbt.us/trk/bPdA4s',4971,29,0,0,0,50,1748866510),(47,1,123,'One-time $10 Earns Over $300k?','https://lllpg.com/rbVirtualCashflowSystem',9812,188,1,0,0,50,1772111687),(48,1,123,'How to Get2Paid Referrals...','https://lllpg.com/HNL-Team2foru-cp',9813,187,6,0,0,50,1761480267),(311,1,673,'14 Day Blitzz','https://llclick.com/r/p9zgg9r5/',0,0,0,0,0,50,0),(310,1,36,'Your Greatlife starts Today','https://llclick.com/336njh8b/',99,1,0,0,0,50,1758640245),(309,1,53,'Make Real Money Like This','https://manifestinglive.com/training/a/Above',497,3,0,0,0,50,1773547921),(64,1,47,'200 SocialMedia Marketing Tips','https://mrrichardt.gumroad.com/l/hwiey',33296,37,0,0,0,50,1756224338),(58,1,49,'Make Money...Save Money','https://greggjohnson.savingshighwayglobal.com/',19887,36,0,0,0,50,1755480755),(117,1,78,'Unlimited $100 Payments','https://clicktrakr.biz/GrowListwithLaToya',872,128,0,0,0,50,1764616681),(83,1,109,'Get free traffic here...','https://trafficbuildr.com/?rid=2325',2249,151,8,0,0,50,1773547928),(62,2,36,'The Metaverse Is Here','https://metaversemadesimple.biz/goldenhands/free-metaverse-made-simple/',526,74,0,0,0,50,1741454140),(261,1,301,'Wealth Escape Plan!','https://escapeplanis.com/lp/escapeplanis1iftf/1/RMD5MKYDXN',552,76,0,0,0,50,1775988823),(98,1,89,'Email Marketing The Easy Way','https://ebbt.us/trk/bG9wuD',4971,29,0,0,0,50,1741505150),(80,1,119,'Free Manual Traffic Exchange','https://llclick.com/g611t3h8/',199688,312,0,0,0,50,1773587175),(73,1,34,'Cash Flow Funnel','https://www.trker.com/go/164082',29681,319,0,0,0,50,1775406074),(114,1,181,'Done for you system','http://warriorplus.com/o2/a/x45hnx/0',4733,267,0,0,0,50,1771427169),(81,1,141,'Want more Traffic to your Ads?','http://www.GrowAHomeBusiness.com/?rd=tv4dnRO4',9692,308,1,0,0,50,1772153224),(77,1,104,'Our debit Card gives u double','https://susie.mytzt.com/',2382,63,0,0,0,50,1772582438),(90,1,49,'Earn $100 Daily From Anywhere!','https://llpgpro.com/copypasteprofits/soloswap',14964,36,0,0,0,50,1746264648),(82,1,22,'Free Super Solo To 45K','https://downlineintegrity.com/splashpage.php?splashid=16&rid=1',310,265,3,0,0,50,1761492478),(87,1,162,'Become A Millionaire With $5','https://www.millionairewith5.com/?scoie372',13234,99,1,0,0,50,1775391166),(88,1,162,'Earn Passive Money Online','https://Free2Join.cfxsystem.com',13234,99,0,0,0,50,1766097213),(85,1,150,'Keep Your Traffic Moving','https://keepyourtrafficmoving.com/kytmsix.html',4702,298,0,0,0,50,1772111687),(89,1,49,'Save Up To 75% On World Travel','https://greggjohnson.savingshighwayglobal.com/',12964,36,0,0,0,50,1741480431),(91,1,49,'Make Money From Your Phone','https://llpgpro.com/3stepfreedom/soloswap',14964,36,0,0,0,50,1749955396),(92,1,49,'Earn Fast....Save More!','https://llpgpro.com/shgfunnel/soloswap',16964,36,0,0,0,50,1752522030),(93,1,49,'My $20 Dollar Business','https://llpgpro.com/copypasteprofits/',10963,37,0,0,0,50,1773188735),(94,1,49,'Get Sign Ups On Autopilot','https://llpgpro.com/freemarketingsystem/',9963,37,4,0,0,50,1764632083),(95,1,49,'Generate Unlimited Leads Free','https://llpgpro.com/freemarketingsystem/',9963,37,0,0,0,50,1759934485),(97,1,89,'ðŸ’µ Qualified Proven Buyers','https://ebbt.us/trk/bG9wuD',4971,29,0,0,0,50,1737871566),(103,1,89,'ðŸŒ€ Cyclone Hits - Join Free','https://ebbt.us/trk/bPEmfs',4971,29,0,0,0,50,1735609558),(104,1,89,'ðŸ’¥ Explosive Mailer','https://explosivemailer.com/?rid=2',1971,29,0,0,0,50,1770884720),(105,1,89,'ðŸ’¥ Login Ad Explosion ðŸŒŸ','https://loginadexplosion.com/?rid=2',1372,28,0,0,0,50,1734941915),(106,1,176,'100 Guaranteed Views!','https://www.safelist8.com/2020/07/i-get-100-clicks-on-all-ads-here-so-can.html',9713,287,0,0,0,50,1772333512),(246,1,75,'34000 Free Web Traffic Clicks','https://tinyurl.com/3z9ueedd',2980,20,1,0,0,50,1749846556),(279,1,317,'CYBLT RPM','https://creatingyourbestlifetoday.com/rpm/',9953,47,0,0,0,50,1772582879),(240,1,1,'Build Multiple Downlines Like','https://llclickpro.com/r/global-prosperiteam/frankandrestxt/',1499900,100,0,0,0,50,1771427001),(258,1,18,'Generate Your Own Leads...','https://clicktrakr.biz/PMS',2980,20,0,0,0,50,1775406050),(111,1,81,'100,000 Free Visitors A Month!','https://llpgpro.com/3HCMachin2/soloswaps-t',448,152,0,0,0,50,1772587679),(112,1,91,'Leverage Financial Freedom','https://www.lincsnicks.com/',1726,274,0,0,0,50,1772337352),(118,1,192,'high ticket commissions','https://aiop.co?p=911',367,258,0,0,0,50,1772333524),(122,1,203,'Make Money Online','http://llpgpro.com/rbz8j9fy/',179,246,0,0,0,50,1773494881),(265,1,75,'Top Ai Tools Free Download','https://docs.google.com/spreadsheets/d/1O88jLSztBuL2ybCaf9KRLpG2PexP5Tyf6xiCdKtC6DI/edit#gid=2499605',4988,12,1,0,0,50,1742867644),(264,1,27,'1-Page Website','bit.ly/tracking100',10966,34,0,0,0,50,1772587712),(127,1,137,'My Favorite Traffic Co-op','http://actualhits4u.com/?rid=10608',1208688,7,0,0,0,50,1748746923),(128,1,137,'See How To Get FREE Traffic!','https://hlink.us/dsvalue',1208688,7,0,0,0,50,1741488538),(124,1,36,'10x Your Traffic today','http://clickly.club/kvtp3c5/',207,43,0,0,0,50,1764614881),(129,1,137,'Grab your free job Escape Plan','https://llclickpro.com/escapecapll/bf',1208688,7,0,0,0,50,1737826196),(130,1,137,'Yes! No cost Facebook Traffic','https://socialtraffictips.biz/youringoldenhandsno-costfacebooktraffic/',1208688,7,0,0,0,50,1735467391),(131,1,137,'Ad This will help your busines','https://llpgpro.com/pfpw2z8m/',1208688,7,0,0,0,50,1729962199),(132,1,137,'Best Intrested Buyer Traffic','https://llpgpro.com/theclickengine-magicfunnel/5dollartrarot',1208688,7,0,0,0,50,1729300470),(133,1,137,'Activate Free Money Making!','https://llclickpro.com/r/zwz6pwrj/',1208688,7,0,0,0,50,1727481193),(134,1,137,'$10 To Earn $60,247 in 2 Days!','https://llpgpro.com/8nwv5rrh/',1208688,7,0,0,0,50,1725213672),(135,1,137,'DFY MARKETING SOLUTION','https://sell-social.com/',1208688,7,0,0,0,50,1724491812),(136,1,137,'Turn $1 into a 7 figure income','https://www.trker.com/go/149015/frankandrestxt',1208688,7,0,0,0,50,1723829529),(137,1,137,'FREE Site - Leads & Commission','https://www.rapidprofitmachine.com/cp1/?id=Godisable',1208688,7,0,0,0,50,1716078063),(138,1,137,'Get tons of buyers here!','https://llclickpro.com/4y1ls0m6/',1208688,7,0,0,0,50,1715910852),(139,1,137,'Giving FREELifetime Membership','https://leadsleap.com/?r=delta88',1208688,7,0,0,0,50,1714668008),(140,1,137,'Fill ur mailing list FR*EE','https://megamarketing.pro/afplandingregister/by-pass/?id=7040',1208688,7,0,0,0,50,1713902767),(141,1,137,'Affiliate Domination Formula','https://www.williamglover.co/15daychallenge',1208688,7,0,0,0,50,1712881223),(268,1,22,'Enter $600 Contest Click Here','https://1bannerbox.com/jeffdionne',479,21,0,0,0,50,1772111713),(159,1,137,'**OMG!* *$2K/Sale* *Directly t','https://marketingpro.e1ulife.com/optin/OptinPage5/index.php?betomiranda',1208688,7,0,0,0,50,1721865695),(244,1,280,'90 Minute A Day Is All It Take','https://trafficbuildr.com/t/90minute',110,90,0,0,0,50,1775979157),(165,1,137,'Your 150 Leads Per Day System','https://llclickpro.com/r/my150leads/5blackfriday',1108689,6,0,0,0,50,1709931534),(142,1,151,'Get 150 Leads Per Day For FREE','https://lllpg.com/jwv67cpn/solo',767,233,6,0,0,50,1772117901),(188,1,230,'Easiest System Ever!!!','https://www.profitacceleratorsystem.com/z/63babce6f0ef2e00156e3dd0/optin',3,197,0,0,0,50,1775391220),(179,1,137,'Quit 9-5 Job? With Step By Ste','https://www.trker.com/rotate/58922/3',99993,7,0,0,0,50,1753388387),(180,1,137,'Finally! Real Commissions','https://www.clkmg.com/Gordon876/5DollarRPM',99993,7,0,0,0,50,1750258569),(186,1,137,'Want Autopilot Buyer Clicks?','https://llclickpro.com/dg26n3yh/',99994,6,0,0,0,50,1711126342),(302,1,51,'This is a Game Changer','https://llclickpro.com/r/gamechanger/soloswaps',19999,1,1,0,0,50,1771427143),(181,1,137,'A whole new way to grow your i','https://llclickpro.com/5drotator',99993,7,0,0,0,50,1756672807),(158,1,137,'Get Sales to Get Free Traffic','http://llclickpro.com/n795kzz6/',1208688,7,1,0,0,50,1720481332),(160,1,137,'How Many Times You Seen This?','https://www.trker.com/go/170124',1208688,7,0,0,0,50,1719841529),(161,1,137,'100 Free UNICOINS and Free Tra','https://allinoneprofits.com/rotator.php?id=theophille',1208688,7,0,0,0,50,1718309479),(162,1,137,'Wow! Free viral advertising?','https://llclickpro.com/adexchangeworldbg/5dftn',1208688,7,0,0,0,50,1717445301),(163,1,137,'15 Free Unused Traffic Sources','https://llpgpro.com/lx5r9773/',1208688,7,0,0,0,50,1717083036),(164,1,137,'Global business, weekly income','https://www.shgfunnel.com/cp?aid=dula14',1208688,7,0,0,0,50,1716402486),(166,1,137,'No Cost Facebook Traffic','https://mb101.net/BF22TextAd',999993,7,0,0,0,50,1775406056),(167,1,137,'ONE THAT WORKS FOR EVERYBODY!!','http://llclick.com/yrxkyxkk/',999994,6,0,0,0,50,1708565397),(171,1,2,'Free Money Making Membership','http://instantprofitsclub.com/freeaccess/7946.htm',99980,20,0,0,0,50,1746257573),(168,1,137,'Grab Your Slice Of The Money P','https://tpmr.com/i/85443',99993,7,0,0,0,50,1760584458),(169,1,2,'Mail your Biz ad to thousand o','http://freeemailads.com/?rid=148',999980,20,0,0,0,50,1741476008),(170,1,2,'USA Traffic For $0.006/visitor','http://llclick.com/xmjmkfgz/',999980,20,0,0,0,50,1752516091),(172,1,2,'EverGreen Business Plan==>CLIC','https://www.trker.com/rotate/59511/3',99980,20,0,0,0,50,1764631590),(173,1,2,'2.0 Landing Page Done In 60 Se','https://redeyedeal.com/onboarding',99980,20,0,0,0,50,1772619444),(174,1,2,'The World\'s First All in One','https://victorefughi.members.hbafunnelbuilder.com/fast-25-dollars',99981,19,0,0,0,50,1734083621),(175,1,2,'The Opportunity Of The Decade','https://llpgpro.com/OppOfTheDecade/',99981,19,0,0,0,50,1736300659),(177,1,137,'FREE Online Business in a Box','https://tny.sh/zaEtH5m',99993,7,0,0,0,50,1766402453),(176,1,2,'FREE Online Business in a Box ','https://tny.sh/zaEtH5m',999983,20,0,0,0,50,1755480740),(184,1,2,'Out Of This World Marketing To','https://llclickpro.com/wpkyh6x4/5dfriday3',99982,18,0,0,0,50,1735386194),(296,1,9,'Claim Your 3 Promo Codes','https://gohere247.com/wtd',59998,2,0,0,0,50,1753398852),(255,1,212,'MLMGateway- free traffic site','https://www.mlmgateway.com/?refcode=54711657',370,80,0,0,0,50,1772564577),(254,1,17,'Get this $24K Funnel For Free','https://llclickpro.com/r/ecflgotp/',959,41,3,0,0,50,1772111504),(189,1,81,'You Need Traffic? Free Traffic','http://llclickpro.com/traf-builder/soloswaps',430,70,0,0,0,50,1763273771),(275,1,316,'Laser-Targeted Traffic','https://trafficzest.com/?rft1=de70a227-fa3d-4507-a65f-e235bc384498',69574,57,3,0,0,50,1772579861),(270,1,22,'Genie Traffic Coop','https://geniecoop.com/jeffdionne',279,21,0,0,0,50,1757062727),(192,1,2,'Earn with Easy Selling Quality','https://www.trker.com/go/170314',99985,15,0,0,0,50,1731553723),(194,1,233,'3n1Ads Free Ads For Everyone!','http://3n1ads.com/a34',242,159,1,0,0,50,1775421500),(193,1,2,'One Stop Shopping','https://alfredcdebose.wearelegalshield.com/',99985,15,0,0,0,50,1732377742),(263,1,140,'Boost Sales w/State OfTheArtAI','https://www.bjsetc.com/?rd=fa57B2VJ',227,73,3,0,0,50,1772153276),(259,1,18,'How To Get New Sign-Ups Into Y','https://clicktrakr.biz/PMS',2980,20,1,0,0,50,1766402444),(248,1,283,'Can you clone for yourself?','https://llpgpro.com/vcgmbht2/',109,91,1,0,0,50,1776203124),(247,1,40,'Join Easy Commission Funnel','https://llpgpro.com/zgmfm92n/',911,89,0,0,0,50,1772582866),(267,1,308,'$1 Today Turns Into a 6-Figure','https://tonyspls.com/',360,65,1,0,0,50,1775391149),(215,1,5,'$2.6 Million Dollar Giveaway','http://llclickpro.com/milliondollargiveaway/02soloswapstext',499957,43,0,0,0,50,1764873625),(214,1,36,'You want to live For Today','https://soloswaps.com/r/livegoodtoday',299,31,0,0,0,50,1752186602),(285,1,9,'Weekly Gift In Your Inbox','https://fasttrafficzone.com/t/weeklygift',11741,4,0,0,0,50,1775971152),(260,1,18,'Learn How To Generate Pre-Qual','https://clicktrakr.biz/PMS',2981,19,0,0,0,50,1756672793),(223,1,137,'Your One Stop Shopping','https://www.facelifenow.com/',99995,5,0,0,0,50,1730453722),(216,1,5,'Big Book of FREE Web Traffic','https://llclickpro.com/BigBookFreeTraffic/02soloswaptext',499957,43,0,0,0,50,1759997596),(217,1,5,'30 Days of FREE Traffic','http://llclickpro.com/30DaysWebsiteTraffic/02soloswaptext',499957,43,0,0,0,50,1756156774),(218,1,5,'$500 FREE Marketing Software','http://llclickpro.com/500DollarsSoftware/02soloswaptext',499956,44,0,0,0,50,1773511591),(277,1,178,'LIVE DEMO FOR ENTREPRENEURS','https://entrepreneursprograms.com/abs-live-registration',49949,51,0,0,0,50,1773587161),(228,1,2,'Earn Commissions from a FREE s','https://cutt.ly/Z3j452y',99988,12,0,0,0,50,1759444695),(224,1,137,'Legal Service Plans-USA&Canada','https://alfredcdebose.wearelegalshield.com/',99995,5,0,0,0,50,1731584698),(273,1,75,'7 Best AI Tools For Filmmaking','https://docs.google.com/spreadsheets/d/1O88jLSztBuL2ybCaf9KRLpG2PexP5Tyf6xiCdKtC6DI/edit#gid=2499605',2989,11,0,0,0,50,1772587665),(220,1,81,'Max Your Credits And Earnings','https://myfreecryptolist.com/leadsleapmaxsplash?ll=wouellet',244,56,0,0,0,50,1758612570),(280,1,239,'MLMROD System','https://llpgpro.com/m6wd38bw/',45,45,0,0,0,50,1773494936),(225,1,137,'Buy Sell Private Lable Rights','https://plrsitebuilder.co.in/plr/dipsey',99995,5,0,0,0,50,1732773665),(226,1,137,'Landslide Advertising Campaign','https://youradvertisingcenter.com/main.cgi?ad3790',99995,5,0,0,0,50,1734916108),(256,1,298,'You Have Only One Job','http://atripleinstant.com',346,79,1,0,0,50,1773511531),(230,1,226,'FOR FREE - The Rival','https://clicktrakr.biz/ODdrCKGqlY',0,125,0,0,0,50,1756870144),(271,1,75,'How I\'d Make $10k/Mo With AI','https://docs.google.com/spreadsheets/d/1O88jLSztBuL2ybCaf9KRLpG2PexP5Tyf6xiCdKtC6DI/edit#gid=2499605',39989,11,0,0,0,50,1753763033),(294,1,75,'5 Dollar Friday New 2.0 Site','https://5dollarfriday.my.canva.site/',3998,2,0,0,0,50,1752166512),(297,1,441,'Avs Digi Zone â€“ Your Ultimat','https://avsdigizone.ebsitemate.com/',193,7,0,0,0,50,1772590854),(290,1,9,'No Cost Social Media Course','https://gohere247.com/smw',21996,4,0,0,0,50,1766563522),(287,1,396,'Access to the Entire Web','https://www.entireweb.com/?a=payperclickmoney',0,0,0,0,0,50,0),(305,1,51,'Post 1K Of Ads Per Day','https://llclick.com/b2cb33y9/soloswaps',20000,0,0,0,0,50,0),(291,1,75,'New Five Dollar Friday 2.0','https://5dollarfriday.idevaffiliate.com/127.html',2747,3,0,0,0,50,1758612559),(307,1,51,'Generate Up to 7,810 LeadsÂ An','https://lllpg.com/c8w87jry/soloswaps',20000,0,0,0,0,50,0),(292,1,405,'Hi, These Are My Top 10 Favori','http://submitads4free.com/promobanners.php?aff=563',407,18,0,0,0,50,1775979144),(293,1,75,'Frank Andres New Website 2.0','https://docs.google.com/document/d/1leWE_aFgO_Gc32M8qPJeKJBz7YfqhhBmlmgNtIGQirQ/edit',2997,3,0,0,0,50,1763273770),(288,1,401,'EARN 4 FIGURES A WEEK NO BS!','https://lllpg.com/mdjdnwnf/soloswaps/',407,18,1,0,0,50,1772153263),(304,1,51,'What if 1 link = 1,000 Promote','https://llclick.com/3dhyzryg/soloswaps',20000,0,0,0,0,50,0),(306,1,51,'Post on the Site Then Share an','https://llclick.com/j47pbrkt/soloswaps',20000,0,0,0,0,50,0),(303,1,51,'Generate 5 to 10 Leads Daily W','https://llclickpro.com/r/Moreleads/soloswaps',20000,0,0,0,0,50,0),(308,1,448,'Never Pay Processing Fees','https://app.freeforyou.com/ir/2xi4',597,3,0,0,0,50,1772619459);
/*!40000 ALTER TABLE `oto_mtexts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_multiple_downline_builders`
--

DROP TABLE IF EXISTS `oto_multiple_downline_builders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_multiple_downline_builders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `pageid` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_multiple_downline_builders`
--

LOCK TABLES `oto_multiple_downline_builders` WRITE;
/*!40000 ALTER TABLE `oto_multiple_downline_builders` DISABLE KEYS */;
INSERT INTO `oto_multiple_downline_builders` (`id`, `title`, `pageid`) VALUES (1,'Traffic & Banner Exchanges',1),(2,'Safelists & Viral Mailers',5),(3,'Hybrid Mailer and Traffic Sites',6),(4,'Biz Opps',7),(5,'Crypto & Investment',8);
/*!40000 ALTER TABLE `oto_multiple_downline_builders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_opentabs`
--

DROP TABLE IF EXISTS `oto_opentabs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_opentabs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `timeclicked` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL DEFAULT 0,
  `openedkey` varchar(50) NOT NULL DEFAULT 'none',
  PRIMARY KEY (`id`),
  KEY `timeclicked` (`timeclicked`),
  KEY `userid` (`userid`),
  KEY `openedkey` (`openedkey`)
) ENGINE=MyISAM AUTO_INCREMENT=9815 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_opentabs`
--

LOCK TABLES `oto_opentabs` WRITE;
/*!40000 ALTER TABLE `oto_opentabs` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_opentabs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_oto_groups`
--

DROP TABLE IF EXISTS `oto_oto_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_oto_groups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `groupname` varchar(50) NOT NULL DEFAULT '',
  `splitmirror` int(11) NOT NULL DEFAULT 0,
  `percent` int(11) NOT NULL DEFAULT 0,
  `highnum` int(11) NOT NULL DEFAULT 0,
  `lownum` int(11) NOT NULL DEFAULT 0,
  `days` int(11) NOT NULL DEFAULT 0,
  `acctype` int(11) NOT NULL DEFAULT 1,
  `groupshown` int(11) NOT NULL DEFAULT 0,
  `groupbought` int(11) NOT NULL DEFAULT 0,
  `groupsales` decimal(10,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_oto_groups`
--

LOCK TABLES `oto_oto_groups` WRITE;
/*!40000 ALTER TABLE `oto_oto_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_oto_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_oto_offers`
--

DROP TABLE IF EXISTS `oto_oto_offers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_oto_offers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `offername` varchar(50) NOT NULL DEFAULT '',
  `groupid` int(11) NOT NULL DEFAULT 0,
  `rank` int(11) NOT NULL DEFAULT 0,
  `ipn` varchar(50) NOT NULL DEFAULT '0',
  `text` longtext NOT NULL,
  `timesshown` int(11) NOT NULL DEFAULT 0,
  `timesbought` int(11) NOT NULL DEFAULT 0,
  `sales` decimal(10,2) NOT NULL DEFAULT 0.00,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_oto_offers`
--

LOCK TABLES `oto_oto_offers` WRITE;
/*!40000 ALTER TABLE `oto_oto_offers` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_oto_offers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_oto_stats`
--

DROP TABLE IF EXISTS `oto_oto_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_oto_stats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `groupid` int(11) DEFAULT 0,
  `userid` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_oto_stats`
--

LOCK TABLES `oto_oto_stats` WRITE;
/*!40000 ALTER TABLE `oto_oto_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_oto_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_pages_backups`
--

DROP TABLE IF EXISTS `oto_pages_backups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_pages_backups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `savetime` datetime NOT NULL,
  `pageid` int(11) NOT NULL DEFAULT 0,
  `template_data` mediumtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=45 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_pages_backups`
--

LOCK TABLES `oto_pages_backups` WRITE;
/*!40000 ALTER TABLE `oto_pages_backups` DISABLE KEYS */;
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (1,'2022-05-08 13:44:35',2,''),(2,'2022-05-09 06:44:35',2,'<table align=\"center\" border=\"0\" cellpadding=\"10\" cellspacing=\"1\" style=\"width: 600px;\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"text-align: center;\">â€‹<img alt=\"\" src=\"https://imgur.com/4O00CIQ.png\" style=\"opacity: 0.9; height: 225px; width: 751px;\" /></td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center;\">\r\n			<table align=\"center\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" style=\"width: 580px;\">\r\n				<tbody>\r\n					<tr>\r\n						<td style=\"text-align: center;\">Â \r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\">â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Kurt Stockhausen</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>Tapestri</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/IFxDJiW.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />Â  Â Earn a Monthly Income with a FREE AppÂ Â <br style=\"text-align: center;\" />\r\n												<a href=\"https://www.thewinnersteam.live/go/reps/goodworks/lcp\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://scontent-iad3-2.xx.fbcdn.net/v/t1.6435-9/176357664_10221323436128782_3453262083207583010_n.jpg?_nc_cat=109&ccb=1-5&_nc_sid=09cbfe&_nc_ohc=Bu66fzXA8GIAX-6SyVq&_nc_ht=scontent-iad3-2.xx&oh=00_AT8UNCcLf8QeBQ0IpR6MwA-RxK8FU1dADpNZnbpTozXigg&oe=6264C7C6\" style=\"opacity: 0.9; text-align: center; width: 42px; height: 42px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p><span style=\"font-size:14px;\">Courtesy of Jason Stewart</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹3 Hour Cash Machine</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/hwTKxv3.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />Â  Â  Â  Â FREE money making system [NEW!]Â  Â  Â  Â  Â  Â <br style=\"text-align: center;\" />\r\n												<a href=\"https://llpgpro.com/3hcmsystem/prizewall\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.imgur.com/pqDcuGo.jpg\" style=\"opacity: 0.9; text-align: center; width: 42px; height: 42px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p><span style=\"font-size:14px;\">Courtesy of Frank L. Sturgis III</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>Top 51 Website Traffic Resources</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/lDC4tQe.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />Â  Â  Get millions of visitors with High quality videos pack Â gift<br style=\"text-align: center;\" />\r\n												<a href=\"https://sturgismarket.us/top-51-traffic-sources-go-viral/\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p>Â </p>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://seniorsandretirees.com/wp-content/uploads/2022/03/FredRaley2-Green-Look-Right-237x237-1.jpg\" style=\"opacity: 0.9; text-align: center; width: 42px; height: 42px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Fred Raley</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹Free Video - Get $400 Payments</p>\r\n												<img alt=\"\" src=\"https://seniorsandretirees.com/wp-content/uploads/2022/03/Digital-Wealth-Pro-1080x1080-6.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />How to get $400 instant payÂ  Â  without speaking to anyone.Â Â  Â <br style=\"text-align: center;\" />\r\n												<a href=\"https://seniorsandretirees.com/dwp-lcp/\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\">â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Richard Deauna</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹Crypto Siphon</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/DSGh0Qm.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />Get Free Crypto By SimpleÂ  Â  Â Sharing Other Peoples Content.Â Â  Â <br style=\"text-align: center;\" />\r\n												<a href=\"https://makingprofitmyway.com/index.php/crypto-siphon/\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\">â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Michael Camire</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹Login Ad Explosion</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/C2p5RRe.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />Get Your Ad Seen on 20+ sitesÂ  Â  Â  Â for 15 seconds as login offer.Â Â  Â <br style=\"text-align: center;\" />\r\n												<a href=\"https://loginadexplosion.com/?rid=2\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p>Â </p>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.imgur.com/Ul9w1rF.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Tyrone C</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>PowerAdProfits</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/ZBtGXib.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />Â  Â  Â  Â  Â  Â  Â  Â  Affiliate marketingÂ  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â <br style=\"text-align: center;\" />\r\n												<a href=\"https://poweradprofits.com/millionairman\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.imgur.com/pRdYpq7.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Scott Bos</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>Zero Cost Traffic Tactic</p>\r\n												<img alt=\"\" src=\"https://abhisiblob.blob.core.windows.net/abhisi/2950/attachments/673967_Zero%20Cost%20Traffic%20Tactic.jpg\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />How To Generate Website Traffic Without Paying A CentÂ Â  Â <br style=\"text-align: center;\" />\r\n												<a href=\"https://www.dropbox.com/s/kre2xbue2ntrvxw/Zero{4391e37be94f861549e60da0ae9f808ec51edd7c08376995db85ae5b02a51eeb}2BCost{4391e37be94f861549e60da0ae9f808ec51edd7c08376995db85ae5b02a51eeb}2BTraffic{4391e37be94f861549e60da0ae9f808ec51edd7c08376995db85ae5b02a51eeb}2BTactics.pdf?dl=0\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.imgur.com/23Vuc65.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p><span style=\"font-size:12px;\">Courtesy of Robert Brooks</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹All in One Business</p>\r\n												<img alt=\"\" src=\"https://automaticbuilder.com/images/banners/Arsenal125.gif\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">Â  Â Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â </span>Complete <span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span><span style=\"text-align: center;\">Â  Â </span>Funnel BuilderÂ  Â <br style=\"text-align: center;\" />\r\n												<a href=\"https://academy.samcart.com/products/allinone?sc_ref=8wHzvWp3nyzou0kg\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p>Â </p>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.imgur.com/yUZJj5i.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Herb Ratsch</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>Â  Â  Â Premium Software Giveaway</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/IKel5j4.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />Â  Â  Â  Â FREE Premium Software Giveaway!Â  Â  Â  Â  Â Â <br style=\"text-align: center;\" />\r\n												<a href=\"https://herbratsch.net/FREE-software-GGW\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://knowledge4traffic.com/img/loguito2.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p><span style=\"font-size:13px;\">Courtesy of Hermann Bock</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹Underdog Traffic Methods</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/alrpyvR.png\" style=\"width: 200px; height: 175px; display: block; margin-left: auto; margin-right: auto;\" />Â  Â Proven Tactics for Getting the Most outÂ  of Viral Mailers and Safelists<br style=\"text-align: center;\" />\r\n												<a href=\"https://mrbockreviews.com/toolkit-giveaway/\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\">â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Don Leopard</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹FUEL FACTOR X</p>\r\n\r\n												<p><img height=\"200\" src=\"https://i.imgur.com/XgfOJCE.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" width=\"200\" /></p>\r\n\r\n												<p>Â Save Money At The Pump...Â <br style=\"text-align: center;\" />\r\n												<a href=\"https://retirefromhome.com/page/191/donleopard\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹</p>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p>Â </p>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.imgur.com/hk7gUPh.jpg\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Gregory Cassius</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹Flying Solo Ads</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/km1H3TX.png\" style=\"width: 200px; height: 185px; display: block; margin-left: auto; margin-right: auto;\" />Â  Â <span data-sheets-userformat=\"{\"2\":515,\"3\":{\"1\":0},\"4\":{\"1\":2,\"2\":16776960},\"12\":0}\" data-sheets-value=\"{\"1\":2,\"2\":\" Grab 50,000 FREE Mailing Credits+JV Upgrade Sign Up\\r\\nFREE!\"}\" style=\"color: rgb(0, 0, 0); font-size: 10pt; font-family: Arial;\">Grab 50,000 FREE Mailing Credits+JV Upgrade Sign Up FREE!</span><br style=\"text-align: center;\" />\r\n												<a href=\"http://flyingsoloads.com/splashpage.php?ref=profitideas\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />Â  Â This is a product description ofÂ Â this freeÂ gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />Â  Â This is a product description ofÂ Â this freeÂ gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n\r\n			<p><br />\r\n			â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>'),(3,'2022-05-21 08:33:25',2,'<table align=\"center\" border=\"0\" cellpadding=\"10\" cellspacing=\"1\" style=\"width: 600px;\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"text-align: center;\">â€‹<img alt=\"\" src=\"https://imgur.com/4O00CIQ.png\" style=\"opacity: 0.9; height: 225px; width: 751px;\" /></td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center;\">\r\n			<table align=\"center\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" style=\"width: 580px;\">\r\n				<tbody>\r\n					<tr>\r\n						<td style=\"text-align: center;\">\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of <span style=\"text-align: center; background-color: rgb(254, 198, 52);\">(Name)</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">â€‹â€‹PRODUCT NAME</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<a href=\"http://flyingsoloads.com/splashpage.php?ref=profitideas\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of <span style=\"text-align: center; background-color: rgb(254, 198, 52);\">(Name)</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">â€‹â€‹PRODUCT NAME</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<a href=\"http://flyingsoloads.com/splashpage.php?ref=profitideas\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of <span style=\"text-align: center; background-color: rgb(254, 198, 52);\">(Name)</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">â€‹â€‹PRODUCT NAME</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<a href=\"http://flyingsoloads.com/splashpage.php?ref=profitideas\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n						<td>&nbsp;</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<p><br />\r\nâ€‹â€‹</p>\r\n\r\n<div>&nbsp;</div>'),(4,'2022-06-02 10:07:28',2,'<table align=\"center\" border=\"0\" cellpadding=\"10\" cellspacing=\"1\" style=\"width: 600px;\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"text-align: center;\">â€‹<img alt=\"\" src=\"https://imgur.com/4O00CIQ.png\" style=\"opacity: 0.9; height: 225px; width: 751px;\" /></td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center;\">\r\n			<table align=\"center\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" style=\"width: 580px;\">\r\n				<tbody>\r\n					<tr>\r\n						<td style=\"text-align: center;\">\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/01/FredRaley2-transparent.png\" style=\"opacity: 0.9; text-align: center; width: 42px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Fred Raley</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">Killer Headlines That Can Increase Your Income</span></p>\r\n												<img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/10/300PowerHeadlines-1080x1080-1.png\" style=\"width: 152px; height: 152px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;Headlines, Titles and Text Links Can Make Sales for You When You Do Them Right</span><br style=\"text-align: center;\" />\r\n												<a href=\"https://trafficleadsnsales.com/headlines-to-make-you-a-fortune/\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p>&nbsp;</p>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of <span style=\"text-align: center; background-color: rgb(254, 198, 52);\">(Name)</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">â€‹â€‹PRODUCT NAME</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<a href=\"http://flyingsoloads.com/splashpage.php?ref=profitideas\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p>&nbsp;</p>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of <span style=\"text-align: center; background-color: rgb(254, 198, 52);\">(Name)</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">â€‹â€‹PRODUCT NAME</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<a href=\"http://flyingsoloads.com/splashpage.php?ref=profitideas\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n						<td>&nbsp;</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>'),(5,'2022-06-25 06:30:32',2,'<table align=\"center\" border=\"0\" cellpadding=\"10\" cellspacing=\"1\" style=\"width: 600px;\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"text-align: center;\">â€‹<img alt=\"\" src=\"https://imgur.com/4O00CIQ.png\" style=\"opacity: 0.9; height: 225px; width: 751px;\" /></td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center;\">\r\n			<table align=\"center\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" style=\"width: 580px;\">\r\n				<tbody>\r\n					<tr>\r\n						<td style=\"text-align: center;\">\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/01/FredRaley2-transparent.png\" style=\"opacity: 0.9; text-align: center; width: 42px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Fred Raley</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">Killer Headlines That Can Increase Your Income</span></p>\r\n												<img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/10/300PowerHeadlines-1080x1080-1.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;Headlines, Titles and Text Links Can Make Sales for You When You Do Them Right</span><br style=\"text-align: center;\" />\r\n												<a href=\"https://trafficleadsnsales.com/headlines-to-make-you-a-fortune/\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.imgur.com/p8rSR24.jpg\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of Gordon Hunsucker</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"font-family: Lato, Arial, Helvetica, sans-serif;\">SHUFFLER</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/uyMZ6fS.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"font-family: Lato, Arial, Helvetica, sans-serif;\">How o Make Shuffler Commissions of Up To $200 + A Pop/Per Listin By Running Autopilot Banner Ads</span><a href=\"https://www.getshuffler.com/squeezepage.php?fid=849769\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />\r\n												<p>&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<span style=\"text-align: center;\">free&nbsp;gift free&nbsp;gift free&nbsp;gift free&nbsp;giftfree&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</p>\r\n												</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p>&nbsp;</p>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of <span style=\"text-align: center; background-color: rgb(254, 198, 52);\">(Name)</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">â€‹â€‹PRODUCT NAME</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<a href=\"http://flyingsoloads.com/splashpage.php?ref=profitideas\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p>&nbsp;</p>\r\n\r\n						<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"1\" id=\"3columns-3profiles\" style=\"text-align: center; height: 200px; width: 600px;\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of <span style=\"text-align: center; background-color: rgb(254, 198, 52);\">(Name)</span></p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p><span style=\"text-align: center;\">â€‹â€‹PRODUCT NAME</span></p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" /><span style=\"text-align: center;\">&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift</span><br style=\"text-align: center;\" />\r\n												<a href=\"http://flyingsoloads.com/splashpage.php?ref=profitideas\" target=\"_blank\"><img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" /></a>â€‹â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n									<td>\r\n									<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"1\" id=\"profile-content\" style=\"width: 250px;\">\r\n										<tbody>\r\n											<tr>\r\n												<td>\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<table align=\"center\" border=\"0\" cellpadding=\"5\" cellspacing=\"0\" style=\"width: 250px;\">\r\n													<tbody>\r\n														<tr>\r\n															<td style=\"text-align: left; background-color: #fec634;\"><img alt=\"\" src=\"https://i.postimg.cc/rwgkDzdm/Gogiver-profile-pic.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" />â€‹</td>\r\n															<td style=\"background-color: #fec634;\">\r\n															<p>Courtesy of (Name)</p>\r\n															</td>\r\n														</tr>\r\n													</tbody>\r\n												</table>\r\n\r\n												<p>â€‹â€‹PRODUCT NAME</p>\r\n												<img alt=\"\" src=\"https://i.imgur.com/3NpAWms.png\" style=\"width: 200px; height: 200px; display: block; margin-left: auto; margin-right: auto;\" />&nbsp; &nbsp;This is a product description of&nbsp;&nbsp;this free&nbsp;gift<br style=\"text-align: center;\" />\r\n												<img alt=\"\" src=\"https://i.postimg.cc/JnFv6z0S/claimt-it-now.png\" style=\"width: 200px; height: 58px;\" />â€‹â€‹â€‹</td>\r\n											</tr>\r\n										</tbody>\r\n									</table>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						</td>\r\n						<td>&nbsp;</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>'),(6,'2022-06-24 15:38:21',3,''),(7,'2022-06-25 08:38:21',3,'<html>\r\n<head>\r\n<meta charset=\"utf-8\">\r\n<title>Affiliate_Tools</title>\r\n</head>\r\n\r\n<body width=\"70%\">\r\n	<br>\r\n	<font \r\n		  face=\"Poppins\"\r\n	    <b>\r\n	    <center>\r\n		<font\r\n			  size=\"20px\">\r\n			Your Affiliate Link\r\n		</font>\r\n		</b>\r\n	    <br>\r\n            #REFURL#\r\n	    <br>\r\n	    <br>\r\n	        <table border=\"1\" cellpadding=\"10\" cellspacing=\"0rem\" style=\"width:15rem;\">\r\n	<tbody>\r\n		<tr style=\"background-color:#00E19F\">\r\n			<td style=\"text-align: center;\">\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">Banner</span></strong></p>\r\n\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">(300x600)</span></strong></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Instagram</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1080x1080)</strong></span></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Facebook</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1080x1920)</strong></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=8\" style=\"width: 15rem; height: 30rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"width:15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;a href=&quot;#REFURL#&quot;&gt;&lt;img src=&quot;https://soloswaps.com/getimg.php?id=8&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=1\" style=\"width: 15rem; height: 15rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;a href=&quot;#REFURL#&quot;&gt;&lt;img src=&quot;https://soloswaps.com/getimg.php?id=1&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=3\" style=\"width: 15rem; height: 26.688;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;a href=&quot;#REFURL#&quot;&gt;&lt;img src=&quot;https://soloswaps.com/getimg.php?id=3&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n	\r\n	<br>\r\n	\r\n	<table border=\"1\" cellpadding=\"10\" cellspacing=\"0\" style=\"width:15rem;\">\r\n	<tbody>\r\n		<tr style=\"background-color:#00E19F\">\r\n			<td style=\"text-align: center;\">\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">Facebook Mobile Cover</span></strong></p>\r\n\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">(851x315)</span></strong></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Banner</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(300x250)</strong></span></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Linkedin</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1200x627)</strong></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=2\" style=\"width: 15rem; height: 5.563rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"width:15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;a href=&quot;#REFURL#&quot;&gt;&lt;img src=&quot;https://soloswaps.com/getimg.php?id=2&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=7\" style=\"width: 15rem; height: 12.5rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;a href=&quot;#REFURL#&quot;&gt;&lt;img src=&quot;https://soloswaps.com/getimg.php?id=7&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=4\" style=\"width: 15rem; height: 7.875rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;a href=&quot;#REFURL#&quot;&gt;&lt;img src=&quot;https://soloswaps.com/getimg.php?id=4&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n	\r\n        </font>\r\n		</center>\r\n\r\n</body>\r\n</html>'),(8,'2022-06-25 08:38:26',3,'<html>\r\n<head>\r\n<meta charset=\"utf-8\">\r\n<title>Affiliate_Tools</title>\r\n</head>\r\n\r\n<body width=\"70%\">\r\n	<br>\r\n	<font \r\n		  face=\"Poppins\"\r\n	    <b>\r\n	    <center>\r\n		<font\r\n			  size=\"20px\">\r\n			Your Affiliate Link\r\n		</font>\r\n		</b>\r\n	    <br>\r\n            #REFURL#\r\n	    <br>\r\n	    <br>\r\n	        <table border=\"1\" cellpadding=\"10\" cellspacing=\"0rem\" style=\"width:15rem;\">\r\n	<tbody>\r\n		<tr style=\"background-color:#00E19F\">\r\n			<td style=\"text-align: center;\">\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">Banner</span></strong></p>\r\n\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">(300x600)</span></strong></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Instagram</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1080x1080)</strong></span></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Facebook</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1080x1920)</strong></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=8\" style=\"width: 15rem; height: 30rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"width:15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><a href=\"#REFURL#\"><img src=\"https://soloswaps.com/getimg.php?id=8\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=1\" style=\"width: 15rem; height: 15rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><a href=\"#REFURL#\"><img src=\"https://soloswaps.com/getimg.php?id=1\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=3\" style=\"width: 15rem; height: 26.688;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><a href=\"#REFURL#\"><img src=\"https://soloswaps.com/getimg.php?id=3\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n	\r\n	<br>\r\n	\r\n	<table border=\"1\" cellpadding=\"10\" cellspacing=\"0\" style=\"width:15rem;\">\r\n	<tbody>\r\n		<tr style=\"background-color:#00E19F\">\r\n			<td style=\"text-align: center;\">\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">Facebook Mobile Cover</span></strong></p>\r\n\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">(851x315)</span></strong></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Banner</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(300x250)</strong></span></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Linkedin</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1200x627)</strong></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=2\" style=\"width: 15rem; height: 5.563rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"width:15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><a href=\"#REFURL#\"><img src=\"https://soloswaps.com/getimg.php?id=2\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=7\" style=\"width: 15rem; height: 12.5rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><a href=\"#REFURL#\"><img src=\"https://soloswaps.com/getimg.php?id=7\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=4\" style=\"width: 15rem; height: 7.875rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><a href=\"#REFURL#\"><img src=\"https://soloswaps.com/getimg.php?id=4\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n	\r\n        </font>\r\n		</center>\r\n\r\n</body>\r\n</html>'),(9,'2022-06-25 08:44:49',3,'<html>\r\n<head>\r\n<meta charset=\"utf-8\">\r\n<title>Affiliate_Tools</title>\r\n</head>\r\n\r\n<body width=\"70%\">\r\n	<br>\r\n	<font \r\n		  face=\"Poppins\"\r\n	    <b>\r\n	    <center>\r\n		<font\r\n			  size=\"20px\">\r\n			Your Affiliate Link\r\n		</font>\r\n		</b>\r\n	    <br>\r\n            #REFURL#\r\n	    <br>\r\n	    <br>\r\n	        <table border=\"1\" cellpadding=\"10\" cellspacing=\"0rem\" style=\"width:15rem;\">\r\n	<tbody>\r\n		<tr style=\"background-color:#00E19F\">\r\n			<td style=\"text-align: center;\">\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">Banner</span></strong></p>\r\n\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">(300x600)</span></strong></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Instagram</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1080x1080)</strong></span></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Facebook</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1080x1920)</strong></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=8\" style=\"width: 15rem; height: 30rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"width:15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;*a href=&quot;#REFURL#&quot;&gt;&lt;*img src=&quot;https://soloswaps.com/getimg.php?id=8&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=1\" style=\"width: 15rem; height: 15rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;*a href=&quot;#REFURL#&quot;&gt;&lt;*img src=&quot;https://soloswaps.com/getimg.php?id=1&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=3\" style=\"width: 15rem; height: 26.688;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;*a href=&quot;#REFURL#&quot;&gt;&lt;*img src=&quot;https://soloswaps.com/getimg.php?id=3&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n	\r\n	<br>\r\n	\r\n	<table border=\"1\" cellpadding=\"10\" cellspacing=\"0\" style=\"width:15rem;\">\r\n	<tbody>\r\n		<tr style=\"background-color:#00E19F\">\r\n			<td style=\"text-align: center;\">\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">Facebook Mobile Cover</span></strong></p>\r\n\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">(851x315)</span></strong></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Banner</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(300x250)</strong></span></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Linkedin</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1200x627)</strong></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=2\" style=\"width: 15rem; height: 5.563rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"width:15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;*a href=&quot;#REFURL#&quot;&gt;&lt;*img src=&quot;https://soloswaps.com/getimg.php?id=2&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=7\" style=\"width: 15rem; height: 12.5rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;*a href=&quot;#REFURL#&quot;&gt;&lt;*img src=&quot;https://soloswaps.com/getimg.php?id=7&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=4\" style=\"width: 15rem; height: 7.875rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p>&lt;*a href=&quot;#REFURL#&quot;&gt;&lt;*img src=&quot;https://soloswaps.com/getimg.php?id=4&quot;&gt;&lt;/a&gt;</p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n	\r\n        </font>\r\n		</center>\r\n\r\n</body>\r\n</html>'),(10,'2022-06-25 08:44:57',3,'<html>\r\n<head>\r\n<meta charset=\"utf-8\">\r\n<title>Affiliate_Tools</title>\r\n</head>\r\n\r\n<body width=\"70%\">\r\n	<br>\r\n	<font \r\n		  face=\"Poppins\"\r\n	    <b>\r\n	    <center>\r\n		<font\r\n			  size=\"20px\">\r\n			Your Affiliate Link\r\n		</font>\r\n		</b>\r\n	    <br>\r\n            #REFURL#\r\n	    <br>\r\n	    <br>\r\n	        <table border=\"1\" cellpadding=\"10\" cellspacing=\"0rem\" style=\"width:15rem;\">\r\n	<tbody>\r\n		<tr style=\"background-color:#00E19F\">\r\n			<td style=\"text-align: center;\">\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">Banner</span></strong></p>\r\n\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">(300x600)</span></strong></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Instagram</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1080x1080)</strong></span></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Facebook</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1080x1920)</strong></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=8\" style=\"width: 15rem; height: 30rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"width:15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=8\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=1\" style=\"width: 15rem; height: 15rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=1\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=3\" style=\"width: 15rem; height: 26.688;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=3\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n	\r\n	<br>\r\n	\r\n	<table border=\"1\" cellpadding=\"10\" cellspacing=\"0\" style=\"width:15rem;\">\r\n	<tbody>\r\n		<tr style=\"background-color:#00E19F\">\r\n			<td style=\"text-align: center;\">\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">Facebook Mobile Cover</span></strong></p>\r\n\r\n			<p><strong><span style=\"font-size:1.125rem; color:white\">(851x315)</span></strong></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Banner</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(300x250)</strong></span></p>\r\n			</td>\r\n			<td style=\"text-align: center;\">\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>Linkedin</strong></span></p>\r\n\r\n			<p><span style=\"font-size:1.125rem; color:white\"><strong>(1200x627)</strong></span></p>\r\n			</td>\r\n		</tr>\r\n		<tr>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=2\" style=\"width: 15rem; height: 5.563rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"width:15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=2\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=7\" style=\"width: 15rem; height: 12.5rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=7\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n			<td style=\"text-align: center; vertical-align:top;\">\r\n			<p><img src=\"https://soloswaps.com/getimg.php?id=4\" style=\"width: 15rem; height: 7.875rem;\" />â€‹</p>\r\n			<p>Use this html code in your web page</p>\r\n\r\n			<table border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"text-align: center; width: 15rem;\">\r\n				<tbody>\r\n					<tr>\r\n						<td>\r\n						<p><*a href=\"#REFURL#\"><*img src=\"https://soloswaps.com/getimg.php?id=4\"></a></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n	\r\n        </font>\r\n		</center>\r\n\r\n</body>\r\n</html>'),(27,'2022-07-16 13:30:36',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-mykV5kBmj\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_0B_RL0mW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_0B_RL0mW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-wF9xQwkGJX\"><strong><u>WARNING ! </u></strong>Please make sure to copy your code and then</h1><p class=\"gp-component-id-uIV6g1oHy\">delete theÂ asterisks (*) that are inside of the code.</p></div><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/IXFkq5C.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Mih0rBN.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Vz0Wl69.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/zNGTlTi.jpg\"*><*/a></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/hKx5hvb.gif\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/ddwdwLd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/3ii7Hwd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/gu4vtKd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/MRBjnCT.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (28,'2022-07-16 13:37:08',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_0B_RL0mW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_0B_RL0mW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-wF9xQwkGJX\"><strong><u>WARNING ! </u></strong>Please make sure to copy your code and then</h1><p class=\"gp-component-id-uIV6g1oHy\">delete theÂ asterisks (*) that are inside of the code.</p></div><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/IXFkq5C.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Mih0rBN.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Vz0Wl69.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/zNGTlTi.jpg\"*><*/a></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/hKx5hvb.gif\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/ddwdwLd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/3ii7Hwd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/gu4vtKd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/MRBjnCT.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (29,'2022-07-16 13:49:17',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_0B_RL0mW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_0B_RL0mW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-wF9xQwkGJX\"><strong><u>WARNING ! </u></strong>Please make sure to copy your code and then</h1><p class=\"gp-component-id-uIV6g1oHy\">delete theÂ asterisks (*) that are inside of the code.</p></div><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/IXFkq5C.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Mih0rBN.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Vz0Wl69.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/zNGTlTi.jpg\"*><*/a></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/hKx5hvb.gif\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/ddwdwLd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/3ii7Hwd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/gu4vtKd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/MRBjnCT.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (30,'2022-07-19 16:08:25',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><br><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/IXFkq5C.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Mih0rBN.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Vz0Wl69.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/zNGTlTi.jpg\"*><*/a></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/hKx5hvb.gif\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/ddwdwLd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/3ii7Hwd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/gu4vtKd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/MRBjnCT.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (31,'2022-07-19 16:11:36',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><br><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/IXFkq5C.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Mih0rBN.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Vz0Wl69.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/zNGTlTi.jpg\"*><*/a></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/hKx5hvb.gif\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/ddwdwLd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/3ii7Hwd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/gu4vtKd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/MRBjnCT.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (32,'2022-07-19 16:14:37',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><br><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/IXFkq5C.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Mih0rBN.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Vz0Wl69.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/zNGTlTi.jpg\"*><*/a></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/hKx5hvb.gif\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/ddwdwLd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/3ii7Hwd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/gu4vtKd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/MRBjnCT.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (33,'2022-07-19 16:26:48',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><br><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/IXFkq5C.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Mih0rBN.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Vz0Wl69.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/zNGTlTi.jpg\"></code><</code>/a></code></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/hKx5hvb.gif\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/ddwdwLd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/3ii7Hwd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/gu4vtKd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/MRBjnCT.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (34,'2022-07-26 06:13:04',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><br><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/IXFkq5C.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Mih0rBN.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Vz0Wl69.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/zNGTlTi.jpg\"></code><</code>/a></code></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/hKx5hvb.gif\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/ddwdwLd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/3ii7Hwd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/gu4vtKd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/MRBjnCT.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n<div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/MRBjnCT.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (35,'2022-07-26 06:15:01',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><br><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/IXFkq5C.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Mih0rBN.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Vz0Wl69.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/zNGTlTi.jpg\"></code><</code>/a></code></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/hKx5hvb.gif\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/ddwdwLd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/3ii7Hwd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/gu4vtKd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/MRBjnCT.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n<div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">600x300px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/JW8Ix8L.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/JW8Ix8L.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (36,'2022-10-08 08:01:29',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><br><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/IXFkq5C.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Mih0rBN.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Vz0Wl69.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/zNGTlTi.jpg\"></code><</code>/a></code></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/hKx5hvb.gif\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/ddwdwLd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/3ii7Hwd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/gu4vtKd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/MRBjnCT.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n<div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">600x300px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/JW8Ix8L.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/JW8Ix8L.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (37,'2022-11-22 06:22:13',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add these banners to your site</h2></div><br><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/IXFkq5C.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Mih0rBN.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/4Xqa4c3.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/Vz0Wl69.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/zNGTlTi.jpg\"></code><</code>/a></code></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/hKx5hvb.gif\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/V5L606K.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><code><<code>a href=\"#REFURL#\"*><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/SPbNDkh.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/ddwdwLd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/3ii7Hwd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/gu4vtKd.jpg\"></code><</code>/a></code></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/MRBjnCT.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n<div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">600x300px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/JW8Ix8L.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><code><<code>a href=\"#REFURL#\"><<code>img src=\"https://i.imgur.com/JW8Ix8L.jpg\"></code><</code>/a></code></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(38,'2023-09-21 13:39:27',9,''),(39,'2023-09-22 06:39:27',9,'<table style=\"max-width: 1140px;\" border=\"0\" cellspacing=\"1\" cellpadding=\"1\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p style=\"text-align: center; max-width: 1140px\"><img style=\"opacity: 0.9; max-width: 1000px; margin-bottom: 20px; max-height: 185px;\" src=\"https://imgur.com/ym7bROy.png\" alt=\"\" align=\"center\" /><br /> â€‹â€‹<strong style=\"color: #0000ff; font-size: 24px;\"><a style=\"color: #0000ff;\" href=\"https://trafficbuildr.com/members.php?page=bsts\" target=\"_blank\" rel=\"noopener\"><u>Click Here to Post Your Store Item</u></a></strong></p>\r\n\r\n\r\n<!-- starts table test -->\r\n<table cellpadding=\"0\" align=\"center\" border=\"1\" width=\"1140px\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262\">\r\n						<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://imgur.com/mP4wKWG.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By Mathias MatsAbeOnnlline</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" src=\"https://i.imgur.com/smRbJQ6.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"http://simplified.funnelsleadtoprofits.com/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td  style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://imgur.com/FdaVjBt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By Richard Carpenter</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/fPd0TK0.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://trckapp.com/7ng96h28\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://imgur.com/CIM3QGs.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By Fred Raley</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/pgD1HuM.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://trafficleadsnsales.com/headlines-to-make-you-a-fortune/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/NvUcBAp.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By Michael Camire</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/md0bo7B.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://7dollarads.com/?rid=5\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QJtPlDB.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By Frank L. Sturgis III</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/Ykpf1Rx.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://drive.google.com/file/d/17W36cWIdJsa2R54Rm4BN5fBUn5YoYOar/view?usp=sharing\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n\r\n\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/iICdiyY.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By Robert Halcomb</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/0WdYcXJ.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://drive.google.com/file/d/1dLQre_Gv088ltap1XAhs8f1F-Ls4m5Pz/view?usp=sharing\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/oyLg5zK.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By Gordon Wong</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/LUAn5Vy.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://warriorplus.com/o2/a/rkjv1/g2xlqn\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/zkaokg2.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By Julian Spence</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/aSBVTZG.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://promo-bot.com/?id=59873\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n\r\n\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #c8e262;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #045317; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<!-- ends table test -->'),(40,'2023-09-21 13:40:50',10,''),(41,'2023-09-22 06:40:50',10,'<table style=\"max-width: 1140px;\" border=\"0\" cellspacing=\"1\" cellpadding=\"1\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p style=\"text-align: center; max-width: 1140px\"><img style=\"opacity: 0.9; max-width: 1000px; margin-bottom: 20px; max-height: 185px;\" src=\"https://imgur.com/SHEavaD.png\" alt=\"\" align=\"center\" /><br /> â€‹â€‹<strong style=\"color: #0000ff; font-size: 24px;\"><a style=\"color: #0000ff;\" href=\"https://trafficbuildr.com/members.php?page=bsts\" target=\"_blank\" rel=\"noopener\"><u>Click Here to Post Your Store Item</u></a></strong></p>\r\n\r\n\r\n<!-- starts table test -->\r\n<table cellpadding=\"0\" align=\"center\" border=\"1\" width=\"1140px\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n\r\n\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n\r\n\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<!-- ends table test -->'),(42,'2023-09-22 06:41:22',10,'<table style=\"max-width: 1140px;\" border=\"0\" cellspacing=\"1\" cellpadding=\"1\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p style=\"text-align: center; max-width: 1140px\"><img style=\"opacity: 0.9; max-width: 1000px; margin-bottom: 20px; max-height: 185px;\" src=\"https://imgur.com/SHEavaD.png\" alt=\"\" align=\"center\" /><br /> â€‹â€‹<strong style=\"color: #0000ff; font-size: 24px;\"><a style=\"color: #0000ff;\" href=\"https://trafficbuildr.com/members.php?page=bsts\" target=\"_blank\" rel=\"noopener\"><u>Click Here to Post Your Store Item</u></a></strong></p>\r\n\r\n\r\n<!-- starts table test -->\r\n<table cellpadding=\"0\" align=\"center\" border=\"1\" width=\"1140px\">\r\n	<tbody>\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n\r\n\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n\r\n\r\n		<tr>\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n\r\n			<td style=\"width: 20%\">\r\n			<table border=\"0\" width=\"100%\">\r\n				<tbody>\r\n					<tr style=\"background-color: #A03DFA;\">\r\n						<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n						<td style=\"text-align: center; padding:5px\"><span style=\"color: #ffffff; font-size: 15px\">Sponsored By(Name)</span></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n<p align=\"center\"><img style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" src=\"https://imgur.com/AuutRcL.png\" alt=\"\" /></p>\r\n<p align=\"center\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 160px; height: 45px;\" src=\"https://i.imgur.com/cwITVfw.jpg\" alt=\"\" /></a>â€‹â€‹â€‹â€‹</p>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n\r\n<!-- ends table test -->'),(43,'2023-09-22 07:38:11',9,'<table align=\"center\" border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"max-width: 1140px;\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align: center; max-width: 1140px\"><img align=\"center\" alt=\"\" src=\"https://imgur.com/ym7bROy.png\" style=\"opacity: 0.9; max-width: 1000px; margin-bottom: 20px; max-height: 185px;\" /><br />\r\n			â€‹â€‹<a href=\"https://trafficbuildr.com/members.php?page=bsts\" rel=\"noopener\" style=\"\" target=\"_blank\">Click Here to Post Your Store Item</a></p>\r\n			<!-- starts table test -->\r\n\r\n			<table align=\"center\" border=\"1\" cellpadding=\"0\" width=\"1140px\">\r\n				<tbody>\r\n					<tr>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262\">\r\n									<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/01/FredRaley2-transparent.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By Fred Raley</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/10/300PowerHeadlines-1080x1080-1.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://trafficleadsnsales.com/headlines-to-make-you-a-fortune/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://imgur.com/FdaVjBt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By Richard Carpenter</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/fPd0TK0.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://trckapp.com/7ng96h28\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://i.imgur.com/p8rSR24.jpg\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By Gordon Hunsucker</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://i.imgur.com/uyMZ6fS.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://www.getshuffler.com/squeezepage.php?fid=849769\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/NvUcBAp.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By Michael Camire</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/md0bo7B.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://7dollarads.com/?rid=5\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QJtPlDB.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By Frank L. Sturgis III</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/Ykpf1Rx.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://drive.google.com/file/d/17W36cWIdJsa2R54Rm4BN5fBUn5YoYOar/view?usp=sharing\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n					</tr>\r\n					<tr>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/iICdiyY.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By Robert Halcomb</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/0WdYcXJ.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://drive.google.com/file/d/1dLQre_Gv088ltap1XAhs8f1F-Ls4m5Pz/view?usp=sharing\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/oyLg5zK.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By Gordon Wong</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/LUAn5Vy.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://warriorplus.com/o2/a/rkjv1/g2xlqn\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/zkaokg2.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By Julian Spence</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/aSBVTZG.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://promo-bot.com/?id=59873\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n					</tr>\r\n					<tr>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			<!-- ends table test --></td>\r\n		</tr>\r\n	</tbody>\r\n</table>'),(44,'2023-09-22 08:06:35',9,'<table align=\"center\" border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"max-width: 1140px;\">\r\n	<tbody>\r\n		<tr>\r\n			<td>\r\n			<p style=\"text-align: center; max-width: 1140px\"><img align=\"center\" alt=\"\" src=\"https://imgur.com/ym7bROy.png\" style=\"opacity: 0.9; max-width: 1000px; margin-bottom: 20px; max-height: 185px;\" /><br />\r\n			â€‹â€‹<a href=\"https://trafficbuildr.com/members.php?page=bsts\" rel=\"noopener\" style=\"\" target=\"_blank\">Click Here to Post Your Store Item</a></p>\r\n			<!-- starts table test -->\r\n\r\n			<table align=\"center\" border=\"1\" cellpadding=\"0\" width=\"1140px\">\r\n				<tbody>\r\n					<tr>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262\">\r\n									<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/01/FredRaley2-transparent.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By Fred Raley</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://trafficleadsnsales.com/wp-content/uploads/2021/10/300PowerHeadlines-1080x1080-1.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://trafficleadsnsales.com/headlines-to-make-you-a-fortune/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://i.imgur.com/p8rSR24.jpg\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By (Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://i.imgur.com/uyMZ6fS.png\" style=\"width: 200px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://www.getshuffler.com/squeezepage.php?fid=849769\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left; padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n					</tr>\r\n					<tr>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By <span style=\"text-align: center; background-color: rgb(200, 226, 98);\">(Name)</span></td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px;\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n					</tr>\r\n					<tr>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n						<td style=\"width: 20%\">\r\n						<table border=\"0\" width=\"100%\">\r\n							<tbody>\r\n								<tr style=\"background-color: #c8e262;\">\r\n									<td style=\"text-align: left;  padding:5px\"><img alt=\"\" src=\"https://imgur.com/QAczSJt.png\" style=\"opacity: 0.9; text-align: center; width: 50px; height: 50px; float: left;\" /></td>\r\n									<td style=\"text-align: center; padding:5px\">Sponsored By(Name)</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n\r\n						<p align=\"center\"><img alt=\"\" src=\"https://imgur.com/AuutRcL.png\" style=\"width: 150px; height: 200px; display: block; margin-top: 10px\" /></p>\r\n\r\n						<p align=\"center\"><font color=\"#333333\"><a href=\"https://5dollarfriday.org/\" rel=\"noopener\" target=\"_blank\"><img alt=\"\" src=\"https://i.imgur.com/cwITVfw.jpg\" style=\"width: 160px; height: 45px;\" /></a>â€‹â€‹â€‹â€‹</font></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			<!-- ends table test --></td>\r\n		</tr>\r\n	</tbody>\r\n</table>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (23,'2022-07-16 13:24:55',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-mykV5kBmj\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"<a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=4&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=4&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_0B_RL0mW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_0B_RL0mW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-wF9xQwkGJX\"><strong><u>WARNING ! </u></strong>Please make sure to copy your code and then</h1><p class=\"gp-component-id-uIV6g1oHy\">delete theÂ asterisks (*) that are inside of the code.</p></div><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/IXFkq5C.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Mih0rBN.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Vz0Wl69.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/zNGTlTi.jpg\"*><*/a></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/hKx5hvb.gif\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/ddwdwLd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/3ii7Hwd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/gu4vtKd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/MRBjnCT.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (24,'2022-07-16 13:26:17',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-mykV5kBmj\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"<a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_0B_RL0mW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_0B_RL0mW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-wF9xQwkGJX\"><strong><u>WARNING ! </u></strong>Please make sure to copy your code and then</h1><p class=\"gp-component-id-uIV6g1oHy\">delete theÂ asterisks (*) that are inside of the code.</p></div><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/IXFkq5C.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Mih0rBN.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Vz0Wl69.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/zNGTlTi.jpg\"*><*/a></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/hKx5hvb.gif\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/ddwdwLd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/3ii7Hwd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/gu4vtKd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/MRBjnCT.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (25,'2022-07-16 13:27:58',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-mykV5kBmj\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"<a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_0B_RL0mW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_0B_RL0mW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-wF9xQwkGJX\"><strong><u>WARNING ! </u></strong>Please make sure to copy your code and then</h1><p class=\"gp-component-id-uIV6g1oHy\">delete theÂ asterisks (*) that are inside of the code.</p></div><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/IXFkq5C.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Mih0rBN.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Vz0Wl69.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/zNGTlTi.jpg\"*><*/a></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/hKx5hvb.gif\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/ddwdwLd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/3ii7Hwd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/gu4vtKd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/MRBjnCT.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_pages_backups` (`id`, `savetime`, `pageid`, `template_data`) VALUES (26,'2022-07-16 13:28:57',4,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-afft/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62c868dd3aa9f3201c539a96\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"wV-yLCmaY\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62c868dd3aa9f3201c539a96\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJ3Vi15TENtYVkiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Offer Thank You Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62c868dd3aa9f3201c539a96\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"wV-yLCmaY\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"hr8PD7LoF4\" class=\"style-hr8PD7LoF4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hr8PD7LoF4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6tLHAablpD\" class=\"style-6tLHAablpD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6tLHAablpD[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hc9HQqE8e\" class=\"style-Hc9HQqE8e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Hc9HQqE8e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0F1k3T9I\" class=\"style-h0F1k3T9I\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0F1k3T9I[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UaO7_FDu9z\" class=\"style-UaO7_FDu9z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UaO7_FDu9z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s7QQG4hHB\" class=\"style-s7QQG4hHB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-s7QQG4hHB[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IqgVx_ILy\" class=\"style-IqgVx_ILy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IqgVx_ILy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qRTFqjpuA\" class=\"style-qRTFqjpuA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qRTFqjpuA[data-gp-component] {\r\n          border-top-left-radius: 0px;border-top-right-radius: 0px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yTvkpF_18y\" class=\"style-yTvkpF_18y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yTvkpF_18y[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);margin-top: 0px;padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xom84PY2z\" class=\"style-xom84PY2z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xom84PY2z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Vrx5rRhg_O\" class=\"style-Vrx5rRhg_O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Vrx5rRhg_O[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U07kvHE4xQ\" class=\"style-U07kvHE4xQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U07kvHE4xQ[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wuTRU0WGy\" class=\"style-wuTRU0WGy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wuTRU0WGy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zYHopsAVb4\" class=\"style-zYHopsAVb4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zYHopsAVb4[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMO3AQ3GW\" class=\"style-nMO3AQ3GW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nMO3AQ3GW[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YDyNeWHs\" class=\"style-7YDyNeWHs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 31px;padding-bottom: 34px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YDyNeWHs[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9Gve0TO5Z\" class=\"style-9Gve0TO5Z\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9Gve0TO5Z[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgba(14, 73, 189, 1);padding-top: 20px;padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NvmDyUi9ay\" class=\"style-NvmDyUi9ay\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NvmDyUi9ay {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dnmLGiiDoM\" class=\"style-dnmLGiiDoM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dnmLGiiDoM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZmlIlmi_jd\" class=\"style-ZmlIlmi_jd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZmlIlmi_jd {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iY_HerB920\" class=\"style-iY_HerB920\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iY_HerB920 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nMj_DgqS9t\" class=\"style-nMj_DgqS9t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nMj_DgqS9t {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2q1WtNHWZM\" class=\"style-2q1WtNHWZM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2q1WtNHWZM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LcoOaynhf_\" class=\"style-LcoOaynhf_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-LcoOaynhf_ {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"I2KgVmp8yM\" class=\"style-I2KgVmp8yM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-I2KgVmp8yM {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZQqg9JqmMW\" class=\"style-ZQqg9JqmMW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZQqg9JqmMW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W4iyu5aBTJ\" class=\"style-W4iyu5aBTJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-W4iyu5aBTJ {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PlakBzISxl\" class=\"style-PlakBzISxl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PlakBzISxl {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"oEe9eaxvrF\" class=\"style-oEe9eaxvrF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-oEe9eaxvrF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vHFVCdZ4c\" class=\"style-3vHFVCdZ4c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vHFVCdZ4c {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\" class=\"style-4Ajl23Yhi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4Ajl23Yhi {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTuRYz51hq\" class=\"style-XTuRYz51hq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XTuRYz51hq {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5UPs5jWTIY\" class=\"style-5UPs5jWTIY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5UPs5jWTIY {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wg6RHjriC4\" class=\"style-wg6RHjriC4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wg6RHjriC4 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7Z1028JLLF\" class=\"style-7Z1028JLLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7Z1028JLLF {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bwHmntCS1N\" class=\"style-bwHmntCS1N\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bwHmntCS1N {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xi7zYBQcpf\" class=\"style-xi7zYBQcpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xi7zYBQcpf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ROi45RDP12\" class=\"style-ROi45RDP12\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ROi45RDP12 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aRcd5ojhOX\" class=\"style-aRcd5ojhOX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aRcd5ojhOX {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t8g5qmhhZ0\" class=\"style-t8g5qmhhZ0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t8g5qmhhZ0 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"prRYIVycSf\" class=\"style-prRYIVycSf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-prRYIVycSf {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o6OqTBdHxW\" class=\"style-o6OqTBdHxW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-o6OqTBdHxW {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jMYUi24_21\" class=\"style-jMYUi24_21\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jMYUi24_21 {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z2OTRiWdTr\" class=\"style-z2OTRiWdTr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z2OTRiWdTr {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\" class=\"style-hF9ABaTgd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hF9ABaTgd {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"N_m2FrMPv2\" class=\"style-N_m2FrMPv2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-N_m2FrMPv2 {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RZQJLEJI_y\" class=\"style-RZQJLEJI_y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RZQJLEJI_y {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0q2NVA_L2D\" class=\"style-0q2NVA_L2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0q2NVA_L2D {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t4zbd8SFye\" class=\"style-t4zbd8SFye\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-t4zbd8SFye {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g9Wt2LioCP\" class=\"style-g9Wt2LioCP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g9Wt2LioCP[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OspzpxGuvy\" class=\"style-OspzpxGuvy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OspzpxGuvy[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0H2jMs9Ln\" class=\"style-0H2jMs9Ln\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0H2jMs9Ln[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 88%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKAIgjOHWq\" class=\"style-wKAIgjOHWq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wKAIgjOHWq {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WF_F3odhwX\" class=\"style-WF_F3odhwX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WF_F3odhwX[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e99hGnvdkN\" class=\"style-e99hGnvdkN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e99hGnvdkN {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q0SZE_E05\" class=\"style-q0SZE_E05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-q0SZE_E05[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Z_cUFvu6\" class=\"style-0Z_cUFvu6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Z_cUFvu6[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0mM60oC_w\" class=\"style-T0mM60oC_w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-T0mM60oC_w {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n2zSkAXb9\" class=\"style-n2zSkAXb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n2zSkAXb9[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y6FHvb3SMC\" class=\"style-y6FHvb3SMC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-y6FHvb3SMC {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TxdcbUPgM\" class=\"style-TxdcbUPgM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TxdcbUPgM[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hM9_AwWrV\" class=\"style-hM9_AwWrV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hM9_AwWrV[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O_HXChdwvP\" class=\"style-O_HXChdwvP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O_HXChdwvP {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Lu6qzBwLY\" class=\"style-Lu6qzBwLY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Lu6qzBwLY[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HposQ3akKY\" class=\"style-HposQ3akKY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HposQ3akKY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bDBMERKtWt\" class=\"style-bDBMERKtWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bDBMERKtWt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kv6lHHi6r\" class=\"style-kv6lHHi6r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kv6lHHi6r[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0NBh_Z09L\" class=\"style-0NBh_Z09L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0NBh_Z09L[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HIQTv2s4ys\" class=\"style-HIQTv2s4ys\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-HIQTv2s4ys {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xGUwM031A\" class=\"style-xGUwM031A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xGUwM031A[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuFaBMsa7\" class=\"style-6DuFaBMsa7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuFaBMsa7 {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L7Fi0qreT\" class=\"style-L7Fi0qreT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L7Fi0qreT[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mXTgut7wH\" class=\"style-mXTgut7wH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mXTgut7wH[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y5Xoa1N987\" class=\"style-Y5Xoa1N987\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Y5Xoa1N987 {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JYASc1IRs\" class=\"style-JYASc1IRs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JYASc1IRs[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IQHfUs4k0f\" class=\"style-IQHfUs4k0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IQHfUs4k0f {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SD0wEFHio\" class=\"style-SD0wEFHio\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SD0wEFHio[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bchP9Vu4b\" class=\"style-bchP9Vu4b\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bchP9Vu4b[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 1);padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Genk0VFT3s\" class=\"style-Genk0VFT3s\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Genk0VFT3s[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO-overlay\"></style><style data-gp-styled-element=\"v5HTevjTx\" class=\"style-v5HTevjTx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v5HTevjTx[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;background-color: rgb(255, 255, 255);margin-top: 0px;padding-left: 30px;padding-right: 30px;padding-top: 0px;padding-bottom: 20px;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RICD9BGgDA\" class=\"style-RICD9BGgDA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RICD9BGgDA {\r\n          font-size: 15px !important;font-weight: 400 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"62rPzWqTcb\" class=\"style-62rPzWqTcb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-62rPzWqTcb {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dly4AZfNnt\" class=\"style-dly4AZfNnt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dly4AZfNnt[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TLD50sGGs\" class=\"style-TLD50sGGs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TLD50sGGs[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cN1q6IYQ1E\" class=\"style-cN1q6IYQ1E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cN1q6IYQ1E {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"K50hvbBCj\" class=\"style-K50hvbBCj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-K50hvbBCj[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2yXWz2mPN3\" class=\"style-2yXWz2mPN3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2yXWz2mPN3 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_UTTZYqbV\" class=\"style-_UTTZYqbV\">\r\n        \r\n        .gp-component-id-_UTTZYqbV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_UTTZYqbV {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_8fbvTMSqO\" class=\"style-_8fbvTMSqO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-_8fbvTMSqO {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UWWoD5vaE\" class=\"style-UWWoD5vaE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UWWoD5vaE[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"000LFMURAv\" class=\"style-000LFMURAv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-000LFMURAv {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2EyNRUqPqp\" class=\"style-2EyNRUqPqp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2EyNRUqPqp[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dlhJJhLMr3\" class=\"style-dlhJJhLMr3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dlhJJhLMr3[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YSNsBpdtcj\" class=\"style-YSNsBpdtcj\">\r\n        \r\n        .gp-component-id-YSNsBpdtcj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YSNsBpdtcj {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IRMndMIy1W\" class=\"style-IRMndMIy1W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-IRMndMIy1W {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2G2IYrXAHO\" class=\"style-2G2IYrXAHO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2G2IYrXAHO[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Dm0R4xg7D6\" class=\"style-Dm0R4xg7D6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Dm0R4xg7D6 {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZuSNU14Kwu\" class=\"style-ZuSNU14Kwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZuSNU14Kwu[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIcxTrLTP\" class=\"style-CIcxTrLTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIcxTrLTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sK60LClaLy\" class=\"style-sK60LClaLy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sK60LClaLy[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x960rSsPkE\" class=\"style-x960rSsPkE\">\r\n        \r\n        .gp-component-id-x960rSsPkE {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x960rSsPkE {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-basis: auto;flex-shrink: 0;flex-grow: 0;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3teDW09ZP\" class=\"style-3teDW09ZP\">\r\n        \r\n        .gp-component-id-3teDW09ZP {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3teDW09ZP {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ixmnoD0b_\" class=\"style-ixmnoD0b_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ixmnoD0b_[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"piIWGNZJLH\" class=\"style-piIWGNZJLH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-piIWGNZJLH[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IiPGMelTSo\" class=\"style-IiPGMelTSo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IiPGMelTSo[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sCR6hJD2D\" class=\"style-sCR6hJD2D\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sCR6hJD2D[data-gp-component] {\r\n          margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4zGQVlzBwS\" class=\"style-4zGQVlzBwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4zGQVlzBwS {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0nkcUN3qu\" class=\"style-h0nkcUN3qu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-h0nkcUN3qu {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vyl4M0iViK\" class=\"style-vyl4M0iViK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vyl4M0iViK[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZEYIpSio2e\" class=\"style-ZEYIpSio2e\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZEYIpSio2e[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8dAubIT0mt\" class=\"style-8dAubIT0mt\">\r\n        \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8dAubIT0mt {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YmZlHrsNtY\" class=\"style-YmZlHrsNtY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-YmZlHrsNtY {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Bc9MKrhC\" class=\"style-n5Bc9MKrhC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Bc9MKrhC[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x9Ysdi6osA\" class=\"style-x9Ysdi6osA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-x9Ysdi6osA {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVbj71lbp7\" class=\"style-aVbj71lbp7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVbj71lbp7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R3J0C1L37\" class=\"style-R3J0C1L37\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-R3J0C1L37[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eEVLQ1n7sb\" class=\"style-eEVLQ1n7sb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eEVLQ1n7sb[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XT1cyaJw9a\" class=\"style-XT1cyaJw9a\">\r\n        \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XT1cyaJw9a {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iNiFGraYVe\" class=\"style-iNiFGraYVe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iNiFGraYVe {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgb(0, 0, 0);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3gkWQAN9c\" class=\"style-3gkWQAN9c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3gkWQAN9c[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uWpHnitqAH\" class=\"style-uWpHnitqAH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uWpHnitqAH {\r\n          font-size: 14px !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MniE1CBE6Y\" class=\"style-MniE1CBE6Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MniE1CBE6Y[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1ycAbcTSUn\" class=\"style-1ycAbcTSUn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1ycAbcTSUn[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4quKOAwVrX\" class=\"style-4quKOAwVrX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4quKOAwVrX[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8tSQ_ICfeR\" class=\"style-8tSQ_ICfeR\">\r\n        \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8tSQ_ICfeR {\r\n          padding-left: 8px;padding-right: 8px;width: 33.33%;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DwCy8XSpU\" class=\"style-DwCy8XSpU\">\r\n        \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DwCy8XSpU {\r\n          margin-left: -8px;margin-right: -8px;display: flex;flex-wrap: wrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wF9xQwkGJX\" class=\"style-wF9xQwkGJX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-wF9xQwkGJX {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 10px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PiEMrrGlA\" class=\"style-PiEMrrGlA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PiEMrrGlA {\r\n          font-size: 22px !important;font-weight: 400 !important;color: rgb(3, 23, 48);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uIV6g1oHy\" class=\"style-uIV6g1oHy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uIV6g1oHy {\r\n          font-size: 22px !important;color: rgb(254, 72, 72);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 50px;padding-left: 30px;padding-right: 30px;text-decoration-line: underline ;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6EREcUo6O\" class=\"style-6EREcUo6O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6EREcUo6O[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 20px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Asn9tD8wB\" class=\"style-Asn9tD8wB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Asn9tD8wB[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"06hiDXFJo\" class=\"style-06hiDXFJo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-06hiDXFJo[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"v4dz56GMwk\" class=\"style-v4dz56GMwk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-v4dz56GMwk[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zxXUCPWe3r\" class=\"style-zxXUCPWe3r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-top: 40px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zxXUCPWe3r[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-left: 0px;padding-right: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nEPyM6E1FT\" class=\"style-nEPyM6E1FT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-nEPyM6E1FT {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ah3ab9jHSJ\" class=\"style-Ah3ab9jHSJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Ah3ab9jHSJ {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P77w5LEcla\" class=\"style-P77w5LEcla\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-P77w5LEcla {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lgR7QoMiRv\" class=\"style-lgR7QoMiRv\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-lgR7QoMiRv {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5LiM9Nucb9\" class=\"style-5LiM9Nucb9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5LiM9Nucb9 {\r\n          font-size: 14px !important;color: rgba(0, 0, 0, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ynlrC6i4fR\" class=\"style-ynlrC6i4fR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ynlrC6i4fR {\r\n          font-size: 14px !important;font-weight: 400 !important;color: rgba(0, 0, 0, 1);text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cy53OU2Jv4\" class=\"style-Cy53OU2Jv4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cy53OU2Jv4[data-gp-component] {\r\n          color: rgba(36, 142, 255, 1);background-color: rgba(255, 255, 255, 0);width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wKoO2Plri3\" class=\"style-wKoO2Plri3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wKoO2Plri3[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HVJ4I6Z5vN\" class=\"style-HVJ4I6Z5vN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HVJ4I6Z5vN[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"87P0WKwEz\" class=\"style-87P0WKwEz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 288px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-87P0WKwEz[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 1px;border-right-width: 1px;border-top-width: 1px;border-bottom-width: 1px;border-left-color: rgb(57, 75, 86);border-right-color: rgb(57, 75, 86);border-top-color: rgb(57, 75, 86);border-bottom-color: rgb(57, 75, 86);margin-top: 10px;margin-bottom: 0px;padding-left: 10px;padding-right: 10px;width: 631px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n5Pps1wEg5\" class=\"style-n5Pps1wEg5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n5Pps1wEg5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W0ZWM_7uT\" class=\"style-W0ZWM_7uT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 84%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W0ZWM_7uT[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 66%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zPi7C12r8O\" class=\"style-zPi7C12r8O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zPi7C12r8O[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 30px;margin-bottom: 20px;height: auto;max-width: 78%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FsOkO_XXJz\" class=\"style-FsOkO_XXJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FsOkO_XXJz[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BumbLxhuq\" class=\"style-BumbLxhuq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BumbLxhuq[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hwdnoocLe\" class=\"style-hwdnoocLe\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hwdnoocLe[data-gp-component] {\r\n          padding-top: 30px;padding-bottom: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yzS63hPn5\" class=\"style-0yzS63hPn5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0yzS63hPn5 {\r\n          font-size: 48px !important;font-weight: 700 !important;color: rgb(0, 0, 0);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 10px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kveBKo6GvT\" class=\"style-kveBKo6GvT-overlay\">\r\n        \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kveBKo6GvT.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Rzi03Ub4xO\" class=\"style-Rzi03Ub4xO\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Rzi03Ub4xO[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qsRYVArJWt\" class=\"style-qsRYVArJWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qsRYVArJWt[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hTe3CJOnm\" class=\"style-hTe3CJOnm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hTe3CJOnm[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c63oorVFeg\" class=\"style-c63oorVFeg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c63oorVFeg[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UJnawKTx5A\" class=\"style-UJnawKTx5A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UJnawKTx5A[data-gp-component] {\r\n          border-top-left-radius: 12px;border-top-right-radius: 12px;border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;margin-bottom: 40px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tG1qqba4Y\" class=\"style-tG1qqba4Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tG1qqba4Y[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tD4Ud8Yl6Q\" class=\"style-tD4Ud8Yl6Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tD4Ud8Yl6Q[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aKImFyboLg\" class=\"style-aKImFyboLg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aKImFyboLg {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bgdFbxxEFM\" class=\"style-bgdFbxxEFM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-bgdFbxxEFM {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zE5hvsMfut\" class=\"style-zE5hvsMfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zE5hvsMfut[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OmrvR1Nn9Y\" class=\"style-OmrvR1Nn9Y\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-OmrvR1Nn9Y {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kpy903_vsY\" class=\"style-kpy903_vsY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-kpy903_vsY {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eFppwEjf_Q\" class=\"style-eFppwEjf_Q\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eFppwEjf_Q[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PMPMl58Bex\" class=\"style-PMPMl58Bex\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PMPMl58Bex {\r\n          font-size: 14px !important;text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 20px;margin-bottom: 0px;padding-left: 30px;padding-right: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIXb9Uwub\" class=\"style-sIXb9Uwub\">\r\n        \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIXb9Uwub {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4Ajl23Yhi\">\r\n        \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4Ajl23Yhi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O27gshQnQP\" class=\"style-O27gshQnQP\">\r\n        \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O27gshQnQP {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hs_X0aLO0a\" class=\"style-Hs_X0aLO0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hs_X0aLO0a {\r\n          font-size: 14px !important;font-weight: 400 !important;text-align: center;font-family: Poppins !important;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;border-left-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-color: rgb(3, 23, 48);border-right-color: rgb(3, 23, 48);border-top-color: rgb(3, 23, 48);border-bottom-color: rgb(3, 23, 48);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 10px;padding-bottom: 10px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LtaL01rTP\" class=\"style-LtaL01rTP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LtaL01rTP[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5xzOHnA0\" class=\"style-a5xzOHnA0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5xzOHnA0[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_6QLJDx0n\" class=\"style-_6QLJDx0n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_6QLJDx0n[data-gp-component] {\r\n          padding-left: 30px;padding-right: 30px;width: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WICBBcVLwW\" class=\"style-WICBBcVLwW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WICBBcVLwW[data-gp-component] {\r\n          border-top-left-radius: 0.75rem;border-top-right-radius: 0.75rem;border-bottom-left-radius: 0.75rem;border-bottom-right-radius: 0.75rem;background-color: rgba(255, 255, 255, 1);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;padding-top: 0px;padding-bottom: 0px;width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hF9ABaTgd\">\r\n        \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hF9ABaTgd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LznKoZM9K\" class=\"style-LznKoZM9K\">\r\n        \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LznKoZM9K {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hUhZ2bC55Y\" class=\"style-hUhZ2bC55Y\">\r\n        \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hUhZ2bC55Y {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"G3kG_0bqGC\" class=\"style-G3kG_0bqGC\">\r\n        \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G3kG_0bqGC {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"es2lqqD1ld\" class=\"style-es2lqqD1ld\">\r\n        \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-es2lqqD1ld {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\" class=\"style-mykV5kBmj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mykV5kBmj\">\r\n        \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mykV5kBmj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"PiEMrrGlA\">\r\n        \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PiEMrrGlA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<style data-gp-styled-element=\"pXvV_35Rtu\" class=\"style-pXvV_35Rtu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pXvV_35Rtu {\r\n          position: relative;width: 100%;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"hh4sRlyRtb\" class=\"style-hh4sRlyRtb\">\r\n        \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hh4sRlyRtb {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style>\r\n\r\n<style data-gp-styled-element=\"iuPuQTibNB\" class=\"style-iuPuQTibNB\">\r\n        \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iuPuQTibNB {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    <section class=\"gp-component-id-Rzi03Ub4xO gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12292964\" data-gp-block=\"true\" data-gp-component-id=\"Rzi03Ub4xO\" id=\"Rzi03Ub4xO\" tabindex=\"0\" data-gp-block-data=\"{\"id\":12292964,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/6278c97927abf.png\",\"category\":\"squeeze\",\"tag\":\"user\",\"user_id\":\"5f2966e7896b1600384f7f84\",\"filename\":null}\" style=\"\"><a name=\"Rzi03Ub4xO\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-tD4Ud8Yl6Q gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tD4Ud8Yl6Q\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component-id-pXvV_35Rtu gp-component dndbefore-top\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"pXvV_35Rtu\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-hh4sRlyRtb\">\r\n                    <div class=\"gp-component-id-iuPuQTibNB\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component-id-Cy53OU2Jv4 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Cy53OU2Jv4\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Your Affiliate link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-mykV5kBmj\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a href=\"#REFURL#\" target=\"blank\">#REFURL#</a></h6></div><div class=\"gp-text-container gp-component gp-component-id-H7r0i4vFO dndbefore-top\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"H7r0i4vFO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-0yzS63hPn5\">Splashpage link</h2></div><div class=\"gp-text-container gp-component gp-component-id-YY72l6Vry0 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"YY72l6Vry0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\"><span style=\"color:#000000;\">Please copy and paste the link below</p><br/><h6 class=\"gp-component-id-mykV5kBmj\"><a target=\"_blank\" href=\"https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#\">https://soloswaps.com/splashpage.php?splashid=7&rid=#AFFILIATEID#</a></h6></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component-id-GWoQmfzCWk gp-component dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"GWoQmfzCWk\" data-gp-component=\"null\"><h2 class=\"gp-component-id-PiEMrrGlA\"><strong style=\"color: rgb(45, 130, 48);\"><u>Step #1:</u></strong>Â Add this banners to your site</h2></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-_0B_RL0mW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_0B_RL0mW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-wF9xQwkGJX\"><strong><u>WARNING ! </u></strong>Please make sure to copy your code and then</h1><p class=\"gp-component-id-uIV6g1oHy\">delete theÂ asterisks (*) that are inside of the code.</p></div><div class=\"gp-component-id-tG1qqba4Y gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"tG1qqba4Y\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LznKoZM9K\">\r\n        <div class=\"gp-component-id-hUhZ2bC55Y\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-WICBBcVLwW gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"WICBBcVLwW\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-9Gve0TO5Z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9Gve0TO5Z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-fdnKk3jCR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"fdnKk3jCR\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t4zbd8SFye\">Instagram Stories</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-kAcfylJmMb\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kAcfylJmMb\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-0q2NVA_L2D\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-_6QLJDx0n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"_6QLJDx0n\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-n5Pps1wEg5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"n5Pps1wEg5\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-RV0iAUnVG\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"RV0iAUnVG\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5LiM9Nucb9\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-6EREcUo6O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6EREcUo6O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-AuGjsAOCMK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"AuGjsAOCMK\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-ynlrC6i4fR\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-G3kG_0bqGC\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-zxXUCPWe3r gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"zxXUCPWe3r\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-7YDyNeWHs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YDyNeWHs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6xZWOVPyIB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6xZWOVPyIB\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RZQJLEJI_y\">Instagram</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Znrc7HiVjL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Znrc7HiVjL\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-N_m2FrMPv2\">1080x1080 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-a5xzOHnA0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"a5xzOHnA0\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/IXFkq5C.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zPi7C12r8O\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zPi7C12r8O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJlOxAyHw0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJlOxAyHw0\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-P77w5LEcla\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-06hiDXFJo\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"06hiDXFJo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-w41kWophZu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"w41kWophZu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-lgR7QoMiRv\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/IXFkq5C.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-es2lqqD1ld\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-v4dz56GMwk gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"v4dz56GMwk\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-nMO3AQ3GW gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"nMO3AQ3GW\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vZx8cMmVyk dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"vZx8cMmVyk\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-hF9ABaTgd\">Pinterest</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-413j5tUdM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"413j5tUdM\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-z2OTRiWdTr\">1000x1500 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-LtaL01rTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"LtaL01rTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-W0ZWM_7uT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W0ZWM_7uT\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-xk5poKoV_\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"xk5poKoV_\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-nEPyM6E1FT\">Use this html code in your web page</p></div><div class=\"gp-component-id-Asn9tD8wB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Asn9tD8wB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-mL0vOgpCSP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mL0vOgpCSP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Ah3ab9jHSJ\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-sCR6hJD2D\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"sCR6hJD2D\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DwCy8XSpU\">\r\n        <div class=\"gp-component-id-8tSQ_ICfeR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-4quKOAwVrX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"4quKOAwVrX\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-zYHopsAVb4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"zYHopsAVb4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XnWgOdJYVe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XnWgOdJYVe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-jMYUi24_21\">Pinterest Square Pin</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BYvo21ya9\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BYvo21ya9\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-o6OqTBdHxW\">1000x1000 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-1ycAbcTSUn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"1ycAbcTSUn\" tabindex=\"0\"><img src=\"https://i.imgur.com/Mih0rBN.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-MniE1CBE6Y\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MniE1CBE6Y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-2i6II9sJ9f\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"2i6II9sJ9f\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-uWpHnitqAH\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-3gkWQAN9c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"3gkWQAN9c\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-MrBBjUz0Kl\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"MrBBjUz0Kl\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-iNiFGraYVe\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Mih0rBN.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XT1cyaJw9a\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-eEVLQ1n7sb\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"eEVLQ1n7sb\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-wuTRU0WGy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wuTRU0WGy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ooSJgw3Vnw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ooSJgw3Vnw\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-prRYIVycSf\">Facebook Post</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Fz1p0ADN9Z\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Fz1p0ADN9Z\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-t8g5qmhhZ0\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-R3J0C1L37\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"R3J0C1L37\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-aVbj71lbp7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"aVbj71lbp7\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6LlfTavns8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6LlfTavns8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-x9Ysdi6osA\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n5Bc9MKrhC\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n5Bc9MKrhC\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-rmX5ys13T\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"rmX5ys13T\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-YmZlHrsNtY\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-8dAubIT0mt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-ZEYIpSio2e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"ZEYIpSio2e\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-U07kvHE4xQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U07kvHE4xQ\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0fJ5onsma\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0fJ5onsma\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-aRcd5ojhOX\">TikTok</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ODwdgrtmLe\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ODwdgrtmLe\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-ROi45RDP12\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-vyl4M0iViK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vyl4M0iViK\" tabindex=\"0\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IiPGMelTSo\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IiPGMelTSo\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-6gNTqP2JS\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"6gNTqP2JS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-h0nkcUN3qu\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-piIWGNZJLH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"piIWGNZJLH\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-31cVtXToUq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"31cVtXToUq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-4zGQVlzBwS\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component dndbefore-bottom gp-component-id-ixmnoD0b_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"ixmnoD0b_\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3teDW09ZP\">\r\n        <div class=\"gp-component-id-x960rSsPkE\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-sK60LClaLy\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"sK60LClaLy\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Vrx5rRhg_O\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Vrx5rRhg_O\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ow_YFiyBW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ow_YFiyBW\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-xi7zYBQcpf\">Snapchat</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-eYc_FmlltK\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"eYc_FmlltK\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-bwHmntCS1N\">1080x1920 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-CIcxTrLTP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"CIcxTrLTP\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/4Xqa4c3.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-SD0wEFHio\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SD0wEFHio\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x96Rv9Vzi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x96Rv9Vzi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-IQHfUs4k0f\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-JYASc1IRs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"JYASc1IRs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l8nXw7TSB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l8nXw7TSB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Y5Xoa1N987\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/4Xqa4c3.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-YSNsBpdtcj\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-dlhJJhLMr3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"dlhJJhLMr3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-xom84PY2z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xom84PY2z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-atlmxPp6Ld\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"atlmxPp6Ld\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-7Z1028JLLF\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-UmW4PUaSi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UmW4PUaSi\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-wg6RHjriC4\">300x600 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-2EyNRUqPqp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2EyNRUqPqp\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/Vz0Wl69.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZuSNU14Kwu\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZuSNU14Kwu\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-CqEHSrvRX\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"CqEHSrvRX\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Dm0R4xg7D6\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-2G2IYrXAHO\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2G2IYrXAHO\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-BDbyrlQ5A\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"BDbyrlQ5A\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-IRMndMIy1W\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/Vz0Wl69.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-_UTTZYqbV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Genk0VFT3s\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Genk0VFT3s\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-yTvkpF_18y\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"yTvkpF_18y\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-XBYGpbdbn\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"XBYGpbdbn\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-5UPs5jWTIY\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7wjnILC9S5\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7wjnILC9S5\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-XTuRYz51hq\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-v5HTevjTx\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"v5HTevjTx\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/zNGTlTi.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-TLD50sGGs\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"TLD50sGGs\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aLWbkUhKah\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aLWbkUhKah\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-000LFMURAv\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-UWWoD5vaE\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UWWoD5vaE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Ve4B8eoYWE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Ve4B8eoYWE\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-_8fbvTMSqO\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/zNGTlTi.jpg\"*><*/a></h6></div></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-qRTFqjpuA\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qRTFqjpuA\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-x3ASHXeBE\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"x3ASHXeBE\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-62rPzWqTcb\">Banner Gif</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PukXl51hxg\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PukXl51hxg\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-RICD9BGgDA\">125x125 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-bchP9Vu4b\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"bchP9Vu4b\" tabindex=\"0\"><img src=\"https://i.imgur.com/hKx5hvb.gif\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dly4AZfNnt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dly4AZfNnt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-f_D9_QN1i\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"f_D9_QN1i\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-2yXWz2mPN3\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-K50hvbBCj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"K50hvbBCj\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-NqF3QF5Gir\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"NqF3QF5Gir\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-cN1q6IYQ1E\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/hKx5hvb.gif\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component-id-kveBKo6GvT gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79396\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79396,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty_100.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_1\",\"height\":0,\"global\":1}\" data-gp-component-id=\"kveBKo6GvT\" id=\"kveBKo6GvT\" tabindex=\"0\" style=\"\"><a name=\"kveBKo6GvT\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-O27gshQnQP\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"O27gshQnQP\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-qsRYVArJWt gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qsRYVArJWt\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-UJnawKTx5A gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UJnawKTx5A\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IqgVx_ILy gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"IqgVx_ILy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sCtjUtA7Fo dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"sCtjUtA7Fo\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-4Ajl23Yhi\">Facebook Mobile Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-yM9_6ar2M\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"yM9_6ar2M\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-3vHFVCdZ4c\">851x315 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-hwdnoocLe\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hwdnoocLe\" tabindex=\"0\"><img src=\"https://i.imgur.com/V5L606K.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sIXb9Uwub\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sIXb9Uwub\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Po89ylND9d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Po89ylND9d\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-PMPMl58Bex\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-87P0WKwEz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"87P0WKwEz\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Pvf73a48gF\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Pvf73a48gF\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-Hs_X0aLO0a\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/V5L606K.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0Z_cUFvu6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0Z_cUFvu6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-s7QQG4hHB\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"s7QQG4hHB\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-PohGzoyPU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"PohGzoyPU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-oEe9eaxvrF\">Facebook Desktop Cover</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-SgmXlm000I\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"SgmXlm000I\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-PlakBzISxl\">1200x628 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-q0SZE_E05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"q0SZE_E05\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-0H2jMs9Ln\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"0H2jMs9Ln\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-h9r5NiraB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"h9r5NiraB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-e99hGnvdkN\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-WF_F3odhwX\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"WF_F3odhwX\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZJKnOH5Wk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZJKnOH5Wk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-wKAIgjOHWq\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hM9_AwWrV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hM9_AwWrV\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-UaO7_FDu9z\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"UaO7_FDu9z\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-5mvkln5tx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"5mvkln5tx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-W4iyu5aBTJ\">LinkedIn</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IkpNXG7el\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IkpNXG7el\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZQqg9JqmMW\">1200x627 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-TxdcbUPgM\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TxdcbUPgM\" tabindex=\"0\"><img src=\"https://i.imgur.com/SPbNDkh.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-OspzpxGuvy\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"OspzpxGuvy\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Gg9P815Da\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Gg9P815Da\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-y6FHvb3SMC\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-n2zSkAXb9\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"n2zSkAXb9\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-amI2UkGdvB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"amI2UkGdvB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-T0mM60oC_w\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/SPbNDkh.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-0NBh_Z09L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0NBh_Z09L\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-h0F1k3T9I\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"h0F1k3T9I\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-60MIsMTTu\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"60MIsMTTu\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-I2KgVmp8yM\">Twitter</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Svo79qOPW\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Svo79qOPW\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-LcoOaynhf_\">1024x512 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-kv6lHHi6r\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"kv6lHHi6r\" tabindex=\"0\"><img src=\"https://i.imgur.com/ddwdwLd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-bDBMERKtWt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bDBMERKtWt\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-0FJzVzkqU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"0FJzVzkqU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-HposQ3akKY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-Lu6qzBwLY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Lu6qzBwLY\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-JbS5aBqOo8\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JbS5aBqOo8\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-O_HXChdwvP\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/ddwdwLd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-mXTgut7wH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mXTgut7wH\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-Hc9HQqE8e\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Hc9HQqE8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zsJD8z0Bk\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zsJD8z0Bk\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-2q1WtNHWZM\">Youtube Thumbnail</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-HiLF680Yj\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"HiLF680Yj\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-nMj_DgqS9t\">1280x720 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-L7Fi0qreT\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"L7Fi0qreT\" tabindex=\"0\"><img src=\"https://i.imgur.com/3ii7Hwd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-g9Wt2LioCP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"g9Wt2LioCP\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-hfNOBZhMw\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"hfNOBZhMw\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-6DuFaBMsa7\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-xGUwM031A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"xGUwM031A\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-oVIm0UfAi\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"oVIm0UfAi\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-HIQTv2s4ys\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/3ii7Hwd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-c63oorVFeg\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"c63oorVFeg\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-6tLHAablpD\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"6tLHAablpD\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zoZzGeV8YP\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zoZzGeV8YP\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-iY_HerB920\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-Hcto1zEdLx\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Hcto1zEdLx\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-ZmlIlmi_jd\">728x90 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-BumbLxhuq\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"BumbLxhuq\" tabindex=\"0\"><img src=\"https://i.imgur.com/gu4vtKd.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-zE5hvsMfut\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zE5hvsMfut\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-aU33xbImko\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"aU33xbImko\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-bgdFbxxEFM\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-HVJ4I6Z5vN\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"HVJ4I6Z5vN\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-7hU_wBjkyL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"7hU_wBjkyL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-aKImFyboLg\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/gu4vtKd.jpg\"*><*/a></h6></div></div></div></div><div class=\"gp-component gp-component-id-hTe3CJOnm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hTe3CJOnm\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component dndbefore-bottom gp-component-id-hr8PD7LoF4\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"hr8PD7LoF4\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-gPQ8hb3WBZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"gPQ8hb3WBZ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-dnmLGiiDoM\">Banner</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-ZF6uFh9j6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ZF6uFh9j6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-NvmDyUi9ay\">468x60 px</h1></div></div><div class=\"gp-component dndbefore-bottom gp-component-id-FsOkO_XXJz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"FsOkO_XXJz\" tabindex=\"0\" style=\"\"><img src=\"https://i.imgur.com/MRBjnCT.jpg\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-eFppwEjf_Q\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"eFppwEjf_Q\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-1h1G4XoKf6\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1h1G4XoKf6\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-kpy903_vsY\">Use this html code in your web page</p></div><div class=\"gp-component dndbefore-bottom gp-component-id-wKoO2Plri3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wKoO2Plri3\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-lcxK4jLRud\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lcxK4jLRud\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h6 class=\"gp-component-id-OmrvR1Nn9Y\"><*a href=\"#REFURL#\"*><*img src=\"https://i.imgur.com/MRBjnCT.jpg\"*><*/a></h6></div></div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
/*!40000 ALTER TABLE `oto_pages_backups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_pausequeue`
--

DROP TABLE IF EXISTS `oto_pausequeue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_pausequeue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `starttime` int(11) NOT NULL DEFAULT 0,
  `endtime` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `starttime` (`starttime`),
  KEY `endtime` (`endtime`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_pausequeue`
--

LOCK TABLES `oto_pausequeue` WRITE;
/*!40000 ALTER TABLE `oto_pausequeue` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_pausequeue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_pausesched`
--

DROP TABLE IF EXISTS `oto_pausesched`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_pausesched` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hour` int(11) NOT NULL DEFAULT 0,
  `minute` int(11) NOT NULL DEFAULT 0,
  `durationmins` int(11) NOT NULL DEFAULT 5,
  PRIMARY KEY (`id`),
  KEY `hour` (`hour`),
  KEY `minute` (`minute`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_pausesched`
--

LOCK TABLES `oto_pausesched` WRITE;
/*!40000 ALTER TABLE `oto_pausesched` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_pausesched` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_piggybank`
--

DROP TABLE IF EXISTS `oto_piggybank`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_piggybank` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL DEFAULT 0,
  `transdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `descr` varchar(255) NOT NULL DEFAULT 'N/A',
  `amount` decimal(8,2) NOT NULL DEFAULT 0.00,
  `status` char(1) NOT NULL DEFAULT '0',
  `ipnsaleid` int(11) NOT NULL DEFAULT 0,
  `subid` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_piggybank`
--

LOCK TABLES `oto_piggybank` WRITE;
/*!40000 ALTER TABLE `oto_piggybank` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_piggybank` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_piggybank_deposits`
--

DROP TABLE IF EXISTS `oto_piggybank_deposits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_piggybank_deposits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL DEFAULT 0,
  `transdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `optionid` int(11) NOT NULL DEFAULT 0,
  `requiredinfo` text DEFAULT NULL,
  `amount` decimal(8,2) NOT NULL DEFAULT 0.00,
  `status` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `userid` (`userid`),
  KEY `optionid` (`optionid`),
  KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_piggybank_deposits`
--

LOCK TABLES `oto_piggybank_deposits` WRITE;
/*!40000 ALTER TABLE `oto_piggybank_deposits` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_piggybank_deposits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_piggybank_options`
--

DROP TABLE IF EXISTS `oto_piggybank_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_piggybank_options` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL DEFAULT 'N/A',
  `descr` text DEFAULT NULL,
  `requiredinfo` text DEFAULT NULL,
  `setamount` decimal(8,2) NOT NULL DEFAULT 0.00,
  `minamount` decimal(8,2) NOT NULL DEFAULT 0.00,
  `maxamount` decimal(8,2) NOT NULL DEFAULT 0.00,
  `reloadlimit` int(11) NOT NULL DEFAULT -1,
  `instantapprove` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_piggybank_options`
--

LOCK TABLES `oto_piggybank_options` WRITE;
/*!40000 ALTER TABLE `oto_piggybank_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_piggybank_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_piggybank_settings`
--

DROP TABLE IF EXISTS `oto_piggybank_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_piggybank_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(30) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_piggybank_settings`
--

LOCK TABLES `oto_piggybank_settings` WRITE;
/*!40000 ALTER TABLE `oto_piggybank_settings` DISABLE KEYS */;
INSERT INTO `oto_piggybank_settings` (`id`, `field`, `value`) VALUES (1,'enabled','0'),(2,'alwaysshow','0'),(3,'paycomms','0'),(4,'commstransfer','1'),(5,'balancename','Account Balance'),(6,'subreminder','5'),(7,'subremindersubject','#SITENAME# Subscription Alert'),(8,'subremindermessage','Hi #FIRSTNAME#,\r\n\r\nYou have a subscription at #SITENAME# that is set to\r\nrenew on [subdate] for [subprice].\r\n\r\nYou do not currently have enough funds in your #SITENAME#\r\naccount.  Please click the link below to add additional\r\nfunds, or your subscription will expire.\r\n\r\n[piggybanklink]\r\n\r\nThank you,\r\n#SITENAME# Admin');
/*!40000 ALTER TABLE `oto_piggybank_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_piggybank_subs`
--

DROP TABLE IF EXISTS `oto_piggybank_subs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_piggybank_subs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL DEFAULT 0,
  `startdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `nextbill` date NOT NULL DEFAULT '0000-00-00',
  `status` varchar(255) NOT NULL DEFAULT 'Active',
  `ipnpackage` int(11) NOT NULL DEFAULT 0,
  `recurring` int(11) NOT NULL DEFAULT 0,
  `paymentcount` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_piggybank_subs`
--

LOCK TABLES `oto_piggybank_subs` WRITE;
/*!40000 ALTER TABLE `oto_piggybank_subs` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_piggybank_subs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_plugins`
--

DROP TABLE IF EXISTS `oto_plugins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_plugins` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `productid` varchar(50) NOT NULL,
  `majvers` int(11) NOT NULL DEFAULT 1,
  `minvers` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `productid` (`productid`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_plugins`
--

LOCK TABLES `oto_plugins` WRITE;
/*!40000 ALTER TABLE `oto_plugins` DISABLE KEYS */;
INSERT INTO `oto_plugins` (`id`, `productid`, `majvers`, `minvers`) VALUES (1,'coinpayments',1,0),(2,'ezcomp',1,8),(3,'thespot',1,5),(4,'spotlight',1,17),(5,'missedm',1,0),(6,'sqban',1,7),(7,'soloads',1,1),(8,'offerb',3,0),(21,'piggybank',1,3),(11,'pmess',1,4),(12,'dbmulti',2,18),(13,'promocode',3,11),(14,'randomrefs',1,0),(15,'dlbsplash',1,0),(17,'puzzlehunt',1,1),(18,'rotator',3,8),(19,'surftarget',1,0),(20,'widgetads',1,1),(22,'pmarket',1,1);
/*!40000 ALTER TABLE `oto_plugins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_pmarket_discounts`
--

DROP TABLE IF EXISTS `oto_pmarket_discounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_pmarket_discounts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `mtype` int(11) NOT NULL,
  `discount` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mtype` (`mtype`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_pmarket_discounts`
--

LOCK TABLES `oto_pmarket_discounts` WRITE;
/*!40000 ALTER TABLE `oto_pmarket_discounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_pmarket_discounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_pmarket_product_types`
--

DROP TABLE IF EXISTS `oto_pmarket_product_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_pmarket_product_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(24) NOT NULL,
  `descr` varchar(255) NOT NULL DEFAULT '',
  `rate` int(11) NOT NULL,
  `minamount` int(11) DEFAULT 0,
  `maxamount` int(11) DEFAULT 0,
  `roundto` int(11) DEFAULT 0,
  `valueamt` float NOT NULL,
  `minavailable` int(11) DEFAULT 0,
  `maxavailable` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_pmarket_product_types`
--

LOCK TABLES `oto_pmarket_product_types` WRITE;
/*!40000 ALTER TABLE `oto_pmarket_product_types` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_pmarket_product_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_pmarket_products`
--

DROP TABLE IF EXISTS `oto_pmarket_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_pmarket_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_type` varchar(24) NOT NULL,
  `descr` varchar(255) NOT NULL DEFAULT '',
  `quantity` int(11) DEFAULT 0,
  `available` int(11) DEFAULT 0,
  `date_active` datetime DEFAULT NULL,
  `upgrademtype` tinyint(4) DEFAULT 0,
  `product_value` int(11) DEFAULT 0,
  `product_price` decimal(11,2) DEFAULT 0.00,
  `is_permanent` tinyint(4) DEFAULT 0,
  `producttype_id` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_pmarket_products`
--

LOCK TABLES `oto_pmarket_products` WRITE;
/*!40000 ALTER TABLE `oto_pmarket_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_pmarket_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_pmarket_purchased`
--

DROP TABLE IF EXISTS `oto_pmarket_purchased`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_pmarket_purchased` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `product_type` varchar(24) NOT NULL,
  `descr` varchar(255) NOT NULL DEFAULT '',
  `upgrademtype` tinyint(4) DEFAULT 0,
  `product_value` int(11) DEFAULT 0,
  `product_price` decimal(11,2) DEFAULT 0.00,
  `date_purchased` datetime DEFAULT NULL,
  `pre_balance` decimal(11,2) DEFAULT 0.00,
  `post_balance` decimal(11,2) DEFAULT 0.00,
  `product_id` int(11) DEFAULT 0,
  `producttype_id` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_pmarket_purchased`
--

LOCK TABLES `oto_pmarket_purchased` WRITE;
/*!40000 ALTER TABLE `oto_pmarket_purchased` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_pmarket_purchased` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_pmarket_settings`
--

DROP TABLE IF EXISTS `oto_pmarket_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_pmarket_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(30) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_pmarket_settings`
--

LOCK TABLES `oto_pmarket_settings` WRITE;
/*!40000 ALTER TABLE `oto_pmarket_settings` DISABLE KEYS */;
INSERT INTO `oto_pmarket_settings` (`id`, `field`, `value`) VALUES (1,'enabled','1'),(2,'paycomms','0');
/*!40000 ALTER TABLE `oto_pmarket_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_prizelog`
--

DROP TABLE IF EXISTS `oto_prizelog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_prizelog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `plugin` varchar(50) NOT NULL,
  `user` int(11) NOT NULL,
  `time` int(11) NOT NULL,
  `credits` int(11) NOT NULL DEFAULT 0,
  `bannerimps` int(11) NOT NULL DEFAULT 0,
  `textimps` int(11) NOT NULL DEFAULT 0,
  `cash` decimal(6,2) NOT NULL DEFAULT 0.00,
  `peelads` int(11) NOT NULL DEFAULT 0,
  `sqbans` int(11) NOT NULL DEFAULT 0,
  `mbrands` int(11) NOT NULL DEFAULT 0,
  `porkyps` int(11) NOT NULL DEFAULT 0,
  `xppoints` int(11) NOT NULL DEFAULT 0,
  `podpoints` int(11) NOT NULL DEFAULT 0,
  `widgetads` int(11) NOT NULL DEFAULT 0,
  `piggybank` decimal(6,2) NOT NULL DEFAULT 0.00,
  `notes` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_prizelog`
--

LOCK TABLES `oto_prizelog` WRITE;
/*!40000 ALTER TABLE `oto_prizelog` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_prizelog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_products`
--

DROP TABLE IF EXISTS `oto_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_products` (
  `productid` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `catid` int(11) NOT NULL DEFAULT 0,
  `itemid` varchar(20) DEFAULT NULL,
  `productname` varchar(100) NOT NULL DEFAULT '',
  `filename` varchar(50) NOT NULL DEFAULT '',
  `price` float(6,2) NOT NULL DEFAULT 0.00,
  `free` smallint(6) NOT NULL DEFAULT 0,
  `_2co_id` varchar(20) NOT NULL DEFAULT '',
  `credits` int(11) NOT NULL DEFAULT 0,
  `memtype` int(11) NOT NULL DEFAULT 0,
  `prodrank` int(11) NOT NULL DEFAULT 0,
  `subtype` tinyint(1) NOT NULL DEFAULT 0,
  `visible` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`productid`),
  KEY `catid` (`catid`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_products`
--

LOCK TABLES `oto_products` WRITE;
/*!40000 ALTER TABLE `oto_products` DISABLE KEYS */;
INSERT INTO `oto_products` (`productid`, `catid`, `itemid`, `productname`, `filename`, `price`, `free`, `_2co_id`, `credits`, `memtype`, `prodrank`, `subtype`, `visible`) VALUES (2,0,NULL,'Rewardme.vip Product Credit','Rewardme_Soloswaps_Member.txt',0.00,1,'',0,0,0,0,1),(3,0,NULL,'Top Sales CRM Access','CRM_access.txt',0.00,1,'',0,0,0,0,1),(4,0,NULL,'New Member 1000 Ads','newmember_1000_ad_credits.txt',0.00,1,'',0,0,0,0,1),(5,0,NULL,'Page Builder','freepages.txt',0.00,1,'',0,0,0,0,1),(6,0,NULL,'Email & SMS Software','Newsletter_SMS_Pro_access.txt',0.00,1,'',0,0,0,0,1);
/*!40000 ALTER TABLE `oto_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_products_cats`
--

DROP TABLE IF EXISTS `oto_products_cats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_products_cats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `catname` varchar(50) NOT NULL,
  `description` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_products_cats`
--

LOCK TABLES `oto_products_cats` WRITE;
/*!40000 ALTER TABLE `oto_products_cats` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_products_cats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_promo_codes`
--

DROP TABLE IF EXISTS `oto_promo_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_promo_codes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 0,
  `prizeid` int(11) NOT NULL,
  `code` varchar(30) NOT NULL,
  `sendadmin` int(11) NOT NULL DEFAULT 0,
  `adminto` varchar(200) NOT NULL,
  `emailsubj` varchar(100) NOT NULL,
  `adminemail` text NOT NULL,
  `tcodex` tinyint(1) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_promo_codes`
--

LOCK TABLES `oto_promo_codes` WRITE;
/*!40000 ALTER TABLE `oto_promo_codes` DISABLE KEYS */;
INSERT INTO `oto_promo_codes` (`id`, `enabled`, `prizeid`, `code`, `sendadmin`, `adminto`, `emailsubj`, `adminemail`, `tcodex`) VALUES (1,1,1,'Welcome143',0,'','Promo Code Notification','This is a notification that a member completed your promo code at #SITENAME#.  The member is:\r\n#FIRSTNAME#\r\n#LASTNAME#\r\n#USERNAME#',0),(2,1,2,'GLDMMBR653',0,'','Promo Code Notification','This is a notification that a member completed your promo code at #SITENAME#.  The member is:\r\n#FIRSTNAME#\r\n#LASTNAME#\r\n#USERNAME#',0),(4,1,3,'ViPfsws527',0,'','Promo Code Notification','This is a notification that a member completed your promo code at #SITENAME#.  The member is:\r\n#FIRSTNAME#\r\n#LASTNAME#\r\n#USERNAME#',0),(5,1,5,'WheelSpin_15b34',0,'','Promo Code Notification','This is a notification that a member completed your promo code at #SITENAME#.  The member is:\r\n#FIRSTNAME#\r\n#LASTNAME#\r\n#USERNAME#',0),(6,1,5,'wcm75369',0,'','Promo Code Notification','This is a notification that a member completed your promo code at #SITENAME#.  The member is:\r\n#FIRSTNAME#\r\n#LASTNAME#\r\n#USERNAME#',0),(7,1,3,'VPFNDRS123',0,'','Promo Code Notification','This is a notification that a member completed your promo code at #SITENAME#.  The member is:\r\n#FIRSTNAME#\r\n#LASTNAME#\r\n#USERNAME#',0);
/*!40000 ALTER TABLE `oto_promo_codes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_promo_prizes`
--

DROP TABLE IF EXISTS `oto_promo_prizes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_promo_prizes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `prizename` varchar(50) NOT NULL,
  `download` int(11) NOT NULL DEFAULT 0,
  `credits` int(11) NOT NULL DEFAULT 0,
  `banners` int(11) NOT NULL DEFAULT 0,
  `texts` int(11) NOT NULL DEFAULT 0,
  `cash` float(6,2) NOT NULL DEFAULT 0.00,
  `sendemail` int(11) NOT NULL DEFAULT 0,
  `emailsubj` varchar(100) NOT NULL,
  `emailtext` text NOT NULL,
  `peelimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `sqbanimps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `porkyps` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `mbrands` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `trafficpods` mediumint(8) unsigned NOT NULL DEFAULT 0,
  `jetfuel` mediumint(8) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `porkyps` (`porkyps`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_promo_prizes`
--

LOCK TABLES `oto_promo_prizes` WRITE;
/*!40000 ALTER TABLE `oto_promo_prizes` DISABLE KEYS */;
INSERT INTO `oto_promo_prizes` (`id`, `prizename`, `download`, `credits`, `banners`, `texts`, `cash`, `sendemail`, `emailsubj`, `emailtext`, `peelimps`, `sqbanimps`, `porkyps`, `mbrands`, `trafficpods`, `jetfuel`) VALUES (1,'NewMember',0,200,400,400,0.00,0,'Your Promo Code','You successfully completed the promo code.  You can download your prize here: example.com',0,0,0,0,0,0),(2,'Gold Level',0,10000,7500,7500,0.00,0,'Your Promo Code','You successfully completed the promo code.  You can download your prize here: example.com',0,0,0,0,0,0),(3,'VIP Founders',0,70000,40000,40000,0.00,0,'Your Promo Code','You successfully completed the promo code.  You can download your prize here: example.com',0,0,0,0,0,0),(5,'1,000 Ad Credits',0,1000,0,0,0.00,0,'Your Promo Code','You successfully completed the promo code.  You can download your prize here: example.com',0,0,0,0,0,0);
/*!40000 ALTER TABLE `oto_promo_prizes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_promo_users`
--

DROP TABLE IF EXISTS `oto_promo_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_promo_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL DEFAULT '0000-00-00',
  `state` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL DEFAULT 0,
  `codeid` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=263 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_promo_users`
--

LOCK TABLES `oto_promo_users` WRITE;
/*!40000 ALTER TABLE `oto_promo_users` DISABLE KEYS */;
INSERT INTO `oto_promo_users` (`id`, `date`, `state`, `userid`, `codeid`) VALUES (1,'2022-05-23',1,5,1),(2,'2022-05-25',1,2,1),(3,'2022-05-26',1,8,3),(4,'2022-05-27',1,9,1),(5,'2022-05-27',1,10,1),(6,'2022-05-27',1,11,3),(7,'2022-05-28',1,13,1),(8,'2022-05-28',1,14,1),(9,'2022-05-28',1,16,3),(10,'2022-05-28',1,9,3),(11,'2022-05-28',1,17,3),(12,'2022-05-28',1,18,3),(13,'2022-05-28',1,20,3),(14,'2022-05-28',1,21,3),(15,'2022-05-28',1,22,1),(16,'2022-05-28',1,23,3),(17,'2022-05-28',1,24,1),(18,'2022-05-28',1,25,3),(19,'2022-05-28',1,14,3),(20,'2022-05-28',1,27,3),(21,'2022-05-28',1,28,3),(22,'2022-05-28',1,29,1),(23,'2022-05-28',1,29,3),(24,'2022-05-28',1,30,3),(25,'2022-05-28',1,31,3),(26,'2022-05-28',1,32,3),(27,'2022-05-28',1,33,2),(28,'2022-05-28',1,34,3),(29,'2022-05-28',1,35,3),(30,'2022-05-29',1,36,3),(31,'2022-05-29',1,37,1),(32,'2022-05-29',1,38,3),(33,'2022-05-29',1,39,3),(34,'2022-05-29',1,40,3),(35,'2022-05-29',1,41,3),(36,'2022-05-29',1,42,1),(37,'2022-05-29',1,43,3),(38,'2022-05-29',1,44,3),(39,'2022-05-29',1,45,3),(40,'2022-05-29',1,46,3),(41,'2022-05-29',1,48,3),(42,'2022-05-29',1,49,3),(43,'2022-05-29',1,51,3),(44,'2022-05-29',1,52,1),(45,'2022-05-29',1,53,3),(46,'2022-05-29',1,55,3),(47,'2022-05-30',1,56,3),(48,'2022-05-30',1,57,3),(49,'2022-05-30',1,47,3),(50,'2022-05-30',1,58,3),(51,'2022-05-30',1,59,3),(52,'2022-05-30',1,60,1),(53,'2022-05-30',1,61,1),(54,'2022-05-30',1,62,1),(55,'2022-05-30',1,63,3),(56,'2022-05-31',1,64,1),(57,'2022-05-31',1,67,3),(58,'2022-05-31',1,68,3),(59,'2022-05-31',1,69,3),(60,'2022-05-31',1,70,1),(61,'2022-05-31',1,70,3),(62,'2022-05-31',1,73,3),(63,'2022-05-31',1,74,3),(64,'2022-05-31',1,76,3),(65,'2022-06-01',1,77,3),(66,'2022-06-01',1,78,3),(67,'2022-06-01',1,79,1),(68,'2022-06-01',1,80,3),(69,'2022-06-01',1,81,1),(70,'2022-06-01',1,82,3),(71,'2022-06-02',1,83,3),(72,'2022-06-02',1,85,3),(73,'2022-06-03',1,86,3),(74,'2022-06-03',1,89,3),(75,'2022-06-03',1,90,3),(76,'2022-06-04',1,91,3),(77,'2022-06-04',1,105,3),(78,'2022-06-05',1,106,3),(79,'2022-06-05',1,111,3),(80,'2022-06-05',1,66,1),(81,'2022-06-06',1,117,1),(82,'2022-06-06',1,117,3),(83,'2022-06-07',1,118,3),(84,'2022-06-07',1,119,3),(85,'2022-06-08',1,60,3),(86,'2022-06-09',1,116,3),(87,'2022-06-09',1,50,1),(88,'2022-06-09',1,122,3),(89,'2022-06-10',1,125,2),(90,'2022-06-13',1,123,3),(91,'2022-06-16',1,120,2),(92,'2022-06-17',1,132,1),(93,'2022-06-19',1,133,3),(94,'2022-06-19',1,19,3),(95,'2022-06-20',1,134,3),(96,'2022-06-21',1,81,3),(97,'2022-07-03',1,139,3),(98,'2022-07-15',1,129,3),(99,'2022-07-16',1,142,3),(100,'2022-07-16',1,54,2),(101,'2022-07-19',1,27,1),(102,'2022-07-20',1,143,1),(103,'2022-07-20',1,34,1),(104,'2022-07-21',1,147,1),(105,'2022-07-21',1,30,1),(106,'2022-07-21',1,141,3),(107,'2022-07-22',1,148,1),(108,'2022-07-22',1,146,1),(109,'2022-07-23',1,18,1),(110,'2022-07-23',1,150,1),(111,'2022-07-23',1,43,1),(112,'2022-07-23',1,151,3),(113,'2022-07-24',1,89,1),(114,'2022-07-24',1,153,1),(115,'2022-07-24',1,152,1),(116,'2022-07-26',1,36,1),(117,'2022-07-27',1,150,3),(118,'2022-07-27',1,158,1),(119,'2022-07-27',1,142,1),(120,'2022-07-28',1,155,2),(121,'2022-07-28',1,161,1),(122,'2022-07-30',1,35,1),(123,'2022-07-30',1,109,1),(124,'2022-07-30',1,164,1),(125,'2022-07-31',1,165,1),(126,'2022-07-31',1,76,1),(127,'2022-08-02',1,153,3),(128,'2022-08-03',1,168,3),(129,'2022-08-05',1,21,1),(130,'2022-08-05',1,41,1),(131,'2022-08-07',1,170,1),(132,'2022-08-08',1,171,1),(133,'2022-08-10',1,174,1),(134,'2022-08-10',1,176,3),(135,'2022-08-11',1,176,1),(136,'2022-08-15',1,179,1),(137,'2022-08-15',1,180,3),(138,'2022-08-16',1,178,3),(139,'2022-08-20',1,181,1),(140,'2022-08-21',1,182,1),(141,'2022-08-21',1,119,1),(142,'2022-08-23',1,177,1),(143,'2022-08-25',1,181,4),(144,'2022-08-26',1,184,1),(145,'2022-08-27',1,85,1),(146,'2022-08-27',1,165,4),(147,'2022-09-20',1,190,1),(148,'2022-09-24',1,191,1),(149,'2022-09-25',1,192,1),(150,'2022-09-27',1,194,1),(151,'2022-10-12',1,197,2),(152,'2022-10-18',1,200,1),(153,'2022-10-20',1,201,1),(154,'2022-11-06',1,203,1),(155,'2022-11-15',1,204,1),(156,'2022-11-19',1,205,1),(157,'2022-11-28',1,206,1),(158,'2022-11-28',1,208,1),(159,'2022-11-28',1,209,1),(160,'2022-11-29',1,210,1),(161,'2022-11-30',1,211,1),(162,'2022-11-30',1,12,1),(163,'2022-11-30',1,212,1),(164,'2022-12-03',1,213,1),(165,'2022-12-03',1,38,1),(166,'2022-12-05',1,216,1),(167,'2022-12-18',1,221,1),(168,'2022-12-20',1,222,1),(169,'2022-12-28',1,224,1),(170,'2023-01-01',1,226,1),(171,'2023-01-03',1,227,1),(172,'2023-01-04',1,228,1),(173,'2023-01-08',1,230,1),(174,'2023-01-08',1,97,1),(175,'2023-01-10',1,231,1),(176,'2023-01-10',1,233,5),(177,'2023-01-10',1,233,1),(178,'2023-01-18',1,236,1),(179,'2023-01-20',1,40,1),(180,'2023-01-26',1,237,1),(181,'2023-02-03',1,238,1),(182,'2023-02-04',1,239,1),(183,'2023-02-10',1,241,1),(184,'2023-02-11',1,242,6),(185,'2023-02-12',1,243,1),(186,'2023-02-17',1,245,1),(187,'2023-03-01',1,246,1),(188,'2023-03-01',1,247,1),(189,'2023-03-08',1,251,1),(190,'2023-03-09',1,249,1),(191,'2023-03-13',1,253,1),(192,'2023-03-27',1,256,1),(193,'2023-03-28',1,257,1),(194,'2023-03-28',1,259,1),(195,'2023-03-28',1,260,1),(196,'2023-04-11',1,263,1),(197,'2023-04-30',1,188,6),(198,'2023-05-14',1,273,1),(199,'2023-05-24',1,75,6),(200,'2023-06-02',1,279,1),(201,'2023-06-03',1,280,1),(202,'2023-06-06',1,281,1),(203,'2023-06-09',1,282,1),(204,'2023-06-09',1,283,1),(205,'2023-06-10',1,284,1),(206,'2023-06-12',1,286,6),(207,'2023-06-21',1,288,1),(208,'2023-06-28',1,290,1),(209,'2023-06-29',1,291,1),(210,'2023-07-15',1,297,6),(211,'2023-07-18',1,298,1),(212,'2023-07-19',1,299,1),(213,'2023-07-21',1,300,1),(214,'2023-07-22',1,300,6),(215,'2023-07-31',1,301,1),(216,'2023-07-31',1,301,5),(217,'2023-07-31',1,301,6),(218,'2023-08-04',1,70,6),(219,'2023-09-07',1,214,1),(220,'2023-09-09',1,308,1),(221,'2023-09-10',1,307,1),(222,'2023-09-10',1,309,1),(223,'2023-09-16',1,16,4),(224,'2023-09-16',1,304,1),(225,'2023-09-17',1,310,4),(226,'2023-09-17',1,311,4),(227,'2023-09-18',1,247,4),(228,'2023-09-19',1,22,2),(229,'2023-09-19',1,312,4),(230,'2023-09-19',1,313,4),(231,'2023-09-19',1,314,4),(232,'2023-09-20',1,19,2),(233,'2023-09-22',1,141,4),(234,'2023-09-22',1,73,4),(235,'2023-09-24',1,316,4),(236,'2023-09-30',1,317,4),(237,'2023-10-08',1,319,4),(238,'2023-10-11',1,320,1),(239,'2023-10-11',1,321,1),(240,'2023-10-12',1,322,4),(241,'2023-10-25',1,38,4),(242,'2023-10-31',1,311,1),(243,'2023-11-02',1,323,1),(244,'2023-12-04',1,326,1),(245,'2023-12-04',1,326,2),(246,'2023-12-04',1,326,4),(247,'2023-12-16',1,327,4),(248,'2024-01-26',1,333,1),(249,'2024-04-22',1,378,1),(250,'2024-06-02',1,388,1),(251,'2024-06-24',1,393,1),(252,'2024-08-13',1,396,1),(253,'2024-08-19',1,401,1),(254,'2024-09-03',1,405,1),(255,'2024-09-20',1,408,6),(256,'2024-09-29',1,413,1),(257,'2024-09-30',1,221,5),(258,'2024-12-10',1,420,1),(259,'2025-02-24',1,428,1),(260,'2025-04-25',1,441,1),(261,'2025-08-17',1,448,1),(262,'2025-08-18',1,448,6);
/*!40000 ALTER TABLE `oto_promo_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_promotion`
--

DROP TABLE IF EXISTS `oto_promotion`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_promotion` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(20) NOT NULL DEFAULT '',
  `content` text NOT NULL,
  `subject` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_promotion`
--

LOCK TABLES `oto_promotion` WRITE;
/*!40000 ALTER TABLE `oto_promotion` DISABLE KEYS */;
INSERT INTO `oto_promotion` (`id`, `type`, `content`, `subject`) VALUES (7,'splashpage','<!DOCTYPE html>\r\n<html>\r\n  <head>\r\n    <meta content=\"text/html; charset=utf-8\" http-equiv=\"content-type\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n    <title>Solo Swaps - Spin To Win</title>\r\n    <style type=\"text/css\">\r\n      \r\n      /* Wheel Spin by Martin Chantler - https://reducethehype.com */\r\n\r\n      * {\r\n        box-sizing: border-box;\r\n      }\r\n      \r\n      html {\r\n        background-color: #004abf;\r\n        background: linear-gradient(#004abf,#00d4a1) no-repeat center center fixed;\r\n        background-size: cover;\r\n      }\r\n      \r\n      #container {\r\n        margin: 0 auto;\r\n        padding-top: 20px;\r\n        padding-bottom: 20px;\r\n        font-family: Arial, \"Helvetica Neue\", Helvetica, sans-serif;\r\n        color: #fff;\r\n        text-align: center;\r\n      }\r\n      \r\n      #wheel-container, #form-wrapper {\r\n        display: inline-block;\r\n        vertical-align: middle;\r\n      }\r\n      \r\n      #wheel-container {\r\n        position: relative;\r\n        width: 500px;\r\n        height: 500px;\r\n        margin: 0 auto;\r\n        border: 0;\r\n        border-radius: 50%;\r\n        box-shadow: 5px 5px rgba(0,0,0,0.3);\r\n      }\r\n      \r\n      #wheel-container > div {\r\n        overflow: hidden;\r\n      }\r\n      \r\n      #wheel {\r\n        width: 500px;\r\n        height: 500px;\r\n        background-color: #011f4b;\r\n        background-image: repeating-conic-gradient(from 15deg, #011f4b 0deg 30deg, #005b96 30deg 60deg,#03396c 60deg 90deg, #6497b1 90deg 120deg);\r\n        background-repeat: no-repeat;\r\n        background-size: 100%;\r\n        border: 0;\r\n        border-radius: 50%;\r\n        overflow: hidden;\r\n        box-shadow: 0 0 0 5px #ff0 inset;\r\n        transition: transform 5s ease-out;\r\n      }\r\n      \r\n      #wheel div {\r\n        position: absolute;\r\n        top: calc(50% - 20px);\r\n        left: 50%;\r\n        width:  40%;\r\n        padding-left: 8%;\r\n        max-height: 40px;  /* Do NOT Change This Value! */\r\n        line-height: 40px; /* Do NOT Change This Value! */\r\n        font-size: 18px;\r\n        font-weight: bold;\r\n        color: white;\r\n        text-align: center;\r\n        overflow-x: hidden;\r\n        transform-origin: left center;\r\n        white-space: nowrap;\r\n        box-sizing: content-box;\r\n      }\r\n      \r\n      #pointer {\r\n        position: absolute;\r\n        width: 30px;\r\n        height: 30px;\r\n        top: calc(50% - 15px);\r\n        right: -10px;\r\n        z-index: 100;\r\n      }\r\n      \r\n      #wheel-center {\r\n        position: absolute;\r\n        width: 70px;\r\n        height: 70px;\r\n        top: 50%;\r\n        left: 50%;\r\n        transform: translate(-50%,-50%);\r\n        border: 1px solid black;\r\n        border-radius: 50%;\r\n        background: #ff0;\r\n        z-index: 100;\r\n      }\r\n      \r\n      #form-wrapper {\r\n        width: 480px;\r\n        margin-left: 20px;\r\n        font-family: Verdana, Geneva, sans-serif;\r\n      }\r\n      \r\n      .headline {\r\n        margin-bottom:20px;\r\n        font-size:68px;\r\n        font-weight:bold;\r\n        color:#f00;\r\n        text-shadow: -1px -1px #fff, -1px 1px #fff, 1px 1px #fff, 1px -1px #fff;\r\n      }\r\n      \r\n      .main-text {\r\n        margin: 10px;\r\n        font-size: 24px;\r\n        font-weight: bold;\r\n        text-shadow: 2px 2px rgba(0,0,0,0.7);\r\n        text-transform: capitalize;\r\n      }\r\n      \r\n      .sub-text {\r\n        margin: 10px;\r\n        font-size: 16px;\r\n        text-shadow: 1px 1px rgba(0,0,0,0.7);\r\n      }\r\n      \r\n      #prizeText {\r\n        font-weight: bold;\r\n        color: yellow;\r\n      }\r\n      \r\n      #prizeURL {\r\n        display: inline-block;\r\n        width: 80%;\r\n        max-width: 400px;\r\n        padding: 5px;\r\n        background-color: #fff;\r\n        border: 1px solid #000;\r\n        font-size: 18px;\r\n        font-weight: bold;\r\n        color: #000;\r\n        vertical-align: middle;\r\n      }\r\n      \r\n      #spinButton, .btn { \r\n        background-color: #fce30c;\r\n        display:inline-block;\r\n        border: none;\r\n        border-radius: 5px;       \r\n        color: #040591;\r\n        font-family: Verdana, Geneva, sans-serif;\r\n        font-size:20px;\r\n        font-weight: bold;\r\n        padding: 10px;\r\n        max-width: 360px;\r\n        width: 90%;\r\n        margin-top: 5px;\r\n        cursor: pointer;\r\n        text-transform: uppercase;\r\n        text-decoration: none;\r\n        white-space: normal;\r\n        box-shadow: 0 3px 3px #000\r\n      }\r\n      \r\n      #spinButton:hover {\r\n        background-color: #f9eb72;\r\n      }\r\n      \r\n      button:hover, button:active, button:focus {\r\n        outline: none;\r\n      }\r\n      \r\n      .copyButton {\r\n        border: 2px solid #ccc;\r\n        border-radius: 4px;\r\n        padding: 1px 4px;\r\n        background-color: #eee;\r\n        cursor: pointer;\r\n        vertical-align: middle;\r\n      }\r\n      \r\n      .copyButton svg {\r\n        width: 24px;\r\n        height: 24px;\r\n      }\r\n      \r\n      @media(max-width: 1023px) {\r\n        #wheel-container, #form-wrapper {display: block;}\r\n      	#form-wrapper {width: auto; margin: auto;}\r\n      }\r\n      \r\n      @media(max-width: 740px) {\r\n        .headline {font-size: 38px;}\r\n      }\r\n      \r\n      @media(max-width: 500px) {\r\n        #wheel-container {width: 300px;height: 300px;}\r\n        #wheel {width: 300px; height: 300px;}\r\n        #wheel div {font-size: 14px;}\r\n        #wheel-center {width: 40px; height: 40px;}\r\n      }\r\n      \r\n    </style>\r\n  </head>\r\n  <body>\r\n    <div id=\"container\">\r\n      <div class=\"headline\">SPIN TO WIN A PRIZE!</div>\r\n      <div id=\"wheel-container\">\r\n        <div id=\"pointer\"><svg height=\"30\" width=\"30\"><polygon points=\"0,15 30,0 20,15 30,30\"\r\n\r\n              style=\"fill:white;stroke:black;stroke-width:2\"></polygon></svg></div>\r\n        <div id=\"wheel-center\">Â </div>\r\n        <div>\r\n          <div id=\"wheel\">\r\n            <div id=\"prize12\">1000 Ad Credits</div>\r\n            <div style=\"transform: rotate(30deg);\">Next Time</div>\r\n            <div id=\"prize10\" style=\"transform: rotate(60deg);font-size:16px\">Lead Manager / Task CRM</div>\r\n            <div style=\"transform: rotate(90deg);\">Unlucky</div>\r\n            <div id=\"prize8\" style=\"transform: rotate(120deg);\">SMS Software</div>\r\n            <div style=\"transform: rotate(150deg);\">Almost</div>\r\n            <div id=\"prize6\" style=\"transform: rotate(180deg);\">Page Builder</div>\r\n            <div style=\"transform: rotate(210deg);\">Next Time</div>\r\n            <div id=\"prize4\" style=\"transform: rotate(240deg);\">Email Blaster Software</div>\r\n            <div style=\"transform: rotate(270deg);\">Unlucky</div>\r\n            <div id=\"prize2\" style=\"transform: rotate(300deg);\">Link Tracker & Rotar</div>\r\n            <div style=\"transform: rotate(330deg);\">Almost</div>\r\n          </div>\r\n        </div>\r\n      </div>\r\n      <div id=\"form-wrapper\">\r\n        <!-- Site Banner -->\r\n        <div style=\"margin-top: 30px;margin-bottom:30px;text-align:center\">\r\n          <p><a href=\"https://soloswaps.com/?rid=#AFFILIATEID#\" target=\"_blank\" title=\"Click To Join For FREE!\"><img\r\n\r\n                src=\"https://i.imgur.com/gu4vtKd.jpg\" style=\"max-width:100%;height:auto;box-shadow: 0 0 0 3px #000\"\r\n\r\n                border=\"0\"></a></p>\r\n        </div>\r\n        <!-- Welcome Text Starts Here -->\r\n        <div id=\"welcome-text\">\r\n          <div class=\"main-text\">Welcome to the amazing Wheel Spin of <span\r\n\r\n              style=\"color:yellow\">SOLO SWAPS</span></div>\r\n          <div class=\"sub-text\">\r\n            <p>This is your lucky day!!!</p>\r\n            <p>Why?</p>\r\n            <p>You WILL win a FREE prize!</p>\r\n            <p>Just spin the wheel and see what you\'ve won.</p>\r\n            <p>Spin now - it\'s FREE :-)</p>\r\n          </div>\r\n          <div class=\"sub-text\">You have 3 spins left.</div>\r\n        </div>\r\n        <!-- Welcome Text Ends Here -->\r\n        <!-- Lost Text Starts Here -->\r\n        <div id=\"lost-text\" style=\"display:none;\">\r\n          <div class=\"main-text\">Sorry! Bad Luck.</div>\r\n          <div class=\"sub-text\">Why not see if you have better luck this time.</div>\r\n          <div id=\"spins-left\" class=\"sub-text\">You have 3 spins left.</div>\r\n        </div>\r\n        <!-- Lost Text Ends Here -->\r\n        <!-- Free Spin Text Starts Here -->\r\n        <div id=\"freeSpin-text\" style=\"display:none;\">\r\n          <div class=\"main-text\">Congratulations!</div>\r\n          <div class=\"sub-text\">You have won an extra spin.</div>\r\n        </div>\r\n        <!-- Free Spin Text Ends Here -->\r\n        <!-- No Spins Left Starts Here -->\r\n        <div id=\"noSpins-text\" style=\"display:none;\">\r\n          <div class=\"main-text\">Sorry! No Spins Left.</div>\r\n          <div class=\"sub-text\">Come back and play another time..</div>\r\n        </div>\r\n        <!-- No Spins Left Ends Here -->\r\n        <!-- Win Text Starts Here -->\r\n        <div id=\"win-text\" style=\"display:none;\">\r\n          <div class=\"main-text\">CONGRATULATIONS!</div>\r\n          <div class=\"sub-text\">You Have Won: <span id=\"prizeText\">Â </span></div>\r\n          <div id=\"prizeURL\">Promo Code Will Display Here!</div>\r\n          <button title=\"Copy\" onclick=\"copyToClipboard()\" class=\"copyButton\">\r\n            <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\r\n              <g>\r\n                <path fill=\"none\" d=\"M0 0h24v24H0z\"></path>\r\n                <path d=\"M7 6V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-3v3c0 .552-.45 1-1.007 1H4.007A1.001 1.001 0 0 1 3 21l.003-14c0-.552.45-1 1.007-1H7zM5.003 8L5 20h10V8H5.003zM9 6h8v10h2V4H9v2z\"></path> </g> </svg> </button>\r\n          <p style=\"font-weight:bold;\">1) Open a free account at Solo Swaps.</p>\r\n          <p><a class=\"btn\" href=\"https://soloswaps.com/?rid=#AFFILIATEID#\" target=\"_blank\">Click Here To Join FREE!</a></p>\r\n          <p style=\"font-weight:bold;\">2) Copy promo code above to your clipboard.</p>\r\n          <p style=\"font-weight:bold;\">3) Instructions on how to claim are on the members home page.</p>\r\n        </div>\r\n        <!-- Win Text Ends Here -->\r\n        <!-- Spin Button -->\r\n        <div><button id=\"spinButton\" type=\"button\" onclick=\"spinWheel();\">Try Your Luck</button></div>\r\n        <!-- Test Outputs Start -->\r\n        <p id=\"output1\" style=\"display:none;\">Â </p>\r\n        <p id=\"output2\" style=\"display:none;\">Â </p>\r\n        <p id=\"output3\" style=\"display:none;\">Â </p>\r\n        <!-- Test Outputs End --> </div>\r\n    </div>\r\n    <script>\r\n      \r\n      // Wheel Spin by Martin Chantler - https://reducethehype.com\r\n\r\n      var spinSound,cheerSound,loseSound,soundEnabled=!0,spinsLeft=3,pos=0,winningSegment=0;function spinWheel(){1==soundEnabled&&spinSound.play();var e=document.getElementById(\"wheel\"),n=document.getElementById(\"spinButton\"),t=winningSegment;winningSegment=Math.floor(12*Math.random())+1,1==spinsLeft&&(winningSegment=2*(Math.floor(6*Math.random())+1)),pos+=360+(30*winningSegment+30*(12-t)),e.style.transform=\"rotate(\"+pos+\"deg)\",n.innerHTML=\"Spinning...\",n.disabled=!0,n.style.cursor=\"not-allowed\",setTimeout(function(){checkWin()},5e3)}function checkWin(){spinsLeft--,document.getElementById(\"spins-left\").innerHTML=\"You have \"+spinsLeft+\" spins left.\",document.getElementById(\"welcome-text\").style.display=\"none\",document.getElementById(\"lost-text\").style.display=\"none\",document.getElementById(\"freeSpin-text\").style.display=\"none\",12==winningSegment||10==winningSegment||8==winningSegment||6==winningSegment||4==winningSegment||2==winningSegment?(document.getElementById(\"win-text\").style.display=\"block\",document.getElementById(\"spinButton\").style.display=\"none\",1==soundEnabled&&cheerSound.play(),\"undefined\"!=typeof Storage&&(localStorage.wheelspin=winningSegment),document.getElementById(\"prizeText\").innerHTML=document.getElementById(\"prize\"+winningSegment).innerHTML,document.getElementById(\"prizeURL\").innerHTML=generateCode(winningSegment)):0<spinsLeft?(1==soundEnabled&&loseSound.play(),document.getElementById(\"lost-text\").style.display=\"block\",document.getElementById(\"spinButton\").innerHTML=\"Try Again\",document.getElementById(\"spinButton\").disabled=!1,document.getElementById(\"spinButton\").style.cursor=\"pointer\"):(document.getElementById(\"noSpins-text\").style.display=\"block\",document.getElementById(\"spinButton\").style.display=\"none\")}function generateCode(e){return\"WheelSpin_\"+((7395+e)*e).toString(16)}1!=soundEnabled||(spinSound=document.createElement(\"AUDIO\")).canPlayType(\"audio/mpeg\")&&(cheerSound=document.createElement(\"AUDIO\"),loseSound=document.createElement(\"AUDIO\"),spinSound.setAttribute(\"src\",\"https://reducethehype.com/sounds/wheel-spin.mp3\"),spinSound.preload=\"auto\",cheerSound.setAttribute(\"src\",\"https://reducethehype.com/sounds/cheer.mp3\"),cheerSound.preload=\"auto\",loseSound.setAttribute(\"src\",\"https://reducethehype.com/sounds/lose.mp3\"),loseSound.preload=\"auto\"),\"undefined\"!=typeof Storage&&0<Number(localStorage.wheelspin)&&(document.getElementById(\"welcome-text\").style.display=\"none\",document.getElementById(\"win-text\").style.display=\"block\",document.getElementById(\"spinButton\").style.display=\"none\",winningSegment=Number(localStorage.wheelspin),document.getElementById(\"prizeText\").innerHTML=document.getElementById(\"prize\"+winningSegment).innerHTML,document.getElementById(\"prizeURL\").innerHTML=generateCode(winningSegment),wheel.style.transform=\"rotate(\"+30*winningSegment+\"deg)\");\r\n      \r\n      function copyToClipboard() {\r\n        var prizeCode = document.getElementById(\"prizeURL\");\r\n        var copyText = prizeCode.innerText;\r\n        navigator.clipboard.writeText(copyText);\r\n        prizeCode.innerText = \"Copied!\"\r\n        setTimeout(function(){prizeCode.innerText = copyText}, 2000);\r\n      }\r\n      \r\n    </script>\r\n  </body>\r\n</html>','');
/*!40000 ALTER TABLE `oto_promotion` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_promotion_headers`
--

DROP TABLE IF EXISTS `oto_promotion_headers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_promotion_headers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(20) NOT NULL,
  `template_data` varchar(10000) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_promotion_headers`
--

LOCK TABLES `oto_promotion_headers` WRITE;
/*!40000 ALTER TABLE `oto_promotion_headers` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_promotion_headers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_purchasedpages`
--

DROP TABLE IF EXISTS `oto_purchasedpages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_purchasedpages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL DEFAULT 0,
  `pageid` int(11) NOT NULL DEFAULT 0,
  `ipntransid` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_purchasedpages`
--

LOCK TABLES `oto_purchasedpages` WRITE;
/*!40000 ALTER TABLE `oto_purchasedpages` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_purchasedpages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_purchases`
--

DROP TABLE IF EXISTS `oto_purchases`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_purchases` (
  `purchaseid` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `affid` int(11) unsigned NOT NULL DEFAULT 0,
  `itemid` varchar(20) DEFAULT NULL,
  `txn_id` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`purchaseid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_purchases`
--

LOCK TABLES `oto_purchases` WRITE;
/*!40000 ALTER TABLE `oto_purchases` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_purchases` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_puzhntmpc`
--

DROP TABLE IF EXISTS `oto_puzhntmpc`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_puzhntmpc` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `piece` int(11) NOT NULL,
  `status` tinyint(1) NOT NULL,
  `claimkey` varchar(255) NOT NULL,
  `schance` float NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_puzhntmpc`
--

LOCK TABLES `oto_puzhntmpc` WRITE;
/*!40000 ALTER TABLE `oto_puzhntmpc` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_puzhntmpc` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_puzhntpc`
--

DROP TABLE IF EXISTS `oto_puzhntpc`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_puzhntpc` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `puzzle` int(11) NOT NULL,
  `image` varchar(255) NOT NULL,
  `blank` varchar(255) NOT NULL,
  `gridloc` varchar(255) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 0,
  `credits` int(11) NOT NULL DEFAULT 0,
  `banners` int(11) NOT NULL DEFAULT 0,
  `textads` int(11) NOT NULL DEFAULT 0,
  `cash` float NOT NULL DEFAULT 0,
  `peelads` int(11) NOT NULL DEFAULT 0,
  `sqbans` int(11) NOT NULL DEFAULT 0,
  `mbranders` int(11) NOT NULL DEFAULT 0,
  `porkyps` int(11) NOT NULL DEFAULT 0,
  `xppoints` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_puzhntpc`
--

LOCK TABLES `oto_puzhntpc` WRITE;
/*!40000 ALTER TABLE `oto_puzhntpc` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_puzhntpc` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_puzhntpuz`
--

DROP TABLE IF EXISTS `oto_puzhntpuz`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_puzhntpuz` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `horizontal` tinyint(1) NOT NULL DEFAULT 0,
  `vertical` tinyint(1) NOT NULL DEFAULT 0,
  `pord` int(11) NOT NULL DEFAULT 0,
  `credits` int(11) NOT NULL DEFAULT 0,
  `banners` int(11) NOT NULL DEFAULT 0,
  `textads` int(11) NOT NULL DEFAULT 0,
  `cash` float NOT NULL DEFAULT 0,
  `peelads` int(11) NOT NULL DEFAULT 0,
  `sqbans` int(11) NOT NULL DEFAULT 0,
  `mbranders` int(11) NOT NULL DEFAULT 0,
  `porkyps` int(11) NOT NULL DEFAULT 0,
  `xppoints` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_puzhntpuz`
--

LOCK TABLES `oto_puzhntpuz` WRITE;
/*!40000 ALTER TABLE `oto_puzhntpuz` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_puzhntpuz` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_puzhntset`
--

DROP TABLE IF EXISTS `oto_puzhntset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_puzhntset` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(20) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_puzhntset`
--

LOCK TABLES `oto_puzhntset` WRITE;
/*!40000 ALTER TABLE `oto_puzhntset` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_puzhntset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_puzhnttmp`
--

DROP TABLE IF EXISTS `oto_puzhnttmp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_puzhnttmp` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `subject` varchar(255) NOT NULL,
  `body` text NOT NULL,
  `siteurl` varchar(255) NOT NULL,
  `lastsent` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_puzhnttmp`
--

LOCK TABLES `oto_puzhnttmp` WRITE;
/*!40000 ALTER TABLE `oto_puzhnttmp` DISABLE KEYS */;
INSERT INTO `oto_puzhnttmp` (`id`, `subject`, `body`, `siteurl`, `lastsent`) VALUES (1,'Design Your Own Banner Ads','Hi #FIRSTNAME#,\r\n\r\nHave you heard that Instant Banner Creator has been improved?  So\r\nnow you can design your own professional banner ads quickly and\r\neasily!\r\n\r\nIt\'s free to join, so be sure to check it out:\r\n-> http://instantbannercreator.com/?rid=10\r\n\r\nSincerely,\r\n#SITENAME# Admin','http://instantbannercreator.com/?rid=10',0),(2,'Are your website visitors leaving without buying?','Hi #FIRSTNAME#,\r\n\r\nAre your website visitors leaving without buying?\r\n\r\nOf course some of them are, if you had a 100%\r\nconversion rate you probably wouldn\'t sit here\r\nand read this email.\r\n\r\nBut what if you could easily double your\r\nconversion rate. Get more sales from the same\r\namount of traffic - that would be sweet wouldn\'t\r\nit?\r\n\r\nYou see there\'s a reason why most sales letters\r\nlook the same. The basic formula of the long sales\r\nletter works - however there is a problem...\r\n\r\nYou never really know at which point your sales\r\nletter converts a prospect to a customer. How \r\noften have you read a sales letter that you were \r\ngenuinely interested and then closed the page \r\nbefore you got to the order button?\r\n\r\nYou really want to have your order button right\r\nthere in front of people - sticking out like a\r\nsoar thumb and ready to be clicked the instant\r\nyour prospect decides to buy. Of course that has\r\nnot been possible...\r\n\r\n...Until the Floating Action Button arrived on the scene.\r\n \r\n=> http://floatingactionbutton.com/?rid=5686\r\n\r\nA brand new technology that allows you to place\r\na few lines of code on your website, and have\r\nyour order buttons float around and blend in with\r\nyour sales letter.\r\n\r\nBut that\'s just one of the many uses for this\r\nscript - you can float just about anything on\r\nyour site, including video, audio, opt-in forms etc.\r\n\r\nVisit the site to see the Floating Action Button\r\nin action, and don\'t forget to watch the video.\r\nI think you will be amazed by the many different\r\nways you can use this new technology.\r\n\r\n=> http://floatingactionbutton.com/?rid=5686\r\n\r\n\r\nBest regards,\r\n#SITENAME# Admin','http://floatingactionbutton.com/?rid=5686',0),(3,'Start Your Own Viral Mailer Today!','Hi #FIRSTNAME#,\r\n\r\nHave you ever dreamed of opening your own viral\r\nmailer just like #SITENAME#?\r\n\r\nLFMVM is the industry-leading solution for starting\r\nyour own viral mailer, and you can now get your\r\nown copy of this software right here:\r\n\r\n-> http://theviralmailerscript.com/?rid=1\r\n\r\nHave an existing Viral Mailer? \r\n\r\nWe\'ll handle the transfer of your data and customer\r\ndetails to your new LFMVM site\r\n\r\nAnxious about installations? \r\n\r\nWe have done for you solutions available to purchase\r\nand can even arrange your hosting.\r\n\r\nStuck on the details? \r\n\r\nIf you\'re not sure how to use an LFMVM feature, you\r\ncan use our support system to get all the answers you\r\nneed. \r\n\r\nNeed some marketing advice? \r\n\r\nWe offer monthly training conferences and an active\r\nFacebook community to help you get your business off\r\nthe ground.\r\n\r\nJust click this link to take the first step to\r\nstarting your very own viral mailer business:\r\n\r\n-> http://theviralmailerscript.com/?rid=1\r\n\r\nYour Success\r\n#SITENAME# Admin','http://theviralmailerscript.com/?rid=1',0),(4,'Is advertising your business a waste of money?','Hi #FIRSTNAME#,\r\n\r\nWhen you advertise your business, you expect\r\nto make some profit out of it... I mean,\r\nthat\'s the whole idea of advertising \r\nin the first place, right?\r\n\r\nSorry to say it doesn\'t work that way a lot\r\nof the time... most advertising actually \r\nloses money for businesses.\r\n\r\nYou need a way to track what each ad is\r\ndoing, and whether it\'s profitable or not...\r\n\r\n-> http://hitsconnect.com/?rid=2\r\n\r\nIf you\'re not tracking your ads, you\'re \r\npouring money down the drain that\r\nshould be in your pocket.\r\n\r\nWhen you do track, then you can keep testing\r\nand refining and changing your ads, so they\r\nbecome more and more effective over time.\r\n\r\nInstead of a money-draining expense that you\r\ndread paying for each month, your advertising\r\nbecomes the most profitable investment you make.\r\n\r\nIt\'s up to you... take a look at an amazingly\r\nsimple method for tracking all your ads:\r\n\r\n-> http://hitsconnect.com/?rid=2\r\n\r\n\r\nTo your success!\r\n#SITENAME# Admin','http://hitsconnect.com/?rid=2',0),(5,'Have You Seen The First Ever....','Hey #FIRSTNAME#\r\n\r\nHave you ever heard of a Direct Feedback Mailer?\r\n\r\nMe neither. Until now!\r\n\r\nThe World\'s First-ever Direct Feedback Mailer\r\nis at Viral Mail Profits so...\r\n\r\nNot only can you grab access to the world\'s most\r\neffective mailer management system...\r\n\r\n... you also get a highly responsive mailer...\r\n\r\nand you can get it all for free too!\r\n\r\nGet in quick...\r\n-> http://www.viralmailprofits.com/?rid=448\r\n\r\nHave you seen Viral Mail Profits before?\r\n\r\nIt was just a one of a kind program, hands down\r\nthe easiest way to monetize your time and efforts\r\nwith ALL mailer programs and make absolutely\r\ncertain you are maximizing your profits with near\r\nzero effort.\r\n\r\nAnd they just launched the Direct Feedback Mailer\r\nall included in the same membership. Amazing!\r\n\r\nSo, as well as all the original benefits of Viral Mail\r\nProfits saving you heaps of time you also get:\r\n\r\n** Email at least 1,000 Prospects Every 5 days\r\n** Email more prospects with a 3 level downline bonus\r\n** 200 Free Mailing Credits monthly\r\n\r\nand you even get:\r\n** 200 Mailing Credits for joining too!\r\n\r\nAnd that\'s just free members, the benefits for upgrading\r\nare staggering and absolutely amazing value!\r\n\r\nDon\'t miss out, highly recommended...\r\n-> http://www.viralmailprofits.com/?rid=448\r\n\r\n\r\nLet\'s Mail to the Max!\r\n\r\n\r\nRegards,\r\n#SITENAME# Admin','http://www.viralmailprofits.com/?rid=448',0),(6,'Claim Your Upgraded Membership','As a member of #SITENAME#, you qualify for a free\r\nupgrade at IntelliBanners, the original banner\r\nad rotator and co-op service.  As an upgraded\r\nmember, your banner ads will be rotated in many of\r\nthe highest ranking manual-surf traffic exchanges.\r\n\r\nThis offer will not last forever, so be sure to visit:\r\n\r\nhttp://intellibanners.com/splashpage.php?splashid=2&rid=3\r\n\r\nto get your free account.  You will be shown the\r\nupgrade offer the first time you login to your\r\naccount.\r\n\r\nSincerely,\r\n#SITENAME# Admin','http://intellibanners.com/splashpage.php?splashid=2&rid=3',0),(7,'Why I Went Commando Today!','Hey #FIRSTNAME#\r\n\r\nI\'ve gone commando!\r\n\r\nBut it\'s NOT what you think - honestly!\r\n\r\nPaul Kinder, Robert Puddy, and Josh Abbott are the\r\nmasterminds behind a very impressive site called\r\nTE Command Post. This is like no other site and fills\r\nan absolutely gaping chasm in the traffic exchange market. \r\n\r\nThis is not only something surfers want. \r\nThis is not only something surfers need.\r\nThis is something surfers have been begging for...\r\nFor years!\r\n\r\nIt\'s something Paul needed to manage his traffic \r\nexchange campaigns so his team built and developed a\r\nsystem they now use themselves each and every day.\r\n\r\nAnd now it\'s available to you!\r\n\r\nCheck it out, all free...\r\n-> http://www.tecommandpost.com/?referer=joshabbott\r\n\r\n\r\nYou can save yourself years of trial and error and \r\ncash in on their experience by securing your copy \r\nof TE Command Post and put yourself in complete push\r\nbutton simple control. \r\n\r\nIt\'s so easy to use, and in a nutshell this is what \r\nyou get for free...\r\n\r\n* Up to the minute account information for every \r\n  listed exchange almost instantly. \r\n\r\n* How many credits you have waiting to be assigned\r\n\r\n* How many credits you have already assigned\r\n\r\n* Which url\'s are running low on credits\r\n\r\n* High converting Affiliate Tools designed to build \r\n  your downlines fast and bring you passive recurring \r\n  affiliate commissions for TE Command Post and many \r\n  other traffic-related sites\r\n\r\n* TWO downline builders to get you passive referrals.\r\n\r\n* Your links appear in Paul\'s emails so you get to lay\r\n  back and let an email master make you commissions!\r\n\r\nThat last benefit alone has GOT to be worth your \r\nmoney - except you get it all completely free.\r\n\r\nGo Commando Now!\r\n-> http://www.tecommandpost.com/?referer=joshabbott\r\n\r\nTake Command Today!\r\n\r\nPS There is an absolutely HUGE list of extra features \r\nfor upgraded members too. This is one of the best\r\nvalue upgrades I think I have ever seen. \r\n\r\nYou will always be able to get in free - no false scare \r\ntactics here - that\'s not how Paul operates BUT...\r\n\r\nThere is a VERY special launch promotion where you can \r\nlock in up to 88% discount on the top level Platinum\r\nupgrade - secured for life!\r\n\r\nYou will NOT be able to access the special Platinum \r\nupgrade inside the members area and...\r\n\r\nThe special launch discount is expected to sell out \r\nquickly and will only be available for a few short days!\r\n\r\nSo join free or grab yourself a real bargain, \r\n\r\nEither way you won\'t regret it!\r\n\r\nReady, Aim, Fire!\r\n-> http://www.tecommandpost.com/?referer=joshabbott','http://www.tecommandpost.com/?referer=joshabbott',0);
/*!40000 ALTER TABLE `oto_puzhnttmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_queue`
--

DROP TABLE IF EXISTS `oto_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_queue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `priority` int(11) NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 0,
  `messageid` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL DEFAULT 0,
  `toaddress` varchar(200) NOT NULL DEFAULT 'None',
  `fromname` varchar(200) NOT NULL DEFAULT 'Viral Mailer Script',
  `fromaddress` varchar(200) NOT NULL DEFAULT 'None',
  `subjecttext` varchar(200) NOT NULL DEFAULT 'None',
  `bodytext` text DEFAULT NULL,
  `linkurl` varchar(200) NOT NULL DEFAULT 'None',
  PRIMARY KEY (`id`),
  KEY `priority` (`priority`),
  KEY `type` (`type`),
  KEY `messageid` (`messageid`)
) ENGINE=MyISAM AUTO_INCREMENT=154056 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_queue`
--

LOCK TABLES `oto_queue` WRITE;
/*!40000 ALTER TABLE `oto_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_queue_log`
--

DROP TABLE IF EXISTS `oto_queue_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_queue_log` (
  `logid` bigint(20) NOT NULL AUTO_INCREMENT,
  `logtimestamp` int(11) NOT NULL DEFAULT 0,
  `logtime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `logentry` text NOT NULL,
  `queuecount` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`logid`)
) ENGINE=InnoDB AUTO_INCREMENT=2097163 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_queue_log`
--

LOCK TABLES `oto_queue_log` WRITE;
/*!40000 ALTER TABLE `oto_queue_log` DISABLE KEYS */;
INSERT INTO `oto_queue_log` (`logid`, `logtimestamp`, `logtime`, `logentry`, `queuecount`) VALUES (2092122,1782185050,'2026-06-23 03:24:10','No messages',0),(2092123,1782185110,'2026-06-23 03:25:10','No messages',0),(2092124,1782185170,'2026-06-23 03:26:10','No messages',0),(2092125,1782185230,'2026-06-23 03:27:10','No messages',0),(2092126,1782185290,'2026-06-23 03:28:10','No messages',0),(2092127,1782185351,'2026-06-23 03:29:11','No messages',0),(2092128,1782185412,'2026-06-23 03:30:12','No messages',0),(2092129,1782185470,'2026-06-23 03:31:10','No messages',0),(2092130,1782185530,'2026-06-23 03:32:10','No messages',0),(2092131,1782185590,'2026-06-23 03:33:10','No messages',0),(2092132,1782185650,'2026-06-23 03:34:10','No messages',0),(2092133,1782185709,'2026-06-23 03:35:09','No messages',0),(2092134,1782185770,'2026-06-23 03:36:10','No messages',0),(2092135,1782185830,'2026-06-23 03:37:10','No messages',0),(2092136,1782185890,'2026-06-23 03:38:10','No messages',0),(2092137,1782185950,'2026-06-23 03:39:10','No messages',0),(2092138,1782186010,'2026-06-23 03:40:10','No messages',0),(2092139,1782186069,'2026-06-23 03:41:09','No messages',0),(2092140,1782186129,'2026-06-23 03:42:09','No messages',0),(2092141,1782186190,'2026-06-23 03:43:10','No messages',0),(2092142,1782186250,'2026-06-23 03:44:10','No messages',0),(2092143,1782186311,'2026-06-23 03:45:11','No messages',0),(2092144,1782186369,'2026-06-23 03:46:09','No messages',0),(2092145,1782186430,'2026-06-23 03:47:10','No messages',0),(2092146,1782186491,'2026-06-23 03:48:11','No messages',0),(2092147,1782186549,'2026-06-23 03:49:09','No messages',0),(2092148,1782186610,'2026-06-23 03:50:10','No messages',0),(2092149,1782186670,'2026-06-23 03:51:10','No messages',0),(2092150,1782186729,'2026-06-23 03:52:09','No messages',0),(2092151,1782186790,'2026-06-23 03:53:10','No messages',0),(2092152,1782186849,'2026-06-23 03:54:09','No messages',0),(2092153,1782186910,'2026-06-23 03:55:10','No messages',0),(2092154,1782186970,'2026-06-23 03:56:10','No messages',0),(2092155,1782187029,'2026-06-23 03:57:09','No messages',0),(2092156,1782187089,'2026-06-23 03:58:09','No messages',0),(2092157,1782187150,'2026-06-23 03:59:10','No messages',0),(2092158,1782187213,'2026-06-23 04:00:13','No messages',0),(2092159,1782187270,'2026-06-23 04:01:10','No messages',0),(2092160,1782187329,'2026-06-23 04:02:09','No messages',0),(2092161,1782187389,'2026-06-23 04:03:09','No messages',0),(2092162,1782187450,'2026-06-23 04:04:10','No messages',0),(2092163,1782187510,'2026-06-23 04:05:10','No messages',0),(2092164,1782187570,'2026-06-23 04:06:10','No messages',0),(2092165,1782187629,'2026-06-23 04:07:09','No messages',0),(2092166,1782187690,'2026-06-23 04:08:10','No messages',0),(2092167,1782187750,'2026-06-23 04:09:10','No messages',0),(2092168,1782187810,'2026-06-23 04:10:10','No messages',0),(2092169,1782187869,'2026-06-23 04:11:09','No messages',0),(2092170,1782187930,'2026-06-23 04:12:10','No messages',0),(2092171,1782187989,'2026-06-23 04:13:09','No messages',0),(2092172,1782188050,'2026-06-23 04:14:10','No messages',0),(2092173,1782188111,'2026-06-23 04:15:11','No messages',0),(2092174,1782188170,'2026-06-23 04:16:10','No messages',0),(2092175,1782188229,'2026-06-23 04:17:09','No messages',0),(2092176,1782188289,'2026-06-23 04:18:09','No messages',0),(2092177,1782188349,'2026-06-23 04:19:09','No messages',0),(2092178,1782188411,'2026-06-23 04:20:11','No messages',0),(2092179,1782188470,'2026-06-23 04:21:10','No messages',0),(2092180,1782188530,'2026-06-23 04:22:10','No messages',0),(2092181,1782188589,'2026-06-23 04:23:09','No messages',0),(2092182,1782188650,'2026-06-23 04:24:10','No messages',0),(2092183,1782188710,'2026-06-23 04:25:10','No messages',0),(2092184,1782188770,'2026-06-23 04:26:10','No messages',0),(2092185,1782188830,'2026-06-23 04:27:10','No messages',0),(2092186,1782188890,'2026-06-23 04:28:10','No messages',0),(2092187,1782188949,'2026-06-23 04:29:09','No messages',0),(2092188,1782189011,'2026-06-23 04:30:11','No messages',0),(2092189,1782189070,'2026-06-23 04:31:10','No messages',0),(2092190,1782189129,'2026-06-23 04:32:09','No messages',0),(2092191,1782189189,'2026-06-23 04:33:09','No messages',0),(2092192,1782189249,'2026-06-23 04:34:09','No messages',0),(2092193,1782189310,'2026-06-23 04:35:10','No messages',0),(2092194,1782189369,'2026-06-23 04:36:09','No messages',0),(2092195,1782189430,'2026-06-23 04:37:10','No messages',0),(2092196,1782189489,'2026-06-23 04:38:09','No messages',0),(2092197,1782189549,'2026-06-23 04:39:09','No messages',0),(2092198,1782189610,'2026-06-23 04:40:10','No messages',0),(2092199,1782189670,'2026-06-23 04:41:10','No messages',0),(2092200,1782189729,'2026-06-23 04:42:09','No messages',0),(2092201,1782189790,'2026-06-23 04:43:10','No messages',0),(2092202,1782189851,'2026-06-23 04:44:11','No messages',0),(2092203,1782189912,'2026-06-23 04:45:12','No messages',0),(2092204,1782189970,'2026-06-23 04:46:10','No messages',0),(2092205,1782190030,'2026-06-23 04:47:10','No messages',0),(2092206,1782190089,'2026-06-23 04:48:09','No messages',0),(2092207,1782190149,'2026-06-23 04:49:09','No messages',0),(2092208,1782190210,'2026-06-23 04:50:10','No messages',0),(2092209,1782190269,'2026-06-23 04:51:09','No messages',0),(2092210,1782190330,'2026-06-23 04:52:10','No messages',0),(2092211,1782190390,'2026-06-23 04:53:10','No messages',0),(2092212,1782190451,'2026-06-23 04:54:11','No messages',0),(2092213,1782190510,'2026-06-23 04:55:10','No messages',0),(2092214,1782190570,'2026-06-23 04:56:10','No messages',0),(2092215,1782190629,'2026-06-23 04:57:09','No messages',0),(2092216,1782190690,'2026-06-23 04:58:10','No messages',0),(2092217,1782190749,'2026-06-23 04:59:09','No messages',0),(2092218,1782190813,'2026-06-23 05:00:13','No messages',0),(2092219,1782190870,'2026-06-23 05:01:10','No messages',0),(2092220,1782190930,'2026-06-23 05:02:10','No messages',0),(2092221,1782190989,'2026-06-23 05:03:09','No messages',0),(2092222,1782191050,'2026-06-23 05:04:10','No messages',0),(2092223,1782191111,'2026-06-23 05:05:11','No messages',0),(2092224,1782191170,'2026-06-23 05:06:10','No messages',0),(2092225,1782191229,'2026-06-23 05:07:09','No messages',0),(2092226,1782191290,'2026-06-23 05:08:10','No messages',0),(2092227,1782191350,'2026-06-23 05:09:10','No messages',0),(2092228,1782191410,'2026-06-23 05:10:10','No messages',0),(2092229,1782191469,'2026-06-23 05:11:09','No messages',0),(2092230,1782191530,'2026-06-23 05:12:10','No messages',0),(2092231,1782191590,'2026-06-23 05:13:10','No messages',0),(2092232,1782191650,'2026-06-23 05:14:10','No messages',0),(2092233,1782191711,'2026-06-23 05:15:11','No messages',0),(2092234,1782191769,'2026-06-23 05:16:09','No messages',0),(2092235,1782191830,'2026-06-23 05:17:10','No messages',0),(2092236,1782191889,'2026-06-23 05:18:09','No messages',0),(2092237,1782191949,'2026-06-23 05:19:09','No messages',0),(2092238,1782192011,'2026-06-23 05:20:11','No messages',0),(2092239,1782192069,'2026-06-23 05:21:09','No messages',0),(2092240,1782192130,'2026-06-23 05:22:10','No messages',0),(2092241,1782192190,'2026-06-23 05:23:10','No messages',0),(2092242,1782192250,'2026-06-23 05:24:10','No messages',0),(2092243,1782192310,'2026-06-23 05:25:10','No messages',0),(2092244,1782192370,'2026-06-23 05:26:10','No messages',0),(2092245,1782192430,'2026-06-23 05:27:10','No messages',0),(2092246,1782192490,'2026-06-23 05:28:10','No messages',0),(2092247,1782192550,'2026-06-23 05:29:10','No messages',0),(2092248,1782192612,'2026-06-23 05:30:12','No messages',0),(2092249,1782192669,'2026-06-23 05:31:09','No messages',0),(2092250,1782192730,'2026-06-23 05:32:10','No messages',0),(2092251,1782192789,'2026-06-23 05:33:09','No messages',0),(2092252,1782192850,'2026-06-23 05:34:10','No messages',0),(2092253,1782192910,'2026-06-23 05:35:10','No messages',0),(2092254,1782192969,'2026-06-23 05:36:09','No messages',0),(2092255,1782193030,'2026-06-23 05:37:10','No messages',0),(2092256,1782193090,'2026-06-23 05:38:10','No messages',0),(2092257,1782193150,'2026-06-23 05:39:10','No messages',0),(2092258,1782193211,'2026-06-23 05:40:11','No messages',0),(2092259,1782193269,'2026-06-23 05:41:09','No messages',0),(2092260,1782193330,'2026-06-23 05:42:10','No messages',0),(2092261,1782193389,'2026-06-23 05:43:09','No messages',0),(2092262,1782193450,'2026-06-23 05:44:10','No messages',0),(2092263,1782193511,'2026-06-23 05:45:11','No messages',0),(2092264,1782193571,'2026-06-23 05:46:11','No messages',0),(2092265,1782193629,'2026-06-23 05:47:09','No messages',0),(2092266,1782193690,'2026-06-23 05:48:10','No messages',0),(2092267,1782193749,'2026-06-23 05:49:09','No messages',0),(2092268,1782193810,'2026-06-23 05:50:10','No messages',0),(2092269,1782193869,'2026-06-23 05:51:09','No messages',0),(2092270,1782193930,'2026-06-23 05:52:10','No messages',0),(2092271,1782193989,'2026-06-23 05:53:09','No messages',0),(2092272,1782194049,'2026-06-23 05:54:09','No messages',0),(2092273,1782194110,'2026-06-23 05:55:10','No messages',0),(2092274,1782194170,'2026-06-23 05:56:10','No messages',0),(2092275,1782194229,'2026-06-23 05:57:09','No messages',0),(2092276,1782194290,'2026-06-23 05:58:10','No messages',0),(2092277,1782194349,'2026-06-23 05:59:09','No messages',0),(2092278,1782194412,'2026-06-23 06:00:12','No messages',0),(2092279,1782194469,'2026-06-23 06:01:09','No messages',0),(2092280,1782194530,'2026-06-23 06:02:10','No messages',0),(2092281,1782194590,'2026-06-23 06:03:10','No messages',0),(2092282,1782194649,'2026-06-23 06:04:09','No messages',0),(2092283,1782194710,'2026-06-23 06:05:10','No messages',0),(2092284,1782194770,'2026-06-23 06:06:10','No messages',0),(2092285,1782194829,'2026-06-23 06:07:09','No messages',0),(2092286,1782194890,'2026-06-23 06:08:10','No messages',0),(2092287,1782194950,'2026-06-23 06:09:10','No messages',0),(2092288,1782195010,'2026-06-23 06:10:10','No messages',0),(2092289,1782195069,'2026-06-23 06:11:09','No messages',0),(2092290,1782195130,'2026-06-23 06:12:10','No messages',0),(2092291,1782195189,'2026-06-23 06:13:09','No messages',0),(2092292,1782195249,'2026-06-23 06:14:09','No messages',0),(2092293,1782195311,'2026-06-23 06:15:11','No messages',0),(2092294,1782195370,'2026-06-23 06:16:10','No messages',0),(2092295,1782195430,'2026-06-23 06:17:10','No messages',0),(2092296,1782195490,'2026-06-23 06:18:10','No messages',0),(2092297,1782195550,'2026-06-23 06:19:10','No messages',0),(2092298,1782195610,'2026-06-23 06:20:10','No messages',0),(2092299,1782195670,'2026-06-23 06:21:10','No messages',0),(2092300,1782195730,'2026-06-23 06:22:10','No messages',0),(2092301,1782195789,'2026-06-23 06:23:09','No messages',0),(2092302,1782195850,'2026-06-23 06:24:10','No messages',0),(2092303,1782195910,'2026-06-23 06:25:10','No messages',0),(2092304,1782195969,'2026-06-23 06:26:09','No messages',0),(2092305,1782196030,'2026-06-23 06:27:10','No messages',0),(2092306,1782196090,'2026-06-23 06:28:10','No messages',0),(2092307,1782196149,'2026-06-23 06:29:09','No messages',0),(2092308,1782196211,'2026-06-23 06:30:11','No messages',0),(2092309,1782196269,'2026-06-23 06:31:09','No messages',0),(2092310,1782196331,'2026-06-23 06:32:11','No messages',0),(2092311,1782196389,'2026-06-23 06:33:09','No messages',0),(2092312,1782196450,'2026-06-23 06:34:10','No messages',0),(2092313,1782196510,'2026-06-23 06:35:10','No messages',0),(2092314,1782196570,'2026-06-23 06:36:10','No messages',0),(2092315,1782196630,'2026-06-23 06:37:10','No messages',0),(2092316,1782196690,'2026-06-23 06:38:10','No messages',0),(2092317,1782196750,'2026-06-23 06:39:10','No messages',0),(2092318,1782196811,'2026-06-23 06:40:11','No messages',0),(2092319,1782196869,'2026-06-23 06:41:09','No messages',0),(2092320,1782196930,'2026-06-23 06:42:10','No messages',0),(2092321,1782196989,'2026-06-23 06:43:09','No messages',0),(2092322,1782197050,'2026-06-23 06:44:10','No messages',0),(2092323,1782197111,'2026-06-23 06:45:11','No messages',0),(2092324,1782197169,'2026-06-23 06:46:09','No messages',0),(2092325,1782197229,'2026-06-23 06:47:09','No messages',0),(2092326,1782197290,'2026-06-23 06:48:10','No messages',0),(2092327,1782197349,'2026-06-23 06:49:09','No messages',0),(2092328,1782197411,'2026-06-23 06:50:11','No messages',0),(2092329,1782197470,'2026-06-23 06:51:10','No messages',0),(2092330,1782197530,'2026-06-23 06:52:10','No messages',0),(2092331,1782197589,'2026-06-23 06:53:09','No messages',0),(2092332,1782197649,'2026-06-23 06:54:09','No messages',0),(2092333,1782197710,'2026-06-23 06:55:10','No messages',0),(2092334,1782197769,'2026-06-23 06:56:09','No messages',0),(2092335,1782197830,'2026-06-23 06:57:10','No messages',0),(2092336,1782197890,'2026-06-23 06:58:10','No messages',0),(2092337,1782197950,'2026-06-23 06:59:10','No messages',0),(2092338,1782198013,'2026-06-23 07:00:13','No messages',0),(2092339,1782198070,'2026-06-23 07:01:10','No messages',0),(2092340,1782198130,'2026-06-23 07:02:10','No messages',0),(2092341,1782198190,'2026-06-23 07:03:10','No messages',0),(2092342,1782198250,'2026-06-23 07:04:10','No messages',0),(2092343,1782198310,'2026-06-23 07:05:10','No messages',0),(2092344,1782198370,'2026-06-23 07:06:10','No messages',0),(2092345,1782198429,'2026-06-23 07:07:09','No messages',0),(2092346,1782198490,'2026-06-23 07:08:10','No messages',0),(2092347,1782198550,'2026-06-23 07:09:10','No messages',0),(2092348,1782198610,'2026-06-23 07:10:10','No messages',0),(2092349,1782198668,'2026-06-23 07:11:08','No messages',0),(2092350,1782198730,'2026-06-23 07:12:10','No messages',0),(2092351,1782198790,'2026-06-23 07:13:10','No messages',0),(2092352,1782198850,'2026-06-23 07:14:10','No messages',0),(2092353,1782198910,'2026-06-23 07:15:10','No messages',0),(2092354,1782198970,'2026-06-23 07:16:10','No messages',0),(2092355,1782199029,'2026-06-23 07:17:09','No messages',0),(2092356,1782199090,'2026-06-23 07:18:10','No messages',0),(2092357,1782199150,'2026-06-23 07:19:10','No messages',0),(2092358,1782199210,'2026-06-23 07:20:10','No messages',0),(2092359,1782199269,'2026-06-23 07:21:09','No messages',0),(2092360,1782199330,'2026-06-23 07:22:10','No messages',0),(2092361,1782199390,'2026-06-23 07:23:10','No messages',0),(2092362,1782199450,'2026-06-23 07:24:10','No messages',0),(2092363,1782199510,'2026-06-23 07:25:10','No messages',0),(2092364,1782199569,'2026-06-23 07:26:09','No messages',0),(2092365,1782199631,'2026-06-23 07:27:11','No messages',0),(2092366,1782199690,'2026-06-23 07:28:10','No messages',0),(2092367,1782199749,'2026-06-23 07:29:09','No messages',0),(2092368,1782199811,'2026-06-23 07:30:11','No messages',0),(2092369,1782199869,'2026-06-23 07:31:09','No messages',0),(2092370,1782199930,'2026-06-23 07:32:10','No messages',0),(2092371,1782199990,'2026-06-23 07:33:10','No messages',0),(2092372,1782200050,'2026-06-23 07:34:10','No messages',0),(2092373,1782200109,'2026-06-23 07:35:09','No messages',0),(2092374,1782200170,'2026-06-23 07:36:10','No messages',0),(2092375,1782200229,'2026-06-23 07:37:09','No messages',0),(2092376,1782200291,'2026-06-23 07:38:11','No messages',0),(2092377,1782200350,'2026-06-23 07:39:10','No messages',0),(2092378,1782200411,'2026-06-23 07:40:11','No messages',0),(2092379,1782200469,'2026-06-23 07:41:09','No messages',0),(2092380,1782200530,'2026-06-23 07:42:10','No messages',0),(2092381,1782200589,'2026-06-23 07:43:09','No messages',0),(2092382,1782200650,'2026-06-23 07:44:10','No messages',0),(2092383,1782200710,'2026-06-23 07:45:10','No messages',0),(2092384,1782200770,'2026-06-23 07:46:10','No messages',0),(2092385,1782200829,'2026-06-23 07:47:09','No messages',0),(2092386,1782200890,'2026-06-23 07:48:10','No messages',0),(2092387,1782200950,'2026-06-23 07:49:10','No messages',0),(2092388,1782201010,'2026-06-23 07:50:10','No messages',0),(2092389,1782201069,'2026-06-23 07:51:09','No messages',0),(2092390,1782201129,'2026-06-23 07:52:09','No messages',0),(2092391,1782201190,'2026-06-23 07:53:10','No messages',0),(2092392,1782201250,'2026-06-23 07:54:10','No messages',0),(2092393,1782201310,'2026-06-23 07:55:10','No messages',0),(2092394,1782201370,'2026-06-23 07:56:10','No messages',0),(2092395,1782201430,'2026-06-23 07:57:10','No messages',0),(2092396,1782201490,'2026-06-23 07:58:10','No messages',0),(2092397,1782201549,'2026-06-23 07:59:09','No messages',0),(2092398,1782201612,'2026-06-23 08:00:12','No messages',0),(2092399,1782201669,'2026-06-23 08:01:09','No messages',0),(2092400,1782201730,'2026-06-23 08:02:10','No messages',0),(2092401,1782201790,'2026-06-23 08:03:10','No messages',0),(2092402,1782201850,'2026-06-23 08:04:10','No messages',0),(2092403,1782201910,'2026-06-23 08:05:10','No messages',0),(2092404,1782201970,'2026-06-23 08:06:10','No messages',0),(2092405,1782202031,'2026-06-23 08:07:11','No messages',0),(2092406,1782202090,'2026-06-23 08:08:10','No messages',0),(2092407,1782202151,'2026-06-23 08:09:11','No messages',0),(2092408,1782202211,'2026-06-23 08:10:11','No messages',0),(2092409,1782202271,'2026-06-23 08:11:11','No messages',0),(2092410,1782202330,'2026-06-23 08:12:10','No messages',0),(2092411,1782202389,'2026-06-23 08:13:09','No messages',0),(2092412,1782202450,'2026-06-23 08:14:10','No messages',0),(2092413,1782202510,'2026-06-23 08:15:10','No messages',0),(2092414,1782202570,'2026-06-23 08:16:10','No messages',0),(2092415,1782202629,'2026-06-23 08:17:09','No messages',0),(2092416,1782202690,'2026-06-23 08:18:10','No messages',0),(2092417,1782202749,'2026-06-23 08:19:09','No messages',0),(2092418,1782202810,'2026-06-23 08:20:10','No messages',0),(2092419,1782202870,'2026-06-23 08:21:10','No messages',0),(2092420,1782202930,'2026-06-23 08:22:10','No messages',0),(2092421,1782202990,'2026-06-23 08:23:10','No messages',0),(2092422,1782203050,'2026-06-23 08:24:10','No messages',0),(2092423,1782203110,'2026-06-23 08:25:10','No messages',0),(2092424,1782203170,'2026-06-23 08:26:10','No messages',0),(2092425,1782203230,'2026-06-23 08:27:10','No messages',0),(2092426,1782203290,'2026-06-23 08:28:10','No messages',0),(2092427,1782203350,'2026-06-23 08:29:10','No messages',0),(2092428,1782203412,'2026-06-23 08:30:12','No messages',0),(2092429,1782203469,'2026-06-23 08:31:09','No messages',0),(2092430,1782203530,'2026-06-23 08:32:10','No messages',0),(2092431,1782203589,'2026-06-23 08:33:09','No messages',0),(2092432,1782203649,'2026-06-23 08:34:09','No messages',0),(2092433,1782203709,'2026-06-23 08:35:09','No messages',0),(2092434,1782203770,'2026-06-23 08:36:10','No messages',0),(2092435,1782203829,'2026-06-23 08:37:09','No messages',0),(2092436,1782203890,'2026-06-23 08:38:10','No messages',0),(2092437,1782203950,'2026-06-23 08:39:10','No messages',0),(2092438,1782204010,'2026-06-23 08:40:10','No messages',0),(2092439,1782204070,'2026-06-23 08:41:10','No messages',0),(2092440,1782204130,'2026-06-23 08:42:10','No messages',0),(2092441,1782204190,'2026-06-23 08:43:10','No messages',0),(2092442,1782204250,'2026-06-23 08:44:10','No messages',0),(2092443,1782204311,'2026-06-23 08:45:11','No messages',0),(2092444,1782204370,'2026-06-23 08:46:10','No messages',0),(2092445,1782204429,'2026-06-23 08:47:09','No messages',0),(2092446,1782204490,'2026-06-23 08:48:10','No messages',0),(2092447,1782204550,'2026-06-23 08:49:10','No messages',0),(2092448,1782204610,'2026-06-23 08:50:10','No messages',0),(2092449,1782204669,'2026-06-23 08:51:09','No messages',0),(2092450,1782204730,'2026-06-23 08:52:10','No messages',0),(2092451,1782204790,'2026-06-23 08:53:10','No messages',0),(2092452,1782204850,'2026-06-23 08:54:10','No messages',0),(2092453,1782204910,'2026-06-23 08:55:10','No messages',0),(2092454,1782204970,'2026-06-23 08:56:10','No messages',0),(2092455,1782205030,'2026-06-23 08:57:10','No messages',0),(2092456,1782205090,'2026-06-23 08:58:10','No messages',0),(2092457,1782205150,'2026-06-23 08:59:10','No messages',0),(2092458,1782205213,'2026-06-23 09:00:13','No messages',0),(2092459,1782205269,'2026-06-23 09:01:09','No messages',0),(2092460,1782205331,'2026-06-23 09:02:11','No messages',0),(2092461,1782205389,'2026-06-23 09:03:09','No messages',0),(2092462,1782205449,'2026-06-23 09:04:09','No messages',0),(2092463,1782205510,'2026-06-23 09:05:10','No messages',0),(2092464,1782205569,'2026-06-23 09:06:09','No messages',0),(2092465,1782205629,'2026-06-23 09:07:09','No messages',0),(2092466,1782205689,'2026-06-23 09:08:09','No messages',0),(2092467,1782205750,'2026-06-23 09:09:10','No messages',0),(2092468,1782205810,'2026-06-23 09:10:10','No messages',0),(2092469,1782205869,'2026-06-23 09:11:09','No messages',0),(2092470,1782205930,'2026-06-23 09:12:10','No messages',0),(2092471,1782205989,'2026-06-23 09:13:09','No messages',0),(2092472,1782206050,'2026-06-23 09:14:10','No messages',0),(2092473,1782206111,'2026-06-23 09:15:11','No messages',0),(2092474,1782206170,'2026-06-23 09:16:10','No messages',0),(2092475,1782206229,'2026-06-23 09:17:09','No messages',0),(2092476,1782206290,'2026-06-23 09:18:10','No messages',0),(2092477,1782206349,'2026-06-23 09:19:09','No messages',0),(2092478,1782206411,'2026-06-23 09:20:11','No messages',0),(2092479,1782206470,'2026-06-23 09:21:10','No messages',0),(2092480,1782206530,'2026-06-23 09:22:10','No messages',0),(2092481,1782206589,'2026-06-23 09:23:09','No messages',0),(2092482,1782206650,'2026-06-23 09:24:10','No messages',0),(2092483,1782206709,'2026-06-23 09:25:09','No messages',0),(2092484,1782206769,'2026-06-23 09:26:09','No messages',0),(2092485,1782206830,'2026-06-23 09:27:10','No messages',0),(2092486,1782206890,'2026-06-23 09:28:10','No messages',0),(2092487,1782206950,'2026-06-23 09:29:10','No messages',0),(2092488,1782207012,'2026-06-23 09:30:12','No messages',0),(2092489,1782207070,'2026-06-23 09:31:10','No messages',0),(2092490,1782207129,'2026-06-23 09:32:09','No messages',0),(2092491,1782207190,'2026-06-23 09:33:10','No messages',0),(2092492,1782207250,'2026-06-23 09:34:10','No messages',0),(2092493,1782207310,'2026-06-23 09:35:10','No messages',0),(2092494,1782207369,'2026-06-23 09:36:09','No messages',0),(2092495,1782207429,'2026-06-23 09:37:09','No messages',0),(2092496,1782207489,'2026-06-23 09:38:09','No messages',0),(2092497,1782207551,'2026-06-23 09:39:11','No messages',0),(2092498,1782207611,'2026-06-23 09:40:11','No messages',0),(2092499,1782207670,'2026-06-23 09:41:10','No messages',0),(2092500,1782207732,'2026-06-23 09:42:12','No messages',0),(2092501,1782207789,'2026-06-23 09:43:09','No messages',0),(2092502,1782207843,'2026-06-23 09:44:03','Current time is 1782207843.  Last queue cron was called at 1782207789',0),(2092503,1782207908,'2026-06-23 09:45:08','No messages',0),(2092504,1782207968,'2026-06-23 09:46:08','No messages',0),(2092505,1782208027,'2026-06-23 09:47:07','No messages',0),(2092506,1782208087,'2026-06-23 09:48:07','No messages',0),(2092507,1782208147,'2026-06-23 09:49:07','No messages',0),(2092508,1782208208,'2026-06-23 09:50:08','No messages',0),(2092509,1782208266,'2026-06-23 09:51:06','No messages',0),(2092510,1782208327,'2026-06-23 09:52:07','No messages',0),(2092511,1782208387,'2026-06-23 09:53:07','No messages',0),(2092512,1782208448,'2026-06-23 09:54:08','No messages',0),(2092513,1782208508,'2026-06-23 09:55:08','No messages',0),(2092514,1782208568,'2026-06-23 09:56:08','No messages',0),(2092515,1782208628,'2026-06-23 09:57:08','No messages',0),(2092516,1782208688,'2026-06-23 09:58:08','No messages',0),(2092517,1782208748,'2026-06-23 09:59:08','No messages',0),(2092518,1782208810,'2026-06-23 10:00:10','No messages',0),(2092519,1782208868,'2026-06-23 10:01:08','No messages',0),(2092520,1782208928,'2026-06-23 10:02:08','No messages',0),(2092521,1782208988,'2026-06-23 10:03:08','No messages',0),(2092522,1782209048,'2026-06-23 10:04:08','No messages',0),(2092523,1782209109,'2026-06-23 10:05:09','No messages',0),(2092524,1782209169,'2026-06-23 10:06:09','No messages',0),(2092525,1782209228,'2026-06-23 10:07:08','No messages',0),(2092526,1782209289,'2026-06-23 10:08:09','No messages',0),(2092527,1782209349,'2026-06-23 10:09:09','No messages',0),(2092528,1782209410,'2026-06-23 10:10:10','No messages',0),(2092529,1782209469,'2026-06-23 10:11:09','No messages',0),(2092530,1782209528,'2026-06-23 10:12:08','No messages',0),(2092531,1782209589,'2026-06-23 10:13:09','No messages',0),(2092532,1782209648,'2026-06-23 10:14:08','No messages',0),(2092533,1782209709,'2026-06-23 10:15:09','No messages',0),(2092534,1782209769,'2026-06-23 10:16:09','No messages',0),(2092535,1782209829,'2026-06-23 10:17:09','No messages',0),(2092536,1782209888,'2026-06-23 10:18:08','No messages',0),(2092537,1782209949,'2026-06-23 10:19:09','No messages',0),(2092538,1782210009,'2026-06-23 10:20:09','No messages',0),(2092539,1782210068,'2026-06-23 10:21:08','No messages',0),(2092540,1782210129,'2026-06-23 10:22:09','No messages',0),(2092541,1782210188,'2026-06-23 10:23:08','No messages',0),(2092542,1782210249,'2026-06-23 10:24:09','No messages',0),(2092543,1782210309,'2026-06-23 10:25:09','No messages',0),(2092544,1782210369,'2026-06-23 10:26:09','No messages',0),(2092545,1782210430,'2026-06-23 10:27:10','No messages',0),(2092546,1782210489,'2026-06-23 10:28:09','No messages',0),(2092547,1782210548,'2026-06-23 10:29:08','No messages',0),(2092548,1782210610,'2026-06-23 10:30:10','No messages',0),(2092549,1782210668,'2026-06-23 10:31:08','No messages',0),(2092550,1782210729,'2026-06-23 10:32:09','No messages',0),(2092551,1782210789,'2026-06-23 10:33:09','No messages',0),(2092552,1782210848,'2026-06-23 10:34:08','No messages',0),(2092553,1782210910,'2026-06-23 10:35:10','No messages',0),(2092554,1782210969,'2026-06-23 10:36:09','No messages',0),(2092555,1782211029,'2026-06-23 10:37:09','No messages',0),(2092556,1782211089,'2026-06-23 10:38:09','No messages',0),(2092557,1782211149,'2026-06-23 10:39:09','No messages',0),(2092558,1782211209,'2026-06-23 10:40:09','No messages',0),(2092559,1782211268,'2026-06-23 10:41:08','No messages',0),(2092560,1782211328,'2026-06-23 10:42:08','No messages',0),(2092561,1782211388,'2026-06-23 10:43:08','No messages',0),(2092562,1782211449,'2026-06-23 10:44:09','No messages',0),(2092563,1782211509,'2026-06-23 10:45:09','No messages',0),(2092564,1782211569,'2026-06-23 10:46:09','No messages',0),(2092565,1782211628,'2026-06-23 10:47:08','No messages',0),(2092566,1782211688,'2026-06-23 10:48:08','No messages',0),(2092567,1782211749,'2026-06-23 10:49:09','No messages',0),(2092568,1782211810,'2026-06-23 10:50:10','No messages',0),(2092569,1782211869,'2026-06-23 10:51:09','No messages',0),(2092570,1782211929,'2026-06-23 10:52:09','No messages',0),(2092571,1782211988,'2026-06-23 10:53:08','No messages',0),(2092572,1782212048,'2026-06-23 10:54:08','No messages',0),(2092573,1782212109,'2026-06-23 10:55:09','No messages',0),(2092574,1782212169,'2026-06-23 10:56:09','No messages',0),(2092575,1782212229,'2026-06-23 10:57:09','No messages',0),(2092576,1782212289,'2026-06-23 10:58:09','No messages',0),(2092577,1782212349,'2026-06-23 10:59:09','No messages',0),(2092578,1782212411,'2026-06-23 11:00:11','No messages',0),(2092579,1782212468,'2026-06-23 11:01:08','No messages',0),(2092580,1782212529,'2026-06-23 11:02:09','No messages',0),(2092581,1782212588,'2026-06-23 11:03:08','No messages',0),(2092582,1782212649,'2026-06-23 11:04:09','No messages',0),(2092583,1782212709,'2026-06-23 11:05:09','No messages',0),(2092584,1782212769,'2026-06-23 11:06:09','No messages',0),(2092585,1782212828,'2026-06-23 11:07:08','No messages',0),(2092586,1782212889,'2026-06-23 11:08:09','No messages',0),(2092587,1782212950,'2026-06-23 11:09:10','No messages',0),(2092588,1782213009,'2026-06-23 11:10:09','No messages',0),(2092589,1782213068,'2026-06-23 11:11:08','No messages',0),(2092590,1782213129,'2026-06-23 11:12:09','No messages',0),(2092591,1782213189,'2026-06-23 11:13:09','No messages',0),(2092592,1782213249,'2026-06-23 11:14:09','No messages',0),(2092593,1782213309,'2026-06-23 11:15:09','No messages',0),(2092594,1782213369,'2026-06-23 11:16:09','No messages',0),(2092595,1782213428,'2026-06-23 11:17:08','No messages',0),(2092596,1782213489,'2026-06-23 11:18:09','No messages',0),(2092597,1782213548,'2026-06-23 11:19:08','No messages',0),(2092598,1782213609,'2026-06-23 11:20:09','No messages',0),(2092599,1782213668,'2026-06-23 11:21:08','No messages',0),(2092600,1782213729,'2026-06-23 11:22:09','No messages',0),(2092601,1782213788,'2026-06-23 11:23:08','No messages',0),(2092602,1782213849,'2026-06-23 11:24:09','No messages',0),(2092603,1782213909,'2026-06-23 11:25:09','No messages',0),(2092604,1782213969,'2026-06-23 11:26:09','No messages',0),(2092605,1782214029,'2026-06-23 11:27:09','No messages',0),(2092606,1782214089,'2026-06-23 11:28:09','No messages',0),(2092607,1782214148,'2026-06-23 11:29:08','No messages',0),(2092608,1782214211,'2026-06-23 11:30:11','No messages',0),(2092609,1782214269,'2026-06-23 11:31:09','No messages',0),(2092610,1782214329,'2026-06-23 11:32:09','No messages',0),(2092611,1782214389,'2026-06-23 11:33:09','No messages',0),(2092612,1782214449,'2026-06-23 11:34:09','No messages',0),(2092613,1782214509,'2026-06-23 11:35:09','No messages',0),(2092614,1782214569,'2026-06-23 11:36:09','No messages',0),(2092615,1782214629,'2026-06-23 11:37:09','No messages',0),(2092616,1782214689,'2026-06-23 11:38:09','No messages',0),(2092617,1782214749,'2026-06-23 11:39:09','No messages',0),(2092618,1782214809,'2026-06-23 11:40:09','No messages',0),(2092619,1782214870,'2026-06-23 11:41:10','No messages',0),(2092620,1782214929,'2026-06-23 11:42:09','No messages',0),(2092621,1782214988,'2026-06-23 11:43:08','No messages',0),(2092622,1782215049,'2026-06-23 11:44:09','No messages',0),(2092623,1782215110,'2026-06-23 11:45:10','No messages',0),(2092624,1782215170,'2026-06-23 11:46:10','No messages',0),(2092625,1782215229,'2026-06-23 11:47:09','No messages',0),(2092626,1782215289,'2026-06-23 11:48:09','No messages',0),(2092627,1782215349,'2026-06-23 11:49:09','No messages',0),(2092628,1782215410,'2026-06-23 11:50:10','No messages',0),(2092629,1782215468,'2026-06-23 11:51:08','No messages',0),(2092630,1782215530,'2026-06-23 11:52:10','No messages',0),(2092631,1782215589,'2026-06-23 11:53:09','No messages',0),(2092632,1782215649,'2026-06-23 11:54:09','No messages',0),(2092633,1782215709,'2026-06-23 11:55:09','No messages',0),(2092634,1782215768,'2026-06-23 11:56:08','No messages',0),(2092635,1782215828,'2026-06-23 11:57:08','No messages',0),(2092636,1782215889,'2026-06-23 11:58:09','No messages',0),(2092637,1782215949,'2026-06-23 11:59:09','No messages',0),(2092638,1782216011,'2026-06-23 12:00:11','No messages',0),(2092639,1782216069,'2026-06-23 12:01:09','No messages',0),(2092640,1782216129,'2026-06-23 12:02:09','No messages',0),(2092641,1782216189,'2026-06-23 12:03:09','No messages',0),(2092642,1782216249,'2026-06-23 12:04:09','No messages',0),(2092643,1782216310,'2026-06-23 12:05:10','No messages',0),(2092644,1782216370,'2026-06-23 12:06:10','No messages',0),(2092645,1782216428,'2026-06-23 12:07:08','No messages',0),(2092646,1782216489,'2026-06-23 12:08:09','No messages',0),(2092647,1782216549,'2026-06-23 12:09:09','No messages',0),(2092648,1782216609,'2026-06-23 12:10:09','No messages',0),(2092649,1782216668,'2026-06-23 12:11:08','No messages',0),(2092650,1782216729,'2026-06-23 12:12:09','No messages',0),(2092651,1782216789,'2026-06-23 12:13:09','No messages',0),(2092652,1782216848,'2026-06-23 12:14:08','No messages',0),(2092653,1782216911,'2026-06-23 12:15:11','No messages',0),(2092654,1782216970,'2026-06-23 12:16:10','No messages',0),(2092655,1782217029,'2026-06-23 12:17:09','No messages',0),(2092656,1782217089,'2026-06-23 12:18:09','No messages',0),(2092657,1782217149,'2026-06-23 12:19:09','No messages',0),(2092658,1782217209,'2026-06-23 12:20:09','No messages',0),(2092659,1782217268,'2026-06-23 12:21:08','No messages',0),(2092660,1782217329,'2026-06-23 12:22:09','No messages',0),(2092661,1782217389,'2026-06-23 12:23:09','No messages',0),(2092662,1782217450,'2026-06-23 12:24:10','No messages',0),(2092663,1782217509,'2026-06-23 12:25:09','No messages',0),(2092664,1782217569,'2026-06-23 12:26:09','No messages',0),(2092665,1782217629,'2026-06-23 12:27:09','No messages',0),(2092666,1782217690,'2026-06-23 12:28:10','No messages',0),(2092667,1782217748,'2026-06-23 12:29:08','No messages',0),(2092668,1782217810,'2026-06-23 12:30:10','No messages',0),(2092669,1782217868,'2026-06-23 12:31:08','No messages',0),(2092670,1782217930,'2026-06-23 12:32:10','No messages',0),(2092671,1782217989,'2026-06-23 12:33:09','No messages',0),(2092672,1782218050,'2026-06-23 12:34:10','No messages',0),(2092673,1782218108,'2026-06-23 12:35:08','No messages',0),(2092674,1782218170,'2026-06-23 12:36:10','No messages',0),(2092675,1782218228,'2026-06-23 12:37:08','No messages',0),(2092676,1782218290,'2026-06-23 12:38:10','No messages',0),(2092677,1782218349,'2026-06-23 12:39:09','No messages',0),(2092678,1782218409,'2026-06-23 12:40:09','No messages',0),(2092679,1782218468,'2026-06-23 12:41:08','No messages',0),(2092680,1782218529,'2026-06-23 12:42:09','No messages',0),(2092681,1782218588,'2026-06-23 12:43:08','No messages',0),(2092682,1782218649,'2026-06-23 12:44:09','No messages',0),(2092683,1782218710,'2026-06-23 12:45:10','No messages',0),(2092684,1782218769,'2026-06-23 12:46:09','No messages',0),(2092685,1782218829,'2026-06-23 12:47:09','No messages',0),(2092686,1782218889,'2026-06-23 12:48:09','No messages',0),(2092687,1782218950,'2026-06-23 12:49:10','No messages',0),(2092688,1782219010,'2026-06-23 12:50:10','No messages',0),(2092689,1782219068,'2026-06-23 12:51:08','No messages',0),(2092690,1782219129,'2026-06-23 12:52:09','No messages',0),(2092691,1782219189,'2026-06-23 12:53:09','No messages',0),(2092692,1782219249,'2026-06-23 12:54:09','No messages',0),(2092693,1782219309,'2026-06-23 12:55:09','No messages',0),(2092694,1782219369,'2026-06-23 12:56:09','No messages',0),(2092695,1782219430,'2026-06-23 12:57:10','No messages',0),(2092696,1782219489,'2026-06-23 12:58:09','No messages',0),(2092697,1782219549,'2026-06-23 12:59:09','No messages',0),(2092698,1782219611,'2026-06-23 13:00:11','No messages',0),(2092699,1782219669,'2026-06-23 13:01:09','No messages',0),(2092700,1782219729,'2026-06-23 13:02:09','No messages',0),(2092701,1782219789,'2026-06-23 13:03:09','No messages',0),(2092702,1782219849,'2026-06-23 13:04:09','No messages',0),(2092703,1782219910,'2026-06-23 13:05:10','No messages',0),(2092704,1782219969,'2026-06-23 13:06:09','No messages',0),(2092705,1782220029,'2026-06-23 13:07:09','No messages',0),(2092706,1782220089,'2026-06-23 13:08:09','No messages',0),(2092707,1782220148,'2026-06-23 13:09:08','No messages',0),(2092708,1782220210,'2026-06-23 13:10:10','No messages',0),(2092709,1782220269,'2026-06-23 13:11:09','No messages',0),(2092710,1782220329,'2026-06-23 13:12:09','No messages',0),(2092711,1782220388,'2026-06-23 13:13:08','No messages',0),(2092712,1782220449,'2026-06-23 13:14:09','No messages',0),(2092713,1782220510,'2026-06-23 13:15:10','No messages',0),(2092714,1782220569,'2026-06-23 13:16:09','No messages',0),(2092715,1782220629,'2026-06-23 13:17:09','No messages',0),(2092716,1782220689,'2026-06-23 13:18:09','No messages',0),(2092717,1782220749,'2026-06-23 13:19:09','No messages',0),(2092718,1782220810,'2026-06-23 13:20:10','No messages',0),(2092719,1782220869,'2026-06-23 13:21:09','No messages',0),(2092720,1782220929,'2026-06-23 13:22:09','No messages',0),(2092721,1782220989,'2026-06-23 13:23:09','No messages',0),(2092722,1782221049,'2026-06-23 13:24:09','No messages',0),(2092723,1782221109,'2026-06-23 13:25:09','No messages',0),(2092724,1782221169,'2026-06-23 13:26:09','No messages',0),(2092725,1782221229,'2026-06-23 13:27:09','No messages',0),(2092726,1782221290,'2026-06-23 13:28:10','No messages',0),(2092727,1782221348,'2026-06-23 13:29:08','No messages',0),(2092728,1782221412,'2026-06-23 13:30:12','No messages',0),(2092729,1782221469,'2026-06-23 13:31:09','No messages',0),(2092730,1782221529,'2026-06-23 13:32:09','No messages',0),(2092731,1782221589,'2026-06-23 13:33:09','No messages',0),(2092732,1782221649,'2026-06-23 13:34:09','No messages',0),(2092733,1782221709,'2026-06-23 13:35:09','No messages',0),(2092734,1782221769,'2026-06-23 13:36:09','No messages',0),(2092735,1782221829,'2026-06-23 13:37:09','No messages',0),(2092736,1782221890,'2026-06-23 13:38:10','No messages',0),(2092737,1782221949,'2026-06-23 13:39:09','No messages',0),(2092738,1782222009,'2026-06-23 13:40:09','No messages',0),(2092739,1782222069,'2026-06-23 13:41:09','No messages',0),(2092740,1782222129,'2026-06-23 13:42:09','No messages',0),(2092741,1782222189,'2026-06-23 13:43:09','No messages',0),(2092742,1782222249,'2026-06-23 13:44:09','No messages',0),(2092743,1782222310,'2026-06-23 13:45:10','No messages',0),(2092744,1782222369,'2026-06-23 13:46:09','No messages',0),(2092745,1782222429,'2026-06-23 13:47:09','No messages',0),(2092746,1782222489,'2026-06-23 13:48:09','No messages',0),(2092747,1782222548,'2026-06-23 13:49:08','No messages',0),(2092748,1782222610,'2026-06-23 13:50:10','No messages',0),(2092749,1782222669,'2026-06-23 13:51:09','No messages',0),(2092750,1782222729,'2026-06-23 13:52:09','No messages',0),(2092751,1782222788,'2026-06-23 13:53:08','No messages',0),(2092752,1782222848,'2026-06-23 13:54:08','No messages',0),(2092753,1782222909,'2026-06-23 13:55:09','No messages',0),(2092754,1782222968,'2026-06-23 13:56:08','No messages',0),(2092755,1782223029,'2026-06-23 13:57:09','No messages',0),(2092756,1782223089,'2026-06-23 13:58:09','No messages',0),(2092757,1782223149,'2026-06-23 13:59:09','No messages',0),(2092758,1782223211,'2026-06-23 14:00:11','No messages',0),(2092759,1782223269,'2026-06-23 14:01:09','No messages',0),(2092760,1782223329,'2026-06-23 14:02:09','No messages',0),(2092761,1782223389,'2026-06-23 14:03:09','No messages',0),(2092762,1782223449,'2026-06-23 14:04:09','No messages',0),(2092763,1782223510,'2026-06-23 14:05:10','No messages',0),(2092764,1782223570,'2026-06-23 14:06:10','No messages',0),(2092765,1782223628,'2026-06-23 14:07:08','No messages',0),(2092766,1782223690,'2026-06-23 14:08:10','No messages',0),(2092767,1782223750,'2026-06-23 14:09:10','No messages',0),(2092768,1782223810,'2026-06-23 14:10:10','No messages',0),(2092769,1782223869,'2026-06-23 14:11:09','No messages',0),(2092770,1782223929,'2026-06-23 14:12:09','No messages',0),(2092771,1782223988,'2026-06-23 14:13:08','No messages',0),(2092772,1782224049,'2026-06-23 14:14:09','No messages',0),(2092773,1782224110,'2026-06-23 14:15:10','No messages',0),(2092774,1782224169,'2026-06-23 14:16:09','No messages',0),(2092775,1782224230,'2026-06-23 14:17:10','No messages',0),(2092776,1782224289,'2026-06-23 14:18:09','No messages',0),(2092777,1782224348,'2026-06-23 14:19:08','No messages',0),(2092778,1782224410,'2026-06-23 14:20:10','No messages',0),(2092779,1782224468,'2026-06-23 14:21:08','No messages',0),(2092780,1782224530,'2026-06-23 14:22:10','No messages',0),(2092781,1782224589,'2026-06-23 14:23:09','No messages',0),(2092782,1782224649,'2026-06-23 14:24:09','No messages',0),(2092783,1782224709,'2026-06-23 14:25:09','No messages',0),(2092784,1782224769,'2026-06-23 14:26:09','No messages',0),(2092785,1782224829,'2026-06-23 14:27:09','No messages',0),(2092786,1782224888,'2026-06-23 14:28:08','No messages',0),(2092787,1782224948,'2026-06-23 14:29:08','No messages',0),(2092788,1782225011,'2026-06-23 14:30:11','No messages',0),(2092789,1782225069,'2026-06-23 14:31:09','No messages',0),(2092790,1782225129,'2026-06-23 14:32:09','No messages',0),(2092791,1782225189,'2026-06-23 14:33:09','No messages',0),(2092792,1782225249,'2026-06-23 14:34:09','No messages',0),(2092793,1782225309,'2026-06-23 14:35:09','No messages',0),(2092794,1782225369,'2026-06-23 14:36:09','No messages',0),(2092795,1782225429,'2026-06-23 14:37:09','No messages',0),(2092796,1782225490,'2026-06-23 14:38:10','No messages',0),(2092797,1782225549,'2026-06-23 14:39:09','No messages',0),(2092798,1782225610,'2026-06-23 14:40:10','No messages',0),(2092799,1782225669,'2026-06-23 14:41:09','No messages',0),(2092800,1782225730,'2026-06-23 14:42:10','No messages',0),(2092801,1782225788,'2026-06-23 14:43:08','No messages',0),(2092802,1782225849,'2026-06-23 14:44:09','No messages',0),(2092803,1782225910,'2026-06-23 14:45:10','No messages',0),(2092804,1782225969,'2026-06-23 14:46:09','No messages',0),(2092805,1782226029,'2026-06-23 14:47:09','No messages',0),(2092806,1782226089,'2026-06-23 14:48:09','No messages',0),(2092807,1782226149,'2026-06-23 14:49:09','No messages',0),(2092808,1782226210,'2026-06-23 14:50:10','No messages',0),(2092809,1782226269,'2026-06-23 14:51:09','No messages',0),(2092810,1782226329,'2026-06-23 14:52:09','No messages',0),(2092811,1782226389,'2026-06-23 14:53:09','No messages',0),(2092812,1782226449,'2026-06-23 14:54:09','No messages',0),(2092813,1782226509,'2026-06-23 14:55:09','No messages',0),(2092814,1782226569,'2026-06-23 14:56:09','No messages',0),(2092815,1782226630,'2026-06-23 14:57:10','No messages',0),(2092816,1782226689,'2026-06-23 14:58:09','No messages',0),(2092817,1782226748,'2026-06-23 14:59:08','No messages',0),(2092818,1782226812,'2026-06-23 15:00:12','No messages',0),(2092819,1782226869,'2026-06-23 15:01:09','No messages',0),(2092820,1782226929,'2026-06-23 15:02:09','No messages',0),(2092821,1782226989,'2026-06-23 15:03:09','No messages',0),(2092822,1782227050,'2026-06-23 15:04:10','No messages',0),(2092823,1782227110,'2026-06-23 15:05:10','No messages',0),(2092824,1782227169,'2026-06-23 15:06:09','No messages',0),(2092825,1782227229,'2026-06-23 15:07:09','No messages',0),(2092826,1782227289,'2026-06-23 15:08:09','No messages',0),(2092827,1782227349,'2026-06-23 15:09:09','No messages',0),(2092828,1782227409,'2026-06-23 15:10:09','No messages',0),(2092829,1782227469,'2026-06-23 15:11:09','No messages',0),(2092830,1782227529,'2026-06-23 15:12:09','No messages',0),(2092831,1782227589,'2026-06-23 15:13:09','No messages',0),(2092832,1782227649,'2026-06-23 15:14:09','No messages',0),(2092833,1782227709,'2026-06-23 15:15:09','No messages',0),(2092834,1782227769,'2026-06-23 15:16:09','No messages',0),(2092835,1782227828,'2026-06-23 15:17:08','No messages',0),(2092836,1782227890,'2026-06-23 15:18:10','No messages',0),(2092837,1782227949,'2026-06-23 15:19:09','No messages',0),(2092838,1782228010,'2026-06-23 15:20:10','No messages',0),(2092839,1782228069,'2026-06-23 15:21:09','No messages',0),(2092840,1782228129,'2026-06-23 15:22:09','No messages',0),(2092841,1782228188,'2026-06-23 15:23:08','No messages',0),(2092842,1782228249,'2026-06-23 15:24:09','No messages',0),(2092843,1782228309,'2026-06-23 15:25:09','No messages',0),(2092844,1782228369,'2026-06-23 15:26:09','No messages',0),(2092845,1782228429,'2026-06-23 15:27:09','No messages',0),(2092846,1782228489,'2026-06-23 15:28:09','No messages',0),(2092847,1782228549,'2026-06-23 15:29:09','No messages',0),(2092848,1782228611,'2026-06-23 15:30:11','No messages',0),(2092849,1782228669,'2026-06-23 15:31:09','No messages',0),(2092850,1782228729,'2026-06-23 15:32:09','No messages',0),(2092851,1782228789,'2026-06-23 15:33:09','No messages',0),(2092852,1782228849,'2026-06-23 15:34:09','No messages',0),(2092853,1782228909,'2026-06-23 15:35:09','No messages',0),(2092854,1782228968,'2026-06-23 15:36:08','No messages',0),(2092855,1782229028,'2026-06-23 15:37:08','No messages',0),(2092856,1782229089,'2026-06-23 15:38:09','No messages',0),(2092857,1782229149,'2026-06-23 15:39:09','No messages',0),(2092858,1782229209,'2026-06-23 15:40:09','No messages',0),(2092859,1782229269,'2026-06-23 15:41:09','No messages',0),(2092860,1782229329,'2026-06-23 15:42:09','No messages',0),(2092861,1782229388,'2026-06-23 15:43:08','No messages',0),(2092862,1782229450,'2026-06-23 15:44:10','No messages',0),(2092863,1782229510,'2026-06-23 15:45:10','No messages',0),(2092864,1782229569,'2026-06-23 15:46:09','No messages',0),(2092865,1782229629,'2026-06-23 15:47:09','No messages',0),(2092866,1782229689,'2026-06-23 15:48:09','No messages',0),(2092867,1782229749,'2026-06-23 15:49:09','No messages',0),(2092868,1782229809,'2026-06-23 15:50:09','No messages',0),(2092869,1782229869,'2026-06-23 15:51:09','No messages',0),(2092870,1782229929,'2026-06-23 15:52:09','No messages',0),(2092871,1782229989,'2026-06-23 15:53:09','No messages',0),(2092872,1782230050,'2026-06-23 15:54:10','No messages',0),(2092873,1782230110,'2026-06-23 15:55:10','No messages',0),(2092874,1782230169,'2026-06-23 15:56:09','No messages',0),(2092875,1782230229,'2026-06-23 15:57:09','No messages',0),(2092876,1782230289,'2026-06-23 15:58:09','No messages',0),(2092877,1782230349,'2026-06-23 15:59:09','No messages',0),(2092878,1782230412,'2026-06-23 16:00:12','No messages',0),(2092879,1782230469,'2026-06-23 16:01:09','No messages',0),(2092880,1782230529,'2026-06-23 16:02:09','No messages',0),(2092881,1782230588,'2026-06-23 16:03:08','No messages',0),(2092882,1782230650,'2026-06-23 16:04:10','No messages',0),(2092883,1782230710,'2026-06-23 16:05:10','No messages',0),(2092884,1782230769,'2026-06-23 16:06:09','No messages',0),(2092885,1782230829,'2026-06-23 16:07:09','No messages',0),(2092886,1782230889,'2026-06-23 16:08:09','No messages',0),(2092887,1782230950,'2026-06-23 16:09:10','No messages',0),(2092888,1782231009,'2026-06-23 16:10:09','No messages',0),(2092889,1782231069,'2026-06-23 16:11:09','No messages',0),(2092890,1782231129,'2026-06-23 16:12:09','No messages',0),(2092891,1782231189,'2026-06-23 16:13:09','No messages',0),(2092892,1782231249,'2026-06-23 16:14:09','No messages',0),(2092893,1782231310,'2026-06-23 16:15:10','No messages',0),(2092894,1782231370,'2026-06-23 16:16:10','No messages',0),(2092895,1782231428,'2026-06-23 16:17:08','No messages',0),(2092896,1782231490,'2026-06-23 16:18:10','No messages',0),(2092897,1782231549,'2026-06-23 16:19:09','No messages',0),(2092898,1782231610,'2026-06-23 16:20:10','No messages',0),(2092899,1782231669,'2026-06-23 16:21:09','No messages',0),(2092900,1782231729,'2026-06-23 16:22:09','No messages',0),(2092901,1782231789,'2026-06-23 16:23:09','No messages',0),(2092902,1782231849,'2026-06-23 16:24:09','No messages',0),(2092903,1782231909,'2026-06-23 16:25:09','No messages',0),(2092904,1782231969,'2026-06-23 16:26:09','No messages',0),(2092905,1782232029,'2026-06-23 16:27:09','No messages',0),(2092906,1782232089,'2026-06-23 16:28:09','No messages',0),(2092907,1782232149,'2026-06-23 16:29:09','No messages',0),(2092908,1782232210,'2026-06-23 16:30:10','No messages',0),(2092909,1782232269,'2026-06-23 16:31:09','No messages',0),(2092910,1782232329,'2026-06-23 16:32:09','No messages',0),(2092911,1782232389,'2026-06-23 16:33:09','No messages',0),(2092912,1782232449,'2026-06-23 16:34:09','No messages',0),(2092913,1782232509,'2026-06-23 16:35:09','No messages',0),(2092914,1782232569,'2026-06-23 16:36:09','No messages',0),(2092915,1782232629,'2026-06-23 16:37:09','No messages',0),(2092916,1782232689,'2026-06-23 16:38:09','No messages',0),(2092917,1782232749,'2026-06-23 16:39:09','No messages',0),(2092918,1782232809,'2026-06-23 16:40:09','No messages',0),(2092919,1782232868,'2026-06-23 16:41:08','No messages',0),(2092920,1782232930,'2026-06-23 16:42:10','No messages',0),(2092921,1782232989,'2026-06-23 16:43:09','No messages',0),(2092922,1782233049,'2026-06-23 16:44:09','No messages',0),(2092923,1782233110,'2026-06-23 16:45:10','No messages',0),(2092924,1782233169,'2026-06-23 16:46:09','No messages',0),(2092925,1782233229,'2026-06-23 16:47:09','No messages',0),(2092926,1782233289,'2026-06-23 16:48:09','No messages',0),(2092927,1782233349,'2026-06-23 16:49:09','No messages',0),(2092928,1782233410,'2026-06-23 16:50:10','No messages',0),(2092929,1782233469,'2026-06-23 16:51:09','No messages',0),(2092930,1782233529,'2026-06-23 16:52:09','No messages',0),(2092931,1782233589,'2026-06-23 16:53:09','No messages',0),(2092932,1782233649,'2026-06-23 16:54:09','No messages',0),(2092933,1782233709,'2026-06-23 16:55:09','No messages',0),(2092934,1782233768,'2026-06-23 16:56:08','No messages',0),(2092935,1782233829,'2026-06-23 16:57:09','No messages',0),(2092936,1782233889,'2026-06-23 16:58:09','No messages',0),(2092937,1782233949,'2026-06-23 16:59:09','No messages',0),(2092938,1782234011,'2026-06-23 17:00:11','No messages',0),(2092939,1782234069,'2026-06-23 17:01:09','No messages',0),(2092940,1782234128,'2026-06-23 17:02:08','No messages',0),(2092941,1782234189,'2026-06-23 17:03:09','No messages',0),(2092942,1782234249,'2026-06-23 17:04:09','No messages',0),(2092943,1782234309,'2026-06-23 17:05:09','No messages',0),(2092944,1782234370,'2026-06-23 17:06:10','No messages',0),(2092945,1782234429,'2026-06-23 17:07:09','No messages',0),(2092946,1782234489,'2026-06-23 17:08:09','No messages',0),(2092947,1782234549,'2026-06-23 17:09:09','No messages',0),(2092948,1782234610,'2026-06-23 17:10:10','No messages',0),(2092949,1782234669,'2026-06-23 17:11:09','No messages',0),(2092950,1782234729,'2026-06-23 17:12:09','No messages',0),(2092951,1782234788,'2026-06-23 17:13:08','No messages',0),(2092952,1782234850,'2026-06-23 17:14:10','No messages',0),(2092953,1782234910,'2026-06-23 17:15:10','No messages',0),(2092954,1782234969,'2026-06-23 17:16:09','No messages',0),(2092955,1782235029,'2026-06-23 17:17:09','No messages',0),(2092956,1782235089,'2026-06-23 17:18:09','No messages',0),(2092957,1782235149,'2026-06-23 17:19:09','No messages',0),(2092958,1782235209,'2026-06-23 17:20:09','No messages',0),(2092959,1782235269,'2026-06-23 17:21:09','No messages',0),(2092960,1782235329,'2026-06-23 17:22:09','No messages',0),(2092961,1782235389,'2026-06-23 17:23:09','No messages',0),(2092962,1782235449,'2026-06-23 17:24:09','No messages',0),(2092963,1782235509,'2026-06-23 17:25:09','No messages',0),(2092964,1782235569,'2026-06-23 17:26:09','No messages',0),(2092965,1782235629,'2026-06-23 17:27:09','No messages',0),(2092966,1782235690,'2026-06-23 17:28:10','No messages',0),(2092967,1782235749,'2026-06-23 17:29:09','No messages',0),(2092968,1782235810,'2026-06-23 17:30:10','No messages',0),(2092969,1782235868,'2026-06-23 17:31:08','No messages',0),(2092970,1782235930,'2026-06-23 17:32:10','No messages',0),(2092971,1782235989,'2026-06-23 17:33:09','No messages',0),(2092972,1782236049,'2026-06-23 17:34:09','No messages',0),(2092973,1782236110,'2026-06-23 17:35:10','No messages',0),(2092974,1782236169,'2026-06-23 17:36:09','No messages',0),(2092975,1782236229,'2026-06-23 17:37:09','No messages',0),(2092976,1782236290,'2026-06-23 17:38:10','No messages',0),(2092977,1782236350,'2026-06-23 17:39:10','No messages',0),(2092978,1782236410,'2026-06-23 17:40:10','No messages',0),(2092979,1782236469,'2026-06-23 17:41:09','No messages',0),(2092980,1782236529,'2026-06-23 17:42:09','No messages',0),(2092981,1782236588,'2026-06-23 17:43:08','No messages',0),(2092982,1782236649,'2026-06-23 17:44:09','No messages',0),(2092983,1782236710,'2026-06-23 17:45:10','No messages',0),(2092984,1782236770,'2026-06-23 17:46:10','No messages',0),(2092985,1782236829,'2026-06-23 17:47:09','No messages',0),(2092986,1782236889,'2026-06-23 17:48:09','No messages',0),(2092987,1782236949,'2026-06-23 17:49:09','No messages',0),(2092988,1782237009,'2026-06-23 17:50:09','No messages',0),(2092989,1782237069,'2026-06-23 17:51:09','No messages',0),(2092990,1782237129,'2026-06-23 17:52:09','No messages',0),(2092991,1782237188,'2026-06-23 17:53:08','No messages',0),(2092992,1782237249,'2026-06-23 17:54:09','No messages',0),(2092993,1782237309,'2026-06-23 17:55:09','No messages',0),(2092994,1782237369,'2026-06-23 17:56:09','No messages',0),(2092995,1782237429,'2026-06-23 17:57:09','No messages',0),(2092996,1782237488,'2026-06-23 17:58:08','No messages',0),(2092997,1782237550,'2026-06-23 17:59:10','No messages',0),(2092998,1782237612,'2026-06-23 18:00:12','No messages',0),(2092999,1782237669,'2026-06-23 18:01:09','No messages',0),(2093000,1782237729,'2026-06-23 18:02:09','No messages',0),(2093001,1782237789,'2026-06-23 18:03:09','No messages',0),(2093002,1782237849,'2026-06-23 18:04:09','No messages',0),(2093003,1782237910,'2026-06-23 18:05:10','No messages',0),(2093004,1782237969,'2026-06-23 18:06:09','No messages',0),(2093005,1782238029,'2026-06-23 18:07:09','No messages',0),(2093006,1782238090,'2026-06-23 18:08:10','No messages',0),(2093007,1782238149,'2026-06-23 18:09:09','No messages',0),(2093008,1782238209,'2026-06-23 18:10:09','No messages',0),(2093009,1782238269,'2026-06-23 18:11:09','No messages',0),(2093010,1782238330,'2026-06-23 18:12:10','No messages',0),(2093011,1782238389,'2026-06-23 18:13:09','No messages',0),(2093012,1782238449,'2026-06-23 18:14:09','No messages',0),(2093013,1782238510,'2026-06-23 18:15:10','No messages',0),(2093014,1782238569,'2026-06-23 18:16:09','No messages',0),(2093015,1782238629,'2026-06-23 18:17:09','No messages',0),(2093016,1782238689,'2026-06-23 18:18:09','No messages',0),(2093017,1782238749,'2026-06-23 18:19:09','No messages',0),(2093018,1782238810,'2026-06-23 18:20:10','No messages',0),(2093019,1782238869,'2026-06-23 18:21:09','No messages',0),(2093020,1782238930,'2026-06-23 18:22:10','No messages',0),(2093021,1782238989,'2026-06-23 18:23:09','No messages',0),(2093022,1782239049,'2026-06-23 18:24:09','No messages',0),(2093023,1782239110,'2026-06-23 18:25:10','No messages',0),(2093024,1782239169,'2026-06-23 18:26:09','No messages',0),(2093025,1782239229,'2026-06-23 18:27:09','No messages',0),(2093026,1782239289,'2026-06-23 18:28:09','No messages',0),(2093027,1782239349,'2026-06-23 18:29:09','No messages',0),(2093028,1782239411,'2026-06-23 18:30:11','No messages',0),(2093029,1782239468,'2026-06-23 18:31:08','No messages',0),(2093030,1782239529,'2026-06-23 18:32:09','No messages',0),(2093031,1782239589,'2026-06-23 18:33:09','No messages',0),(2093032,1782239649,'2026-06-23 18:34:09','No messages',0),(2093033,1782239709,'2026-06-23 18:35:09','No messages',0),(2093034,1782239769,'2026-06-23 18:36:09','No messages',0),(2093035,1782239829,'2026-06-23 18:37:09','No messages',0),(2093036,1782239889,'2026-06-23 18:38:09','No messages',0),(2093037,1782239948,'2026-06-23 18:39:08','No messages',0),(2093038,1782240010,'2026-06-23 18:40:10','No messages',0),(2093039,1782240069,'2026-06-23 18:41:09','No messages',0),(2093040,1782240129,'2026-06-23 18:42:09','No messages',0),(2093041,1782240189,'2026-06-23 18:43:09','No messages',0),(2093042,1782240249,'2026-06-23 18:44:09','No messages',0),(2093043,1782240309,'2026-06-23 18:45:09','No messages',0),(2093044,1782240369,'2026-06-23 18:46:09','No messages',0),(2093045,1782240428,'2026-06-23 18:47:08','No messages',0),(2093046,1782240489,'2026-06-23 18:48:09','No messages',0),(2093047,1782240549,'2026-06-23 18:49:09','No messages',0),(2093048,1782240609,'2026-06-23 18:50:09','No messages',0),(2093049,1782240668,'2026-06-23 18:51:08','No messages',0),(2093050,1782240729,'2026-06-23 18:52:09','No messages',0),(2093051,1782240788,'2026-06-23 18:53:08','No messages',0),(2093052,1782240848,'2026-06-23 18:54:08','No messages',0),(2093053,1782240909,'2026-06-23 18:55:09','No messages',0),(2093054,1782240969,'2026-06-23 18:56:09','No messages',0),(2093055,1782241029,'2026-06-23 18:57:09','No messages',0),(2093056,1782241089,'2026-06-23 18:58:09','No messages',0),(2093057,1782241149,'2026-06-23 18:59:09','No messages',0),(2093058,1782241213,'2026-06-23 19:00:13','No messages',0),(2093059,1782241270,'2026-06-23 19:01:10','No messages',0),(2093060,1782241330,'2026-06-23 19:02:10','No messages',0),(2093061,1782241389,'2026-06-23 19:03:09','No messages',0),(2093062,1782241449,'2026-06-23 19:04:09','No messages',0),(2093063,1782241510,'2026-06-23 19:05:10','No messages',0),(2093064,1782241569,'2026-06-23 19:06:09','No messages',0),(2093065,1782241629,'2026-06-23 19:07:09','No messages',0),(2093066,1782241689,'2026-06-23 19:08:09','No messages',0),(2093067,1782241750,'2026-06-23 19:09:10','No messages',0),(2093068,1782241810,'2026-06-23 19:10:10','No messages',0),(2093069,1782241869,'2026-06-23 19:11:09','No messages',0),(2093070,1782241929,'2026-06-23 19:12:09','No messages',0),(2093071,1782241989,'2026-06-23 19:13:09','No messages',0),(2093072,1782242049,'2026-06-23 19:14:09','No messages',0),(2093073,1782242110,'2026-06-23 19:15:10','No messages',0),(2093074,1782242169,'2026-06-23 19:16:09','No messages',0),(2093075,1782242229,'2026-06-23 19:17:09','No messages',0),(2093076,1782242289,'2026-06-23 19:18:09','No messages',0),(2093077,1782242348,'2026-06-23 19:19:08','No messages',0),(2093078,1782242410,'2026-06-23 19:20:10','No messages',0),(2093079,1782242469,'2026-06-23 19:21:09','No messages',0),(2093080,1782242529,'2026-06-23 19:22:09','No messages',0),(2093081,1782242589,'2026-06-23 19:23:09','No messages',0),(2093082,1782242650,'2026-06-23 19:24:10','No messages',0),(2093083,1782242709,'2026-06-23 19:25:09','No messages',0),(2093084,1782242769,'2026-06-23 19:26:09','No messages',0),(2093085,1782242829,'2026-06-23 19:27:09','No messages',0),(2093086,1782242890,'2026-06-23 19:28:09','No messages',0),(2093087,1782242949,'2026-06-23 19:29:09','No messages',0),(2093088,1782243011,'2026-06-23 19:30:11','No messages',0),(2093089,1782243069,'2026-06-23 19:31:09','No messages',0),(2093090,1782243129,'2026-06-23 19:32:09','No messages',0),(2093091,1782243189,'2026-06-23 19:33:09','No messages',0),(2093092,1782243249,'2026-06-23 19:34:09','No messages',0),(2093093,1782243310,'2026-06-23 19:35:10','No messages',0),(2093094,1782243369,'2026-06-23 19:36:09','No messages',0),(2093095,1782243429,'2026-06-23 19:37:09','No messages',0),(2093096,1782243490,'2026-06-23 19:38:10','No messages',0),(2093097,1782243549,'2026-06-23 19:39:09','No messages',0),(2093098,1782243610,'2026-06-23 19:40:10','No messages',0),(2093099,1782243670,'2026-06-23 19:41:10','No messages',0),(2093100,1782243730,'2026-06-23 19:42:10','No messages',0),(2093101,1782243788,'2026-06-23 19:43:08','No messages',0),(2093102,1782243849,'2026-06-23 19:44:09','No messages',0),(2093103,1782243911,'2026-06-23 19:45:11','No messages',0),(2093104,1782243969,'2026-06-23 19:46:09','No messages',0),(2093105,1782244029,'2026-06-23 19:47:09','No messages',0),(2093106,1782244090,'2026-06-23 19:48:10','No messages',0),(2093107,1782244149,'2026-06-23 19:49:09','No messages',0),(2093108,1782244210,'2026-06-23 19:50:10','No messages',0),(2093109,1782244269,'2026-06-23 19:51:09','No messages',0),(2093110,1782244330,'2026-06-23 19:52:10','No messages',0),(2093111,1782244390,'2026-06-23 19:53:10','No messages',0),(2093112,1782244450,'2026-06-23 19:54:10','No messages',0),(2093113,1782244509,'2026-06-23 19:55:09','No messages',0),(2093114,1782244570,'2026-06-23 19:56:10','No messages',0),(2093115,1782244629,'2026-06-23 19:57:09','No messages',0),(2093116,1782244689,'2026-06-23 19:58:09','No messages',0),(2093117,1782244749,'2026-06-23 19:59:09','No messages',0),(2093118,1782244811,'2026-06-23 20:00:11','No messages',0),(2093119,1782244869,'2026-06-23 20:01:09','No messages',0),(2093120,1782244930,'2026-06-23 20:02:10','No messages',0),(2093121,1782244990,'2026-06-23 20:03:10','No messages',0),(2093122,1782245050,'2026-06-23 20:04:10','No messages',0),(2093123,1782245110,'2026-06-23 20:05:10','No messages',0),(2093124,1782245170,'2026-06-23 20:06:10','No messages',0),(2093125,1782245229,'2026-06-23 20:07:09','No messages',0),(2093126,1782245290,'2026-06-23 20:08:10','No messages',0),(2093127,1782245350,'2026-06-23 20:09:10','No messages',0),(2093128,1782245409,'2026-06-23 20:10:09','No messages',0),(2093129,1782245469,'2026-06-23 20:11:09','No messages',0),(2093130,1782245530,'2026-06-23 20:12:10','No messages',0),(2093131,1782245589,'2026-06-23 20:13:09','No messages',0),(2093132,1782245650,'2026-06-23 20:14:10','No messages',0),(2093133,1782245710,'2026-06-23 20:15:10','No messages',0),(2093134,1782245769,'2026-06-23 20:16:09','No messages',0),(2093135,1782245830,'2026-06-23 20:17:10','No messages',0),(2093136,1782245890,'2026-06-23 20:18:10','No messages',0),(2093137,1782245949,'2026-06-23 20:19:09','No messages',0),(2093138,1782246010,'2026-06-23 20:20:10','No messages',0),(2093139,1782246070,'2026-06-23 20:21:10','No messages',0),(2093140,1782246130,'2026-06-23 20:22:10','No messages',0),(2093141,1782246190,'2026-06-23 20:23:10','No messages',0),(2093142,1782246249,'2026-06-23 20:24:09','No messages',0),(2093143,1782246309,'2026-06-23 20:25:09','No messages',0),(2093144,1782246370,'2026-06-23 20:26:10','No messages',0),(2093145,1782246430,'2026-06-23 20:27:10','No messages',0),(2093146,1782246490,'2026-06-23 20:28:10','No messages',0),(2093147,1782246549,'2026-06-23 20:29:09','No messages',0),(2093148,1782246611,'2026-06-23 20:30:11','No messages',0),(2093149,1782246669,'2026-06-23 20:31:09','No messages',0),(2093150,1782246730,'2026-06-23 20:32:10','No messages',0),(2093151,1782246789,'2026-06-23 20:33:09','No messages',0),(2093152,1782246849,'2026-06-23 20:34:09','No messages',0),(2093153,1782246910,'2026-06-23 20:35:10','No messages',0),(2093154,1782246969,'2026-06-23 20:36:09','No messages',0),(2093155,1782247029,'2026-06-23 20:37:09','No messages',0),(2093156,1782247090,'2026-06-23 20:38:10','No messages',0),(2093157,1782247150,'2026-06-23 20:39:10','No messages',0),(2093158,1782247210,'2026-06-23 20:40:10','No messages',0),(2093159,1782247269,'2026-06-23 20:41:09','No messages',0),(2093160,1782247329,'2026-06-23 20:42:09','No messages',0),(2093161,1782247389,'2026-06-23 20:43:09','No messages',0),(2093162,1782247450,'2026-06-23 20:44:10','No messages',0),(2093163,1782247510,'2026-06-23 20:45:10','No messages',0),(2093164,1782247570,'2026-06-23 20:46:10','No messages',0),(2093165,1782247629,'2026-06-23 20:47:09','No messages',0),(2093166,1782247689,'2026-06-23 20:48:09','No messages',0),(2093167,1782247750,'2026-06-23 20:49:10','No messages',0),(2093168,1782247811,'2026-06-23 20:50:11','No messages',0),(2093169,1782247869,'2026-06-23 20:51:09','No messages',0),(2093170,1782247929,'2026-06-23 20:52:09','No messages',0),(2093171,1782247989,'2026-06-23 20:53:09','No messages',0),(2093172,1782248049,'2026-06-23 20:54:09','No messages',0),(2093173,1782248110,'2026-06-23 20:55:10','No messages',0),(2093174,1782248169,'2026-06-23 20:56:09','No messages',0),(2093175,1782248229,'2026-06-23 20:57:09','No messages',0),(2093176,1782248289,'2026-06-23 20:58:09','No messages',0),(2093177,1782248349,'2026-06-23 20:59:09','No messages',0),(2093178,1782248413,'2026-06-23 21:00:13','No messages',0),(2093179,1782248469,'2026-06-23 21:01:09','No messages',0),(2093180,1782248530,'2026-06-23 21:02:10','No messages',0),(2093181,1782248589,'2026-06-23 21:03:09','No messages',0),(2093182,1782248649,'2026-06-23 21:04:09','No messages',0),(2093183,1782248710,'2026-06-23 21:05:10','No messages',0),(2093184,1782248770,'2026-06-23 21:06:10','No messages',0),(2093185,1782248829,'2026-06-23 21:07:09','No messages',0),(2093186,1782248889,'2026-06-23 21:08:09','No messages',0),(2093187,1782248950,'2026-06-23 21:09:10','No messages',0),(2093188,1782249010,'2026-06-23 21:10:10','No messages',0),(2093189,1782249070,'2026-06-23 21:11:10','No messages',0),(2093190,1782249130,'2026-06-23 21:12:10','No messages',0),(2093191,1782249190,'2026-06-23 21:13:10','No messages',0),(2093192,1782249250,'2026-06-23 21:14:10','No messages',0),(2093193,1782249311,'2026-06-23 21:15:11','No messages',0),(2093194,1782249369,'2026-06-23 21:16:09','No messages',0),(2093195,1782249430,'2026-06-23 21:17:10','No messages',0),(2093196,1782249490,'2026-06-23 21:18:10','No messages',0),(2093197,1782249550,'2026-06-23 21:19:10','No messages',0),(2093198,1782249610,'2026-06-23 21:20:10','No messages',0),(2093199,1782249670,'2026-06-23 21:21:10','No messages',0),(2093200,1782249729,'2026-06-23 21:22:09','No messages',0),(2093201,1782249789,'2026-06-23 21:23:09','No messages',0),(2093202,1782249850,'2026-06-23 21:24:10','No messages',0),(2093203,1782249909,'2026-06-23 21:25:09','No messages',0),(2093204,1782249969,'2026-06-23 21:26:09','No messages',0),(2093205,1782250029,'2026-06-23 21:27:09','No messages',0),(2093206,1782250089,'2026-06-23 21:28:09','No messages',0),(2093207,1782250150,'2026-06-23 21:29:10','No messages',0),(2093208,1782250210,'2026-06-23 21:30:10','No messages',0),(2093209,1782250268,'2026-06-23 21:31:08','No messages',0),(2093210,1782250329,'2026-06-23 21:32:09','No messages',0),(2093211,1782250389,'2026-06-23 21:33:09','No messages',0),(2093212,1782250449,'2026-06-23 21:34:09','No messages',0),(2093213,1782250509,'2026-06-23 21:35:09','No messages',0),(2093214,1782250570,'2026-06-23 21:36:10','No messages',0),(2093215,1782250629,'2026-06-23 21:37:09','No messages',0),(2093216,1782250690,'2026-06-23 21:38:10','No messages',0),(2093217,1782250750,'2026-06-23 21:39:10','No messages',0),(2093218,1782250810,'2026-06-23 21:40:10','No messages',0),(2093219,1782250869,'2026-06-23 21:41:09','No messages',0),(2093220,1782250929,'2026-06-23 21:42:09','No messages',0),(2093221,1782250989,'2026-06-23 21:43:09','No messages',0),(2093222,1782251050,'2026-06-23 21:44:10','No messages',0),(2093223,1782251110,'2026-06-23 21:45:10','No messages',0),(2093224,1782251170,'2026-06-23 21:46:10','No messages',0),(2093225,1782251229,'2026-06-23 21:47:09','No messages',0),(2093226,1782251290,'2026-06-23 21:48:10','No messages',0),(2093227,1782251349,'2026-06-23 21:49:09','No messages',0),(2093228,1782251410,'2026-06-23 21:50:10','No messages',0),(2093229,1782251469,'2026-06-23 21:51:09','No messages',0),(2093230,1782251530,'2026-06-23 21:52:10','No messages',0),(2093231,1782251589,'2026-06-23 21:53:09','No messages',0),(2093232,1782251649,'2026-06-23 21:54:09','No messages',0),(2093233,1782251709,'2026-06-23 21:55:09','No messages',0),(2093234,1782251770,'2026-06-23 21:56:10','No messages',0),(2093235,1782251830,'2026-06-23 21:57:10','No messages',0),(2093236,1782251890,'2026-06-23 21:58:10','No messages',0),(2093237,1782251949,'2026-06-23 21:59:09','No messages',0),(2093238,1782252012,'2026-06-23 22:00:12','No messages',0),(2093239,1782252069,'2026-06-23 22:01:09','No messages',0),(2093240,1782252130,'2026-06-23 22:02:10','No messages',0),(2093241,1782252189,'2026-06-23 22:03:09','No messages',0),(2093242,1782252250,'2026-06-23 22:04:10','No messages',0),(2093243,1782252310,'2026-06-23 22:05:10','No messages',0),(2093244,1782252370,'2026-06-23 22:06:10','No messages',0),(2093245,1782252429,'2026-06-23 22:07:09','No messages',0),(2093246,1782252489,'2026-06-23 22:08:09','No messages',0),(2093247,1782252550,'2026-06-23 22:09:10','No messages',0),(2093248,1782252610,'2026-06-23 22:10:10','No messages',0),(2093249,1782252669,'2026-06-23 22:11:09','No messages',0),(2093250,1782252730,'2026-06-23 22:12:10','No messages',0),(2093251,1782252789,'2026-06-23 22:13:09','No messages',0),(2093252,1782252849,'2026-06-23 22:14:09','No messages',0),(2093253,1782252910,'2026-06-23 22:15:10','No messages',0),(2093254,1782252970,'2026-06-23 22:16:10','No messages',0),(2093255,1782253030,'2026-06-23 22:17:10','No messages',0),(2093256,1782253090,'2026-06-23 22:18:10','No messages',0),(2093257,1782253149,'2026-06-23 22:19:09','No messages',0),(2093258,1782253210,'2026-06-23 22:20:10','No messages',0),(2093259,1782253269,'2026-06-23 22:21:09','No messages',0),(2093260,1782253330,'2026-06-23 22:22:10','No messages',0),(2093261,1782253390,'2026-06-23 22:23:10','No messages',0),(2093262,1782253449,'2026-06-23 22:24:09','No messages',0),(2093263,1782253509,'2026-06-23 22:25:09','No messages',0),(2093264,1782253570,'2026-06-23 22:26:10','No messages',0),(2093265,1782253629,'2026-06-23 22:27:09','No messages',0),(2093266,1782253689,'2026-06-23 22:28:09','No messages',0),(2093267,1782253750,'2026-06-23 22:29:10','No messages',0),(2093268,1782253812,'2026-06-23 22:30:12','No messages',0),(2093269,1782253870,'2026-06-23 22:31:10','No messages',0),(2093270,1782253929,'2026-06-23 22:32:09','No messages',0),(2093271,1782253989,'2026-06-23 22:33:09','No messages',0),(2093272,1782254049,'2026-06-23 22:34:09','No messages',0),(2093273,1782254110,'2026-06-23 22:35:10','No messages',0),(2093274,1782254169,'2026-06-23 22:36:09','No messages',0),(2093275,1782254229,'2026-06-23 22:37:09','No messages',0),(2093276,1782254290,'2026-06-23 22:38:10','No messages',0),(2093277,1782254350,'2026-06-23 22:39:10','No messages',0),(2093278,1782254410,'2026-06-23 22:40:10','No messages',0),(2093279,1782254469,'2026-06-23 22:41:09','No messages',0),(2093280,1782254529,'2026-06-23 22:42:09','No messages',0),(2093281,1782254590,'2026-06-23 22:43:10','No messages',0),(2093282,1782254650,'2026-06-23 22:44:10','No messages',0),(2093283,1782254711,'2026-06-23 22:45:11','No messages',0),(2093284,1782254769,'2026-06-23 22:46:09','No messages',0),(2093285,1782254829,'2026-06-23 22:47:09','No messages',0),(2093286,1782254889,'2026-06-23 22:48:09','No messages',0),(2093287,1782254949,'2026-06-23 22:49:09','No messages',0),(2093288,1782255009,'2026-06-23 22:50:09','No messages',0),(2093289,1782255070,'2026-06-23 22:51:10','No messages',0),(2093290,1782255129,'2026-06-23 22:52:09','No messages',0),(2093291,1782255189,'2026-06-23 22:53:09','No messages',0),(2093292,1782255250,'2026-06-23 22:54:10','No messages',0),(2093293,1782255310,'2026-06-23 22:55:10','No messages',0),(2093294,1782255370,'2026-06-23 22:56:10','No messages',0),(2093295,1782255429,'2026-06-23 22:57:09','No messages',0),(2093296,1782255489,'2026-06-23 22:58:09','No messages',0),(2093297,1782255550,'2026-06-23 22:59:10','No messages',0),(2093298,1782255613,'2026-06-23 23:00:13','No messages',0),(2093299,1782255669,'2026-06-23 23:01:09','No messages',0),(2093300,1782255730,'2026-06-23 23:02:10','No messages',0),(2093301,1782255788,'2026-06-23 23:03:08','No messages',0),(2093302,1782255850,'2026-06-23 23:04:10','No messages',0),(2093303,1782255910,'2026-06-23 23:05:10','No messages',0),(2093304,1782255970,'2026-06-23 23:06:10','No messages',0),(2093305,1782256030,'2026-06-23 23:07:10','No messages',0),(2093306,1782256090,'2026-06-23 23:08:10','No messages',0),(2093307,1782256150,'2026-06-23 23:09:10','No messages',0),(2093308,1782256210,'2026-06-23 23:10:10','No messages',0),(2093309,1782256269,'2026-06-23 23:11:09','No messages',0),(2093310,1782256330,'2026-06-23 23:12:10','No messages',0),(2093311,1782256389,'2026-06-23 23:13:09','No messages',0),(2093312,1782256449,'2026-06-23 23:14:09','No messages',0),(2093313,1782256511,'2026-06-23 23:15:11','No messages',0),(2093314,1782256570,'2026-06-23 23:16:10','No messages',0),(2093315,1782256629,'2026-06-23 23:17:09','No messages',0),(2093316,1782256689,'2026-06-23 23:18:09','No messages',0),(2093317,1782256749,'2026-06-23 23:19:09','No messages',0),(2093318,1782256810,'2026-06-23 23:20:10','No messages',0),(2093319,1782256869,'2026-06-23 23:21:09','No messages',0),(2093320,1782256930,'2026-06-23 23:22:10','No messages',0),(2093321,1782256990,'2026-06-23 23:23:10','No messages',0),(2093322,1782257049,'2026-06-23 23:24:09','No messages',0),(2093323,1782257110,'2026-06-23 23:25:10','No messages',0),(2093324,1782257169,'2026-06-23 23:26:09','No messages',0),(2093325,1782257230,'2026-06-23 23:27:10','No messages',0),(2093326,1782257289,'2026-06-23 23:28:09','No messages',0),(2093327,1782257349,'2026-06-23 23:29:09','No messages',0),(2093328,1782257412,'2026-06-23 23:30:12','No messages',0),(2093329,1782257470,'2026-06-23 23:31:10','No messages',0),(2093330,1782257530,'2026-06-23 23:32:10','No messages',0),(2093331,1782257590,'2026-06-23 23:33:10','No messages',0),(2093332,1782257650,'2026-06-23 23:34:10','No messages',0),(2093333,1782257710,'2026-06-23 23:35:10','No messages',0),(2093334,1782257770,'2026-06-23 23:36:10','No messages',0),(2093335,1782257829,'2026-06-23 23:37:09','No messages',0),(2093336,1782257890,'2026-06-23 23:38:10','No messages',0),(2093337,1782257949,'2026-06-23 23:39:09','No messages',0),(2093338,1782258011,'2026-06-23 23:40:11','No messages',0),(2093339,1782258069,'2026-06-23 23:41:09','No messages',0),(2093340,1782258129,'2026-06-23 23:42:09','No messages',0),(2093341,1782258190,'2026-06-23 23:43:10','No messages',0),(2093342,1782258250,'2026-06-23 23:44:10','No messages',0),(2093343,1782258310,'2026-06-23 23:45:10','No messages',0),(2093344,1782258370,'2026-06-23 23:46:10','No messages',0),(2093345,1782258429,'2026-06-23 23:47:09','No messages',0),(2093346,1782258489,'2026-06-23 23:48:09','No messages',0),(2093347,1782258550,'2026-06-23 23:49:10','No messages',0),(2093348,1782258611,'2026-06-23 23:50:11','No messages',0),(2093349,1782258669,'2026-06-23 23:51:09','No messages',0),(2093350,1782258730,'2026-06-23 23:52:10','No messages',0),(2093351,1782258790,'2026-06-23 23:53:10','No messages',0),(2093352,1782258849,'2026-06-23 23:54:09','No messages',0),(2093353,1782258910,'2026-06-23 23:55:10','No messages',0),(2093354,1782258970,'2026-06-23 23:56:10','No messages',0),(2093355,1782259030,'2026-06-23 23:57:10','No messages',0),(2093356,1782259090,'2026-06-23 23:58:10','No messages',0),(2093357,1782259149,'2026-06-23 23:59:09','No messages',0),(2093358,1782259211,'2026-06-24 00:00:11','No messages',0),(2093359,1782259269,'2026-06-24 00:01:09','No messages',0),(2093360,1782259330,'2026-06-24 00:02:10','No messages',0),(2093361,1782259389,'2026-06-24 00:03:09','No messages',0),(2093362,1782259450,'2026-06-24 00:04:10','No messages',0),(2093363,1782259510,'2026-06-24 00:05:10','No messages',0),(2093364,1782259569,'2026-06-24 00:06:09','No messages',0),(2093365,1782259629,'2026-06-24 00:07:09','No messages',0),(2093366,1782259690,'2026-06-24 00:08:10','No messages',0),(2093367,1782259750,'2026-06-24 00:09:10','No messages',0),(2093368,1782259810,'2026-06-24 00:10:10','No messages',0),(2093369,1782259869,'2026-06-24 00:11:09','No messages',0),(2093370,1782259930,'2026-06-24 00:12:10','No messages',0),(2093371,1782259989,'2026-06-24 00:13:09','No messages',0),(2093372,1782260050,'2026-06-24 00:14:10','No messages',0),(2093373,1782260110,'2026-06-24 00:15:10','No messages',0),(2093374,1782260170,'2026-06-24 00:16:10','No messages',0),(2093375,1782260229,'2026-06-24 00:17:09','No messages',0),(2093376,1782260290,'2026-06-24 00:18:10','No messages',0),(2093377,1782260349,'2026-06-24 00:19:09','No messages',0),(2093378,1782260410,'2026-06-24 00:20:10','No messages',0),(2093379,1782260469,'2026-06-24 00:21:09','No messages',0),(2093380,1782260530,'2026-06-24 00:22:10','No messages',0),(2093381,1782260590,'2026-06-24 00:23:10','No messages',0),(2093382,1782260649,'2026-06-24 00:24:09','No messages',0),(2093383,1782260710,'2026-06-24 00:25:10','No messages',0),(2093384,1782260770,'2026-06-24 00:26:10','No messages',0),(2093385,1782260829,'2026-06-24 00:27:09','No messages',0),(2093386,1782260890,'2026-06-24 00:28:10','No messages',0),(2093387,1782260949,'2026-06-24 00:29:09','No messages',0),(2093388,1782261012,'2026-06-24 00:30:12','No messages',0),(2093389,1782261069,'2026-06-24 00:31:09','No messages',0),(2093390,1782261129,'2026-06-24 00:32:09','No messages',0),(2093391,1782261189,'2026-06-24 00:33:09','No messages',0),(2093392,1782261250,'2026-06-24 00:34:10','No messages',0),(2093393,1782261310,'2026-06-24 00:35:10','No messages',0),(2093394,1782261370,'2026-06-24 00:36:10','No messages',0),(2093395,1782261429,'2026-06-24 00:37:09','No messages',0),(2093396,1782261490,'2026-06-24 00:38:10','No messages',0),(2093397,1782261550,'2026-06-24 00:39:10','No messages',0),(2093398,1782261609,'2026-06-24 00:40:09','No messages',0),(2093399,1782261669,'2026-06-24 00:41:09','No messages',0),(2093400,1782261729,'2026-06-24 00:42:09','No messages',0),(2093401,1782261789,'2026-06-24 00:43:09','No messages',0),(2093402,1782261849,'2026-06-24 00:44:09','No messages',0),(2093403,1782261910,'2026-06-24 00:45:10','No messages',0),(2093404,1782261970,'2026-06-24 00:46:10','No messages',0),(2093405,1782262029,'2026-06-24 00:47:09','No messages',0),(2093406,1782262090,'2026-06-24 00:48:10','No messages',0),(2093407,1782262150,'2026-06-24 00:49:10','No messages',0),(2093408,1782262210,'2026-06-24 00:50:10','No messages',0),(2093409,1782262269,'2026-06-24 00:51:09','No messages',0),(2093410,1782262329,'2026-06-24 00:52:09','No messages',0),(2093411,1782262389,'2026-06-24 00:53:09','No messages',0),(2093412,1782262450,'2026-06-24 00:54:10','No messages',0),(2093413,1782262509,'2026-06-24 00:55:09','No messages',0),(2093414,1782262570,'2026-06-24 00:56:10','No messages',0),(2093415,1782262630,'2026-06-24 00:57:10','No messages',0),(2093416,1782262690,'2026-06-24 00:58:10','No messages',0),(2093417,1782262749,'2026-06-24 00:59:09','No messages',0),(2093418,1782262812,'2026-06-24 01:00:12','No messages',0),(2093419,1782262870,'2026-06-24 01:01:10','No messages',0),(2093420,1782262930,'2026-06-24 01:02:10','No messages',0),(2093421,1782262989,'2026-06-24 01:03:09','No messages',0),(2093422,1782263050,'2026-06-24 01:04:10','No messages',0),(2093423,1782263110,'2026-06-24 01:05:10','No messages',0),(2093424,1782263170,'2026-06-24 01:06:10','No messages',0),(2093425,1782263229,'2026-06-24 01:07:09','No messages',0),(2093426,1782263290,'2026-06-24 01:08:10','No messages',0),(2093427,1782263350,'2026-06-24 01:09:10','No messages',0),(2093428,1782263410,'2026-06-24 01:10:10','No messages',0),(2093429,1782263469,'2026-06-24 01:11:09','No messages',0),(2093430,1782263530,'2026-06-24 01:12:10','No messages',0),(2093431,1782263589,'2026-06-24 01:13:09','No messages',0),(2093432,1782263649,'2026-06-24 01:14:09','No messages',0),(2093433,1782263711,'2026-06-24 01:15:11','No messages',0),(2093434,1782263770,'2026-06-24 01:16:10','No messages',0),(2093435,1782263829,'2026-06-24 01:17:09','No messages',0),(2093436,1782263889,'2026-06-24 01:18:09','No messages',0),(2093437,1782263950,'2026-06-24 01:19:10','No messages',0),(2093438,1782264010,'2026-06-24 01:20:10','No messages',0),(2093439,1782264069,'2026-06-24 01:21:09','No messages',0),(2093440,1782264129,'2026-06-24 01:22:09','No messages',0),(2093441,1782264189,'2026-06-24 01:23:09','No messages',0),(2093442,1782264250,'2026-06-24 01:24:10','No messages',0),(2093443,1782264310,'2026-06-24 01:25:10','No messages',0),(2093444,1782264370,'2026-06-24 01:26:10','No messages',0),(2093445,1782264429,'2026-06-24 01:27:09','No messages',0),(2093446,1782264490,'2026-06-24 01:28:10','No messages',0),(2093447,1782264550,'2026-06-24 01:29:10','No messages',0),(2093448,1782264611,'2026-06-24 01:30:11','No messages',0),(2093449,1782264670,'2026-06-24 01:31:10','No messages',0),(2093450,1782264730,'2026-06-24 01:32:10','No messages',0),(2093451,1782264789,'2026-06-24 01:33:09','No messages',0),(2093452,1782264850,'2026-06-24 01:34:10','No messages',0),(2093453,1782264910,'2026-06-24 01:35:10','No messages',0),(2093454,1782264970,'2026-06-24 01:36:10','No messages',0),(2093455,1782265029,'2026-06-24 01:37:09','No messages',0),(2093456,1782265090,'2026-06-24 01:38:10','No messages',0),(2093457,1782265149,'2026-06-24 01:39:09','No messages',0),(2093458,1782265210,'2026-06-24 01:40:10','No messages',0),(2093459,1782265269,'2026-06-24 01:41:09','No messages',0),(2093460,1782265329,'2026-06-24 01:42:09','No messages',0),(2093461,1782265389,'2026-06-24 01:43:09','No messages',0),(2093462,1782265449,'2026-06-24 01:44:09','No messages',0),(2093463,1782265510,'2026-06-24 01:45:10','No messages',0),(2093464,1782265570,'2026-06-24 01:46:10','No messages',0),(2093465,1782265630,'2026-06-24 01:47:10','No messages',0),(2093466,1782265690,'2026-06-24 01:48:10','No messages',0),(2093467,1782265749,'2026-06-24 01:49:09','No messages',0),(2093468,1782265810,'2026-06-24 01:50:10','No messages',0),(2093469,1782265870,'2026-06-24 01:51:10','No messages',0),(2093470,1782265929,'2026-06-24 01:52:09','No messages',0),(2093471,1782265989,'2026-06-24 01:53:09','No messages',0),(2093472,1782266049,'2026-06-24 01:54:09','No messages',0),(2093473,1782266110,'2026-06-24 01:55:10','No messages',0),(2093474,1782266170,'2026-06-24 01:56:10','No messages',0),(2093475,1782266229,'2026-06-24 01:57:09','No messages',0),(2093476,1782266290,'2026-06-24 01:58:10','No messages',0),(2093477,1782266349,'2026-06-24 01:59:09','No messages',0),(2093478,1782266412,'2026-06-24 02:00:12','No messages',0),(2093479,1782266469,'2026-06-24 02:01:09','No messages',0),(2093480,1782266530,'2026-06-24 02:02:10','No messages',0),(2093481,1782266589,'2026-06-24 02:03:09','No messages',0),(2093482,1782266650,'2026-06-24 02:04:10','No messages',0),(2093483,1782266711,'2026-06-24 02:05:11','No messages',0),(2093484,1782266769,'2026-06-24 02:06:09','No messages',0),(2093485,1782266829,'2026-06-24 02:07:09','No messages',0),(2093486,1782266890,'2026-06-24 02:08:10','No messages',0),(2093487,1782266950,'2026-06-24 02:09:10','No messages',0),(2093488,1782267010,'2026-06-24 02:10:10','No messages',0),(2093489,1782267069,'2026-06-24 02:11:09','No messages',0),(2093490,1782267129,'2026-06-24 02:12:09','No messages',0),(2093491,1782267189,'2026-06-24 02:13:09','No messages',0),(2093492,1782267249,'2026-06-24 02:14:09','No messages',0),(2093493,1782267311,'2026-06-24 02:15:11','No messages',0),(2093494,1782267369,'2026-06-24 02:16:09','No messages',0),(2093495,1782267429,'2026-06-24 02:17:09','No messages',0),(2093496,1782267490,'2026-06-24 02:18:10','No messages',0),(2093497,1782267549,'2026-06-24 02:19:09','No messages',0),(2093498,1782267610,'2026-06-24 02:20:10','No messages',0),(2093499,1782267668,'2026-06-24 02:21:08','No messages',0),(2093500,1782267730,'2026-06-24 02:22:10','No messages',0),(2093501,1782267789,'2026-06-24 02:23:09','No messages',0),(2093502,1782267850,'2026-06-24 02:24:10','No messages',0),(2093503,1782267910,'2026-06-24 02:25:10','No messages',0),(2093504,1782267970,'2026-06-24 02:26:10','No messages',0),(2093505,1782268030,'2026-06-24 02:27:10','No messages',0),(2093506,1782268089,'2026-06-24 02:28:09','No messages',0),(2093507,1782268150,'2026-06-24 02:29:10','No messages',0),(2093508,1782268211,'2026-06-24 02:30:11','No messages',0),(2093509,1782268269,'2026-06-24 02:31:09','No messages',0),(2093510,1782268329,'2026-06-24 02:32:09','No messages',0),(2093511,1782268389,'2026-06-24 02:33:09','No messages',0),(2093512,1782268450,'2026-06-24 02:34:10','No messages',0),(2093513,1782268510,'2026-06-24 02:35:10','No messages',0),(2093514,1782268570,'2026-06-24 02:36:10','No messages',0),(2093515,1782268629,'2026-06-24 02:37:09','No messages',0),(2093516,1782268690,'2026-06-24 02:38:10','No messages',0),(2093517,1782268750,'2026-06-24 02:39:10','No messages',0),(2093518,1782268810,'2026-06-24 02:40:10','No messages',0),(2093519,1782268869,'2026-06-24 02:41:09','No messages',0),(2093520,1782268929,'2026-06-24 02:42:09','No messages',0),(2093521,1782268990,'2026-06-24 02:43:10','No messages',0),(2093522,1782269049,'2026-06-24 02:44:09','No messages',0),(2093523,1782269111,'2026-06-24 02:45:11','No messages',0),(2093524,1782269170,'2026-06-24 02:46:10','No messages',0),(2093525,1782269229,'2026-06-24 02:47:09','No messages',0),(2093526,1782269289,'2026-06-24 02:48:09','No messages',0),(2093527,1782269349,'2026-06-24 02:49:09','No messages',0),(2093528,1782269410,'2026-06-24 02:50:10','No messages',0),(2093529,1782269469,'2026-06-24 02:51:09','No messages',0),(2093530,1782269529,'2026-06-24 02:52:09','No messages',0),(2093531,1782269589,'2026-06-24 02:53:09','No messages',0),(2093532,1782269649,'2026-06-24 02:54:09','No messages',0),(2093533,1782269710,'2026-06-24 02:55:10','No messages',0),(2093534,1782269769,'2026-06-24 02:56:09','No messages',0),(2093535,1782269830,'2026-06-24 02:57:10','No messages',0),(2093536,1782269889,'2026-06-24 02:58:09','No messages',0),(2093537,1782269949,'2026-06-24 02:59:09','No messages',0),(2093538,1782270012,'2026-06-24 03:00:12','No messages',0),(2093539,1782270069,'2026-06-24 03:01:09','No messages',0),(2093540,1782270129,'2026-06-24 03:02:09','No messages',0),(2093541,1782270190,'2026-06-24 03:03:10','No messages',0),(2093542,1782270250,'2026-06-24 03:04:10','No messages',0),(2093543,1782270310,'2026-06-24 03:05:10','No messages',0),(2093544,1782270369,'2026-06-24 03:06:09','No messages',0),(2093545,1782270430,'2026-06-24 03:07:10','No messages',0),(2093546,1782270490,'2026-06-24 03:08:10','No messages',0),(2093547,1782270550,'2026-06-24 03:09:10','No messages',0),(2093548,1782270610,'2026-06-24 03:10:10','No messages',0),(2093549,1782270668,'2026-06-24 03:11:08','No messages',0),(2093550,1782270730,'2026-06-24 03:12:10','No messages',0),(2093551,1782270789,'2026-06-24 03:13:09','No messages',0),(2093552,1782270850,'2026-06-24 03:14:10','No messages',0),(2093553,1782270911,'2026-06-24 03:15:11','No messages',0),(2093554,1782270969,'2026-06-24 03:16:09','No messages',0),(2093555,1782271030,'2026-06-24 03:17:10','No messages',0),(2093556,1782271090,'2026-06-24 03:18:10','No messages',0),(2093557,1782271149,'2026-06-24 03:19:09','No messages',0),(2093558,1782271210,'2026-06-24 03:20:10','No messages',0),(2093559,1782271269,'2026-06-24 03:21:09','No messages',0),(2093560,1782271330,'2026-06-24 03:22:10','No messages',0),(2093561,1782271389,'2026-06-24 03:23:09','No messages',0),(2093562,1782271451,'2026-06-24 03:24:11','No messages',0),(2093563,1782271510,'2026-06-24 03:25:10','No messages',0),(2093564,1782271569,'2026-06-24 03:26:09','No messages',0),(2093565,1782271630,'2026-06-24 03:27:10','No messages',0),(2093566,1782271690,'2026-06-24 03:28:10','No messages',0),(2093567,1782271749,'2026-06-24 03:29:09','No messages',0),(2093568,1782271811,'2026-06-24 03:30:11','No messages',0),(2093569,1782271869,'2026-06-24 03:31:09','No messages',0),(2093570,1782271929,'2026-06-24 03:32:09','No messages',0),(2093571,1782271990,'2026-06-24 03:33:10','No messages',0),(2093572,1782272050,'2026-06-24 03:34:10','No messages',0),(2093573,1782272110,'2026-06-24 03:35:10','No messages',0),(2093574,1782272169,'2026-06-24 03:36:09','No messages',0),(2093575,1782272229,'2026-06-24 03:37:09','No messages',0),(2093576,1782272290,'2026-06-24 03:38:10','No messages',0),(2093577,1782272350,'2026-06-24 03:39:10','No messages',0),(2093578,1782272410,'2026-06-24 03:40:10','No messages',0),(2093579,1782272469,'2026-06-24 03:41:09','No messages',0),(2093580,1782272530,'2026-06-24 03:42:10','No messages',0),(2093581,1782272590,'2026-06-24 03:43:10','No messages',0),(2093582,1782272650,'2026-06-24 03:44:10','No messages',0),(2093583,1782272710,'2026-06-24 03:45:10','No messages',0),(2093584,1782272769,'2026-06-24 03:46:09','No messages',0),(2093585,1782272829,'2026-06-24 03:47:09','No messages',0),(2093586,1782272890,'2026-06-24 03:48:10','No messages',0),(2093587,1782272949,'2026-06-24 03:49:09','No messages',0),(2093588,1782273010,'2026-06-24 03:50:10','No messages',0),(2093589,1782273069,'2026-06-24 03:51:09','No messages',0),(2093590,1782273129,'2026-06-24 03:52:09','No messages',0),(2093591,1782273190,'2026-06-24 03:53:10','No messages',0),(2093592,1782273250,'2026-06-24 03:54:10','No messages',0),(2093593,1782273310,'2026-06-24 03:55:10','No messages',0),(2093594,1782273370,'2026-06-24 03:56:10','No messages',0),(2093595,1782273430,'2026-06-24 03:57:10','No messages',0),(2093596,1782273490,'2026-06-24 03:58:10','No messages',0),(2093597,1782273550,'2026-06-24 03:59:10','No messages',0),(2093598,1782273612,'2026-06-24 04:00:12','No messages',0),(2093599,1782273669,'2026-06-24 04:01:09','No messages',0),(2093600,1782273729,'2026-06-24 04:02:09','No messages',0),(2093601,1782273789,'2026-06-24 04:03:09','No messages',0),(2093602,1782273850,'2026-06-24 04:04:10','No messages',0),(2093603,1782273910,'2026-06-24 04:05:10','No messages',0),(2093604,1782273970,'2026-06-24 04:06:10','No messages',0),(2093605,1782274029,'2026-06-24 04:07:09','No messages',0),(2093606,1782274090,'2026-06-24 04:08:10','No messages',0),(2093607,1782274149,'2026-06-24 04:09:09','No messages',0),(2093608,1782274210,'2026-06-24 04:10:10','No messages',0),(2093609,1782274269,'2026-06-24 04:11:09','No messages',0),(2093610,1782274330,'2026-06-24 04:12:10','No messages',0),(2093611,1782274389,'2026-06-24 04:13:09','No messages',0),(2093612,1782274449,'2026-06-24 04:14:09','No messages',0),(2093613,1782274511,'2026-06-24 04:15:11','No messages',0),(2093614,1782274570,'2026-06-24 04:16:10','No messages',0),(2093615,1782274629,'2026-06-24 04:17:09','No messages',0),(2093616,1782274689,'2026-06-24 04:18:09','No messages',0),(2093617,1782274749,'2026-06-24 04:19:09','No messages',0),(2093618,1782274810,'2026-06-24 04:20:10','No messages',0),(2093619,1782274869,'2026-06-24 04:21:09','No messages',0),(2093620,1782274930,'2026-06-24 04:22:10','No messages',0),(2093621,1782274989,'2026-06-24 04:23:09','No messages',0),(2093622,1782275050,'2026-06-24 04:24:10','No messages',0),(2093623,1782275110,'2026-06-24 04:25:10','No messages',0),(2093624,1782275170,'2026-06-24 04:26:10','No messages',0),(2093625,1782275230,'2026-06-24 04:27:10','No messages',0),(2093626,1782275290,'2026-06-24 04:28:10','No messages',0),(2093627,1782275349,'2026-06-24 04:29:09','No messages',0),(2093628,1782275411,'2026-06-24 04:30:11','No messages',0),(2093629,1782275469,'2026-06-24 04:31:09','No messages',0),(2093630,1782275530,'2026-06-24 04:32:10','No messages',0),(2093631,1782275589,'2026-06-24 04:33:09','No messages',0),(2093632,1782275650,'2026-06-24 04:34:10','No messages',0),(2093633,1782275710,'2026-06-24 04:35:10','No messages',0),(2093634,1782275770,'2026-06-24 04:36:10','No messages',0),(2093635,1782275830,'2026-06-24 04:37:10','No messages',0),(2093636,1782275889,'2026-06-24 04:38:09','No messages',0),(2093637,1782275949,'2026-06-24 04:39:09','No messages',0),(2093638,1782276010,'2026-06-24 04:40:10','No messages',0),(2093639,1782276069,'2026-06-24 04:41:09','No messages',0),(2093640,1782276130,'2026-06-24 04:42:10','No messages',0),(2093641,1782276190,'2026-06-24 04:43:10','No messages',0),(2093642,1782276250,'2026-06-24 04:44:10','No messages',0),(2093643,1782276310,'2026-06-24 04:45:10','No messages',0),(2093644,1782276370,'2026-06-24 04:46:10','No messages',0),(2093645,1782276429,'2026-06-24 04:47:09','No messages',0),(2093646,1782276490,'2026-06-24 04:48:10','No messages',0),(2093647,1782276549,'2026-06-24 04:49:09','No messages',0),(2093648,1782276610,'2026-06-24 04:50:10','No messages',0),(2093649,1782276670,'2026-06-24 04:51:10','No messages',0),(2093650,1782276729,'2026-06-24 04:52:09','No messages',0),(2093651,1782276789,'2026-06-24 04:53:09','No messages',0),(2093652,1782276850,'2026-06-24 04:54:10','No messages',0),(2093653,1782276909,'2026-06-24 04:55:09','No messages',0),(2093654,1782276969,'2026-06-24 04:56:09','No messages',0),(2093655,1782277030,'2026-06-24 04:57:10','No messages',0),(2093656,1782277089,'2026-06-24 04:58:09','No messages',0),(2093657,1782277149,'2026-06-24 04:59:09','No messages',0),(2093658,1782277212,'2026-06-24 05:00:12','No messages',0),(2093659,1782277269,'2026-06-24 05:01:09','No messages',0),(2093660,1782277329,'2026-06-24 05:02:09','No messages',0),(2093661,1782277390,'2026-06-24 05:03:10','No messages',0),(2093662,1782277449,'2026-06-24 05:04:09','No messages',0),(2093663,1782277510,'2026-06-24 05:05:10','No messages',0),(2093664,1782277569,'2026-06-24 05:06:09','No messages',0),(2093665,1782277629,'2026-06-24 05:07:09','No messages',0),(2093666,1782277689,'2026-06-24 05:08:09','No messages',0),(2093667,1782277750,'2026-06-24 05:09:10','No messages',0),(2093668,1782277811,'2026-06-24 05:10:11','No messages',0),(2093669,1782277868,'2026-06-24 05:11:08','No messages',0),(2093670,1782277929,'2026-06-24 05:12:09','No messages',0),(2093671,1782277989,'2026-06-24 05:13:09','No messages',0),(2093672,1782278049,'2026-06-24 05:14:09','No messages',0),(2093673,1782278110,'2026-06-24 05:15:10','No messages',0),(2093674,1782278170,'2026-06-24 05:16:10','No messages',0),(2093675,1782278229,'2026-06-24 05:17:09','No messages',0),(2093676,1782278290,'2026-06-24 05:18:10','No messages',0),(2093677,1782278350,'2026-06-24 05:19:10','No messages',0),(2093678,1782278410,'2026-06-24 05:20:10','No messages',0),(2093679,1782278469,'2026-06-24 05:21:09','No messages',0),(2093680,1782278529,'2026-06-24 05:22:09','No messages',0),(2093681,1782278589,'2026-06-24 05:23:09','No messages',0),(2093682,1782278650,'2026-06-24 05:24:10','No messages',0),(2093683,1782278709,'2026-06-24 05:25:09','No messages',0),(2093684,1782278770,'2026-06-24 05:26:10','No messages',0),(2093685,1782278830,'2026-06-24 05:27:10','No messages',0),(2093686,1782278890,'2026-06-24 05:28:10','No messages',0),(2093687,1782278949,'2026-06-24 05:29:09','No messages',0),(2093688,1782279011,'2026-06-24 05:30:11','No messages',0),(2093689,1782279069,'2026-06-24 05:31:09','No messages',0),(2093690,1782279129,'2026-06-24 05:32:09','No messages',0),(2093691,1782279189,'2026-06-24 05:33:09','No messages',0),(2093692,1782279249,'2026-06-24 05:34:09','No messages',0),(2093693,1782279310,'2026-06-24 05:35:10','No messages',0),(2093694,1782279370,'2026-06-24 05:36:10','No messages',0),(2093695,1782279429,'2026-06-24 05:37:09','No messages',0),(2093696,1782279490,'2026-06-24 05:38:10','No messages',0),(2093697,1782279550,'2026-06-24 05:39:10','No messages',0),(2093698,1782279610,'2026-06-24 05:40:10','No messages',0),(2093699,1782279670,'2026-06-24 05:41:10','No messages',0),(2093700,1782279730,'2026-06-24 05:42:10','No messages',0),(2093701,1782279790,'2026-06-24 05:43:10','No messages',0),(2093702,1782279850,'2026-06-24 05:44:10','No messages',0),(2093703,1782279911,'2026-06-24 05:45:11','No messages',0),(2093704,1782279969,'2026-06-24 05:46:09','No messages',0),(2093705,1782280029,'2026-06-24 05:47:09','No messages',0),(2093706,1782280089,'2026-06-24 05:48:09','No messages',0),(2093707,1782280149,'2026-06-24 05:49:09','No messages',0),(2093708,1782280210,'2026-06-24 05:50:10','No messages',0),(2093709,1782280269,'2026-06-24 05:51:09','No messages',0),(2093710,1782280329,'2026-06-24 05:52:09','No messages',0),(2093711,1782280389,'2026-06-24 05:53:09','No messages',0),(2093712,1782280449,'2026-06-24 05:54:09','No messages',0),(2093713,1782280509,'2026-06-24 05:55:09','No messages',0),(2093714,1782280569,'2026-06-24 05:56:09','No messages',0),(2093715,1782280630,'2026-06-24 05:57:10','No messages',0),(2093716,1782280690,'2026-06-24 05:58:10','No messages',0),(2093717,1782280749,'2026-06-24 05:59:09','No messages',0),(2093718,1782280812,'2026-06-24 06:00:12','No messages',0),(2093719,1782280869,'2026-06-24 06:01:09','No messages',0),(2093720,1782280930,'2026-06-24 06:02:10','No messages',0),(2093721,1782280989,'2026-06-24 06:03:09','No messages',0),(2093722,1782281050,'2026-06-24 06:04:10','No messages',0),(2093723,1782281110,'2026-06-24 06:05:10','No messages',0),(2093724,1782281170,'2026-06-24 06:06:10','No messages',0),(2093725,1782281229,'2026-06-24 06:07:09','No messages',0),(2093726,1782281290,'2026-06-24 06:08:10','No messages',0),(2093727,1782281349,'2026-06-24 06:09:09','No messages',0),(2093728,1782281410,'2026-06-24 06:10:10','No messages',0),(2093729,1782281469,'2026-06-24 06:11:09','No messages',0),(2093730,1782281529,'2026-06-24 06:12:09','No messages',0),(2093731,1782281590,'2026-06-24 06:13:10','No messages',0),(2093732,1782281650,'2026-06-24 06:14:10','No messages',0),(2093733,1782281710,'2026-06-24 06:15:10','No messages',0),(2093734,1782281769,'2026-06-24 06:16:09','No messages',0),(2093735,1782281829,'2026-06-24 06:17:09','No messages',0),(2093736,1782281890,'2026-06-24 06:18:10','No messages',0),(2093737,1782281949,'2026-06-24 06:19:09','No messages',0),(2093738,1782282010,'2026-06-24 06:20:10','No messages',0),(2093739,1782282069,'2026-06-24 06:21:09','No messages',0),(2093740,1782282129,'2026-06-24 06:22:09','No messages',0),(2093741,1782282190,'2026-06-24 06:23:10','No messages',0),(2093742,1782282250,'2026-06-24 06:24:10','No messages',0),(2093743,1782282309,'2026-06-24 06:25:09','No messages',0),(2093744,1782282370,'2026-06-24 06:26:10','No messages',0),(2093745,1782282429,'2026-06-24 06:27:09','No messages',0),(2093746,1782282489,'2026-06-24 06:28:09','No messages',0),(2093747,1782282550,'2026-06-24 06:29:10','No messages',0),(2093748,1782282611,'2026-06-24 06:30:11','No messages',0),(2093749,1782282669,'2026-06-24 06:31:09','No messages',0),(2093750,1782282729,'2026-06-24 06:32:09','No messages',0),(2093751,1782282790,'2026-06-24 06:33:10','No messages',0),(2093752,1782282850,'2026-06-24 06:34:10','No messages',0),(2093753,1782282910,'2026-06-24 06:35:10','No messages',0),(2093754,1782282970,'2026-06-24 06:36:10','No messages',0),(2093755,1782283029,'2026-06-24 06:37:09','No messages',0),(2093756,1782283089,'2026-06-24 06:38:09','No messages',0),(2093757,1782283150,'2026-06-24 06:39:10','No messages',0),(2093758,1782283210,'2026-06-24 06:40:10','No messages',0),(2093759,1782283269,'2026-06-24 06:41:09','No messages',0),(2093760,1782283330,'2026-06-24 06:42:10','No messages',0),(2093761,1782283389,'2026-06-24 06:43:09','No messages',0),(2093762,1782283450,'2026-06-24 06:44:10','No messages',0),(2093763,1782283511,'2026-06-24 06:45:11','No messages',0),(2093764,1782283570,'2026-06-24 06:46:10','No messages',0),(2093765,1782283629,'2026-06-24 06:47:09','No messages',0),(2093766,1782283689,'2026-06-24 06:48:09','No messages',0),(2093767,1782283749,'2026-06-24 06:49:09','No messages',0),(2093768,1782283810,'2026-06-24 06:50:10','No messages',0),(2093769,1782283869,'2026-06-24 06:51:09','No messages',0),(2093770,1782283929,'2026-06-24 06:52:09','No messages',0),(2093771,1782283989,'2026-06-24 06:53:09','No messages',0),(2093772,1782284050,'2026-06-24 06:54:10','No messages',0),(2093773,1782284109,'2026-06-24 06:55:09','No messages',0),(2093774,1782284169,'2026-06-24 06:56:09','No messages',0),(2093775,1782284230,'2026-06-24 06:57:10','No messages',0),(2093776,1782284289,'2026-06-24 06:58:09','No messages',0),(2093777,1782284350,'2026-06-24 06:59:10','No messages',0),(2093778,1782284413,'2026-06-24 07:00:13','No messages',0),(2093779,1782284469,'2026-06-24 07:01:09','No messages',0),(2093780,1782284530,'2026-06-24 07:02:10','No messages',0),(2093781,1782284589,'2026-06-24 07:03:09','No messages',0),(2093782,1782284649,'2026-06-24 07:04:09','No messages',0),(2093783,1782284710,'2026-06-24 07:05:10','No messages',0),(2093784,1782284770,'2026-06-24 07:06:10','No messages',0),(2093785,1782284828,'2026-06-24 07:07:08','No messages',0),(2093786,1782284890,'2026-06-24 07:08:10','No messages',0),(2093787,1782284949,'2026-06-24 07:09:09','No messages',0),(2093788,1782285010,'2026-06-24 07:10:10','No messages',0),(2093789,1782285069,'2026-06-24 07:11:09','No messages',0),(2093790,1782285129,'2026-06-24 07:12:09','No messages',0),(2093791,1782285189,'2026-06-24 07:13:09','No messages',0),(2093792,1782285250,'2026-06-24 07:14:10','No messages',0),(2093793,1782285311,'2026-06-24 07:15:11','No messages',0),(2093794,1782285369,'2026-06-24 07:16:09','No messages',0),(2093795,1782285430,'2026-06-24 07:17:10','No messages',0),(2093796,1782285490,'2026-06-24 07:18:10','No messages',0),(2093797,1782285549,'2026-06-24 07:19:09','No messages',0),(2093798,1782285610,'2026-06-24 07:20:10','No messages',0),(2093799,1782285669,'2026-06-24 07:21:09','No messages',0),(2093800,1782285729,'2026-06-24 07:22:09','No messages',0),(2093801,1782285789,'2026-06-24 07:23:09','No messages',0),(2093802,1782285850,'2026-06-24 07:24:10','No messages',0),(2093803,1782285910,'2026-06-24 07:25:10','No messages',0),(2093804,1782285970,'2026-06-24 07:26:10','No messages',0),(2093805,1782286030,'2026-06-24 07:27:10','No messages',0),(2093806,1782286090,'2026-06-24 07:28:10','No messages',0),(2093807,1782286148,'2026-06-24 07:29:08','No messages',0),(2093808,1782286211,'2026-06-24 07:30:11','No messages',0),(2093809,1782286269,'2026-06-24 07:31:09','No messages',0),(2093810,1782286330,'2026-06-24 07:32:10','No messages',0),(2093811,1782286390,'2026-06-24 07:33:10','No messages',0),(2093812,1782286450,'2026-06-24 07:34:10','No messages',0),(2093813,1782286510,'2026-06-24 07:35:10','No messages',0),(2093814,1782286570,'2026-06-24 07:36:10','No messages',0),(2093815,1782286629,'2026-06-24 07:37:09','No messages',0),(2093816,1782286690,'2026-06-24 07:38:10','No messages',0),(2093817,1782286750,'2026-06-24 07:39:10','No messages',0),(2093818,1782286810,'2026-06-24 07:40:10','No messages',0),(2093819,1782286869,'2026-06-24 07:41:09','No messages',0),(2093820,1782286929,'2026-06-24 07:42:09','No messages',0),(2093821,1782286989,'2026-06-24 07:43:09','No messages',0),(2093822,1782287050,'2026-06-24 07:44:10','No messages',0),(2093823,1782287111,'2026-06-24 07:45:11','No messages',0),(2093824,1782287170,'2026-06-24 07:46:10','No messages',0),(2093825,1782287229,'2026-06-24 07:47:09','No messages',0),(2093826,1782287290,'2026-06-24 07:48:10','No messages',0),(2093827,1782287349,'2026-06-24 07:49:09','No messages',0),(2093828,1782287410,'2026-06-24 07:50:10','No messages',0),(2093829,1782287469,'2026-06-24 07:51:09','No messages',0),(2093830,1782287529,'2026-06-24 07:52:09','No messages',0),(2093831,1782287589,'2026-06-24 07:53:09','No messages',0),(2093832,1782287650,'2026-06-24 07:54:10','No messages',0),(2093833,1782287710,'2026-06-24 07:55:10','No messages',0),(2093834,1782287769,'2026-06-24 07:56:09','No messages',0),(2093835,1782287830,'2026-06-24 07:57:10','No messages',0),(2093836,1782287890,'2026-06-24 07:58:10','No messages',0),(2093837,1782287949,'2026-06-24 07:59:09','No messages',0),(2093838,1782288012,'2026-06-24 08:00:12','No messages',0),(2093839,1782288070,'2026-06-24 08:01:10','No messages',0),(2093840,1782288130,'2026-06-24 08:02:10','No messages',0),(2093841,1782288191,'2026-06-24 08:03:11','No messages',0),(2093842,1782288249,'2026-06-24 08:04:09','No messages',0),(2093843,1782288311,'2026-06-24 08:05:11','No messages',0),(2093844,1782288371,'2026-06-24 08:06:11','No messages',0),(2093845,1782288430,'2026-06-24 08:07:10','No messages',0),(2093846,1782288490,'2026-06-24 08:08:10','No messages',0),(2093847,1782288550,'2026-06-24 08:09:10','No messages',0),(2093848,1782288610,'2026-06-24 08:10:10','No messages',0),(2093849,1782288670,'2026-06-24 08:11:10','No messages',0),(2093850,1782288729,'2026-06-24 08:12:09','No messages',0),(2093851,1782288790,'2026-06-24 08:13:10','No messages',0),(2093852,1782288850,'2026-06-24 08:14:10','No messages',0),(2093853,1782288910,'2026-06-24 08:15:10','No messages',0),(2093854,1782288969,'2026-06-24 08:16:09','No messages',0),(2093855,1782289029,'2026-06-24 08:17:09','No messages',0),(2093856,1782289090,'2026-06-24 08:18:10','No messages',0),(2093857,1782289150,'2026-06-24 08:19:10','No messages',0),(2093858,1782289209,'2026-06-24 08:20:09','No messages',0),(2093859,1782289270,'2026-06-24 08:21:10','No messages',0),(2093860,1782289330,'2026-06-24 08:22:10','No messages',0),(2093861,1782289390,'2026-06-24 08:23:10','No messages',0),(2093862,1782289450,'2026-06-24 08:24:10','No messages',0),(2093863,1782289509,'2026-06-24 08:25:09','No messages',0),(2093864,1782289570,'2026-06-24 08:26:10','No messages',0),(2093865,1782289629,'2026-06-24 08:27:09','No messages',0),(2093866,1782289690,'2026-06-24 08:28:10','No messages',0),(2093867,1782289749,'2026-06-24 08:29:09','No messages',0),(2093868,1782289811,'2026-06-24 08:30:11','No messages',0),(2093869,1782289870,'2026-06-24 08:31:10','No messages',0),(2093870,1782289930,'2026-06-24 08:32:10','No messages',0),(2093871,1782289989,'2026-06-24 08:33:09','No messages',0),(2093872,1782290050,'2026-06-24 08:34:10','No messages',0),(2093873,1782290109,'2026-06-24 08:35:09','No messages',0),(2093874,1782290170,'2026-06-24 08:36:10','No messages',0),(2093875,1782290229,'2026-06-24 08:37:09','No messages',0),(2093876,1782290290,'2026-06-24 08:38:10','No messages',0),(2093877,1782290350,'2026-06-24 08:39:10','No messages',0),(2093878,1782290410,'2026-06-24 08:40:10','No messages',0),(2093879,1782290469,'2026-06-24 08:41:09','No messages',0),(2093880,1782290530,'2026-06-24 08:42:10','No messages',0),(2093881,1782290589,'2026-06-24 08:43:09','No messages',0),(2093882,1782290649,'2026-06-24 08:44:09','No messages',0),(2093883,1782290711,'2026-06-24 08:45:11','No messages',0),(2093884,1782290769,'2026-06-24 08:46:09','No messages',0),(2093885,1782290830,'2026-06-24 08:47:10','No messages',0),(2093886,1782290889,'2026-06-24 08:48:09','No messages',0),(2093887,1782290949,'2026-06-24 08:49:09','No messages',0),(2093888,1782291010,'2026-06-24 08:50:10','No messages',0),(2093889,1782291069,'2026-06-24 08:51:09','No messages',0),(2093890,1782291130,'2026-06-24 08:52:10','No messages',0),(2093891,1782291189,'2026-06-24 08:53:09','No messages',0),(2093892,1782291249,'2026-06-24 08:54:09','No messages',0),(2093893,1782291309,'2026-06-24 08:55:09','No messages',0),(2093894,1782291370,'2026-06-24 08:56:10','No messages',0),(2093895,1782291430,'2026-06-24 08:57:10','No messages',0),(2093896,1782291489,'2026-06-24 08:58:09','No messages',0),(2093897,1782291550,'2026-06-24 08:59:10','No messages',0),(2093898,1782291611,'2026-06-24 09:00:11','No messages',0),(2093899,1782291669,'2026-06-24 09:01:09','No messages',0),(2093900,1782291729,'2026-06-24 09:02:09','No messages',0),(2093901,1782291789,'2026-06-24 09:03:09','No messages',0),(2093902,1782291849,'2026-06-24 09:04:09','No messages',0),(2093903,1782291910,'2026-06-24 09:05:10','No messages',0),(2093904,1782291970,'2026-06-24 09:06:10','No messages',0),(2093905,1782292030,'2026-06-24 09:07:10','No messages',0),(2093906,1782292090,'2026-06-24 09:08:10','No messages',0),(2093907,1782292149,'2026-06-24 09:09:09','No messages',0),(2093908,1782292210,'2026-06-24 09:10:10','No messages',0),(2093909,1782292270,'2026-06-24 09:11:10','No messages',0),(2093910,1782292329,'2026-06-24 09:12:09','No messages',0),(2093911,1782292389,'2026-06-24 09:13:09','No messages',0),(2093912,1782292449,'2026-06-24 09:14:09','No messages',0),(2093913,1782292511,'2026-06-24 09:15:11','No messages',0),(2093914,1782292570,'2026-06-24 09:16:10','No messages',0),(2093915,1782292629,'2026-06-24 09:17:09','No messages',0),(2093916,1782292690,'2026-06-24 09:18:10','No messages',0),(2093917,1782292750,'2026-06-24 09:19:10','No messages',0),(2093918,1782292810,'2026-06-24 09:20:10','No messages',0),(2093919,1782292869,'2026-06-24 09:21:09','No messages',0),(2093920,1782292929,'2026-06-24 09:22:09','No messages',0),(2093921,1782292989,'2026-06-24 09:23:09','No messages',0),(2093922,1782293049,'2026-06-24 09:24:09','No messages',0),(2093923,1782293110,'2026-06-24 09:25:10','No messages',0),(2093924,1782293170,'2026-06-24 09:26:10','No messages',0),(2093925,1782293229,'2026-06-24 09:27:09','No messages',0),(2093926,1782293290,'2026-06-24 09:28:10','No messages',0),(2093927,1782293349,'2026-06-24 09:29:09','No messages',0),(2093928,1782293412,'2026-06-24 09:30:12','No messages',0),(2093929,1782293470,'2026-06-24 09:31:10','No messages',0),(2093930,1782293529,'2026-06-24 09:32:09','No messages',0),(2093931,1782293589,'2026-06-24 09:33:09','No messages',0),(2093932,1782293650,'2026-06-24 09:34:10','No messages',0),(2093933,1782293710,'2026-06-24 09:35:10','No messages',0),(2093934,1782293770,'2026-06-24 09:36:10','No messages',0),(2093935,1782293829,'2026-06-24 09:37:09','No messages',0),(2093936,1782293890,'2026-06-24 09:38:10','No messages',0),(2093937,1782293950,'2026-06-24 09:39:10','No messages',0),(2093938,1782294010,'2026-06-24 09:40:10','No messages',0),(2093939,1782294070,'2026-06-24 09:41:10','No messages',0),(2093940,1782294123,'2026-06-24 09:42:03','Current time is 1782294123.  Last queue cron was called at 1782294070',0),(2093941,1782294187,'2026-06-24 09:43:07','No messages',0),(2093942,1782294247,'2026-06-24 09:44:07','No messages',0),(2093943,1782294308,'2026-06-24 09:45:08','No messages',0),(2093944,1782294368,'2026-06-24 09:46:08','No messages',0),(2093945,1782294429,'2026-06-24 09:47:09','No messages',0),(2093946,1782294488,'2026-06-24 09:48:08','No messages',0),(2093947,1782294547,'2026-06-24 09:49:07','No messages',0),(2093948,1782294608,'2026-06-24 09:50:08','No messages',0),(2093949,1782294667,'2026-06-24 09:51:07','No messages',0),(2093950,1782294727,'2026-06-24 09:52:07','No messages',0),(2093951,1782294787,'2026-06-24 09:53:07','No messages',0),(2093952,1782294848,'2026-06-24 09:54:08','No messages',0),(2093953,1782294908,'2026-06-24 09:55:08','No messages',0),(2093954,1782294968,'2026-06-24 09:56:08','No messages',0),(2093955,1782295028,'2026-06-24 09:57:08','No messages',0),(2093956,1782295087,'2026-06-24 09:58:07','No messages',0),(2093957,1782295148,'2026-06-24 09:59:08','No messages',0),(2093958,1782295211,'2026-06-24 10:00:11','No messages',0),(2093959,1782295268,'2026-06-24 10:01:08','No messages',0),(2093960,1782295329,'2026-06-24 10:02:09','No messages',0),(2093961,1782295388,'2026-06-24 10:03:08','No messages',0),(2093962,1782295448,'2026-06-24 10:04:08','No messages',0),(2093963,1782295509,'2026-06-24 10:05:09','No messages',0),(2093964,1782295569,'2026-06-24 10:06:09','No messages',0),(2093965,1782295628,'2026-06-24 10:07:08','No messages',0),(2093966,1782295688,'2026-06-24 10:08:08','No messages',0),(2093967,1782295749,'2026-06-24 10:09:09','No messages',0),(2093968,1782295810,'2026-06-24 10:10:10','No messages',0),(2093969,1782295869,'2026-06-24 10:11:09','No messages',0),(2093970,1782295929,'2026-06-24 10:12:09','No messages',0),(2093971,1782295988,'2026-06-24 10:13:08','No messages',0),(2093972,1782296049,'2026-06-24 10:14:09','No messages',0),(2093973,1782296110,'2026-06-24 10:15:10','No messages',0),(2093974,1782296169,'2026-06-24 10:16:09','No messages',0),(2093975,1782296229,'2026-06-24 10:17:09','No messages',0),(2093976,1782296289,'2026-06-24 10:18:09','No messages',0),(2093977,1782296349,'2026-06-24 10:19:09','No messages',0),(2093978,1782296409,'2026-06-24 10:20:09','No messages',0),(2093979,1782296469,'2026-06-24 10:21:09','No messages',0),(2093980,1782296529,'2026-06-24 10:22:09','No messages',0),(2093981,1782296589,'2026-06-24 10:23:09','No messages',0),(2093982,1782296649,'2026-06-24 10:24:09','No messages',0),(2093983,1782296709,'2026-06-24 10:25:09','No messages',0),(2093984,1782296769,'2026-06-24 10:26:09','No messages',0),(2093985,1782296830,'2026-06-24 10:27:10','No messages',0),(2093986,1782296889,'2026-06-24 10:28:09','No messages',0),(2093987,1782296949,'2026-06-24 10:29:09','No messages',0),(2093988,1782297010,'2026-06-24 10:30:10','No messages',0),(2093989,1782297068,'2026-06-24 10:31:08','No messages',0),(2093990,1782297130,'2026-06-24 10:32:10','No messages',0),(2093991,1782297188,'2026-06-24 10:33:08','No messages',0),(2093992,1782297249,'2026-06-24 10:34:09','No messages',0),(2093993,1782297309,'2026-06-24 10:35:09','No messages',0),(2093994,1782297369,'2026-06-24 10:36:09','No messages',0),(2093995,1782297429,'2026-06-24 10:37:09','No messages',0),(2093996,1782297488,'2026-06-24 10:38:08','No messages',0),(2093997,1782297549,'2026-06-24 10:39:09','No messages',0),(2093998,1782297610,'2026-06-24 10:40:10','No messages',0),(2093999,1782297669,'2026-06-24 10:41:09','No messages',0),(2094000,1782297729,'2026-06-24 10:42:09','No messages',0),(2094001,1782297789,'2026-06-24 10:43:09','No messages',0),(2094002,1782297849,'2026-06-24 10:44:09','No messages',0),(2094003,1782297910,'2026-06-24 10:45:10','No messages',0),(2094004,1782297968,'2026-06-24 10:46:08','No messages',0),(2094005,1782298028,'2026-06-24 10:47:08','No messages',0),(2094006,1782298089,'2026-06-24 10:48:09','No messages',0),(2094007,1782298149,'2026-06-24 10:49:09','No messages',0),(2094008,1782298209,'2026-06-24 10:50:09','No messages',0),(2094009,1782298268,'2026-06-24 10:51:08','No messages',0),(2094010,1782298329,'2026-06-24 10:52:09','No messages',0),(2094011,1782298388,'2026-06-24 10:53:08','No messages',0),(2094012,1782298449,'2026-06-24 10:54:09','No messages',0),(2094013,1782298510,'2026-06-24 10:55:10','No messages',0),(2094014,1782298568,'2026-06-24 10:56:08','No messages',0),(2094015,1782298630,'2026-06-24 10:57:10','No messages',0),(2094016,1782298689,'2026-06-24 10:58:09','No messages',0),(2094017,1782298748,'2026-06-24 10:59:08','No messages',0),(2094018,1782298811,'2026-06-24 11:00:11','No messages',0),(2094019,1782298868,'2026-06-24 11:01:08','No messages',0),(2094020,1782298929,'2026-06-24 11:02:09','No messages',0),(2094021,1782298989,'2026-06-24 11:03:09','No messages',0),(2094022,1782299049,'2026-06-24 11:04:09','No messages',0),(2094023,1782299110,'2026-06-24 11:05:10','No messages',0),(2094024,1782299168,'2026-06-24 11:06:08','No messages',0),(2094025,1782299229,'2026-06-24 11:07:09','No messages',0),(2094026,1782299289,'2026-06-24 11:08:09','No messages',0),(2094027,1782299349,'2026-06-24 11:09:09','No messages',0),(2094028,1782299410,'2026-06-24 11:10:10','No messages',0),(2094029,1782299469,'2026-06-24 11:11:09','No messages',0),(2094030,1782299529,'2026-06-24 11:12:09','No messages',0),(2094031,1782299589,'2026-06-24 11:13:09','No messages',0),(2094032,1782299649,'2026-06-24 11:14:09','No messages',0),(2094033,1782299709,'2026-06-24 11:15:09','No messages',0),(2094034,1782299770,'2026-06-24 11:16:10','No messages',0),(2094035,1782299828,'2026-06-24 11:17:08','No messages',0),(2094036,1782299888,'2026-06-24 11:18:08','No messages',0),(2094037,1782299948,'2026-06-24 11:19:08','No messages',0),(2094038,1782300009,'2026-06-24 11:20:09','No messages',0),(2094039,1782300068,'2026-06-24 11:21:08','No messages',0),(2094040,1782300129,'2026-06-24 11:22:09','No messages',0),(2094041,1782300188,'2026-06-24 11:23:08','No messages',0),(2094042,1782300250,'2026-06-24 11:24:10','No messages',0),(2094043,1782300309,'2026-06-24 11:25:09','No messages',0),(2094044,1782300370,'2026-06-24 11:26:10','No messages',0),(2094045,1782300429,'2026-06-24 11:27:09','No messages',0),(2094046,1782300488,'2026-06-24 11:28:08','No messages',0),(2094047,1782300549,'2026-06-24 11:29:09','No messages',0),(2094048,1782300611,'2026-06-24 11:30:11','No messages',0),(2094049,1782300669,'2026-06-24 11:31:09','No messages',0),(2094050,1782300729,'2026-06-24 11:32:09','No messages',0),(2094051,1782300789,'2026-06-24 11:33:09','No messages',0),(2094052,1782300849,'2026-06-24 11:34:09','No messages',0),(2094053,1782300909,'2026-06-24 11:35:09','No messages',0),(2094054,1782300969,'2026-06-24 11:36:09','No messages',0),(2094055,1782301029,'2026-06-24 11:37:09','No messages',0),(2094056,1782301089,'2026-06-24 11:38:09','No messages',0),(2094057,1782301149,'2026-06-24 11:39:09','No messages',0),(2094058,1782301209,'2026-06-24 11:40:09','No messages',0),(2094059,1782301269,'2026-06-24 11:41:09','No messages',0),(2094060,1782301329,'2026-06-24 11:42:09','No messages',0),(2094061,1782301389,'2026-06-24 11:43:09','No messages',0),(2094062,1782301449,'2026-06-24 11:44:09','No messages',0),(2094063,1782301510,'2026-06-24 11:45:10','No messages',0),(2094064,1782301570,'2026-06-24 11:46:10','No messages',0),(2094065,1782301629,'2026-06-24 11:47:09','No messages',0),(2094066,1782301689,'2026-06-24 11:48:09','No messages',0),(2094067,1782301748,'2026-06-24 11:49:08','No messages',0),(2094068,1782301810,'2026-06-24 11:50:10','No messages',0),(2094069,1782301869,'2026-06-24 11:51:09','No messages',0),(2094070,1782301929,'2026-06-24 11:52:09','No messages',0),(2094071,1782301989,'2026-06-24 11:53:09','No messages',0),(2094072,1782302048,'2026-06-24 11:54:08','No messages',0),(2094073,1782302110,'2026-06-24 11:55:10','No messages',0),(2094074,1782302169,'2026-06-24 11:56:09','No messages',0),(2094075,1782302229,'2026-06-24 11:57:09','No messages',0),(2094076,1782302289,'2026-06-24 11:58:09','No messages',0),(2094077,1782302350,'2026-06-24 11:59:10','No messages',0),(2094078,1782302411,'2026-06-24 12:00:11','No messages',0),(2094079,1782302469,'2026-06-24 12:01:09','No messages',0),(2094080,1782302529,'2026-06-24 12:02:09','No messages',0),(2094081,1782302589,'2026-06-24 12:03:09','No messages',0),(2094082,1782302649,'2026-06-24 12:04:09','No messages',0),(2094083,1782302710,'2026-06-24 12:05:10','No messages',0),(2094084,1782302769,'2026-06-24 12:06:09','No messages',0),(2094085,1782302829,'2026-06-24 12:07:09','No messages',0),(2094086,1782302889,'2026-06-24 12:08:09','No messages',0),(2094087,1782302949,'2026-06-24 12:09:09','No messages',0),(2094088,1782303010,'2026-06-24 12:10:10','No messages',0),(2094089,1782303070,'2026-06-24 12:11:10','No messages',0),(2094090,1782303129,'2026-06-24 12:12:09','No messages',0),(2094091,1782303189,'2026-06-24 12:13:09','No messages',0),(2094092,1782303249,'2026-06-24 12:14:09','No messages',0),(2094093,1782303309,'2026-06-24 12:15:09','No messages',0),(2094094,1782303369,'2026-06-24 12:16:09','No messages',0),(2094095,1782303428,'2026-06-24 12:17:08','No messages',0),(2094096,1782303489,'2026-06-24 12:18:09','No messages',0),(2094097,1782303550,'2026-06-24 12:19:10','No messages',0),(2094098,1782303610,'2026-06-24 12:20:10','No messages',0),(2094099,1782303669,'2026-06-24 12:21:09','No messages',0),(2094100,1782303729,'2026-06-24 12:22:09','No messages',0),(2094101,1782303789,'2026-06-24 12:23:09','No messages',0),(2094102,1782303849,'2026-06-24 12:24:09','No messages',0),(2094103,1782303909,'2026-06-24 12:25:09','No messages',0),(2094104,1782303969,'2026-06-24 12:26:09','No messages',0),(2094105,1782304029,'2026-06-24 12:27:09','No messages',0),(2094106,1782304089,'2026-06-24 12:28:09','No messages',0),(2094107,1782304149,'2026-06-24 12:29:09','No messages',0),(2094108,1782304211,'2026-06-24 12:30:11','No messages',0),(2094109,1782304269,'2026-06-24 12:31:09','No messages',0),(2094110,1782304329,'2026-06-24 12:32:09','No messages',0),(2094111,1782304389,'2026-06-24 12:33:09','No messages',0),(2094112,1782304449,'2026-06-24 12:34:09','No messages',0),(2094113,1782304509,'2026-06-24 12:35:09','No messages',0),(2094114,1782304569,'2026-06-24 12:36:09','No messages',0),(2094115,1782304629,'2026-06-24 12:37:09','No messages',0),(2094116,1782304689,'2026-06-24 12:38:09','No messages',0),(2094117,1782304749,'2026-06-24 12:39:09','No messages',0),(2094118,1782304810,'2026-06-24 12:40:10','No messages',0),(2094119,1782304869,'2026-06-24 12:41:09','No messages',0),(2094120,1782304929,'2026-06-24 12:42:09','No messages',0),(2094121,1782304989,'2026-06-24 12:43:09','No messages',0),(2094122,1782305049,'2026-06-24 12:44:09','No messages',0),(2094123,1782305110,'2026-06-24 12:45:10','No messages',0),(2094124,1782305169,'2026-06-24 12:46:09','No messages',0),(2094125,1782305229,'2026-06-24 12:47:09','No messages',0),(2094126,1782305289,'2026-06-24 12:48:09','No messages',0),(2094127,1782305348,'2026-06-24 12:49:08','No messages',0),(2094128,1782305410,'2026-06-24 12:50:10','No messages',0),(2094129,1782305468,'2026-06-24 12:51:08','No messages',0),(2094130,1782305529,'2026-06-24 12:52:09','No messages',0),(2094131,1782305588,'2026-06-24 12:53:08','No messages',0),(2094132,1782305650,'2026-06-24 12:54:10','No messages',0),(2094133,1782305709,'2026-06-24 12:55:09','No messages',0),(2094134,1782305769,'2026-06-24 12:56:09','No messages',0),(2094135,1782305829,'2026-06-24 12:57:09','No messages',0),(2094136,1782305889,'2026-06-24 12:58:09','No messages',0),(2094137,1782305949,'2026-06-24 12:59:09','No messages',0),(2094138,1782306013,'2026-06-24 13:00:13','No messages',0),(2094139,1782306069,'2026-06-24 13:01:09','No messages',0),(2094140,1782306129,'2026-06-24 13:02:09','No messages',0),(2094141,1782306189,'2026-06-24 13:03:09','No messages',0),(2094142,1782306249,'2026-06-24 13:04:09','No messages',0),(2094143,1782306309,'2026-06-24 13:05:09','No messages',0),(2094144,1782306368,'2026-06-24 13:06:08','No messages',0),(2094145,1782306429,'2026-06-24 13:07:09','No messages',0),(2094146,1782306489,'2026-06-24 13:08:09','No messages',0),(2094147,1782306549,'2026-06-24 13:09:09','No messages',0),(2094148,1782306610,'2026-06-24 13:10:10','No messages',0),(2094149,1782306668,'2026-06-24 13:11:08','No messages',0),(2094150,1782306729,'2026-06-24 13:12:09','No messages',0),(2094151,1782306789,'2026-06-24 13:13:09','No messages',0),(2094152,1782306849,'2026-06-24 13:14:09','No messages',0),(2094153,1782306910,'2026-06-24 13:15:10','No messages',0),(2094154,1782306969,'2026-06-24 13:16:09','No messages',0),(2094155,1782307029,'2026-06-24 13:17:09','No messages',0),(2094156,1782307090,'2026-06-24 13:18:10','No messages',0),(2094157,1782307149,'2026-06-24 13:19:09','No messages',0),(2094158,1782307209,'2026-06-24 13:20:09','No messages',0),(2094159,1782307269,'2026-06-24 13:21:09','No messages',0),(2094160,1782307329,'2026-06-24 13:22:09','No messages',0),(2094161,1782307389,'2026-06-24 13:23:09','No messages',0),(2094162,1782307450,'2026-06-24 13:24:10','No messages',0),(2094163,1782307508,'2026-06-24 13:25:08','No messages',0),(2094164,1782307569,'2026-06-24 13:26:09','No messages',0),(2094165,1782307630,'2026-06-24 13:27:10','No messages',0),(2094166,1782307689,'2026-06-24 13:28:09','No messages',0),(2094167,1782307748,'2026-06-24 13:29:08','No messages',0),(2094168,1782307811,'2026-06-24 13:30:11','No messages',0),(2094169,1782307869,'2026-06-24 13:31:09','No messages',0),(2094170,1782307929,'2026-06-24 13:32:09','No messages',0),(2094171,1782307989,'2026-06-24 13:33:09','No messages',0),(2094172,1782308049,'2026-06-24 13:34:09','No messages',0),(2094173,1782308109,'2026-06-24 13:35:09','No messages',0),(2094174,1782308170,'2026-06-24 13:36:10','No messages',0),(2094175,1782308229,'2026-06-24 13:37:09','No messages',0),(2094176,1782308290,'2026-06-24 13:38:10','No messages',0),(2094177,1782308350,'2026-06-24 13:39:10','No messages',0),(2094178,1782308410,'2026-06-24 13:40:10','No messages',0),(2094179,1782308469,'2026-06-24 13:41:09','No messages',0),(2094180,1782308529,'2026-06-24 13:42:09','No messages',0),(2094181,1782308589,'2026-06-24 13:43:09','No messages',0),(2094182,1782308650,'2026-06-24 13:44:10','No messages',0),(2094183,1782308710,'2026-06-24 13:45:10','No messages',0),(2094184,1782308770,'2026-06-24 13:46:10','No messages',0),(2094185,1782308829,'2026-06-24 13:47:09','No messages',0),(2094186,1782308889,'2026-06-24 13:48:09','No messages',0),(2094187,1782308948,'2026-06-24 13:49:08','No messages',0),(2094188,1782309010,'2026-06-24 13:50:10','No messages',0),(2094189,1782309069,'2026-06-24 13:51:09','No messages',0),(2094190,1782309129,'2026-06-24 13:52:09','No messages',0),(2094191,1782309189,'2026-06-24 13:53:09','No messages',0),(2094192,1782309249,'2026-06-24 13:54:09','No messages',0),(2094193,1782309309,'2026-06-24 13:55:09','No messages',0),(2094194,1782309369,'2026-06-24 13:56:09','No messages',0),(2094195,1782309429,'2026-06-24 13:57:09','No messages',0),(2094196,1782309489,'2026-06-24 13:58:09','No messages',0),(2094197,1782309549,'2026-06-24 13:59:09','No messages',0),(2094198,1782309612,'2026-06-24 14:00:12','No messages',0),(2094199,1782309669,'2026-06-24 14:01:09','No messages',0),(2094200,1782309728,'2026-06-24 14:02:08','No messages',0),(2094201,1782309789,'2026-06-24 14:03:09','No messages',0),(2094202,1782309849,'2026-06-24 14:04:09','No messages',0),(2094203,1782309910,'2026-06-24 14:05:10','No messages',0),(2094204,1782309969,'2026-06-24 14:06:09','No messages',0),(2094205,1782310029,'2026-06-24 14:07:09','No messages',0),(2094206,1782310089,'2026-06-24 14:08:09','No messages',0),(2094207,1782310149,'2026-06-24 14:09:09','No messages',0),(2094208,1782310209,'2026-06-24 14:10:09','No messages',0),(2094209,1782310269,'2026-06-24 14:11:09','No messages',0),(2094210,1782310330,'2026-06-24 14:12:10','No messages',0),(2094211,1782310389,'2026-06-24 14:13:09','No messages',0),(2094212,1782310449,'2026-06-24 14:14:09','No messages',0),(2094213,1782310510,'2026-06-24 14:15:10','No messages',0),(2094214,1782310569,'2026-06-24 14:16:09','No messages',0),(2094215,1782310628,'2026-06-24 14:17:08','No messages',0),(2094216,1782310690,'2026-06-24 14:18:10','No messages',0),(2094217,1782310750,'2026-06-24 14:19:10','No messages',0),(2094218,1782310809,'2026-06-24 14:20:09','No messages',0),(2094219,1782310869,'2026-06-24 14:21:09','No messages',0),(2094220,1782310930,'2026-06-24 14:22:10','No messages',0),(2094221,1782310989,'2026-06-24 14:23:09','No messages',0),(2094222,1782311049,'2026-06-24 14:24:09','No messages',0),(2094223,1782311110,'2026-06-24 14:25:10','No messages',0),(2094224,1782311169,'2026-06-24 14:26:09','No messages',0),(2094225,1782311230,'2026-06-24 14:27:10','No messages',0),(2094226,1782311289,'2026-06-24 14:28:09','No messages',0),(2094227,1782311349,'2026-06-24 14:29:09','No messages',0),(2094228,1782311410,'2026-06-24 14:30:10','No messages',0),(2094229,1782311468,'2026-06-24 14:31:08','No messages',0),(2094230,1782311529,'2026-06-24 14:32:09','No messages',0),(2094231,1782311588,'2026-06-24 14:33:08','No messages',0),(2094232,1782311649,'2026-06-24 14:34:09','No messages',0),(2094233,1782311709,'2026-06-24 14:35:09','No messages',0),(2094234,1782311769,'2026-06-24 14:36:09','No messages',0),(2094235,1782311829,'2026-06-24 14:37:09','No messages',0),(2094236,1782311890,'2026-06-24 14:38:10','No messages',0),(2094237,1782311949,'2026-06-24 14:39:09','No messages',0),(2094238,1782312010,'2026-06-24 14:40:10','No messages',0),(2094239,1782312068,'2026-06-24 14:41:08','No messages',0),(2094240,1782312129,'2026-06-24 14:42:09','No messages',0),(2094241,1782312189,'2026-06-24 14:43:09','No messages',0),(2094242,1782312250,'2026-06-24 14:44:10','No messages',0),(2094243,1782312310,'2026-06-24 14:45:10','No messages',0),(2094244,1782312370,'2026-06-24 14:46:10','No messages',0),(2094245,1782312429,'2026-06-24 14:47:09','No messages',0),(2094246,1782312489,'2026-06-24 14:48:09','No messages',0),(2094247,1782312550,'2026-06-24 14:49:10','No messages',0),(2094248,1782312609,'2026-06-24 14:50:09','No messages',0),(2094249,1782312669,'2026-06-24 14:51:09','No messages',0),(2094250,1782312729,'2026-06-24 14:52:09','No messages',0),(2094251,1782312788,'2026-06-24 14:53:08','No messages',0),(2094252,1782312850,'2026-06-24 14:54:10','No messages',0),(2094253,1782312909,'2026-06-24 14:55:09','No messages',0),(2094254,1782312969,'2026-06-24 14:56:09','No messages',0),(2094255,1782313029,'2026-06-24 14:57:09','No messages',0),(2094256,1782313090,'2026-06-24 14:58:10','No messages',0),(2094257,1782313149,'2026-06-24 14:59:09','No messages',0),(2094258,1782313212,'2026-06-24 15:00:12','No messages',0),(2094259,1782313269,'2026-06-24 15:01:09','No messages',0),(2094260,1782313329,'2026-06-24 15:02:09','No messages',0),(2094261,1782313389,'2026-06-24 15:03:09','No messages',0),(2094262,1782313450,'2026-06-24 15:04:10','No messages',0),(2094263,1782313510,'2026-06-24 15:05:10','No messages',0),(2094264,1782313569,'2026-06-24 15:06:09','No messages',0),(2094265,1782313629,'2026-06-24 15:07:09','No messages',0),(2094266,1782313689,'2026-06-24 15:08:09','No messages',0),(2094267,1782313749,'2026-06-24 15:09:09','No messages',0),(2094268,1782313809,'2026-06-24 15:10:09','No messages',0),(2094269,1782313868,'2026-06-24 15:11:08','No messages',0),(2094270,1782313930,'2026-06-24 15:12:10','No messages',0),(2094271,1782313989,'2026-06-24 15:13:09','No messages',0),(2094272,1782314049,'2026-06-24 15:14:09','No messages',0),(2094273,1782314110,'2026-06-24 15:15:10','No messages',0),(2094274,1782314169,'2026-06-24 15:16:09','No messages',0),(2094275,1782314229,'2026-06-24 15:17:09','No messages',0),(2094276,1782314289,'2026-06-24 15:18:09','No messages',0),(2094277,1782314348,'2026-06-24 15:19:08','No messages',0),(2094278,1782314410,'2026-06-24 15:20:10','No messages',0),(2094279,1782314469,'2026-06-24 15:21:09','No messages',0),(2094280,1782314529,'2026-06-24 15:22:09','No messages',0),(2094281,1782314589,'2026-06-24 15:23:09','No messages',0),(2094282,1782314650,'2026-06-24 15:24:10','No messages',0),(2094283,1782314709,'2026-06-24 15:25:09','No messages',0),(2094284,1782314769,'2026-06-24 15:26:09','No messages',0),(2094285,1782314829,'2026-06-24 15:27:09','No messages',0),(2094286,1782314889,'2026-06-24 15:28:09','No messages',0),(2094287,1782314949,'2026-06-24 15:29:09','No messages',0),(2094288,1782315011,'2026-06-24 15:30:11','No messages',0),(2094289,1782315068,'2026-06-24 15:31:08','No messages',0),(2094290,1782315129,'2026-06-24 15:32:09','No messages',0),(2094291,1782315189,'2026-06-24 15:33:09','No messages',0),(2094292,1782315250,'2026-06-24 15:34:10','No messages',0),(2094293,1782315310,'2026-06-24 15:35:10','No messages',0),(2094294,1782315370,'2026-06-24 15:36:10','No messages',0),(2094295,1782315428,'2026-06-24 15:37:08','No messages',0),(2094296,1782315489,'2026-06-24 15:38:09','No messages',0),(2094297,1782315549,'2026-06-24 15:39:09','No messages',0),(2094298,1782315610,'2026-06-24 15:40:10','No messages',0),(2094299,1782315668,'2026-06-24 15:41:08','No messages',0),(2094300,1782315730,'2026-06-24 15:42:10','No messages',0),(2094301,1782315788,'2026-06-24 15:43:08','No messages',0),(2094302,1782315849,'2026-06-24 15:44:09','No messages',0),(2094303,1782315910,'2026-06-24 15:45:10','No messages',0),(2094304,1782315970,'2026-06-24 15:46:10','No messages',0),(2094305,1782316029,'2026-06-24 15:47:09','No messages',0),(2094306,1782316089,'2026-06-24 15:48:09','No messages',0),(2094307,1782316149,'2026-06-24 15:49:09','No messages',0),(2094308,1782316210,'2026-06-24 15:50:10','No messages',0),(2094309,1782316269,'2026-06-24 15:51:09','No messages',0),(2094310,1782316329,'2026-06-24 15:52:09','No messages',0),(2094311,1782316388,'2026-06-24 15:53:08','No messages',0),(2094312,1782316449,'2026-06-24 15:54:09','No messages',0),(2094313,1782316510,'2026-06-24 15:55:10','No messages',0),(2094314,1782316569,'2026-06-24 15:56:09','No messages',0),(2094315,1782316629,'2026-06-24 15:57:09','No messages',0),(2094316,1782316688,'2026-06-24 15:58:08','No messages',0),(2094317,1782316749,'2026-06-24 15:59:09','No messages',0),(2094318,1782316813,'2026-06-24 16:00:13','No messages',0),(2094319,1782316868,'2026-06-24 16:01:08','No messages',0),(2094320,1782316930,'2026-06-24 16:02:10','No messages',0),(2094321,1782316989,'2026-06-24 16:03:09','No messages',0),(2094322,1782317049,'2026-06-24 16:04:09','No messages',0),(2094323,1782317110,'2026-06-24 16:05:10','No messages',0),(2094324,1782317169,'2026-06-24 16:06:09','No messages',0),(2094325,1782317228,'2026-06-24 16:07:08','No messages',0),(2094326,1782317289,'2026-06-24 16:08:09','No messages',0),(2094327,1782317349,'2026-06-24 16:09:09','No messages',0),(2094328,1782317409,'2026-06-24 16:10:09','No messages',0),(2094329,1782317469,'2026-06-24 16:11:09','No messages',0),(2094330,1782317529,'2026-06-24 16:12:09','No messages',0),(2094331,1782317589,'2026-06-24 16:13:09','No messages',0),(2094332,1782317650,'2026-06-24 16:14:10','No messages',0),(2094333,1782317710,'2026-06-24 16:15:10','No messages',0),(2094334,1782317769,'2026-06-24 16:16:09','No messages',0),(2094335,1782317829,'2026-06-24 16:17:09','No messages',0),(2094336,1782317890,'2026-06-24 16:18:10','No messages',0),(2094337,1782317949,'2026-06-24 16:19:09','No messages',0),(2094338,1782318009,'2026-06-24 16:20:09','No messages',0),(2094339,1782318069,'2026-06-24 16:21:09','No messages',0),(2094340,1782318129,'2026-06-24 16:22:09','No messages',0),(2094341,1782318189,'2026-06-24 16:23:09','No messages',0),(2094342,1782318248,'2026-06-24 16:24:08','No messages',0),(2094343,1782318309,'2026-06-24 16:25:09','No messages',0),(2094344,1782318369,'2026-06-24 16:26:09','No messages',0),(2094345,1782318429,'2026-06-24 16:27:09','No messages',0),(2094346,1782318489,'2026-06-24 16:28:09','No messages',0),(2094347,1782318549,'2026-06-24 16:29:09','No messages',0),(2094348,1782318611,'2026-06-24 16:30:11','No messages',0),(2094349,1782318669,'2026-06-24 16:31:09','No messages',0),(2094350,1782318729,'2026-06-24 16:32:09','No messages',0),(2094351,1782318789,'2026-06-24 16:33:09','No messages',0),(2094352,1782318849,'2026-06-24 16:34:09','No messages',0),(2094353,1782318909,'2026-06-24 16:35:09','No messages',0),(2094354,1782318969,'2026-06-24 16:36:09','No messages',0),(2094355,1782319029,'2026-06-24 16:37:09','No messages',0),(2094356,1782319089,'2026-06-24 16:38:09','No messages',0),(2094357,1782319149,'2026-06-24 16:39:09','No messages',0),(2094358,1782319210,'2026-06-24 16:40:10','No messages',0),(2094359,1782319268,'2026-06-24 16:41:08','No messages',0),(2094360,1782319329,'2026-06-24 16:42:09','No messages',0),(2094361,1782319389,'2026-06-24 16:43:09','No messages',0),(2094362,1782319449,'2026-06-24 16:44:09','No messages',0),(2094363,1782319510,'2026-06-24 16:45:10','No messages',0),(2094364,1782319569,'2026-06-24 16:46:09','No messages',0),(2094365,1782319629,'2026-06-24 16:47:09','No messages',0),(2094366,1782319690,'2026-06-24 16:48:10','No messages',0),(2094367,1782319749,'2026-06-24 16:49:09','No messages',0),(2094368,1782319809,'2026-06-24 16:50:09','No messages',0),(2094369,1782319868,'2026-06-24 16:51:08','No messages',0),(2094370,1782319930,'2026-06-24 16:52:10','No messages',0),(2094371,1782319989,'2026-06-24 16:53:09','No messages',0),(2094372,1782320050,'2026-06-24 16:54:10','No messages',0),(2094373,1782320109,'2026-06-24 16:55:09','No messages',0),(2094374,1782320169,'2026-06-24 16:56:09','No messages',0),(2094375,1782320229,'2026-06-24 16:57:09','No messages',0),(2094376,1782320289,'2026-06-24 16:58:09','No messages',0),(2094377,1782320349,'2026-06-24 16:59:09','No messages',0),(2094378,1782320411,'2026-06-24 17:00:11','No messages',0),(2094379,1782320469,'2026-06-24 17:01:09','No messages',0),(2094380,1782320529,'2026-06-24 17:02:09','No messages',0),(2094381,1782320589,'2026-06-24 17:03:09','No messages',0),(2094382,1782320649,'2026-06-24 17:04:09','No messages',0),(2094383,1782320710,'2026-06-24 17:05:10','No messages',0),(2094384,1782320770,'2026-06-24 17:06:10','No messages',0),(2094385,1782320829,'2026-06-24 17:07:09','No messages',0),(2094386,1782320890,'2026-06-24 17:08:10','No messages',0),(2094387,1782320949,'2026-06-24 17:09:09','No messages',0),(2094388,1782321009,'2026-06-24 17:10:09','No messages',0),(2094389,1782321069,'2026-06-24 17:11:09','No messages',0),(2094390,1782321129,'2026-06-24 17:12:09','No messages',0),(2094391,1782321189,'2026-06-24 17:13:09','No messages',0),(2094392,1782321249,'2026-06-24 17:14:09','No messages',0),(2094393,1782321310,'2026-06-24 17:15:10','No messages',0),(2094394,1782321369,'2026-06-24 17:16:09','No messages',0),(2094395,1782321428,'2026-06-24 17:17:08','No messages',0),(2094396,1782321490,'2026-06-24 17:18:10','No messages',0),(2094397,1782321549,'2026-06-24 17:19:09','No messages',0),(2094398,1782321610,'2026-06-24 17:20:10','No messages',0),(2094399,1782321668,'2026-06-24 17:21:08','No messages',0),(2094400,1782321730,'2026-06-24 17:22:10','No messages',0),(2094401,1782321789,'2026-06-24 17:23:09','No messages',0),(2094402,1782321850,'2026-06-24 17:24:10','No messages',0),(2094403,1782321909,'2026-06-24 17:25:09','No messages',0),(2094404,1782321969,'2026-06-24 17:26:09','No messages',0),(2094405,1782322029,'2026-06-24 17:27:09','No messages',0),(2094406,1782322089,'2026-06-24 17:28:09','No messages',0),(2094407,1782322149,'2026-06-24 17:29:09','No messages',0),(2094408,1782322211,'2026-06-24 17:30:11','No messages',0),(2094409,1782322268,'2026-06-24 17:31:08','No messages',0),(2094410,1782322329,'2026-06-24 17:32:09','No messages',0),(2094411,1782322389,'2026-06-24 17:33:09','No messages',0),(2094412,1782322449,'2026-06-24 17:34:09','No messages',0),(2094413,1782322509,'2026-06-24 17:35:09','No messages',0),(2094414,1782322569,'2026-06-24 17:36:09','No messages',0),(2094415,1782322629,'2026-06-24 17:37:09','No messages',0),(2094416,1782322689,'2026-06-24 17:38:09','No messages',0),(2094417,1782322748,'2026-06-24 17:39:08','No messages',0),(2094418,1782322810,'2026-06-24 17:40:10','No messages',0),(2094419,1782322868,'2026-06-24 17:41:08','No messages',0),(2094420,1782322929,'2026-06-24 17:42:09','No messages',0),(2094421,1782322989,'2026-06-24 17:43:09','No messages',0),(2094422,1782323049,'2026-06-24 17:44:09','No messages',0),(2094423,1782323110,'2026-06-24 17:45:10','No messages',0),(2094424,1782323170,'2026-06-24 17:46:10','No messages',0),(2094425,1782323228,'2026-06-24 17:47:08','No messages',0),(2094426,1782323289,'2026-06-24 17:48:09','No messages',0),(2094427,1782323349,'2026-06-24 17:49:09','No messages',0),(2094428,1782323410,'2026-06-24 17:50:10','No messages',0),(2094429,1782323469,'2026-06-24 17:51:09','No messages',0),(2094430,1782323529,'2026-06-24 17:52:09','No messages',0),(2094431,1782323589,'2026-06-24 17:53:09','No messages',0),(2094432,1782323649,'2026-06-24 17:54:09','No messages',0),(2094433,1782323709,'2026-06-24 17:55:09','No messages',0),(2094434,1782323770,'2026-06-24 17:56:10','No messages',0),(2094435,1782323829,'2026-06-24 17:57:09','No messages',0),(2094436,1782323889,'2026-06-24 17:58:09','No messages',0),(2094437,1782323948,'2026-06-24 17:59:08','No messages',0),(2094438,1782324012,'2026-06-24 18:00:12','No messages',0),(2094439,1782324069,'2026-06-24 18:01:09','No messages',0),(2094440,1782324130,'2026-06-24 18:02:10','No messages',0),(2094441,1782324189,'2026-06-24 18:03:09','No messages',0),(2094442,1782324249,'2026-06-24 18:04:09','No messages',0),(2094443,1782324309,'2026-06-24 18:05:09','No messages',0),(2094444,1782324370,'2026-06-24 18:06:10','No messages',0),(2094445,1782324429,'2026-06-24 18:07:09','No messages',0),(2094446,1782324489,'2026-06-24 18:08:09','No messages',0),(2094447,1782324549,'2026-06-24 18:09:09','No messages',0),(2094448,1782324610,'2026-06-24 18:10:10','No messages',0),(2094449,1782324669,'2026-06-24 18:11:09','No messages',0),(2094450,1782324729,'2026-06-24 18:12:09','No messages',0),(2094451,1782324788,'2026-06-24 18:13:08','No messages',0),(2094452,1782324850,'2026-06-24 18:14:10','No messages',0),(2094453,1782324910,'2026-06-24 18:15:10','No messages',0),(2094454,1782324969,'2026-06-24 18:16:09','No messages',0),(2094455,1782325029,'2026-06-24 18:17:09','No messages',0),(2094456,1782325089,'2026-06-24 18:18:09','No messages',0),(2094457,1782325149,'2026-06-24 18:19:09','No messages',0),(2094458,1782325210,'2026-06-24 18:20:10','No messages',0),(2094459,1782325269,'2026-06-24 18:21:09','No messages',0),(2094460,1782325330,'2026-06-24 18:22:10','No messages',0),(2094461,1782325388,'2026-06-24 18:23:08','No messages',0),(2094462,1782325449,'2026-06-24 18:24:09','No messages',0),(2094463,1782325509,'2026-06-24 18:25:09','No messages',0),(2094464,1782325569,'2026-06-24 18:26:09','No messages',0),(2094465,1782325629,'2026-06-24 18:27:09','No messages',0),(2094466,1782325689,'2026-06-24 18:28:09','No messages',0),(2094467,1782325749,'2026-06-24 18:29:09','No messages',0),(2094468,1782325811,'2026-06-24 18:30:11','No messages',0),(2094469,1782325869,'2026-06-24 18:31:09','No messages',0),(2094470,1782325929,'2026-06-24 18:32:09','No messages',0),(2094471,1782325989,'2026-06-24 18:33:09','No messages',0),(2094472,1782326049,'2026-06-24 18:34:09','No messages',0),(2094473,1782326108,'2026-06-24 18:35:08','No messages',0),(2094474,1782326169,'2026-06-24 18:36:09','No messages',0),(2094475,1782326228,'2026-06-24 18:37:08','No messages',0),(2094476,1782326289,'2026-06-24 18:38:09','No messages',0),(2094477,1782326349,'2026-06-24 18:39:09','No messages',0),(2094478,1782326409,'2026-06-24 18:40:09','No messages',0),(2094479,1782326469,'2026-06-24 18:41:09','No messages',0),(2094480,1782326529,'2026-06-24 18:42:09','No messages',0),(2094481,1782326589,'2026-06-24 18:43:09','No messages',0),(2094482,1782326649,'2026-06-24 18:44:09','No messages',0),(2094483,1782326710,'2026-06-24 18:45:10','No messages',0),(2094484,1782326769,'2026-06-24 18:46:09','No messages',0),(2094485,1782326829,'2026-06-24 18:47:09','No messages',0),(2094486,1782326890,'2026-06-24 18:48:10','No messages',0),(2094487,1782326949,'2026-06-24 18:49:09','No messages',0),(2094488,1782327010,'2026-06-24 18:50:10','No messages',0),(2094489,1782327069,'2026-06-24 18:51:09','No messages',0),(2094490,1782327129,'2026-06-24 18:52:09','No messages',0),(2094491,1782327189,'2026-06-24 18:53:09','No messages',0),(2094492,1782327249,'2026-06-24 18:54:09','No messages',0),(2094493,1782327309,'2026-06-24 18:55:09','No messages',0),(2094494,1782327369,'2026-06-24 18:56:09','No messages',0),(2094495,1782327429,'2026-06-24 18:57:09','No messages',0),(2094496,1782327489,'2026-06-24 18:58:09','No messages',0),(2094497,1782327549,'2026-06-24 18:59:09','No messages',0),(2094498,1782327613,'2026-06-24 19:00:13','No messages',0),(2094499,1782327669,'2026-06-24 19:01:09','No messages',0),(2094500,1782327729,'2026-06-24 19:02:09','No messages',0),(2094501,1782327790,'2026-06-24 19:03:10','No messages',0),(2094502,1782327850,'2026-06-24 19:04:10','No messages',0),(2094503,1782327910,'2026-06-24 19:05:10','No messages',0),(2094504,1782327970,'2026-06-24 19:06:10','No messages',0),(2094505,1782328029,'2026-06-24 19:07:09','No messages',0),(2094506,1782328089,'2026-06-24 19:08:09','No messages',0),(2094507,1782328150,'2026-06-24 19:09:10','No messages',0),(2094508,1782328210,'2026-06-24 19:10:10','No messages',0),(2094509,1782328269,'2026-06-24 19:11:09','No messages',0),(2094510,1782328329,'2026-06-24 19:12:09','No messages',0),(2094511,1782328389,'2026-06-24 19:13:09','No messages',0),(2094512,1782328449,'2026-06-24 19:14:09','No messages',0),(2094513,1782328510,'2026-06-24 19:15:10','No messages',0),(2094514,1782328570,'2026-06-24 19:16:10','No messages',0),(2094515,1782328628,'2026-06-24 19:17:08','No messages',0),(2094516,1782328690,'2026-06-24 19:18:10','No messages',0),(2094517,1782328749,'2026-06-24 19:19:09','No messages',0),(2094518,1782328810,'2026-06-24 19:20:10','No messages',0),(2094519,1782328869,'2026-06-24 19:21:09','No messages',0),(2094520,1782328929,'2026-06-24 19:22:09','No messages',0),(2094521,1782328989,'2026-06-24 19:23:09','No messages',0),(2094522,1782329050,'2026-06-24 19:24:10','No messages',0),(2094523,1782329110,'2026-06-24 19:25:10','No messages',0),(2094524,1782329169,'2026-06-24 19:26:09','No messages',0),(2094525,1782329229,'2026-06-24 19:27:09','No messages',0),(2094526,1782329289,'2026-06-24 19:28:09','No messages',0),(2094527,1782329348,'2026-06-24 19:29:08','No messages',0),(2094528,1782329411,'2026-06-24 19:30:11','No messages',0),(2094529,1782329469,'2026-06-24 19:31:09','No messages',0),(2094530,1782329529,'2026-06-24 19:32:09','No messages',0),(2094531,1782329589,'2026-06-24 19:33:09','No messages',0),(2094532,1782329650,'2026-06-24 19:34:10','No messages',0),(2094533,1782329710,'2026-06-24 19:35:10','No messages',0),(2094534,1782329769,'2026-06-24 19:36:09','No messages',0),(2094535,1782329829,'2026-06-24 19:37:09','No messages',0),(2094536,1782329889,'2026-06-24 19:38:09','No messages',0),(2094537,1782329949,'2026-06-24 19:39:09','No messages',0),(2094538,1782330010,'2026-06-24 19:40:10','No messages',0),(2094539,1782330069,'2026-06-24 19:41:09','No messages',0),(2094540,1782330130,'2026-06-24 19:42:10','No messages',0),(2094541,1782330190,'2026-06-24 19:43:10','No messages',0),(2094542,1782330250,'2026-06-24 19:44:10','No messages',0),(2094543,1782330311,'2026-06-24 19:45:11','No messages',0),(2094544,1782330369,'2026-06-24 19:46:09','No messages',0),(2094545,1782330429,'2026-06-24 19:47:09','No messages',0),(2094546,1782330490,'2026-06-24 19:48:10','No messages',0),(2094547,1782330549,'2026-06-24 19:49:09','No messages',0),(2094548,1782330610,'2026-06-24 19:50:10','No messages',0),(2094549,1782330669,'2026-06-24 19:51:09','No messages',0),(2094550,1782330730,'2026-06-24 19:52:10','No messages',0),(2094551,1782330789,'2026-06-24 19:53:09','No messages',0),(2094552,1782330850,'2026-06-24 19:54:10','No messages',0),(2094553,1782330910,'2026-06-24 19:55:10','No messages',0),(2094554,1782330970,'2026-06-24 19:56:10','No messages',0),(2094555,1782331029,'2026-06-24 19:57:09','No messages',0),(2094556,1782331090,'2026-06-24 19:58:10','No messages',0),(2094557,1782331149,'2026-06-24 19:59:09','No messages',0),(2094558,1782331212,'2026-06-24 20:00:12','No messages',0),(2094559,1782331269,'2026-06-24 20:01:09','No messages',0),(2094560,1782331329,'2026-06-24 20:02:09','No messages',0),(2094561,1782331389,'2026-06-24 20:03:09','No messages',0),(2094562,1782331449,'2026-06-24 20:04:09','No messages',0),(2094563,1782331510,'2026-06-24 20:05:10','No messages',0),(2094564,1782331570,'2026-06-24 20:06:10','No messages',0),(2094565,1782331629,'2026-06-24 20:07:09','No messages',0),(2094566,1782331689,'2026-06-24 20:08:09','No messages',0),(2094567,1782331750,'2026-06-24 20:09:10','No messages',0),(2094568,1782331810,'2026-06-24 20:10:10','No messages',0),(2094569,1782331869,'2026-06-24 20:11:09','No messages',0),(2094570,1782331930,'2026-06-24 20:12:10','No messages',0),(2094571,1782331989,'2026-06-24 20:13:09','No messages',0),(2094572,1782332049,'2026-06-24 20:14:09','No messages',0),(2094573,1782332111,'2026-06-24 20:15:11','No messages',0),(2094574,1782332169,'2026-06-24 20:16:09','No messages',0),(2094575,1782332229,'2026-06-24 20:17:09','No messages',0),(2094576,1782332289,'2026-06-24 20:18:09','No messages',0),(2094577,1782332349,'2026-06-24 20:19:09','No messages',0),(2094578,1782332409,'2026-06-24 20:20:09','No messages',0),(2094579,1782332469,'2026-06-24 20:21:09','No messages',0),(2094580,1782332529,'2026-06-24 20:22:09','No messages',0),(2094581,1782332589,'2026-06-24 20:23:09','No messages',0),(2094582,1782332649,'2026-06-24 20:24:09','No messages',0),(2094583,1782332709,'2026-06-24 20:25:09','No messages',0),(2094584,1782332769,'2026-06-24 20:26:09','No messages',0),(2094585,1782332830,'2026-06-24 20:27:10','No messages',0),(2094586,1782332889,'2026-06-24 20:28:09','No messages',0),(2094587,1782332949,'2026-06-24 20:29:09','No messages',0),(2094588,1782333011,'2026-06-24 20:30:11','No messages',0),(2094589,1782333068,'2026-06-24 20:31:08','No messages',0),(2094590,1782333130,'2026-06-24 20:32:10','No messages',0),(2094591,1782333189,'2026-06-24 20:33:09','No messages',0),(2094592,1782333250,'2026-06-24 20:34:10','No messages',0),(2094593,1782333310,'2026-06-24 20:35:10','No messages',0),(2094594,1782333370,'2026-06-24 20:36:10','No messages',0),(2094595,1782333430,'2026-06-24 20:37:10','No messages',0),(2094596,1782333490,'2026-06-24 20:38:10','No messages',0),(2094597,1782333550,'2026-06-24 20:39:10','No messages',0),(2094598,1782333610,'2026-06-24 20:40:10','No messages',0),(2094599,1782333669,'2026-06-24 20:41:09','No messages',0),(2094600,1782333730,'2026-06-24 20:42:10','No messages',0),(2094601,1782333790,'2026-06-24 20:43:10','No messages',0),(2094602,1782333849,'2026-06-24 20:44:09','No messages',0),(2094603,1782333910,'2026-06-24 20:45:10','No messages',0),(2094604,1782333969,'2026-06-24 20:46:09','No messages',0),(2094605,1782334029,'2026-06-24 20:47:09','No messages',0),(2094606,1782334089,'2026-06-24 20:48:09','No messages',0),(2094607,1782334149,'2026-06-24 20:49:09','No messages',0),(2094608,1782334210,'2026-06-24 20:50:10','No messages',0),(2094609,1782334269,'2026-06-24 20:51:09','No messages',0),(2094610,1782334330,'2026-06-24 20:52:10','No messages',0),(2094611,1782334389,'2026-06-24 20:53:09','No messages',0),(2094612,1782334450,'2026-06-24 20:54:10','No messages',0),(2094613,1782334510,'2026-06-24 20:55:10','No messages',0),(2094614,1782334570,'2026-06-24 20:56:10','No messages',0),(2094615,1782334629,'2026-06-24 20:57:09','No messages',0),(2094616,1782334689,'2026-06-24 20:58:09','No messages',0),(2094617,1782334749,'2026-06-24 20:59:09','No messages',0),(2094618,1782334812,'2026-06-24 21:00:12','No messages',0),(2094619,1782334870,'2026-06-24 21:01:10','No messages',0),(2094620,1782334929,'2026-06-24 21:02:09','No messages',0),(2094621,1782334990,'2026-06-24 21:03:10','No messages',0),(2094622,1782335049,'2026-06-24 21:04:09','No messages',0),(2094623,1782335110,'2026-06-24 21:05:10','No messages',0),(2094624,1782335170,'2026-06-24 21:06:10','No messages',0),(2094625,1782335230,'2026-06-24 21:07:10','No messages',0),(2094626,1782335290,'2026-06-24 21:08:10','No messages',0),(2094627,1782335349,'2026-06-24 21:09:09','No messages',0),(2094628,1782335410,'2026-06-24 21:10:10','No messages',0),(2094629,1782335469,'2026-06-24 21:11:09','No messages',0),(2094630,1782335530,'2026-06-24 21:12:10','No messages',0),(2094631,1782335590,'2026-06-24 21:13:10','No messages',0),(2094632,1782335649,'2026-06-24 21:14:09','No messages',0),(2094633,1782335711,'2026-06-24 21:15:11','No messages',0),(2094634,1782335769,'2026-06-24 21:16:09','No messages',0),(2094635,1782335829,'2026-06-24 21:17:09','No messages',0),(2094636,1782335890,'2026-06-24 21:18:10','No messages',0),(2094637,1782335949,'2026-06-24 21:19:09','No messages',0),(2094638,1782336010,'2026-06-24 21:20:10','No messages',0),(2094639,1782336069,'2026-06-24 21:21:09','No messages',0),(2094640,1782336130,'2026-06-24 21:22:10','No messages',0),(2094641,1782336189,'2026-06-24 21:23:09','No messages',0),(2094642,1782336250,'2026-06-24 21:24:10','No messages',0),(2094643,1782336310,'2026-06-24 21:25:10','No messages',0),(2094644,1782336369,'2026-06-24 21:26:09','No messages',0),(2094645,1782336430,'2026-06-24 21:27:10','No messages',0),(2094646,1782336490,'2026-06-24 21:28:10','No messages',0),(2094647,1782336549,'2026-06-24 21:29:09','No messages',0),(2094648,1782336611,'2026-06-24 21:30:11','No messages',0),(2094649,1782336669,'2026-06-24 21:31:09','No messages',0),(2094650,1782336730,'2026-06-24 21:32:10','No messages',0),(2094651,1782336789,'2026-06-24 21:33:09','No messages',0),(2094652,1782336849,'2026-06-24 21:34:09','No messages',0),(2094653,1782336910,'2026-06-24 21:35:10','No messages',0),(2094654,1782336970,'2026-06-24 21:36:10','No messages',0),(2094655,1782337029,'2026-06-24 21:37:09','No messages',0),(2094656,1782337090,'2026-06-24 21:38:10','No messages',0),(2094657,1782337150,'2026-06-24 21:39:10','No messages',0),(2094658,1782337210,'2026-06-24 21:40:10','No messages',0),(2094659,1782337270,'2026-06-24 21:41:10','No messages',0),(2094660,1782337330,'2026-06-24 21:42:10','No messages',0),(2094661,1782337389,'2026-06-24 21:43:09','No messages',0),(2094662,1782337450,'2026-06-24 21:44:10','No messages',0),(2094663,1782337511,'2026-06-24 21:45:11','No messages',0),(2094664,1782337569,'2026-06-24 21:46:09','No messages',0),(2094665,1782337630,'2026-06-24 21:47:10','No messages',0),(2094666,1782337690,'2026-06-24 21:48:10','No messages',0),(2094667,1782337750,'2026-06-24 21:49:10','No messages',0),(2094668,1782337810,'2026-06-24 21:50:10','No messages',0),(2094669,1782337869,'2026-06-24 21:51:09','No messages',0),(2094670,1782337929,'2026-06-24 21:52:09','No messages',0),(2094671,1782337989,'2026-06-24 21:53:09','No messages',0),(2094672,1782338049,'2026-06-24 21:54:09','No messages',0),(2094673,1782338110,'2026-06-24 21:55:10','No messages',0),(2094674,1782338170,'2026-06-24 21:56:10','No messages',0),(2094675,1782338229,'2026-06-24 21:57:09','No messages',0),(2094676,1782338290,'2026-06-24 21:58:10','No messages',0),(2094677,1782338349,'2026-06-24 21:59:09','No messages',0),(2094678,1782338412,'2026-06-24 22:00:12','No messages',0),(2094679,1782338469,'2026-06-24 22:01:09','No messages',0),(2094680,1782338530,'2026-06-24 22:02:10','No messages',0),(2094681,1782338589,'2026-06-24 22:03:09','No messages',0),(2094682,1782338649,'2026-06-24 22:04:09','No messages',0),(2094683,1782338710,'2026-06-24 22:05:10','No messages',0),(2094684,1782338770,'2026-06-24 22:06:10','No messages',0),(2094685,1782338830,'2026-06-24 22:07:10','No messages',0),(2094686,1782338889,'2026-06-24 22:08:09','No messages',0),(2094687,1782338950,'2026-06-24 22:09:10','No messages',0),(2094688,1782339010,'2026-06-24 22:10:10','No messages',0),(2094689,1782339069,'2026-06-24 22:11:09','No messages',0),(2094690,1782339129,'2026-06-24 22:12:09','No messages',0),(2094691,1782339190,'2026-06-24 22:13:10','No messages',0),(2094692,1782339249,'2026-06-24 22:14:09','No messages',0),(2094693,1782339311,'2026-06-24 22:15:11','No messages',0),(2094694,1782339369,'2026-06-24 22:16:09','No messages',0),(2094695,1782339430,'2026-06-24 22:17:10','No messages',0),(2094696,1782339490,'2026-06-24 22:18:10','No messages',0),(2094697,1782339549,'2026-06-24 22:19:09','No messages',0),(2094698,1782339610,'2026-06-24 22:20:10','No messages',0),(2094699,1782339670,'2026-06-24 22:21:10','No messages',0),(2094700,1782339729,'2026-06-24 22:22:09','No messages',0),(2094701,1782339790,'2026-06-24 22:23:10','No messages',0),(2094702,1782339850,'2026-06-24 22:24:10','No messages',0),(2094703,1782339909,'2026-06-24 22:25:09','No messages',0),(2094704,1782339970,'2026-06-24 22:26:10','No messages',0),(2094705,1782340029,'2026-06-24 22:27:09','No messages',0),(2094706,1782340089,'2026-06-24 22:28:09','No messages',0),(2094707,1782340149,'2026-06-24 22:29:09','No messages',0),(2094708,1782340211,'2026-06-24 22:30:11','No messages',0),(2094709,1782340270,'2026-06-24 22:31:10','No messages',0),(2094710,1782340329,'2026-06-24 22:32:09','No messages',0),(2094711,1782340389,'2026-06-24 22:33:09','No messages',0),(2094712,1782340450,'2026-06-24 22:34:10','No messages',0),(2094713,1782340511,'2026-06-24 22:35:11','No messages',0),(2094714,1782340570,'2026-06-24 22:36:10','No messages',0),(2094715,1782340629,'2026-06-24 22:37:09','No messages',0),(2094716,1782340689,'2026-06-24 22:38:09','No messages',0),(2094717,1782340750,'2026-06-24 22:39:10','No messages',0),(2094718,1782340810,'2026-06-24 22:40:10','No messages',0),(2094719,1782340869,'2026-06-24 22:41:09','No messages',0),(2094720,1782340929,'2026-06-24 22:42:09','No messages',0),(2094721,1782340989,'2026-06-24 22:43:09','No messages',0),(2094722,1782341050,'2026-06-24 22:44:10','No messages',0),(2094723,1782341111,'2026-06-24 22:45:11','No messages',0),(2094724,1782341170,'2026-06-24 22:46:10','No messages',0),(2094725,1782341229,'2026-06-24 22:47:09','No messages',0),(2094726,1782341290,'2026-06-24 22:48:10','No messages',0),(2094727,1782341349,'2026-06-24 22:49:09','No messages',0),(2094728,1782341410,'2026-06-24 22:50:10','No messages',0),(2094729,1782341469,'2026-06-24 22:51:09','No messages',0),(2094730,1782341529,'2026-06-24 22:52:09','No messages',0),(2094731,1782341589,'2026-06-24 22:53:09','No messages',0),(2094732,1782341650,'2026-06-24 22:54:10','No messages',0),(2094733,1782341710,'2026-06-24 22:55:10','No messages',0),(2094734,1782341769,'2026-06-24 22:56:09','No messages',0),(2094735,1782341830,'2026-06-24 22:57:10','No messages',0),(2094736,1782341890,'2026-06-24 22:58:10','No messages',0),(2094737,1782341949,'2026-06-24 22:59:09','No messages',0),(2094738,1782342012,'2026-06-24 23:00:12','No messages',0),(2094739,1782342069,'2026-06-24 23:01:09','No messages',0),(2094740,1782342129,'2026-06-24 23:02:09','No messages',0),(2094741,1782342189,'2026-06-24 23:03:09','No messages',0),(2094742,1782342250,'2026-06-24 23:04:10','No messages',0),(2094743,1782342310,'2026-06-24 23:05:10','No messages',0),(2094744,1782342369,'2026-06-24 23:06:09','No messages',0),(2094745,1782342429,'2026-06-24 23:07:09','No messages',0),(2094746,1782342489,'2026-06-24 23:08:09','No messages',0),(2094747,1782342550,'2026-06-24 23:09:10','No messages',0),(2094748,1782342610,'2026-06-24 23:10:10','No messages',0),(2094749,1782342670,'2026-06-24 23:11:10','No messages',0),(2094750,1782342730,'2026-06-24 23:12:10','No messages',0),(2094751,1782342789,'2026-06-24 23:13:09','No messages',0),(2094752,1782342850,'2026-06-24 23:14:10','No messages',0),(2094753,1782342910,'2026-06-24 23:15:10','No messages',0),(2094754,1782342970,'2026-06-24 23:16:10','No messages',0),(2094755,1782343029,'2026-06-24 23:17:09','No messages',0),(2094756,1782343090,'2026-06-24 23:18:10','No messages',0),(2094757,1782343149,'2026-06-24 23:19:09','No messages',0),(2094758,1782343210,'2026-06-24 23:20:10','No messages',0),(2094759,1782343269,'2026-06-24 23:21:09','No messages',0),(2094760,1782343330,'2026-06-24 23:22:10','No messages',0),(2094761,1782343389,'2026-06-24 23:23:09','No messages',0),(2094762,1782343450,'2026-06-24 23:24:10','No messages',0),(2094763,1782343510,'2026-06-24 23:25:10','No messages',0),(2094764,1782343569,'2026-06-24 23:26:09','No messages',0),(2094765,1782343629,'2026-06-24 23:27:09','No messages',0),(2094766,1782343689,'2026-06-24 23:28:09','No messages',0),(2094767,1782343749,'2026-06-24 23:29:09','No messages',0),(2094768,1782343810,'2026-06-24 23:30:10','No messages',0),(2094769,1782343869,'2026-06-24 23:31:09','No messages',0),(2094770,1782343929,'2026-06-24 23:32:09','No messages',0),(2094771,1782343989,'2026-06-24 23:33:09','No messages',0),(2094772,1782344050,'2026-06-24 23:34:10','No messages',0),(2094773,1782344109,'2026-06-24 23:35:09','No messages',0),(2094774,1782344170,'2026-06-24 23:36:10','No messages',0),(2094775,1782344229,'2026-06-24 23:37:09','No messages',0),(2094776,1782344289,'2026-06-24 23:38:09','No messages',0),(2094777,1782344350,'2026-06-24 23:39:10','No messages',0),(2094778,1782344410,'2026-06-24 23:40:10','No messages',0),(2094779,1782344470,'2026-06-24 23:41:10','No messages',0),(2094780,1782344530,'2026-06-24 23:42:10','No messages',0),(2094781,1782344589,'2026-06-24 23:43:09','No messages',0),(2094782,1782344650,'2026-06-24 23:44:10','No messages',0),(2094783,1782344710,'2026-06-24 23:45:10','No messages',0),(2094784,1782344769,'2026-06-24 23:46:09','No messages',0),(2094785,1782344829,'2026-06-24 23:47:09','No messages',0),(2094786,1782344889,'2026-06-24 23:48:09','No messages',0),(2094787,1782344949,'2026-06-24 23:49:09','No messages',0),(2094788,1782345010,'2026-06-24 23:50:10','No messages',0),(2094789,1782345069,'2026-06-24 23:51:09','No messages',0),(2094790,1782345129,'2026-06-24 23:52:09','No messages',0),(2094791,1782345189,'2026-06-24 23:53:09','No messages',0),(2094792,1782345249,'2026-06-24 23:54:09','No messages',0),(2094793,1782345310,'2026-06-24 23:55:10','No messages',0),(2094794,1782345370,'2026-06-24 23:56:10','No messages',0),(2094795,1782345429,'2026-06-24 23:57:09','No messages',0),(2094796,1782345489,'2026-06-24 23:58:09','No messages',0),(2094797,1782345549,'2026-06-24 23:59:09','No messages',0),(2094798,1782345612,'2026-06-25 00:00:12','No messages',0),(2094799,1782345670,'2026-06-25 00:01:10','No messages',0),(2094800,1782345730,'2026-06-25 00:02:10','No messages',0),(2094801,1782345789,'2026-06-25 00:03:09','No messages',0),(2094802,1782345849,'2026-06-25 00:04:09','No messages',0),(2094803,1782345911,'2026-06-25 00:05:11','No messages',0),(2094804,1782345970,'2026-06-25 00:06:10','No messages',0),(2094805,1782346029,'2026-06-25 00:07:09','No messages',0),(2094806,1782346090,'2026-06-25 00:08:10','No messages',0),(2094807,1782346150,'2026-06-25 00:09:10','No messages',0),(2094808,1782346210,'2026-06-25 00:10:10','No messages',0),(2094809,1782346269,'2026-06-25 00:11:09','No messages',0),(2094810,1782346330,'2026-06-25 00:12:10','No messages',0),(2094811,1782346389,'2026-06-25 00:13:09','No messages',0),(2094812,1782346450,'2026-06-25 00:14:10','No messages',0),(2094813,1782346511,'2026-06-25 00:15:11','No messages',0),(2094814,1782346569,'2026-06-25 00:16:09','No messages',0),(2094815,1782346629,'2026-06-25 00:17:09','No messages',0),(2094816,1782346690,'2026-06-25 00:18:10','No messages',0),(2094817,1782346749,'2026-06-25 00:19:09','No messages',0),(2094818,1782346810,'2026-06-25 00:20:10','No messages',0),(2094819,1782346869,'2026-06-25 00:21:09','No messages',0),(2094820,1782346929,'2026-06-25 00:22:09','No messages',0),(2094821,1782346990,'2026-06-25 00:23:10','No messages',0),(2094822,1782347049,'2026-06-25 00:24:09','No messages',0),(2094823,1782347110,'2026-06-25 00:25:10','No messages',0),(2094824,1782347170,'2026-06-25 00:26:10','No messages',0),(2094825,1782347229,'2026-06-25 00:27:09','No messages',0),(2094826,1782347290,'2026-06-25 00:28:10','No messages',0),(2094827,1782347349,'2026-06-25 00:29:09','No messages',0),(2094828,1782347410,'2026-06-25 00:30:10','No messages',0),(2094829,1782347470,'2026-06-25 00:31:10','No messages',0),(2094830,1782347529,'2026-06-25 00:32:09','No messages',0),(2094831,1782347588,'2026-06-25 00:33:08','No messages',0),(2094832,1782347649,'2026-06-25 00:34:09','No messages',0),(2094833,1782347710,'2026-06-25 00:35:10','No messages',0),(2094834,1782347769,'2026-06-25 00:36:09','No messages',0),(2094835,1782347829,'2026-06-25 00:37:09','No messages',0),(2094836,1782347889,'2026-06-25 00:38:09','No messages',0),(2094837,1782347950,'2026-06-25 00:39:10','No messages',0),(2094838,1782348011,'2026-06-25 00:40:11','No messages',0),(2094839,1782348069,'2026-06-25 00:41:09','No messages',0),(2094840,1782348129,'2026-06-25 00:42:09','No messages',0),(2094841,1782348190,'2026-06-25 00:43:10','No messages',0),(2094842,1782348249,'2026-06-25 00:44:09','No messages',0),(2094843,1782348311,'2026-06-25 00:45:11','No messages',0),(2094844,1782348370,'2026-06-25 00:46:10','No messages',0),(2094845,1782348429,'2026-06-25 00:47:09','No messages',0),(2094846,1782348490,'2026-06-25 00:48:10','No messages',0),(2094847,1782348550,'2026-06-25 00:49:10','No messages',0),(2094848,1782348611,'2026-06-25 00:50:11','No messages',0),(2094849,1782348670,'2026-06-25 00:51:10','No messages',0),(2094850,1782348730,'2026-06-25 00:52:10','No messages',0),(2094851,1782348789,'2026-06-25 00:53:09','No messages',0),(2094852,1782348849,'2026-06-25 00:54:09','No messages',0),(2094853,1782348910,'2026-06-25 00:55:10','No messages',0),(2094854,1782348970,'2026-06-25 00:56:10','No messages',0),(2094855,1782349030,'2026-06-25 00:57:10','No messages',0),(2094856,1782349090,'2026-06-25 00:58:10','No messages',0),(2094857,1782349149,'2026-06-25 00:59:09','No messages',0),(2094858,1782349212,'2026-06-25 01:00:12','No messages',0),(2094859,1782349269,'2026-06-25 01:01:09','No messages',0),(2094860,1782349330,'2026-06-25 01:02:10','No messages',0),(2094861,1782349389,'2026-06-25 01:03:09','No messages',0),(2094862,1782349449,'2026-06-25 01:04:09','No messages',0),(2094863,1782349510,'2026-06-25 01:05:10','No messages',0),(2094864,1782349570,'2026-06-25 01:06:10','No messages',0),(2094865,1782349629,'2026-06-25 01:07:09','No messages',0),(2094866,1782349690,'2026-06-25 01:08:10','No messages',0),(2094867,1782349749,'2026-06-25 01:09:09','No messages',0),(2094868,1782349810,'2026-06-25 01:10:10','No messages',0),(2094869,1782349870,'2026-06-25 01:11:10','No messages',0),(2094870,1782349929,'2026-06-25 01:12:09','No messages',0),(2094871,1782349989,'2026-06-25 01:13:09','No messages',0),(2094872,1782350050,'2026-06-25 01:14:10','No messages',0),(2094873,1782350110,'2026-06-25 01:15:10','No messages',0),(2094874,1782350170,'2026-06-25 01:16:10','No messages',0),(2094875,1782350229,'2026-06-25 01:17:09','No messages',0),(2094876,1782350289,'2026-06-25 01:18:09','No messages',0),(2094877,1782350349,'2026-06-25 01:19:09','No messages',0),(2094878,1782350409,'2026-06-25 01:20:09','No messages',0),(2094879,1782350469,'2026-06-25 01:21:09','No messages',0),(2094880,1782350530,'2026-06-25 01:22:10','No messages',0),(2094881,1782350590,'2026-06-25 01:23:10','No messages',0),(2094882,1782350650,'2026-06-25 01:24:10','No messages',0),(2094883,1782350710,'2026-06-25 01:25:10','No messages',0),(2094884,1782350769,'2026-06-25 01:26:09','No messages',0),(2094885,1782350829,'2026-06-25 01:27:09','No messages',0),(2094886,1782350890,'2026-06-25 01:28:10','No messages',0),(2094887,1782350949,'2026-06-25 01:29:09','No messages',0),(2094888,1782351012,'2026-06-25 01:30:12','No messages',0),(2094889,1782351070,'2026-06-25 01:31:10','No messages',0),(2094890,1782351130,'2026-06-25 01:32:10','No messages',0),(2094891,1782351189,'2026-06-25 01:33:09','No messages',0),(2094892,1782351250,'2026-06-25 01:34:10','No messages',0),(2094893,1782351309,'2026-06-25 01:35:09','No messages',0),(2094894,1782351369,'2026-06-25 01:36:09','No messages',0),(2094895,1782351429,'2026-06-25 01:37:09','No messages',0),(2094896,1782351490,'2026-06-25 01:38:10','No messages',0),(2094897,1782351550,'2026-06-25 01:39:10','No messages',0),(2094898,1782351609,'2026-06-25 01:40:09','No messages',0),(2094899,1782351670,'2026-06-25 01:41:10','No messages',0),(2094900,1782351730,'2026-06-25 01:42:10','No messages',0),(2094901,1782351789,'2026-06-25 01:43:09','No messages',0),(2094902,1782351850,'2026-06-25 01:44:10','No messages',0),(2094903,1782351911,'2026-06-25 01:45:11','No messages',0),(2094904,1782351970,'2026-06-25 01:46:10','No messages',0),(2094905,1782352029,'2026-06-25 01:47:09','No messages',0),(2094906,1782352090,'2026-06-25 01:48:10','No messages',0),(2094907,1782352149,'2026-06-25 01:49:09','No messages',0),(2094908,1782352210,'2026-06-25 01:50:10','No messages',0),(2094909,1782352269,'2026-06-25 01:51:09','No messages',0),(2094910,1782352329,'2026-06-25 01:52:09','No messages',0),(2094911,1782352390,'2026-06-25 01:53:10','No messages',0),(2094912,1782352449,'2026-06-25 01:54:09','No messages',0),(2094913,1782352510,'2026-06-25 01:55:10','No messages',0),(2094914,1782352570,'2026-06-25 01:56:10','No messages',0),(2094915,1782352630,'2026-06-25 01:57:10','No messages',0),(2094916,1782352690,'2026-06-25 01:58:10','No messages',0),(2094917,1782352749,'2026-06-25 01:59:09','No messages',0),(2094918,1782352812,'2026-06-25 02:00:12','No messages',0),(2094919,1782352869,'2026-06-25 02:01:09','No messages',0),(2094920,1782352930,'2026-06-25 02:02:10','No messages',0),(2094921,1782352989,'2026-06-25 02:03:09','No messages',0),(2094922,1782353049,'2026-06-25 02:04:09','No messages',0),(2094923,1782353110,'2026-06-25 02:05:10','No messages',0),(2094924,1782353170,'2026-06-25 02:06:10','No messages',0),(2094925,1782353229,'2026-06-25 02:07:09','No messages',0),(2094926,1782353290,'2026-06-25 02:08:10','No messages',0),(2094927,1782353350,'2026-06-25 02:09:10','No messages',0),(2094928,1782353410,'2026-06-25 02:10:10','No messages',0),(2094929,1782353469,'2026-06-25 02:11:09','No messages',0),(2094930,1782353530,'2026-06-25 02:12:10','No messages',0),(2094931,1782353589,'2026-06-25 02:13:09','No messages',0),(2094932,1782353650,'2026-06-25 02:14:10','No messages',0),(2094933,1782353710,'2026-06-25 02:15:10','No messages',0),(2094934,1782353770,'2026-06-25 02:16:10','No messages',0),(2094935,1782353830,'2026-06-25 02:17:10','No messages',0),(2094936,1782353890,'2026-06-25 02:18:10','No messages',0),(2094937,1782353950,'2026-06-25 02:19:10','No messages',0),(2094938,1782354010,'2026-06-25 02:20:10','No messages',0),(2094939,1782354069,'2026-06-25 02:21:09','No messages',0),(2094940,1782354130,'2026-06-25 02:22:10','No messages',0),(2094941,1782354189,'2026-06-25 02:23:09','No messages',0),(2094942,1782354250,'2026-06-25 02:24:10','No messages',0),(2094943,1782354309,'2026-06-25 02:25:09','No messages',0),(2094944,1782354370,'2026-06-25 02:26:10','No messages',0),(2094945,1782354429,'2026-06-25 02:27:09','No messages',0),(2094946,1782354489,'2026-06-25 02:28:09','No messages',0),(2094947,1782354549,'2026-06-25 02:29:09','No messages',0),(2094948,1782354611,'2026-06-25 02:30:11','No messages',0),(2094949,1782354669,'2026-06-25 02:31:09','No messages',0),(2094950,1782354730,'2026-06-25 02:32:10','No messages',0),(2094951,1782354789,'2026-06-25 02:33:09','No messages',0),(2094952,1782354849,'2026-06-25 02:34:09','No messages',0),(2094953,1782354910,'2026-06-25 02:35:10','No messages',0),(2094954,1782354970,'2026-06-25 02:36:10','No messages',0),(2094955,1782355029,'2026-06-25 02:37:09','No messages',0),(2094956,1782355090,'2026-06-25 02:38:10','No messages',0),(2094957,1782355150,'2026-06-25 02:39:10','No messages',0),(2094958,1782355210,'2026-06-25 02:40:10','No messages',0),(2094959,1782355269,'2026-06-25 02:41:09','No messages',0),(2094960,1782355329,'2026-06-25 02:42:09','No messages',0),(2094961,1782355389,'2026-06-25 02:43:09','No messages',0),(2094962,1782355449,'2026-06-25 02:44:09','No messages',0),(2094963,1782355511,'2026-06-25 02:45:11','No messages',0),(2094964,1782355570,'2026-06-25 02:46:10','No messages',0),(2094965,1782355630,'2026-06-25 02:47:10','No messages',0),(2094966,1782355689,'2026-06-25 02:48:09','No messages',0),(2094967,1782355749,'2026-06-25 02:49:09','No messages',0),(2094968,1782355810,'2026-06-25 02:50:10','No messages',0),(2094969,1782355869,'2026-06-25 02:51:09','No messages',0),(2094970,1782355929,'2026-06-25 02:52:09','No messages',0),(2094971,1782355989,'2026-06-25 02:53:09','No messages',0),(2094972,1782356050,'2026-06-25 02:54:10','No messages',0),(2094973,1782356109,'2026-06-25 02:55:09','No messages',0),(2094974,1782356170,'2026-06-25 02:56:10','No messages',0),(2094975,1782356229,'2026-06-25 02:57:09','No messages',0),(2094976,1782356290,'2026-06-25 02:58:10','No messages',0),(2094977,1782356349,'2026-06-25 02:59:09','No messages',0),(2094978,1782356412,'2026-06-25 03:00:12','No messages',0),(2094979,1782356469,'2026-06-25 03:01:09','No messages',0),(2094980,1782356530,'2026-06-25 03:02:10','No messages',0),(2094981,1782356589,'2026-06-25 03:03:09','No messages',0),(2094982,1782356650,'2026-06-25 03:04:10','No messages',0),(2094983,1782356710,'2026-06-25 03:05:10','No messages',0),(2094984,1782356770,'2026-06-25 03:06:10','No messages',0),(2094985,1782356829,'2026-06-25 03:07:09','No messages',0),(2094986,1782356889,'2026-06-25 03:08:09','No messages',0),(2094987,1782356950,'2026-06-25 03:09:10','No messages',0),(2094988,1782357010,'2026-06-25 03:10:10','No messages',0),(2094989,1782357069,'2026-06-25 03:11:09','No messages',0),(2094990,1782357129,'2026-06-25 03:12:09','No messages',0),(2094991,1782357189,'2026-06-25 03:13:09','No messages',0),(2094992,1782357250,'2026-06-25 03:14:10','No messages',0),(2094993,1782357310,'2026-06-25 03:15:10','No messages',0),(2094994,1782357369,'2026-06-25 03:16:09','No messages',0),(2094995,1782357428,'2026-06-25 03:17:08','No messages',0),(2094996,1782357490,'2026-06-25 03:18:10','No messages',0),(2094997,1782357549,'2026-06-25 03:19:09','No messages',0),(2094998,1782357610,'2026-06-25 03:20:10','No messages',0),(2094999,1782357669,'2026-06-25 03:21:09','No messages',0),(2095000,1782357730,'2026-06-25 03:22:10','No messages',0),(2095001,1782357789,'2026-06-25 03:23:09','No messages',0),(2095002,1782357849,'2026-06-25 03:24:09','No messages',0),(2095003,1782357910,'2026-06-25 03:25:10','No messages',0),(2095004,1782357970,'2026-06-25 03:26:10','No messages',0),(2095005,1782358029,'2026-06-25 03:27:09','No messages',0),(2095006,1782358090,'2026-06-25 03:28:10','No messages',0),(2095007,1782358149,'2026-06-25 03:29:09','No messages',0),(2095008,1782358211,'2026-06-25 03:30:11','No messages',0),(2095009,1782358268,'2026-06-25 03:31:08','No messages',0),(2095010,1782358329,'2026-06-25 03:32:09','No messages',0),(2095011,1782358389,'2026-06-25 03:33:09','No messages',0),(2095012,1782358450,'2026-06-25 03:34:10','No messages',0),(2095013,1782358509,'2026-06-25 03:35:09','No messages',0),(2095014,1782358570,'2026-06-25 03:36:10','No messages',0),(2095015,1782358629,'2026-06-25 03:37:09','No messages',0),(2095016,1782358690,'2026-06-25 03:38:10','No messages',0),(2095017,1782358750,'2026-06-25 03:39:10','No messages',0),(2095018,1782358810,'2026-06-25 03:40:10','No messages',0),(2095019,1782358870,'2026-06-25 03:41:10','No messages',0),(2095020,1782358929,'2026-06-25 03:42:09','No messages',0),(2095021,1782358990,'2026-06-25 03:43:10','No messages',0),(2095022,1782359050,'2026-06-25 03:44:10','No messages',0),(2095023,1782359111,'2026-06-25 03:45:11','No messages',0),(2095024,1782359169,'2026-06-25 03:46:09','No messages',0),(2095025,1782359229,'2026-06-25 03:47:09','No messages',0),(2095026,1782359290,'2026-06-25 03:48:10','No messages',0),(2095027,1782359349,'2026-06-25 03:49:09','No messages',0),(2095028,1782359409,'2026-06-25 03:50:09','No messages',0),(2095029,1782359469,'2026-06-25 03:51:09','No messages',0),(2095030,1782359530,'2026-06-25 03:52:10','No messages',0),(2095031,1782359589,'2026-06-25 03:53:09','No messages',0),(2095032,1782359649,'2026-06-25 03:54:09','No messages',0),(2095033,1782359709,'2026-06-25 03:55:09','No messages',0),(2095034,1782359769,'2026-06-25 03:56:09','No messages',0),(2095035,1782359829,'2026-06-25 03:57:09','No messages',0),(2095036,1782359890,'2026-06-25 03:58:10','No messages',0),(2095037,1782359949,'2026-06-25 03:59:09','No messages',0),(2095038,1782360012,'2026-06-25 04:00:12','No messages',0),(2095039,1782360070,'2026-06-25 04:01:10','No messages',0),(2095040,1782360130,'2026-06-25 04:02:10','No messages',0),(2095041,1782360189,'2026-06-25 04:03:09','No messages',0),(2095042,1782360250,'2026-06-25 04:04:10','No messages',0),(2095043,1782360310,'2026-06-25 04:05:10','No messages',0),(2095044,1782360370,'2026-06-25 04:06:10','No messages',0),(2095045,1782360429,'2026-06-25 04:07:09','No messages',0),(2095046,1782360490,'2026-06-25 04:08:10','No messages',0),(2095047,1782360550,'2026-06-25 04:09:10','No messages',0),(2095048,1782360611,'2026-06-25 04:10:11','No messages',0),(2095049,1782360669,'2026-06-25 04:11:09','No messages',0),(2095050,1782360729,'2026-06-25 04:12:09','No messages',0),(2095051,1782360789,'2026-06-25 04:13:09','No messages',0),(2095052,1782360850,'2026-06-25 04:14:10','No messages',0),(2095053,1782360910,'2026-06-25 04:15:10','No messages',0),(2095054,1782360970,'2026-06-25 04:16:10','No messages',0),(2095055,1782361029,'2026-06-25 04:17:09','No messages',0),(2095056,1782361090,'2026-06-25 04:18:10','No messages',0),(2095057,1782361149,'2026-06-25 04:19:09','No messages',0),(2095058,1782361210,'2026-06-25 04:20:10','No messages',0),(2095059,1782361269,'2026-06-25 04:21:09','No messages',0),(2095060,1782361329,'2026-06-25 04:22:09','No messages',0),(2095061,1782361390,'2026-06-25 04:23:10','No messages',0),(2095062,1782361449,'2026-06-25 04:24:09','No messages',0),(2095063,1782361510,'2026-06-25 04:25:10','No messages',0),(2095064,1782361570,'2026-06-25 04:26:10','No messages',0),(2095065,1782361629,'2026-06-25 04:27:09','No messages',0),(2095066,1782361690,'2026-06-25 04:28:10','No messages',0),(2095067,1782361749,'2026-06-25 04:29:09','No messages',0),(2095068,1782361811,'2026-06-25 04:30:11','No messages',0),(2095069,1782361869,'2026-06-25 04:31:09','No messages',0),(2095070,1782361929,'2026-06-25 04:32:09','No messages',0),(2095071,1782361989,'2026-06-25 04:33:09','No messages',0),(2095072,1782362049,'2026-06-25 04:34:09','No messages',0),(2095073,1782362110,'2026-06-25 04:35:10','No messages',0),(2095074,1782362170,'2026-06-25 04:36:10','No messages',0),(2095075,1782362230,'2026-06-25 04:37:10','No messages',0),(2095076,1782362290,'2026-06-25 04:38:10','No messages',0),(2095077,1782362350,'2026-06-25 04:39:10','No messages',0),(2095078,1782362410,'2026-06-25 04:40:10','No messages',0),(2095079,1782362470,'2026-06-25 04:41:10','No messages',0),(2095080,1782362529,'2026-06-25 04:42:09','No messages',0),(2095081,1782362590,'2026-06-25 04:43:10','No messages',0),(2095082,1782362649,'2026-06-25 04:44:09','No messages',0),(2095083,1782362711,'2026-06-25 04:45:11','No messages',0),(2095084,1782362770,'2026-06-25 04:46:10','No messages',0),(2095085,1782362829,'2026-06-25 04:47:09','No messages',0),(2095086,1782362889,'2026-06-25 04:48:09','No messages',0),(2095087,1782362949,'2026-06-25 04:49:09','No messages',0),(2095088,1782363010,'2026-06-25 04:50:10','No messages',0),(2095089,1782363069,'2026-06-25 04:51:09','No messages',0),(2095090,1782363130,'2026-06-25 04:52:10','No messages',0),(2095091,1782363190,'2026-06-25 04:53:10','No messages',0),(2095092,1782363250,'2026-06-25 04:54:10','No messages',0),(2095093,1782363310,'2026-06-25 04:55:10','No messages',0),(2095094,1782363369,'2026-06-25 04:56:09','No messages',0),(2095095,1782363430,'2026-06-25 04:57:10','No messages',0),(2095096,1782363489,'2026-06-25 04:58:09','No messages',0),(2095097,1782363549,'2026-06-25 04:59:09','No messages',0),(2095098,1782363612,'2026-06-25 05:00:12','No messages',0),(2095099,1782363669,'2026-06-25 05:01:09','No messages',0),(2095100,1782363729,'2026-06-25 05:02:09','No messages',0),(2095101,1782363789,'2026-06-25 05:03:09','No messages',0),(2095102,1782363850,'2026-06-25 05:04:10','No messages',0),(2095103,1782363910,'2026-06-25 05:05:10','No messages',0),(2095104,1782363969,'2026-06-25 05:06:09','No messages',0),(2095105,1782364029,'2026-06-25 05:07:09','No messages',0),(2095106,1782364090,'2026-06-25 05:08:10','No messages',0),(2095107,1782364150,'2026-06-25 05:09:10','No messages',0),(2095108,1782364210,'2026-06-25 05:10:10','No messages',0),(2095109,1782364269,'2026-06-25 05:11:09','No messages',0),(2095110,1782364329,'2026-06-25 05:12:09','No messages',0),(2095111,1782364390,'2026-06-25 05:13:10','No messages',0),(2095112,1782364449,'2026-06-25 05:14:09','No messages',0),(2095113,1782364510,'2026-06-25 05:15:10','No messages',0),(2095114,1782364570,'2026-06-25 05:16:10','No messages',0),(2095115,1782364629,'2026-06-25 05:17:09','No messages',0),(2095116,1782364689,'2026-06-25 05:18:09','No messages',0),(2095117,1782364749,'2026-06-25 05:19:09','No messages',0),(2095118,1782364810,'2026-06-25 05:20:10','No messages',0),(2095119,1782364869,'2026-06-25 05:21:09','No messages',0),(2095120,1782364929,'2026-06-25 05:22:09','No messages',0),(2095121,1782364989,'2026-06-25 05:23:09','No messages',0),(2095122,1782365050,'2026-06-25 05:24:10','No messages',0),(2095123,1782365110,'2026-06-25 05:25:10','No messages',0),(2095124,1782365169,'2026-06-25 05:26:09','No messages',0),(2095125,1782365229,'2026-06-25 05:27:09','No messages',0),(2095126,1782365289,'2026-06-25 05:28:09','No messages',0),(2095127,1782365350,'2026-06-25 05:29:10','No messages',0),(2095128,1782365411,'2026-06-25 05:30:11','No messages',0),(2095129,1782365469,'2026-06-25 05:31:09','No messages',0),(2095130,1782365529,'2026-06-25 05:32:09','No messages',0),(2095131,1782365590,'2026-06-25 05:33:10','No messages',0),(2095132,1782365649,'2026-06-25 05:34:09','No messages',0),(2095133,1782365710,'2026-06-25 05:35:10','No messages',0),(2095134,1782365770,'2026-06-25 05:36:10','No messages',0),(2095135,1782365829,'2026-06-25 05:37:09','No messages',0),(2095136,1782365890,'2026-06-25 05:38:10','No messages',0),(2095137,1782365950,'2026-06-25 05:39:10','No messages',0),(2095138,1782366010,'2026-06-25 05:40:10','No messages',0),(2095139,1782366070,'2026-06-25 05:41:10','No messages',0),(2095140,1782366129,'2026-06-25 05:42:09','No messages',0),(2095141,1782366189,'2026-06-25 05:43:09','No messages',0),(2095142,1782366250,'2026-06-25 05:44:10','No messages',0),(2095143,1782366310,'2026-06-25 05:45:10','No messages',0),(2095144,1782366370,'2026-06-25 05:46:10','No messages',0),(2095145,1782366429,'2026-06-25 05:47:09','No messages',0),(2095146,1782366490,'2026-06-25 05:48:10','No messages',0),(2095147,1782366550,'2026-06-25 05:49:10','No messages',0),(2095148,1782366610,'2026-06-25 05:50:10','No messages',0),(2095149,1782366669,'2026-06-25 05:51:09','No messages',0),(2095150,1782366729,'2026-06-25 05:52:09','No messages',0),(2095151,1782366789,'2026-06-25 05:53:09','No messages',0),(2095152,1782366849,'2026-06-25 05:54:09','No messages',0),(2095153,1782366910,'2026-06-25 05:55:10','No messages',0),(2095154,1782366970,'2026-06-25 05:56:10','No messages',0),(2095155,1782367030,'2026-06-25 05:57:10','No messages',0),(2095156,1782367090,'2026-06-25 05:58:10','No messages',0),(2095157,1782367149,'2026-06-25 05:59:09','No messages',0),(2095158,1782367212,'2026-06-25 06:00:12','No messages',0),(2095159,1782367269,'2026-06-25 06:01:09','No messages',0),(2095160,1782367330,'2026-06-25 06:02:10','No messages',0),(2095161,1782367389,'2026-06-25 06:03:09','No messages',0),(2095162,1782367450,'2026-06-25 06:04:10','No messages',0),(2095163,1782367510,'2026-06-25 06:05:10','No messages',0),(2095164,1782367569,'2026-06-25 06:06:09','No messages',0),(2095165,1782367629,'2026-06-25 06:07:09','No messages',0),(2095166,1782367690,'2026-06-25 06:08:10','No messages',0),(2095167,1782367750,'2026-06-25 06:09:10','No messages',0),(2095168,1782367810,'2026-06-25 06:10:10','No messages',0),(2095169,1782367869,'2026-06-25 06:11:09','No messages',0),(2095170,1782367930,'2026-06-25 06:12:10','No messages',0),(2095171,1782367989,'2026-06-25 06:13:09','No messages',0),(2095172,1782368050,'2026-06-25 06:14:10','No messages',0),(2095173,1782368110,'2026-06-25 06:15:10','No messages',0),(2095174,1782368169,'2026-06-25 06:16:09','No messages',0),(2095175,1782368230,'2026-06-25 06:17:10','No messages',0),(2095176,1782368289,'2026-06-25 06:18:09','No messages',0),(2095177,1782368350,'2026-06-25 06:19:10','No messages',0),(2095178,1782368410,'2026-06-25 06:20:10','No messages',0),(2095179,1782368470,'2026-06-25 06:21:10','No messages',0),(2095180,1782368529,'2026-06-25 06:22:09','No messages',0),(2095181,1782368589,'2026-06-25 06:23:09','No messages',0),(2095182,1782368650,'2026-06-25 06:24:10','No messages',0),(2095183,1782368710,'2026-06-25 06:25:10','No messages',0),(2095184,1782368770,'2026-06-25 06:26:10','No messages',0),(2095185,1782368829,'2026-06-25 06:27:09','No messages',0),(2095186,1782368890,'2026-06-25 06:28:10','No messages',0),(2095187,1782368949,'2026-06-25 06:29:09','No messages',0),(2095188,1782369011,'2026-06-25 06:30:11','No messages',0),(2095189,1782369069,'2026-06-25 06:31:09','No messages',0),(2095190,1782369129,'2026-06-25 06:32:09','No messages',0),(2095191,1782369189,'2026-06-25 06:33:09','No messages',0),(2095192,1782369250,'2026-06-25 06:34:10','No messages',0),(2095193,1782369309,'2026-06-25 06:35:09','No messages',0),(2095194,1782369369,'2026-06-25 06:36:09','No messages',0),(2095195,1782369429,'2026-06-25 06:37:09','No messages',0),(2095196,1782369490,'2026-06-25 06:38:10','No messages',0),(2095197,1782369549,'2026-06-25 06:39:09','No messages',0),(2095198,1782369610,'2026-06-25 06:40:10','No messages',0),(2095199,1782369670,'2026-06-25 06:41:10','No messages',0),(2095200,1782369729,'2026-06-25 06:42:09','No messages',0),(2095201,1782369789,'2026-06-25 06:43:09','No messages',0),(2095202,1782369850,'2026-06-25 06:44:10','No messages',0),(2095203,1782369911,'2026-06-25 06:45:11','No messages',0),(2095204,1782369969,'2026-06-25 06:46:09','No messages',0),(2095205,1782370030,'2026-06-25 06:47:10','No messages',0),(2095206,1782370089,'2026-06-25 06:48:09','No messages',0),(2095207,1782370149,'2026-06-25 06:49:09','No messages',0),(2095208,1782370210,'2026-06-25 06:50:10','No messages',0),(2095209,1782370270,'2026-06-25 06:51:10','No messages',0),(2095210,1782370330,'2026-06-25 06:52:10','No messages',0),(2095211,1782370389,'2026-06-25 06:53:09','No messages',0),(2095212,1782370449,'2026-06-25 06:54:09','No messages',0),(2095213,1782370509,'2026-06-25 06:55:09','No messages',0),(2095214,1782370570,'2026-06-25 06:56:10','No messages',0),(2095215,1782370629,'2026-06-25 06:57:09','No messages',0),(2095216,1782370690,'2026-06-25 06:58:10','No messages',0),(2095217,1782370749,'2026-06-25 06:59:09','No messages',0),(2095218,1782370813,'2026-06-25 07:00:13','No messages',0),(2095219,1782370868,'2026-06-25 07:01:08','No messages',0),(2095220,1782370930,'2026-06-25 07:02:10','No messages',0),(2095221,1782370989,'2026-06-25 07:03:09','No messages',0),(2095222,1782371050,'2026-06-25 07:04:10','No messages',0),(2095223,1782371110,'2026-06-25 07:05:10','No messages',0),(2095224,1782371170,'2026-06-25 07:06:10','No messages',0),(2095225,1782371229,'2026-06-25 07:07:09','No messages',0),(2095226,1782371289,'2026-06-25 07:08:09','No messages',0),(2095227,1782371350,'2026-06-25 07:09:10','No messages',0),(2095228,1782371410,'2026-06-25 07:10:10','No messages',0),(2095229,1782371469,'2026-06-25 07:11:09','No messages',0),(2095230,1782371530,'2026-06-25 07:12:10','No messages',0),(2095231,1782371589,'2026-06-25 07:13:09','No messages',0),(2095232,1782371650,'2026-06-25 07:14:10','No messages',0),(2095233,1782371711,'2026-06-25 07:15:11','No messages',0),(2095234,1782371769,'2026-06-25 07:16:09','No messages',0),(2095235,1782371830,'2026-06-25 07:17:10','No messages',0),(2095236,1782371890,'2026-06-25 07:18:10','No messages',0),(2095237,1782371949,'2026-06-25 07:19:09','No messages',0),(2095238,1782372010,'2026-06-25 07:20:10','No messages',0),(2095239,1782372070,'2026-06-25 07:21:10','No messages',0),(2095240,1782372130,'2026-06-25 07:22:10','No messages',0),(2095241,1782372189,'2026-06-25 07:23:09','No messages',0),(2095242,1782372250,'2026-06-25 07:24:10','No messages',0),(2095243,1782372310,'2026-06-25 07:25:10','No messages',0),(2095244,1782372370,'2026-06-25 07:26:10','No messages',0),(2095245,1782372429,'2026-06-25 07:27:09','No messages',0),(2095246,1782372490,'2026-06-25 07:28:10','No messages',0),(2095247,1782372549,'2026-06-25 07:29:09','No messages',0),(2095248,1782372612,'2026-06-25 07:30:12','No messages',0),(2095249,1782372669,'2026-06-25 07:31:09','No messages',0),(2095250,1782372730,'2026-06-25 07:32:10','No messages',0),(2095251,1782372789,'2026-06-25 07:33:09','No messages',0),(2095252,1782372850,'2026-06-25 07:34:10','No messages',0),(2095253,1782372910,'2026-06-25 07:35:10','No messages',0),(2095254,1782372969,'2026-06-25 07:36:09','No messages',0),(2095255,1782373030,'2026-06-25 07:37:10','No messages',0),(2095256,1782373090,'2026-06-25 07:38:10','No messages',0),(2095257,1782373150,'2026-06-25 07:39:10','No messages',0),(2095258,1782373210,'2026-06-25 07:40:10','No messages',0),(2095259,1782373270,'2026-06-25 07:41:10','No messages',0),(2095260,1782373330,'2026-06-25 07:42:10','No messages',0),(2095261,1782373389,'2026-06-25 07:43:09','No messages',0),(2095262,1782373450,'2026-06-25 07:44:10','No messages',0),(2095263,1782373511,'2026-06-25 07:45:11','No messages',0),(2095264,1782373570,'2026-06-25 07:46:10','No messages',0),(2095265,1782373629,'2026-06-25 07:47:09','No messages',0),(2095266,1782373690,'2026-06-25 07:48:10','No messages',0),(2095267,1782373750,'2026-06-25 07:49:10','No messages',0),(2095268,1782373810,'2026-06-25 07:50:10','No messages',0),(2095269,1782373869,'2026-06-25 07:51:09','No messages',0),(2095270,1782373930,'2026-06-25 07:52:10','No messages',0),(2095271,1782373989,'2026-06-25 07:53:09','No messages',0),(2095272,1782374050,'2026-06-25 07:54:10','No messages',0),(2095273,1782374110,'2026-06-25 07:55:10','No messages',0),(2095274,1782374170,'2026-06-25 07:56:10','No messages',0),(2095275,1782374229,'2026-06-25 07:57:09','No messages',0),(2095276,1782374289,'2026-06-25 07:58:09','No messages',0),(2095277,1782374350,'2026-06-25 07:59:10','No messages',0),(2095278,1782374412,'2026-06-25 08:00:12','No messages',0),(2095279,1782374469,'2026-06-25 08:01:09','No messages',0),(2095280,1782374530,'2026-06-25 08:02:10','No messages',0),(2095281,1782374589,'2026-06-25 08:03:09','No messages',0),(2095282,1782374650,'2026-06-25 08:04:10','No messages',0),(2095283,1782374711,'2026-06-25 08:05:11','No messages',0),(2095284,1782374769,'2026-06-25 08:06:09','No messages',0),(2095285,1782374830,'2026-06-25 08:07:10','No messages',0),(2095286,1782374890,'2026-06-25 08:08:10','No messages',0),(2095287,1782374950,'2026-06-25 08:09:10','No messages',0),(2095288,1782375010,'2026-06-25 08:10:10','No messages',0),(2095289,1782375071,'2026-06-25 08:11:11','No messages',0),(2095290,1782375130,'2026-06-25 08:12:10','No messages',0),(2095291,1782375190,'2026-06-25 08:13:10','No messages',0),(2095292,1782375250,'2026-06-25 08:14:10','No messages',0),(2095293,1782375310,'2026-06-25 08:15:10','No messages',0),(2095294,1782375369,'2026-06-25 08:16:09','No messages',0),(2095295,1782375430,'2026-06-25 08:17:10','No messages',0),(2095296,1782375489,'2026-06-25 08:18:09','No messages',0),(2095297,1782375549,'2026-06-25 08:19:09','No messages',0),(2095298,1782375610,'2026-06-25 08:20:10','No messages',0),(2095299,1782375669,'2026-06-25 08:21:09','No messages',0),(2095300,1782375730,'2026-06-25 08:22:10','No messages',0),(2095301,1782375789,'2026-06-25 08:23:09','No messages',0),(2095302,1782375849,'2026-06-25 08:24:09','No messages',0),(2095303,1782375910,'2026-06-25 08:25:10','No messages',0),(2095304,1782375969,'2026-06-25 08:26:09','No messages',0),(2095305,1782376030,'2026-06-25 08:27:10','No messages',0),(2095306,1782376090,'2026-06-25 08:28:10','No messages',0),(2095307,1782376149,'2026-06-25 08:29:09','No messages',0),(2095308,1782376211,'2026-06-25 08:30:11','No messages',0),(2095309,1782376270,'2026-06-25 08:31:10','No messages',0),(2095310,1782376330,'2026-06-25 08:32:10','No messages',0),(2095311,1782376389,'2026-06-25 08:33:09','No messages',0),(2095312,1782376449,'2026-06-25 08:34:09','No messages',0),(2095313,1782376510,'2026-06-25 08:35:10','No messages',0),(2095314,1782376570,'2026-06-25 08:36:10','No messages',0),(2095315,1782376629,'2026-06-25 08:37:09','No messages',0),(2095316,1782376689,'2026-06-25 08:38:09','No messages',0),(2095317,1782376749,'2026-06-25 08:39:09','No messages',0),(2095318,1782376811,'2026-06-25 08:40:11','No messages',0),(2095319,1782376869,'2026-06-25 08:41:09','No messages',0),(2095320,1782376930,'2026-06-25 08:42:10','No messages',0),(2095321,1782376989,'2026-06-25 08:43:09','No messages',0),(2095322,1782377049,'2026-06-25 08:44:09','No messages',0),(2095323,1782377111,'2026-06-25 08:45:11','No messages',0),(2095324,1782377169,'2026-06-25 08:46:09','No messages',0),(2095325,1782377230,'2026-06-25 08:47:10','No messages',0),(2095326,1782377290,'2026-06-25 08:48:10','No messages',0),(2095327,1782377350,'2026-06-25 08:49:10','No messages',0),(2095328,1782377410,'2026-06-25 08:50:10','No messages',0),(2095329,1782377468,'2026-06-25 08:51:08','No messages',0),(2095330,1782377530,'2026-06-25 08:52:10','No messages',0),(2095331,1782377590,'2026-06-25 08:53:10','No messages',0),(2095332,1782377649,'2026-06-25 08:54:09','No messages',0),(2095333,1782377710,'2026-06-25 08:55:10','No messages',0),(2095334,1782377770,'2026-06-25 08:56:10','No messages',0),(2095335,1782377830,'2026-06-25 08:57:10','No messages',0),(2095336,1782377889,'2026-06-25 08:58:09','No messages',0),(2095337,1782377950,'2026-06-25 08:59:10','No messages',0),(2095338,1782378012,'2026-06-25 09:00:12','No messages',0),(2095339,1782378069,'2026-06-25 09:01:09','No messages',0),(2095340,1782378130,'2026-06-25 09:02:10','No messages',0),(2095341,1782378189,'2026-06-25 09:03:09','No messages',0),(2095342,1782378249,'2026-06-25 09:04:09','No messages',0),(2095343,1782378310,'2026-06-25 09:05:10','No messages',0),(2095344,1782378370,'2026-06-25 09:06:10','No messages',0),(2095345,1782378429,'2026-06-25 09:07:09','No messages',0),(2095346,1782378490,'2026-06-25 09:08:10','No messages',0),(2095347,1782378549,'2026-06-25 09:09:09','No messages',0),(2095348,1782378610,'2026-06-25 09:10:10','No messages',0),(2095349,1782378669,'2026-06-25 09:11:09','No messages',0),(2095350,1782378729,'2026-06-25 09:12:09','No messages',0),(2095351,1782378789,'2026-06-25 09:13:09','No messages',0),(2095352,1782378849,'2026-06-25 09:14:09','No messages',0),(2095353,1782378910,'2026-06-25 09:15:10','No messages',0),(2095354,1782378969,'2026-06-25 09:16:09','No messages',0),(2095355,1782379029,'2026-06-25 09:17:09','No messages',0),(2095356,1782379090,'2026-06-25 09:18:10','No messages',0),(2095357,1782379149,'2026-06-25 09:19:09','No messages',0),(2095358,1782379210,'2026-06-25 09:20:10','No messages',0),(2095359,1782379268,'2026-06-25 09:21:08','No messages',0),(2095360,1782379329,'2026-06-25 09:22:09','No messages',0),(2095361,1782379390,'2026-06-25 09:23:10','No messages',0),(2095362,1782379450,'2026-06-25 09:24:10','No messages',0),(2095363,1782379509,'2026-06-25 09:25:09','No messages',0),(2095364,1782379569,'2026-06-25 09:26:09','No messages',0),(2095365,1782379629,'2026-06-25 09:27:09','No messages',0),(2095366,1782379689,'2026-06-25 09:28:09','No messages',0),(2095367,1782379749,'2026-06-25 09:29:09','No messages',0),(2095368,1782379812,'2026-06-25 09:30:12','No messages',0),(2095369,1782379869,'2026-06-25 09:31:09','No messages',0),(2095370,1782379930,'2026-06-25 09:32:10','No messages',0),(2095371,1782379989,'2026-06-25 09:33:09','No messages',0),(2095372,1782380050,'2026-06-25 09:34:10','No messages',0),(2095373,1782380110,'2026-06-25 09:35:10','No messages',0),(2095374,1782380169,'2026-06-25 09:36:09','No messages',0),(2095375,1782380229,'2026-06-25 09:37:09','No messages',0),(2095376,1782380290,'2026-06-25 09:38:10','No messages',0),(2095377,1782380350,'2026-06-25 09:39:10','No messages',0),(2095378,1782380410,'2026-06-25 09:40:10','No messages',0),(2095379,1782380469,'2026-06-25 09:41:09','No messages',0),(2095380,1782380531,'2026-06-25 09:42:11','No messages',0),(2095381,1782380585,'2026-06-25 09:43:05','Current time is 1782380585.  Last queue cron was called at 1782380531',0),(2095382,1782380647,'2026-06-25 09:44:07','No messages',0),(2095383,1782380709,'2026-06-25 09:45:09','No messages',0),(2095384,1782380768,'2026-06-25 09:46:08','No messages',0),(2095385,1782380828,'2026-06-25 09:47:08','No messages',0),(2095386,1782380888,'2026-06-25 09:48:08','No messages',0),(2095387,1782380947,'2026-06-25 09:49:07','No messages',0),(2095388,1782381008,'2026-06-25 09:50:08','No messages',0),(2095389,1782381068,'2026-06-25 09:51:08','No messages',0),(2095390,1782381128,'2026-06-25 09:52:08','No messages',0),(2095391,1782381188,'2026-06-25 09:53:08','No messages',0),(2095392,1782381247,'2026-06-25 09:54:07','No messages',0),(2095393,1782381308,'2026-06-25 09:55:08','No messages',0),(2095394,1782381367,'2026-06-25 09:56:07','No messages',0),(2095395,1782381429,'2026-06-25 09:57:09','No messages',0),(2095396,1782381487,'2026-06-25 09:58:07','No messages',0),(2095397,1782381548,'2026-06-25 09:59:08','No messages',0),(2095398,1782381611,'2026-06-25 10:00:11','No messages',0),(2095399,1782381669,'2026-06-25 10:01:09','No messages',0),(2095400,1782381729,'2026-06-25 10:02:09','No messages',0),(2095401,1782381788,'2026-06-25 10:03:08','No messages',0),(2095402,1782381849,'2026-06-25 10:04:09','No messages',0),(2095403,1782381910,'2026-06-25 10:05:10','No messages',0),(2095404,1782381970,'2026-06-25 10:06:10','No messages',0),(2095405,1782382029,'2026-06-25 10:07:09','No messages',0),(2095406,1782382089,'2026-06-25 10:08:09','No messages',0),(2095407,1782382149,'2026-06-25 10:09:09','No messages',0),(2095408,1782382209,'2026-06-25 10:10:09','No messages',0),(2095409,1782382269,'2026-06-25 10:11:09','No messages',0),(2095410,1782382329,'2026-06-25 10:12:09','No messages',0),(2095411,1782382389,'2026-06-25 10:13:09','No messages',0),(2095412,1782382449,'2026-06-25 10:14:09','No messages',0),(2095413,1782382511,'2026-06-25 10:15:11','No messages',0),(2095414,1782382569,'2026-06-25 10:16:09','No messages',0),(2095415,1782382629,'2026-06-25 10:17:09','No messages',0),(2095416,1782382689,'2026-06-25 10:18:09','No messages',0),(2095417,1782382749,'2026-06-25 10:19:09','No messages',0),(2095418,1782382809,'2026-06-25 10:20:09','No messages',0),(2095419,1782382868,'2026-06-25 10:21:08','No messages',0),(2095420,1782382930,'2026-06-25 10:22:10','No messages',0),(2095421,1782382989,'2026-06-25 10:23:09','No messages',0),(2095422,1782383049,'2026-06-25 10:24:09','No messages',0),(2095423,1782383109,'2026-06-25 10:25:09','No messages',0),(2095424,1782383169,'2026-06-25 10:26:09','No messages',0),(2095425,1782383229,'2026-06-25 10:27:09','No messages',0),(2095426,1782383289,'2026-06-25 10:28:09','No messages',0),(2095427,1782383350,'2026-06-25 10:29:10','No messages',0),(2095428,1782383412,'2026-06-25 10:30:12','No messages',0),(2095429,1782383469,'2026-06-25 10:31:09','No messages',0),(2095430,1782383529,'2026-06-25 10:32:09','No messages',0),(2095431,1782383588,'2026-06-25 10:33:08','No messages',0),(2095432,1782383649,'2026-06-25 10:34:09','No messages',0),(2095433,1782383710,'2026-06-25 10:35:10','No messages',0),(2095434,1782383770,'2026-06-25 10:36:10','No messages',0),(2095435,1782383829,'2026-06-25 10:37:09','No messages',0),(2095436,1782383889,'2026-06-25 10:38:09','No messages',0),(2095437,1782383949,'2026-06-25 10:39:09','No messages',0),(2095438,1782384009,'2026-06-25 10:40:09','No messages',0),(2095439,1782384068,'2026-06-25 10:41:08','No messages',0),(2095440,1782384129,'2026-06-25 10:42:09','No messages',0),(2095441,1782384188,'2026-06-25 10:43:08','No messages',0),(2095442,1782384249,'2026-06-25 10:44:09','No messages',0),(2095443,1782384310,'2026-06-25 10:45:10','No messages',0),(2095444,1782384369,'2026-06-25 10:46:09','No messages',0),(2095445,1782384428,'2026-06-25 10:47:08','No messages',0),(2095446,1782384489,'2026-06-25 10:48:09','No messages',0),(2095447,1782384548,'2026-06-25 10:49:08','No messages',0),(2095448,1782384610,'2026-06-25 10:50:10','No messages',0),(2095449,1782384669,'2026-06-25 10:51:09','No messages',0),(2095450,1782384729,'2026-06-25 10:52:09','No messages',0),(2095451,1782384789,'2026-06-25 10:53:09','No messages',0),(2095452,1782384848,'2026-06-25 10:54:08','No messages',0),(2095453,1782384909,'2026-06-25 10:55:09','No messages',0),(2095454,1782384969,'2026-06-25 10:56:09','No messages',0),(2095455,1782385029,'2026-06-25 10:57:09','No messages',0),(2095456,1782385089,'2026-06-25 10:58:09','No messages',0),(2095457,1782385149,'2026-06-25 10:59:09','No messages',0),(2095458,1782385211,'2026-06-25 11:00:11','No messages',0),(2095459,1782385268,'2026-06-25 11:01:08','No messages',0),(2095460,1782385330,'2026-06-25 11:02:10','No messages',0),(2095461,1782385389,'2026-06-25 11:03:09','No messages',0),(2095462,1782385449,'2026-06-25 11:04:09','No messages',0),(2095463,1782385509,'2026-06-25 11:05:09','No messages',0),(2095464,1782385569,'2026-06-25 11:06:09','No messages',0),(2095465,1782385629,'2026-06-25 11:07:09','No messages',0),(2095466,1782385689,'2026-06-25 11:08:09','No messages',0),(2095467,1782385749,'2026-06-25 11:09:09','No messages',0),(2095468,1782385810,'2026-06-25 11:10:10','No messages',0),(2095469,1782385869,'2026-06-25 11:11:09','No messages',0),(2095470,1782385929,'2026-06-25 11:12:09','No messages',0),(2095471,1782385989,'2026-06-25 11:13:09','No messages',0),(2095472,1782386050,'2026-06-25 11:14:10','No messages',0),(2095473,1782386110,'2026-06-25 11:15:10','No messages',0),(2095474,1782386169,'2026-06-25 11:16:09','No messages',0),(2095475,1782386228,'2026-06-25 11:17:08','No messages',0),(2095476,1782386290,'2026-06-25 11:18:10','No messages',0),(2095477,1782386348,'2026-06-25 11:19:08','No messages',0),(2095478,1782386410,'2026-06-25 11:20:10','No messages',0),(2095479,1782386469,'2026-06-25 11:21:09','No messages',0),(2095480,1782386530,'2026-06-25 11:22:10','No messages',0),(2095481,1782386589,'2026-06-25 11:23:09','No messages',0),(2095482,1782386650,'2026-06-25 11:24:10','No messages',0),(2095483,1782386709,'2026-06-25 11:25:09','No messages',0),(2095484,1782386769,'2026-06-25 11:26:09','No messages',0),(2095485,1782386829,'2026-06-25 11:27:09','No messages',0),(2095486,1782386890,'2026-06-25 11:28:10','No messages',0),(2095487,1782386948,'2026-06-25 11:29:08','No messages',0),(2095488,1782387012,'2026-06-25 11:30:12','No messages',0),(2095489,1782387069,'2026-06-25 11:31:09','No messages',0),(2095490,1782387129,'2026-06-25 11:32:09','No messages',0),(2095491,1782387189,'2026-06-25 11:33:09','No messages',0),(2095492,1782387249,'2026-06-25 11:34:09','No messages',0),(2095493,1782387309,'2026-06-25 11:35:09','No messages',0),(2095494,1782387369,'2026-06-25 11:36:09','No messages',0),(2095495,1782387428,'2026-06-25 11:37:08','No messages',0),(2095496,1782387490,'2026-06-25 11:38:10','No messages',0),(2095497,1782387549,'2026-06-25 11:39:09','No messages',0),(2095498,1782387609,'2026-06-25 11:40:09','No messages',0),(2095499,1782387669,'2026-06-25 11:41:09','No messages',0),(2095500,1782387730,'2026-06-25 11:42:10','No messages',0),(2095501,1782387789,'2026-06-25 11:43:09','No messages',0),(2095502,1782387849,'2026-06-25 11:44:09','No messages',0),(2095503,1782387910,'2026-06-25 11:45:10','No messages',0),(2095504,1782387970,'2026-06-25 11:46:10','No messages',0),(2095505,1782388029,'2026-06-25 11:47:09','No messages',0),(2095506,1782388089,'2026-06-25 11:48:09','No messages',0),(2095507,1782388149,'2026-06-25 11:49:09','No messages',0),(2095508,1782388210,'2026-06-25 11:50:10','No messages',0),(2095509,1782388269,'2026-06-25 11:51:09','No messages',0),(2095510,1782388329,'2026-06-25 11:52:09','No messages',0),(2095511,1782388388,'2026-06-25 11:53:08','No messages',0),(2095512,1782388450,'2026-06-25 11:54:10','No messages',0),(2095513,1782388508,'2026-06-25 11:55:08','No messages',0),(2095514,1782388569,'2026-06-25 11:56:09','No messages',0),(2095515,1782388629,'2026-06-25 11:57:09','No messages',0),(2095516,1782388689,'2026-06-25 11:58:09','No messages',0),(2095517,1782388749,'2026-06-25 11:59:09','No messages',0),(2095518,1782388812,'2026-06-25 12:00:12','No messages',0),(2095519,1782388869,'2026-06-25 12:01:09','No messages',0),(2095520,1782388929,'2026-06-25 12:02:09','No messages',0),(2095521,1782388989,'2026-06-25 12:03:09','No messages',0),(2095522,1782389050,'2026-06-25 12:04:10','No messages',0),(2095523,1782389109,'2026-06-25 12:05:09','No messages',0),(2095524,1782389169,'2026-06-25 12:06:09','No messages',0),(2095525,1782389229,'2026-06-25 12:07:09','No messages',0),(2095526,1782389289,'2026-06-25 12:08:09','No messages',0),(2095527,1782389350,'2026-06-25 12:09:10','No messages',0),(2095528,1782389409,'2026-06-25 12:10:09','No messages',0),(2095529,1782389469,'2026-06-25 12:11:09','No messages',0),(2095530,1782389529,'2026-06-25 12:12:09','No messages',0),(2095531,1782389588,'2026-06-25 12:13:08','No messages',0),(2095532,1782389650,'2026-06-25 12:14:10','No messages',0),(2095533,1782389710,'2026-06-25 12:15:10','No messages',0),(2095534,1782389769,'2026-06-25 12:16:09','No messages',0),(2095535,1782389829,'2026-06-25 12:17:09','No messages',0),(2095536,1782389889,'2026-06-25 12:18:09','No messages',0),(2095537,1782389949,'2026-06-25 12:19:09','No messages',0),(2095538,1782390010,'2026-06-25 12:20:10','No messages',0),(2095539,1782390069,'2026-06-25 12:21:09','No messages',0),(2095540,1782390130,'2026-06-25 12:22:10','No messages',0),(2095541,1782390188,'2026-06-25 12:23:08','No messages',0),(2095542,1782390250,'2026-06-25 12:24:10','No messages',0),(2095543,1782390310,'2026-06-25 12:25:10','No messages',0),(2095544,1782390370,'2026-06-25 12:26:10','No messages',0),(2095545,1782390429,'2026-06-25 12:27:09','No messages',0),(2095546,1782390489,'2026-06-25 12:28:09','No messages',0),(2095547,1782390549,'2026-06-25 12:29:09','No messages',0),(2095548,1782390610,'2026-06-25 12:30:10','No messages',0),(2095549,1782390669,'2026-06-25 12:31:09','No messages',0),(2095550,1782390729,'2026-06-25 12:32:09','No messages',0),(2095551,1782390790,'2026-06-25 12:33:10','No messages',0),(2095552,1782390850,'2026-06-25 12:34:10','No messages',0),(2095553,1782390909,'2026-06-25 12:35:09','No messages',0),(2095554,1782390969,'2026-06-25 12:36:09','No messages',0),(2095555,1782391028,'2026-06-25 12:37:08','No messages',0),(2095556,1782391089,'2026-06-25 12:38:09','No messages',0),(2095557,1782391148,'2026-06-25 12:39:08','No messages',0),(2095558,1782391210,'2026-06-25 12:40:10','No messages',0),(2095559,1782391268,'2026-06-25 12:41:08','No messages',0),(2095560,1782391329,'2026-06-25 12:42:09','No messages',0),(2095561,1782391388,'2026-06-25 12:43:08','No messages',0),(2095562,1782391449,'2026-06-25 12:44:09','No messages',0),(2095563,1782391510,'2026-06-25 12:45:10','No messages',0),(2095564,1782391570,'2026-06-25 12:46:10','No messages',0),(2095565,1782391629,'2026-06-25 12:47:09','No messages',0),(2095566,1782391689,'2026-06-25 12:48:09','No messages',0),(2095567,1782391749,'2026-06-25 12:49:09','No messages',0),(2095568,1782391810,'2026-06-25 12:50:10','No messages',0),(2095569,1782391869,'2026-06-25 12:51:09','No messages',0),(2095570,1782391929,'2026-06-25 12:52:09','No messages',0),(2095571,1782391989,'2026-06-25 12:53:09','No messages',0),(2095572,1782392050,'2026-06-25 12:54:10','No messages',0),(2095573,1782392109,'2026-06-25 12:55:09','No messages',0),(2095574,1782392169,'2026-06-25 12:56:09','No messages',0),(2095575,1782392229,'2026-06-25 12:57:09','No messages',0),(2095576,1782392289,'2026-06-25 12:58:09','No messages',0),(2095577,1782392349,'2026-06-25 12:59:09','No messages',0),(2095578,1782392412,'2026-06-25 13:00:12','No messages',0),(2095579,1782392468,'2026-06-25 13:01:08','No messages',0),(2095580,1782392530,'2026-06-25 13:02:10','No messages',0),(2095581,1782392588,'2026-06-25 13:03:08','No messages',0),(2095582,1782392649,'2026-06-25 13:04:09','No messages',0),(2095583,1782392710,'2026-06-25 13:05:10','No messages',0),(2095584,1782392770,'2026-06-25 13:06:10','No messages',0),(2095585,1782392829,'2026-06-25 13:07:09','No messages',0),(2095586,1782392890,'2026-06-25 13:08:10','No messages',0),(2095587,1782392949,'2026-06-25 13:09:09','No messages',0),(2095588,1782393010,'2026-06-25 13:10:10','No messages',0),(2095589,1782393068,'2026-06-25 13:11:08','No messages',0),(2095590,1782393130,'2026-06-25 13:12:10','No messages',0),(2095591,1782393189,'2026-06-25 13:13:09','No messages',0),(2095592,1782393249,'2026-06-25 13:14:09','No messages',0),(2095593,1782393311,'2026-06-25 13:15:11','No messages',0),(2095594,1782393369,'2026-06-25 13:16:09','No messages',0),(2095595,1782393429,'2026-06-25 13:17:09','No messages',0),(2095596,1782393489,'2026-06-25 13:18:09','No messages',0),(2095597,1782393549,'2026-06-25 13:19:09','No messages',0),(2095598,1782393610,'2026-06-25 13:20:10','No messages',0),(2095599,1782393669,'2026-06-25 13:21:09','No messages',0),(2095600,1782393729,'2026-06-25 13:22:09','No messages',0),(2095601,1782393788,'2026-06-25 13:23:08','No messages',0),(2095602,1782393850,'2026-06-25 13:24:10','No messages',0),(2095603,1782393908,'2026-06-25 13:25:08','No messages',0),(2095604,1782393969,'2026-06-25 13:26:09','No messages',0),(2095605,1782394030,'2026-06-25 13:27:10','No messages',0),(2095606,1782394090,'2026-06-25 13:28:10','No messages',0),(2095607,1782394149,'2026-06-25 13:29:09','No messages',0),(2095608,1782394210,'2026-06-25 13:30:10','No messages',0),(2095609,1782394269,'2026-06-25 13:31:09','No messages',0),(2095610,1782394328,'2026-06-25 13:32:08','No messages',0),(2095611,1782394389,'2026-06-25 13:33:09','No messages',0),(2095612,1782394450,'2026-06-25 13:34:10','No messages',0),(2095613,1782394509,'2026-06-25 13:35:09','No messages',0),(2095614,1782394570,'2026-06-25 13:36:10','No messages',0),(2095615,1782394628,'2026-06-25 13:37:08','No messages',0),(2095616,1782394689,'2026-06-25 13:38:09','No messages',0),(2095617,1782394750,'2026-06-25 13:39:10','No messages',0),(2095618,1782394810,'2026-06-25 13:40:10','No messages',0),(2095619,1782394869,'2026-06-25 13:41:09','No messages',0),(2095620,1782394930,'2026-06-25 13:42:10','No messages',0),(2095621,1782394989,'2026-06-25 13:43:09','No messages',0),(2095622,1782395049,'2026-06-25 13:44:09','No messages',0),(2095623,1782395110,'2026-06-25 13:45:10','No messages',0),(2095624,1782395169,'2026-06-25 13:46:09','No messages',0),(2095625,1782395229,'2026-06-25 13:47:09','No messages',0),(2095626,1782395289,'2026-06-25 13:48:09','No messages',0),(2095627,1782395349,'2026-06-25 13:49:09','No messages',0),(2095628,1782395409,'2026-06-25 13:50:09','No messages',0),(2095629,1782395468,'2026-06-25 13:51:08','No messages',0),(2095630,1782395530,'2026-06-25 13:52:10','No messages',0),(2095631,1782395589,'2026-06-25 13:53:09','No messages',0),(2095632,1782395649,'2026-06-25 13:54:09','No messages',0),(2095633,1782395710,'2026-06-25 13:55:10','No messages',0),(2095634,1782395769,'2026-06-25 13:56:09','No messages',0),(2095635,1782395829,'2026-06-25 13:57:09','No messages',0),(2095636,1782395890,'2026-06-25 13:58:10','No messages',0),(2095637,1782395949,'2026-06-25 13:59:09','No messages',0),(2095638,1782396011,'2026-06-25 14:00:11','No messages',0),(2095639,1782396069,'2026-06-25 14:01:09','No messages',0),(2095640,1782396130,'2026-06-25 14:02:10','No messages',0),(2095641,1782396188,'2026-06-25 14:03:08','No messages',0),(2095642,1782396249,'2026-06-25 14:04:09','No messages',0),(2095643,1782396310,'2026-06-25 14:05:10','No messages',0),(2095644,1782396369,'2026-06-25 14:06:09','No messages',0),(2095645,1782396429,'2026-06-25 14:07:09','No messages',0),(2095646,1782396489,'2026-06-25 14:08:09','No messages',0),(2095647,1782396549,'2026-06-25 14:09:09','No messages',0),(2095648,1782396609,'2026-06-25 14:10:09','No messages',0),(2095649,1782396668,'2026-06-25 14:11:08','No messages',0),(2095650,1782396729,'2026-06-25 14:12:09','No messages',0),(2095651,1782396789,'2026-06-25 14:13:09','No messages',0),(2095652,1782396849,'2026-06-25 14:14:09','No messages',0),(2095653,1782396910,'2026-06-25 14:15:10','No messages',0),(2095654,1782396970,'2026-06-25 14:16:10','No messages',0),(2095655,1782397028,'2026-06-25 14:17:08','No messages',0),(2095656,1782397089,'2026-06-25 14:18:09','No messages',0),(2095657,1782397149,'2026-06-25 14:19:09','No messages',0),(2095658,1782397210,'2026-06-25 14:20:10','No messages',0),(2095659,1782397269,'2026-06-25 14:21:09','No messages',0),(2095660,1782397329,'2026-06-25 14:22:09','No messages',0),(2095661,1782397389,'2026-06-25 14:23:09','No messages',0),(2095662,1782397449,'2026-06-25 14:24:09','No messages',0),(2095663,1782397509,'2026-06-25 14:25:09','No messages',0),(2095664,1782397569,'2026-06-25 14:26:09','No messages',0),(2095665,1782397630,'2026-06-25 14:27:10','No messages',0),(2095666,1782397688,'2026-06-25 14:28:08','No messages',0),(2095667,1782397749,'2026-06-25 14:29:09','No messages',0),(2095668,1782397810,'2026-06-25 14:30:10','No messages',0),(2095669,1782397869,'2026-06-25 14:31:09','No messages',0),(2095670,1782397930,'2026-06-25 14:32:10','No messages',0),(2095671,1782397989,'2026-06-25 14:33:09','No messages',0),(2095672,1782398049,'2026-06-25 14:34:09','No messages',0),(2095673,1782398109,'2026-06-25 14:35:09','No messages',0),(2095674,1782398170,'2026-06-25 14:36:10','No messages',0),(2095675,1782398229,'2026-06-25 14:37:09','No messages',0),(2095676,1782398289,'2026-06-25 14:38:09','No messages',0),(2095677,1782398349,'2026-06-25 14:39:09','No messages',0),(2095678,1782398410,'2026-06-25 14:40:10','No messages',0),(2095679,1782398468,'2026-06-25 14:41:08','No messages',0),(2095680,1782398530,'2026-06-25 14:42:10','No messages',0),(2095681,1782398589,'2026-06-25 14:43:09','No messages',0),(2095682,1782398649,'2026-06-25 14:44:09','No messages',0),(2095683,1782398710,'2026-06-25 14:45:10','No messages',0),(2095684,1782398769,'2026-06-25 14:46:09','No messages',0),(2095685,1782398829,'2026-06-25 14:47:09','No messages',0),(2095686,1782398889,'2026-06-25 14:48:09','No messages',0),(2095687,1782398948,'2026-06-25 14:49:08','No messages',0),(2095688,1782399010,'2026-06-25 14:50:10','No messages',0),(2095689,1782399069,'2026-06-25 14:51:09','No messages',0),(2095690,1782399129,'2026-06-25 14:52:09','No messages',0),(2095691,1782399188,'2026-06-25 14:53:08','No messages',0),(2095692,1782399250,'2026-06-25 14:54:10','No messages',0),(2095693,1782399309,'2026-06-25 14:55:09','No messages',0),(2095694,1782399369,'2026-06-25 14:56:09','No messages',0),(2095695,1782399429,'2026-06-25 14:57:09','No messages',0),(2095696,1782399489,'2026-06-25 14:58:09','No messages',0),(2095697,1782399549,'2026-06-25 14:59:09','No messages',0),(2095698,1782399611,'2026-06-25 15:00:11','No messages',0),(2095699,1782399669,'2026-06-25 15:01:09','No messages',0),(2095700,1782399730,'2026-06-25 15:02:10','No messages',0),(2095701,1782399788,'2026-06-25 15:03:08','No messages',0),(2095702,1782399849,'2026-06-25 15:04:09','No messages',0),(2095703,1782399910,'2026-06-25 15:05:10','No messages',0),(2095704,1782399969,'2026-06-25 15:06:09','No messages',0),(2095705,1782400029,'2026-06-25 15:07:09','No messages',0),(2095706,1782400090,'2026-06-25 15:08:10','No messages',0),(2095707,1782400150,'2026-06-25 15:09:10','No messages',0),(2095708,1782400209,'2026-06-25 15:10:09','No messages',0),(2095709,1782400268,'2026-06-25 15:11:08','No messages',0),(2095710,1782400329,'2026-06-25 15:12:09','No messages',0),(2095711,1782400388,'2026-06-25 15:13:08','No messages',0),(2095712,1782400449,'2026-06-25 15:14:09','No messages',0),(2095713,1782400509,'2026-06-25 15:15:09','No messages',0),(2095714,1782400569,'2026-06-25 15:16:09','No messages',0),(2095715,1782400629,'2026-06-25 15:17:09','No messages',0),(2095716,1782400690,'2026-06-25 15:18:10','No messages',0),(2095717,1782400749,'2026-06-25 15:19:09','No messages',0),(2095718,1782400810,'2026-06-25 15:20:10','No messages',0),(2095719,1782400869,'2026-06-25 15:21:09','No messages',0),(2095720,1782400930,'2026-06-25 15:22:10','No messages',0),(2095721,1782400988,'2026-06-25 15:23:08','No messages',0),(2095722,1782401050,'2026-06-25 15:24:10','No messages',0),(2095723,1782401109,'2026-06-25 15:25:09','No messages',0),(2095724,1782401169,'2026-06-25 15:26:09','No messages',0),(2095725,1782401229,'2026-06-25 15:27:09','No messages',0),(2095726,1782401289,'2026-06-25 15:28:09','No messages',0),(2095727,1782401350,'2026-06-25 15:29:10','No messages',0),(2095728,1782401411,'2026-06-25 15:30:11','No messages',0),(2095729,1782401468,'2026-06-25 15:31:08','No messages',0),(2095730,1782401530,'2026-06-25 15:32:10','No messages',0),(2095731,1782401588,'2026-06-25 15:33:08','No messages',0),(2095732,1782401649,'2026-06-25 15:34:09','No messages',0),(2095733,1782401710,'2026-06-25 15:35:10','No messages',0),(2095734,1782401768,'2026-06-25 15:36:08','No messages',0),(2095735,1782401830,'2026-06-25 15:37:10','No messages',0),(2095736,1782401890,'2026-06-25 15:38:10','No messages',0),(2095737,1782401949,'2026-06-25 15:39:09','No messages',0),(2095738,1782402009,'2026-06-25 15:40:09','No messages',0),(2095739,1782402068,'2026-06-25 15:41:08','No messages',0),(2095740,1782402129,'2026-06-25 15:42:09','No messages',0),(2095741,1782402189,'2026-06-25 15:43:09','No messages',0),(2095742,1782402249,'2026-06-25 15:44:09','No messages',0),(2095743,1782402310,'2026-06-25 15:45:10','No messages',0),(2095744,1782402369,'2026-06-25 15:46:09','No messages',0),(2095745,1782402428,'2026-06-25 15:47:08','No messages',0),(2095746,1782402489,'2026-06-25 15:48:09','No messages',0),(2095747,1782402549,'2026-06-25 15:49:09','No messages',0),(2095748,1782402610,'2026-06-25 15:50:10','No messages',0),(2095749,1782402669,'2026-06-25 15:51:09','No messages',0),(2095750,1782402729,'2026-06-25 15:52:09','No messages',0),(2095751,1782402790,'2026-06-25 15:53:10','No messages',0),(2095752,1782402849,'2026-06-25 15:54:09','No messages',0),(2095753,1782402909,'2026-06-25 15:55:09','No messages',0),(2095754,1782402969,'2026-06-25 15:56:09','No messages',0),(2095755,1782403030,'2026-06-25 15:57:10','No messages',0),(2095756,1782403089,'2026-06-25 15:58:09','No messages',0),(2095757,1782403149,'2026-06-25 15:59:09','No messages',0),(2095758,1782403212,'2026-06-25 16:00:12','No messages',0),(2095759,1782403268,'2026-06-25 16:01:08','No messages',0),(2095760,1782403329,'2026-06-25 16:02:09','No messages',0),(2095761,1782403390,'2026-06-25 16:03:10','No messages',0),(2095762,1782403449,'2026-06-25 16:04:09','No messages',0),(2095763,1782403510,'2026-06-25 16:05:10','No messages',0),(2095764,1782403568,'2026-06-25 16:06:08','No messages',0),(2095765,1782403629,'2026-06-25 16:07:09','No messages',0),(2095766,1782403689,'2026-06-25 16:08:09','No messages',0),(2095767,1782403749,'2026-06-25 16:09:09','No messages',0),(2095768,1782403809,'2026-06-25 16:10:09','No messages',0),(2095769,1782403869,'2026-06-25 16:11:09','No messages',0),(2095770,1782403930,'2026-06-25 16:12:10','No messages',0),(2095771,1782403989,'2026-06-25 16:13:09','No messages',0),(2095772,1782404049,'2026-06-25 16:14:09','No messages',0),(2095773,1782404110,'2026-06-25 16:15:10','No messages',0),(2095774,1782404169,'2026-06-25 16:16:09','No messages',0),(2095775,1782404229,'2026-06-25 16:17:09','No messages',0),(2095776,1782404290,'2026-06-25 16:18:10','No messages',0),(2095777,1782404349,'2026-06-25 16:19:09','No messages',0),(2095778,1782404409,'2026-06-25 16:20:09','No messages',0),(2095779,1782404469,'2026-06-25 16:21:09','No messages',0),(2095780,1782404529,'2026-06-25 16:22:09','No messages',0),(2095781,1782404588,'2026-06-25 16:23:08','No messages',0),(2095782,1782404648,'2026-06-25 16:24:08','No messages',0),(2095783,1782404709,'2026-06-25 16:25:09','No messages',0),(2095784,1782404769,'2026-06-25 16:26:09','No messages',0),(2095785,1782404829,'2026-06-25 16:27:09','No messages',0),(2095786,1782404889,'2026-06-25 16:28:09','No messages',0),(2095787,1782404949,'2026-06-25 16:29:09','No messages',0),(2095788,1782405010,'2026-06-25 16:30:10','No messages',0),(2095789,1782405069,'2026-06-25 16:31:09','No messages',0),(2095790,1782405129,'2026-06-25 16:32:09','No messages',0),(2095791,1782405189,'2026-06-25 16:33:09','No messages',0),(2095792,1782405249,'2026-06-25 16:34:09','No messages',0),(2095793,1782405309,'2026-06-25 16:35:09','No messages',0),(2095794,1782405370,'2026-06-25 16:36:10','No messages',0),(2095795,1782405429,'2026-06-25 16:37:09','No messages',0),(2095796,1782405489,'2026-06-25 16:38:09','No messages',0),(2095797,1782405550,'2026-06-25 16:39:10','No messages',0),(2095798,1782405609,'2026-06-25 16:40:09','No messages',0),(2095799,1782405669,'2026-06-25 16:41:09','No messages',0),(2095800,1782405729,'2026-06-25 16:42:09','No messages',0),(2095801,1782405789,'2026-06-25 16:43:09','No messages',0),(2095802,1782405850,'2026-06-25 16:44:10','No messages',0),(2095803,1782405910,'2026-06-25 16:45:10','No messages',0),(2095804,1782405969,'2026-06-25 16:46:09','No messages',0),(2095805,1782406029,'2026-06-25 16:47:09','No messages',0),(2095806,1782406090,'2026-06-25 16:48:10','No messages',0),(2095807,1782406148,'2026-06-25 16:49:08','No messages',0),(2095808,1782406210,'2026-06-25 16:50:10','No messages',0),(2095809,1782406269,'2026-06-25 16:51:09','No messages',0),(2095810,1782406329,'2026-06-25 16:52:09','No messages',0),(2095811,1782406389,'2026-06-25 16:53:09','No messages',0),(2095812,1782406450,'2026-06-25 16:54:10','No messages',0),(2095813,1782406509,'2026-06-25 16:55:09','No messages',0),(2095814,1782406569,'2026-06-25 16:56:09','No messages',0),(2095815,1782406629,'2026-06-25 16:57:09','No messages',0),(2095816,1782406689,'2026-06-25 16:58:09','No messages',0),(2095817,1782406749,'2026-06-25 16:59:09','No messages',0),(2095818,1782406811,'2026-06-25 17:00:11','No messages',0),(2095819,1782406869,'2026-06-25 17:01:09','No messages',0),(2095820,1782406929,'2026-06-25 17:02:09','No messages',0),(2095821,1782406989,'2026-06-25 17:03:09','No messages',0),(2095822,1782407049,'2026-06-25 17:04:09','No messages',0),(2095823,1782407109,'2026-06-25 17:05:09','No messages',0),(2095824,1782407169,'2026-06-25 17:06:09','No messages',0),(2095825,1782407229,'2026-06-25 17:07:09','No messages',0),(2095826,1782407290,'2026-06-25 17:08:10','No messages',0),(2095827,1782407349,'2026-06-25 17:09:09','No messages',0),(2095828,1782407409,'2026-06-25 17:10:09','No messages',0),(2095829,1782407470,'2026-06-25 17:11:10','No messages',0),(2095830,1782407529,'2026-06-25 17:12:09','No messages',0),(2095831,1782407589,'2026-06-25 17:13:09','No messages',0),(2095832,1782407650,'2026-06-25 17:14:10','No messages',0),(2095833,1782407710,'2026-06-25 17:15:10','No messages',0),(2095834,1782407770,'2026-06-25 17:16:10','No messages',0),(2095835,1782407829,'2026-06-25 17:17:09','No messages',0),(2095836,1782407890,'2026-06-25 17:18:10','No messages',0),(2095837,1782407949,'2026-06-25 17:19:09','No messages',0),(2095838,1782408010,'2026-06-25 17:20:10','No messages',0),(2095839,1782408068,'2026-06-25 17:21:08','No messages',0),(2095840,1782408130,'2026-06-25 17:22:10','No messages',0),(2095841,1782408189,'2026-06-25 17:23:09','No messages',0),(2095842,1782408249,'2026-06-25 17:24:09','No messages',0),(2095843,1782408309,'2026-06-25 17:25:09','No messages',0),(2095844,1782408369,'2026-06-25 17:26:09','No messages',0),(2095845,1782408429,'2026-06-25 17:27:09','No messages',0),(2095846,1782408489,'2026-06-25 17:28:09','No messages',0),(2095847,1782408549,'2026-06-25 17:29:09','No messages',0),(2095848,1782408611,'2026-06-25 17:30:11','No messages',0),(2095849,1782408669,'2026-06-25 17:31:09','No messages',0),(2095850,1782408729,'2026-06-25 17:32:09','No messages',0),(2095851,1782408789,'2026-06-25 17:33:09','No messages',0),(2095852,1782408849,'2026-06-25 17:34:09','No messages',0),(2095853,1782408909,'2026-06-25 17:35:09','No messages',0),(2095854,1782408969,'2026-06-25 17:36:09','No messages',0),(2095855,1782409029,'2026-06-25 17:37:09','No messages',0),(2095856,1782409089,'2026-06-25 17:38:09','No messages',0),(2095857,1782409150,'2026-06-25 17:39:10','No messages',0),(2095858,1782409210,'2026-06-25 17:40:10','No messages',0),(2095859,1782409269,'2026-06-25 17:41:09','No messages',0),(2095860,1782409330,'2026-06-25 17:42:10','No messages',0),(2095861,1782409388,'2026-06-25 17:43:08','No messages',0),(2095862,1782409450,'2026-06-25 17:44:10','No messages',0),(2095863,1782409510,'2026-06-25 17:45:10','No messages',0),(2095864,1782409569,'2026-06-25 17:46:09','No messages',0),(2095865,1782409629,'2026-06-25 17:47:09','No messages',0),(2095866,1782409689,'2026-06-25 17:48:09','No messages',0),(2095867,1782409749,'2026-06-25 17:49:09','No messages',0),(2095868,1782409810,'2026-06-25 17:50:10','No messages',0),(2095869,1782409869,'2026-06-25 17:51:09','No messages',0),(2095870,1782409929,'2026-06-25 17:52:09','No messages',0),(2095871,1782409989,'2026-06-25 17:53:09','No messages',0),(2095872,1782410049,'2026-06-25 17:54:09','No messages',0),(2095873,1782410109,'2026-06-25 17:55:09','No messages',0),(2095874,1782410169,'2026-06-25 17:56:09','No messages',0),(2095875,1782410229,'2026-06-25 17:57:09','No messages',0),(2095876,1782410289,'2026-06-25 17:58:09','No messages',0),(2095877,1782410349,'2026-06-25 17:59:09','No messages',0),(2095878,1782410411,'2026-06-25 18:00:11','No messages',0),(2095879,1782410469,'2026-06-25 18:01:09','No messages',0),(2095880,1782410529,'2026-06-25 18:02:09','No messages',0),(2095881,1782410589,'2026-06-25 18:03:09','No messages',0),(2095882,1782410649,'2026-06-25 18:04:09','No messages',0),(2095883,1782410709,'2026-06-25 18:05:09','No messages',0),(2095884,1782410769,'2026-06-25 18:06:09','No messages',0),(2095885,1782410829,'2026-06-25 18:07:09','No messages',0),(2095886,1782410888,'2026-06-25 18:08:08','No messages',0),(2095887,1782410950,'2026-06-25 18:09:10','No messages',0),(2095888,1782411010,'2026-06-25 18:10:10','No messages',0),(2095889,1782411069,'2026-06-25 18:11:09','No messages',0),(2095890,1782411129,'2026-06-25 18:12:09','No messages',0),(2095891,1782411189,'2026-06-25 18:13:09','No messages',0),(2095892,1782411249,'2026-06-25 18:14:09','No messages',0),(2095893,1782411310,'2026-06-25 18:15:10','No messages',0),(2095894,1782411369,'2026-06-25 18:16:09','No messages',0),(2095895,1782411429,'2026-06-25 18:17:09','No messages',0),(2095896,1782411489,'2026-06-25 18:18:09','No messages',0),(2095897,1782411549,'2026-06-25 18:19:09','No messages',0),(2095898,1782411610,'2026-06-25 18:20:10','No messages',0),(2095899,1782411669,'2026-06-25 18:21:09','No messages',0),(2095900,1782411729,'2026-06-25 18:22:09','No messages',0),(2095901,1782411788,'2026-06-25 18:23:08','No messages',0),(2095902,1782411849,'2026-06-25 18:24:09','No messages',0),(2095903,1782411909,'2026-06-25 18:25:09','No messages',0),(2095904,1782411969,'2026-06-25 18:26:09','No messages',0),(2095905,1782412029,'2026-06-25 18:27:09','No messages',0),(2095906,1782412089,'2026-06-25 18:28:09','No messages',0),(2095907,1782412148,'2026-06-25 18:29:08','No messages',0),(2095908,1782412210,'2026-06-25 18:30:10','No messages',0),(2095909,1782412269,'2026-06-25 18:31:09','No messages',0),(2095910,1782412329,'2026-06-25 18:32:09','No messages',0),(2095911,1782412389,'2026-06-25 18:33:09','No messages',0),(2095912,1782412449,'2026-06-25 18:34:09','No messages',0),(2095913,1782412510,'2026-06-25 18:35:10','No messages',0),(2095914,1782412569,'2026-06-25 18:36:09','No messages',0),(2095915,1782412629,'2026-06-25 18:37:09','No messages',0),(2095916,1782412689,'2026-06-25 18:38:09','No messages',0),(2095917,1782412749,'2026-06-25 18:39:09','No messages',0),(2095918,1782412809,'2026-06-25 18:40:09','No messages',0),(2095919,1782412868,'2026-06-25 18:41:08','No messages',0),(2095920,1782412930,'2026-06-25 18:42:10','No messages',0),(2095921,1782412989,'2026-06-25 18:43:09','No messages',0),(2095922,1782413049,'2026-06-25 18:44:09','No messages',0),(2095923,1782413110,'2026-06-25 18:45:10','No messages',0),(2095924,1782413169,'2026-06-25 18:46:09','No messages',0),(2095925,1782413229,'2026-06-25 18:47:09','No messages',0),(2095926,1782413290,'2026-06-25 18:48:10','No messages',0),(2095927,1782413349,'2026-06-25 18:49:09','No messages',0),(2095928,1782413410,'2026-06-25 18:50:10','No messages',0),(2095929,1782413469,'2026-06-25 18:51:09','No messages',0),(2095930,1782413529,'2026-06-25 18:52:09','No messages',0),(2095931,1782413588,'2026-06-25 18:53:08','No messages',0),(2095932,1782413650,'2026-06-25 18:54:10','No messages',0),(2095933,1782413709,'2026-06-25 18:55:09','No messages',0),(2095934,1782413769,'2026-06-25 18:56:09','No messages',0),(2095935,1782413829,'2026-06-25 18:57:09','No messages',0),(2095936,1782413889,'2026-06-25 18:58:09','No messages',0),(2095937,1782413949,'2026-06-25 18:59:09','No messages',0),(2095938,1782414013,'2026-06-25 19:00:13','No messages',0),(2095939,1782414069,'2026-06-25 19:01:09','No messages',0),(2095940,1782414129,'2026-06-25 19:02:09','No messages',0),(2095941,1782414189,'2026-06-25 19:03:09','No messages',0),(2095942,1782414249,'2026-06-25 19:04:09','No messages',0),(2095943,1782414310,'2026-06-25 19:05:10','No messages',0),(2095944,1782414369,'2026-06-25 19:06:09','No messages',0),(2095945,1782414429,'2026-06-25 19:07:09','No messages',0),(2095946,1782414489,'2026-06-25 19:08:09','No messages',0),(2095947,1782414549,'2026-06-25 19:09:09','No messages',0),(2095948,1782414610,'2026-06-25 19:10:10','No messages',0),(2095949,1782414669,'2026-06-25 19:11:09','No messages',0),(2095950,1782414730,'2026-06-25 19:12:10','No messages',0),(2095951,1782414789,'2026-06-25 19:13:09','No messages',0),(2095952,1782414850,'2026-06-25 19:14:10','No messages',0),(2095953,1782414911,'2026-06-25 19:15:11','No messages',0),(2095954,1782414969,'2026-06-25 19:16:09','No messages',0),(2095955,1782415029,'2026-06-25 19:17:09','No messages',0),(2095956,1782415089,'2026-06-25 19:18:09','No messages',0),(2095957,1782415149,'2026-06-25 19:19:09','No messages',0),(2095958,1782415210,'2026-06-25 19:20:10','No messages',0),(2095959,1782415268,'2026-06-25 19:21:08','No messages',0),(2095960,1782415330,'2026-06-25 19:22:10','No messages',0),(2095961,1782415390,'2026-06-25 19:23:10','No messages',0),(2095962,1782415449,'2026-06-25 19:24:09','No messages',0),(2095963,1782415510,'2026-06-25 19:25:10','No messages',0),(2095964,1782415570,'2026-06-25 19:26:10','No messages',0),(2095965,1782415630,'2026-06-25 19:27:10','No messages',0),(2095966,1782415689,'2026-06-25 19:28:09','No messages',0),(2095967,1782415749,'2026-06-25 19:29:09','No messages',0),(2095968,1782415811,'2026-06-25 19:30:11','No messages',0),(2095969,1782415869,'2026-06-25 19:31:09','No messages',0),(2095970,1782415929,'2026-06-25 19:32:09','No messages',0),(2095971,1782415990,'2026-06-25 19:33:10','No messages',0),(2095972,1782416050,'2026-06-25 19:34:10','No messages',0),(2095973,1782416109,'2026-06-25 19:35:09','No messages',0),(2095974,1782416170,'2026-06-25 19:36:10','No messages',0),(2095975,1782416229,'2026-06-25 19:37:09','No messages',0),(2095976,1782416290,'2026-06-25 19:38:10','No messages',0),(2095977,1782416349,'2026-06-25 19:39:09','No messages',0),(2095978,1782416410,'2026-06-25 19:40:10','No messages',0),(2095979,1782416469,'2026-06-25 19:41:09','No messages',0),(2095980,1782416530,'2026-06-25 19:42:10','No messages',0),(2095981,1782416590,'2026-06-25 19:43:10','No messages',0),(2095982,1782416650,'2026-06-25 19:44:10','No messages',0),(2095983,1782416710,'2026-06-25 19:45:10','No messages',0),(2095984,1782416770,'2026-06-25 19:46:10','No messages',0),(2095985,1782416829,'2026-06-25 19:47:09','No messages',0),(2095986,1782416890,'2026-06-25 19:48:10','No messages',0),(2095987,1782416950,'2026-06-25 19:49:10','No messages',0),(2095988,1782417010,'2026-06-25 19:50:10','No messages',0),(2095989,1782417069,'2026-06-25 19:51:09','No messages',0),(2095990,1782417130,'2026-06-25 19:52:10','No messages',0),(2095991,1782417189,'2026-06-25 19:53:09','No messages',0),(2095992,1782417249,'2026-06-25 19:54:09','No messages',0),(2095993,1782417310,'2026-06-25 19:55:10','No messages',0),(2095994,1782417370,'2026-06-25 19:56:10','No messages',0),(2095995,1782417430,'2026-06-25 19:57:10','No messages',0),(2095996,1782417489,'2026-06-25 19:58:09','No messages',0),(2095997,1782417549,'2026-06-25 19:59:09','No messages',0),(2095998,1782417612,'2026-06-25 20:00:12','No messages',0),(2095999,1782417669,'2026-06-25 20:01:09','No messages',0),(2096000,1782417730,'2026-06-25 20:02:10','No messages',0),(2096001,1782417790,'2026-06-25 20:03:10','No messages',0),(2096002,1782417850,'2026-06-25 20:04:10','No messages',0),(2096003,1782417911,'2026-06-25 20:05:11','No messages',0),(2096004,1782417970,'2026-06-25 20:06:10','No messages',0),(2096005,1782418029,'2026-06-25 20:07:09','No messages',0),(2096006,1782418090,'2026-06-25 20:08:10','No messages',0),(2096007,1782418150,'2026-06-25 20:09:10','No messages',0),(2096008,1782418210,'2026-06-25 20:10:10','No messages',0),(2096009,1782418269,'2026-06-25 20:11:09','No messages',0),(2096010,1782418330,'2026-06-25 20:12:10','No messages',0),(2096011,1782418390,'2026-06-25 20:13:10','No messages',0),(2096012,1782418449,'2026-06-25 20:14:09','No messages',0),(2096013,1782418511,'2026-06-25 20:15:11','No messages',0),(2096014,1782418570,'2026-06-25 20:16:10','No messages',0),(2096015,1782418629,'2026-06-25 20:17:09','No messages',0),(2096016,1782418690,'2026-06-25 20:18:10','No messages',0),(2096017,1782418749,'2026-06-25 20:19:09','No messages',0),(2096018,1782418810,'2026-06-25 20:20:10','No messages',0),(2096019,1782418869,'2026-06-25 20:21:09','No messages',0),(2096020,1782418930,'2026-06-25 20:22:10','No messages',0),(2096021,1782418989,'2026-06-25 20:23:09','No messages',0),(2096022,1782419049,'2026-06-25 20:24:09','No messages',0),(2096023,1782419109,'2026-06-25 20:25:09','No messages',0),(2096024,1782419169,'2026-06-25 20:26:09','No messages',0),(2096025,1782419230,'2026-06-25 20:27:10','No messages',0),(2096026,1782419290,'2026-06-25 20:28:10','No messages',0),(2096027,1782419349,'2026-06-25 20:29:09','No messages',0),(2096028,1782419410,'2026-06-25 20:30:10','No messages',0),(2096029,1782419469,'2026-06-25 20:31:09','No messages',0),(2096030,1782419529,'2026-06-25 20:32:09','No messages',0),(2096031,1782419589,'2026-06-25 20:33:09','No messages',0),(2096032,1782419650,'2026-06-25 20:34:10','No messages',0),(2096033,1782419710,'2026-06-25 20:35:10','No messages',0),(2096034,1782419770,'2026-06-25 20:36:10','No messages',0),(2096035,1782419830,'2026-06-25 20:37:10','No messages',0),(2096036,1782419890,'2026-06-25 20:38:10','No messages',0),(2096037,1782419949,'2026-06-25 20:39:09','No messages',0),(2096038,1782420010,'2026-06-25 20:40:10','No messages',0),(2096039,1782420069,'2026-06-25 20:41:09','No messages',0),(2096040,1782420130,'2026-06-25 20:42:10','No messages',0),(2096041,1782420189,'2026-06-25 20:43:09','No messages',0),(2096042,1782420249,'2026-06-25 20:44:09','No messages',0),(2096043,1782420310,'2026-06-25 20:45:10','No messages',0),(2096044,1782420370,'2026-06-25 20:46:10','No messages',0),(2096045,1782420429,'2026-06-25 20:47:09','No messages',0),(2096046,1782420489,'2026-06-25 20:48:09','No messages',0),(2096047,1782420550,'2026-06-25 20:49:10','No messages',0),(2096048,1782420610,'2026-06-25 20:50:10','No messages',0),(2096049,1782420669,'2026-06-25 20:51:09','No messages',0),(2096050,1782420730,'2026-06-25 20:52:10','No messages',0),(2096051,1782420790,'2026-06-25 20:53:10','No messages',0),(2096052,1782420849,'2026-06-25 20:54:09','No messages',0),(2096053,1782420910,'2026-06-25 20:55:10','No messages',0),(2096054,1782420970,'2026-06-25 20:56:10','No messages',0),(2096055,1782421030,'2026-06-25 20:57:10','No messages',0),(2096056,1782421089,'2026-06-25 20:58:09','No messages',0),(2096057,1782421150,'2026-06-25 20:59:10','No messages',0),(2096058,1782421211,'2026-06-25 21:00:11','No messages',0),(2096059,1782421269,'2026-06-25 21:01:09','No messages',0),(2096060,1782421329,'2026-06-25 21:02:09','No messages',0),(2096061,1782421389,'2026-06-25 21:03:09','No messages',0),(2096062,1782421449,'2026-06-25 21:04:09','No messages',0),(2096063,1782421511,'2026-06-25 21:05:11','No messages',0),(2096064,1782421570,'2026-06-25 21:06:10','No messages',0),(2096065,1782421629,'2026-06-25 21:07:09','No messages',0),(2096066,1782421690,'2026-06-25 21:08:10','No messages',0),(2096067,1782421750,'2026-06-25 21:09:10','No messages',0),(2096068,1782421810,'2026-06-25 21:10:10','No messages',0),(2096069,1782421869,'2026-06-25 21:11:09','No messages',0),(2096070,1782421930,'2026-06-25 21:12:10','No messages',0),(2096071,1782421990,'2026-06-25 21:13:10','No messages',0),(2096072,1782422050,'2026-06-25 21:14:10','No messages',0),(2096073,1782422110,'2026-06-25 21:15:10','No messages',0),(2096074,1782422170,'2026-06-25 21:16:10','No messages',0),(2096075,1782422229,'2026-06-25 21:17:09','No messages',0),(2096076,1782422290,'2026-06-25 21:18:10','No messages',0),(2096077,1782422350,'2026-06-25 21:19:10','No messages',0),(2096078,1782422410,'2026-06-25 21:20:10','No messages',0),(2096079,1782422469,'2026-06-25 21:21:09','No messages',0),(2096080,1782422529,'2026-06-25 21:22:09','No messages',0),(2096081,1782422589,'2026-06-25 21:23:09','No messages',0),(2096082,1782422650,'2026-06-25 21:24:10','No messages',0),(2096083,1782422710,'2026-06-25 21:25:10','No messages',0),(2096084,1782422769,'2026-06-25 21:26:09','No messages',0),(2096085,1782422829,'2026-06-25 21:27:09','No messages',0),(2096086,1782422889,'2026-06-25 21:28:09','No messages',0),(2096087,1782422949,'2026-06-25 21:29:09','No messages',0),(2096088,1782423011,'2026-06-25 21:30:11','No messages',0),(2096089,1782423069,'2026-06-25 21:31:09','No messages',0),(2096090,1782423130,'2026-06-25 21:32:10','No messages',0),(2096091,1782423190,'2026-06-25 21:33:10','No messages',0),(2096092,1782423250,'2026-06-25 21:34:10','No messages',0),(2096093,1782423309,'2026-06-25 21:35:09','No messages',0),(2096094,1782423369,'2026-06-25 21:36:09','No messages',0),(2096095,1782423430,'2026-06-25 21:37:10','No messages',0),(2096096,1782423490,'2026-06-25 21:38:10','No messages',0),(2096097,1782423549,'2026-06-25 21:39:09','No messages',0),(2096098,1782423610,'2026-06-25 21:40:10','No messages',0),(2096099,1782423668,'2026-06-25 21:41:08','No messages',0),(2096100,1782423729,'2026-06-25 21:42:09','No messages',0),(2096101,1782423789,'2026-06-25 21:43:09','No messages',0),(2096102,1782423850,'2026-06-25 21:44:10','No messages',0),(2096103,1782423910,'2026-06-25 21:45:10','No messages',0),(2096104,1782423970,'2026-06-25 21:46:10','No messages',0),(2096105,1782424029,'2026-06-25 21:47:09','No messages',0),(2096106,1782424090,'2026-06-25 21:48:10','No messages',0),(2096107,1782424150,'2026-06-25 21:49:10','No messages',0),(2096108,1782424209,'2026-06-25 21:50:09','No messages',0),(2096109,1782424269,'2026-06-25 21:51:09','No messages',0),(2096110,1782424329,'2026-06-25 21:52:09','No messages',0),(2096111,1782424389,'2026-06-25 21:53:09','No messages',0),(2096112,1782424450,'2026-06-25 21:54:10','No messages',0),(2096113,1782424510,'2026-06-25 21:55:10','No messages',0),(2096114,1782424569,'2026-06-25 21:56:09','No messages',0),(2096115,1782424630,'2026-06-25 21:57:10','No messages',0),(2096116,1782424690,'2026-06-25 21:58:10','No messages',0),(2096117,1782424749,'2026-06-25 21:59:09','No messages',0),(2096118,1782424812,'2026-06-25 22:00:12','No messages',0),(2096119,1782424869,'2026-06-25 22:01:09','No messages',0),(2096120,1782424929,'2026-06-25 22:02:09','No messages',0),(2096121,1782424989,'2026-06-25 22:03:09','No messages',0),(2096122,1782425050,'2026-06-25 22:04:10','No messages',0),(2096123,1782425110,'2026-06-25 22:05:10','No messages',0),(2096124,1782425169,'2026-06-25 22:06:09','No messages',0),(2096125,1782425229,'2026-06-25 22:07:09','No messages',0),(2096126,1782425290,'2026-06-25 22:08:10','No messages',0),(2096127,1782425350,'2026-06-25 22:09:10','No messages',0),(2096128,1782425410,'2026-06-25 22:10:10','No messages',0),(2096129,1782425468,'2026-06-25 22:11:08','No messages',0),(2096130,1782425529,'2026-06-25 22:12:09','No messages',0),(2096131,1782425588,'2026-06-25 22:13:08','No messages',0),(2096132,1782425650,'2026-06-25 22:14:10','No messages',0),(2096133,1782425711,'2026-06-25 22:15:11','No messages',0),(2096134,1782425770,'2026-06-25 22:16:10','No messages',0),(2096135,1782425829,'2026-06-25 22:17:09','No messages',0),(2096136,1782425890,'2026-06-25 22:18:10','No messages',0),(2096137,1782425949,'2026-06-25 22:19:09','No messages',0),(2096138,1782426010,'2026-06-25 22:20:10','No messages',0),(2096139,1782426069,'2026-06-25 22:21:09','No messages',0),(2096140,1782426129,'2026-06-25 22:22:09','No messages',0),(2096141,1782426189,'2026-06-25 22:23:09','No messages',0),(2096142,1782426250,'2026-06-25 22:24:10','No messages',0),(2096143,1782426310,'2026-06-25 22:25:10','No messages',0),(2096144,1782426369,'2026-06-25 22:26:09','No messages',0),(2096145,1782426429,'2026-06-25 22:27:09','No messages',0),(2096146,1782426489,'2026-06-25 22:28:09','No messages',0),(2096147,1782426548,'2026-06-25 22:29:08','No messages',0),(2096148,1782426612,'2026-06-25 22:30:12','No messages',0),(2096149,1782426669,'2026-06-25 22:31:09','No messages',0),(2096150,1782426729,'2026-06-25 22:32:09','No messages',0),(2096151,1782426789,'2026-06-25 22:33:09','No messages',0),(2096152,1782426850,'2026-06-25 22:34:10','No messages',0),(2096153,1782426912,'2026-06-25 22:35:12','No messages',0),(2096154,1782426971,'2026-06-25 22:36:11','No messages',0),(2096155,1782427030,'2026-06-25 22:37:10','No messages',0),(2096156,1782427090,'2026-06-25 22:38:10','No messages',0),(2096157,1782427150,'2026-06-25 22:39:10','No messages',0),(2096158,1782427210,'2026-06-25 22:40:10','No messages',0),(2096159,1782427269,'2026-06-25 22:41:09','No messages',0),(2096160,1782427329,'2026-06-25 22:42:09','No messages',0),(2096161,1782427389,'2026-06-25 22:43:09','No messages',0),(2096162,1782427449,'2026-06-25 22:44:09','No messages',0),(2096163,1782427510,'2026-06-25 22:45:10','No messages',0),(2096164,1782427570,'2026-06-25 22:46:10','No messages',0),(2096165,1782427630,'2026-06-25 22:47:10','No messages',0),(2096166,1782427690,'2026-06-25 22:48:10','No messages',0),(2096167,1782427748,'2026-06-25 22:49:08','No messages',0),(2096168,1782427811,'2026-06-25 22:50:11','No messages',0),(2096169,1782427870,'2026-06-25 22:51:10','No messages',0),(2096170,1782427930,'2026-06-25 22:52:10','No messages',0),(2096171,1782427990,'2026-06-25 22:53:10','No messages',0),(2096172,1782428050,'2026-06-25 22:54:10','No messages',0),(2096173,1782428110,'2026-06-25 22:55:10','No messages',0),(2096174,1782428169,'2026-06-25 22:56:09','No messages',0),(2096175,1782428230,'2026-06-25 22:57:10','No messages',0),(2096176,1782428290,'2026-06-25 22:58:10','No messages',0),(2096177,1782428349,'2026-06-25 22:59:09','No messages',0),(2096178,1782428411,'2026-06-25 23:00:11','No messages',0),(2096179,1782428469,'2026-06-25 23:01:09','No messages',0),(2096180,1782428530,'2026-06-25 23:02:10','No messages',0),(2096181,1782428589,'2026-06-25 23:03:09','No messages',0),(2096182,1782428650,'2026-06-25 23:04:10','No messages',0),(2096183,1782428710,'2026-06-25 23:05:10','No messages',0),(2096184,1782428770,'2026-06-25 23:06:10','No messages',0),(2096185,1782428829,'2026-06-25 23:07:09','No messages',0),(2096186,1782428890,'2026-06-25 23:08:10','No messages',0),(2096187,1782428950,'2026-06-25 23:09:10','No messages',0),(2096188,1782429010,'2026-06-25 23:10:10','No messages',0),(2096189,1782429069,'2026-06-25 23:11:09','No messages',0),(2096190,1782429129,'2026-06-25 23:12:09','No messages',0),(2096191,1782429189,'2026-06-25 23:13:09','No messages',0),(2096192,1782429249,'2026-06-25 23:14:09','No messages',0),(2096193,1782429311,'2026-06-25 23:15:11','No messages',0),(2096194,1782429369,'2026-06-25 23:16:09','No messages',0),(2096195,1782429429,'2026-06-25 23:17:09','No messages',0),(2096196,1782429490,'2026-06-25 23:18:10','No messages',0),(2096197,1782429549,'2026-06-25 23:19:09','No messages',0),(2096198,1782429610,'2026-06-25 23:20:10','No messages',0),(2096199,1782429669,'2026-06-25 23:21:09','No messages',0),(2096200,1782429730,'2026-06-25 23:22:10','No messages',0),(2096201,1782429789,'2026-06-25 23:23:09','No messages',0),(2096202,1782429850,'2026-06-25 23:24:10','No messages',0),(2096203,1782429910,'2026-06-25 23:25:10','No messages',0),(2096204,1782429972,'2026-06-25 23:26:12','No messages',0),(2096205,1782430029,'2026-06-25 23:27:09','No messages',0),(2096206,1782430089,'2026-06-25 23:28:09','No messages',0),(2096207,1782430150,'2026-06-25 23:29:10','No messages',0),(2096208,1782430211,'2026-06-25 23:30:11','No messages',0),(2096209,1782430269,'2026-06-25 23:31:09','No messages',0),(2096210,1782430329,'2026-06-25 23:32:09','No messages',0),(2096211,1782430389,'2026-06-25 23:33:09','No messages',0),(2096212,1782430450,'2026-06-25 23:34:10','No messages',0),(2096213,1782430510,'2026-06-25 23:35:10','No messages',0),(2096214,1782430569,'2026-06-25 23:36:09','No messages',0),(2096215,1782430629,'2026-06-25 23:37:09','No messages',0),(2096216,1782430690,'2026-06-25 23:38:10','No messages',0),(2096217,1782430750,'2026-06-25 23:39:10','No messages',0),(2096218,1782430809,'2026-06-25 23:40:09','No messages',0),(2096219,1782430869,'2026-06-25 23:41:09','No messages',0),(2096220,1782430930,'2026-06-25 23:42:10','No messages',0),(2096221,1782430990,'2026-06-25 23:43:10','No messages',0),(2096222,1782431050,'2026-06-25 23:44:10','No messages',0),(2096223,1782431110,'2026-06-25 23:45:10','No messages',0),(2096224,1782431169,'2026-06-25 23:46:09','No messages',0),(2096225,1782431229,'2026-06-25 23:47:09','No messages',0),(2096226,1782431290,'2026-06-25 23:48:10','No messages',0),(2096227,1782431349,'2026-06-25 23:49:09','No messages',0),(2096228,1782431410,'2026-06-25 23:50:10','No messages',0),(2096229,1782431469,'2026-06-25 23:51:09','No messages',0),(2096230,1782431530,'2026-06-25 23:52:10','No messages',0),(2096231,1782431590,'2026-06-25 23:53:10','No messages',0),(2096232,1782431650,'2026-06-25 23:54:10','No messages',0),(2096233,1782431710,'2026-06-25 23:55:10','No messages',0),(2096234,1782431770,'2026-06-25 23:56:10','No messages',0),(2096235,1782431829,'2026-06-25 23:57:09','No messages',0),(2096236,1782431890,'2026-06-25 23:58:10','No messages',0),(2096237,1782431949,'2026-06-25 23:59:09','No messages',0),(2096238,1782432011,'2026-06-26 00:00:11','No messages',0),(2096239,1782432069,'2026-06-26 00:01:09','No messages',0),(2096240,1782432129,'2026-06-26 00:02:09','No messages',0),(2096241,1782432188,'2026-06-26 00:03:08','No messages',0),(2096242,1782432250,'2026-06-26 00:04:10','No messages',0),(2096243,1782432310,'2026-06-26 00:05:10','No messages',0),(2096244,1782432370,'2026-06-26 00:06:10','No messages',0),(2096245,1782432429,'2026-06-26 00:07:09','No messages',0),(2096246,1782432490,'2026-06-26 00:08:10','No messages',0),(2096247,1782432549,'2026-06-26 00:09:09','No messages',0),(2096248,1782432610,'2026-06-26 00:10:10','No messages',0),(2096249,1782432669,'2026-06-26 00:11:09','No messages',0),(2096250,1782432730,'2026-06-26 00:12:10','No messages',0),(2096251,1782432789,'2026-06-26 00:13:09','No messages',0),(2096252,1782432850,'2026-06-26 00:14:10','No messages',0),(2096253,1782432910,'2026-06-26 00:15:10','No messages',0),(2096254,1782432969,'2026-06-26 00:16:09','No messages',0),(2096255,1782433029,'2026-06-26 00:17:09','No messages',0),(2096256,1782433089,'2026-06-26 00:18:09','No messages',0),(2096257,1782433149,'2026-06-26 00:19:09','No messages',0),(2096258,1782433210,'2026-06-26 00:20:10','No messages',0),(2096259,1782433269,'2026-06-26 00:21:09','No messages',0),(2096260,1782433329,'2026-06-26 00:22:09','No messages',0),(2096261,1782433390,'2026-06-26 00:23:10','No messages',0),(2096262,1782433450,'2026-06-26 00:24:10','No messages',0),(2096263,1782433509,'2026-06-26 00:25:09','No messages',0),(2096264,1782433570,'2026-06-26 00:26:10','No messages',0),(2096265,1782433630,'2026-06-26 00:27:10','No messages',0),(2096266,1782433690,'2026-06-26 00:28:10','No messages',0),(2096267,1782433749,'2026-06-26 00:29:09','No messages',0),(2096268,1782433811,'2026-06-26 00:30:11','No messages',0),(2096269,1782433869,'2026-06-26 00:31:09','No messages',0),(2096270,1782433929,'2026-06-26 00:32:09','No messages',0),(2096271,1782433989,'2026-06-26 00:33:09','No messages',0),(2096272,1782434050,'2026-06-26 00:34:10','No messages',0),(2096273,1782434110,'2026-06-26 00:35:10','No messages',0),(2096274,1782434169,'2026-06-26 00:36:09','No messages',0),(2096275,1782434229,'2026-06-26 00:37:09','No messages',0),(2096276,1782434290,'2026-06-26 00:38:10','No messages',0),(2096277,1782434350,'2026-06-26 00:39:10','No messages',0),(2096278,1782434410,'2026-06-26 00:40:10','No messages',0),(2096279,1782434469,'2026-06-26 00:41:09','No messages',0),(2096280,1782434529,'2026-06-26 00:42:09','No messages',0),(2096281,1782434588,'2026-06-26 00:43:08','No messages',0),(2096282,1782434650,'2026-06-26 00:44:10','No messages',0),(2096283,1782434711,'2026-06-26 00:45:11','No messages',0),(2096284,1782434769,'2026-06-26 00:46:09','No messages',0),(2096285,1782434829,'2026-06-26 00:47:09','No messages',0),(2096286,1782434890,'2026-06-26 00:48:10','No messages',0),(2096287,1782434949,'2026-06-26 00:49:09','No messages',0),(2096288,1782435010,'2026-06-26 00:50:10','No messages',0),(2096289,1782435069,'2026-06-26 00:51:09','No messages',0),(2096290,1782435130,'2026-06-26 00:52:10','No messages',0),(2096291,1782435189,'2026-06-26 00:53:09','No messages',0),(2096292,1782435249,'2026-06-26 00:54:09','No messages',0),(2096293,1782435309,'2026-06-26 00:55:09','No messages',0),(2096294,1782435369,'2026-06-26 00:56:09','No messages',0),(2096295,1782435429,'2026-06-26 00:57:09','No messages',0),(2096296,1782435489,'2026-06-26 00:58:09','No messages',0),(2096297,1782435550,'2026-06-26 00:59:10','No messages',0),(2096298,1782435612,'2026-06-26 01:00:12','No messages',0),(2096299,1782435670,'2026-06-26 01:01:10','No messages',0),(2096300,1782435730,'2026-06-26 01:02:10','No messages',0),(2096301,1782435789,'2026-06-26 01:03:09','No messages',0),(2096302,1782435850,'2026-06-26 01:04:10','No messages',0),(2096303,1782435910,'2026-06-26 01:05:10','No messages',0),(2096304,1782435970,'2026-06-26 01:06:10','No messages',0),(2096305,1782436029,'2026-06-26 01:07:09','No messages',0),(2096306,1782436090,'2026-06-26 01:08:10','No messages',0),(2096307,1782436150,'2026-06-26 01:09:10','No messages',0),(2096308,1782436210,'2026-06-26 01:10:10','No messages',0),(2096309,1782436269,'2026-06-26 01:11:09','No messages',0),(2096310,1782436330,'2026-06-26 01:12:10','No messages',0),(2096311,1782436389,'2026-06-26 01:13:09','No messages',0),(2096312,1782436450,'2026-06-26 01:14:10','No messages',0),(2096313,1782436511,'2026-06-26 01:15:11','No messages',0),(2096314,1782436570,'2026-06-26 01:16:10','No messages',0),(2096315,1782436628,'2026-06-26 01:17:08','No messages',0),(2096316,1782436689,'2026-06-26 01:18:09','No messages',0),(2096317,1782436749,'2026-06-26 01:19:09','No messages',0),(2096318,1782436810,'2026-06-26 01:20:10','No messages',0),(2096319,1782436868,'2026-06-26 01:21:08','No messages',0),(2096320,1782436930,'2026-06-26 01:22:10','No messages',0),(2096321,1782436989,'2026-06-26 01:23:09','No messages',0),(2096322,1782437050,'2026-06-26 01:24:10','No messages',0),(2096323,1782437110,'2026-06-26 01:25:10','No messages',0),(2096324,1782437170,'2026-06-26 01:26:10','No messages',0),(2096325,1782437230,'2026-06-26 01:27:10','No messages',0),(2096326,1782437290,'2026-06-26 01:28:10','No messages',0),(2096327,1782437349,'2026-06-26 01:29:09','No messages',0),(2096328,1782437411,'2026-06-26 01:30:11','No messages',0),(2096329,1782437470,'2026-06-26 01:31:10','No messages',0),(2096330,1782437530,'2026-06-26 01:32:10','No messages',0),(2096331,1782437588,'2026-06-26 01:33:08','No messages',0),(2096332,1782437650,'2026-06-26 01:34:10','No messages',0),(2096333,1782437710,'2026-06-26 01:35:10','No messages',0),(2096334,1782437770,'2026-06-26 01:36:10','No messages',0),(2096335,1782437829,'2026-06-26 01:37:09','No messages',0),(2096336,1782437889,'2026-06-26 01:38:09','No messages',0),(2096337,1782437949,'2026-06-26 01:39:09','No messages',0),(2096338,1782438010,'2026-06-26 01:40:10','No messages',0),(2096339,1782438069,'2026-06-26 01:41:09','No messages',0),(2096340,1782438130,'2026-06-26 01:42:10','No messages',0),(2096341,1782438189,'2026-06-26 01:43:09','No messages',0),(2096342,1782438250,'2026-06-26 01:44:10','No messages',0),(2096343,1782438310,'2026-06-26 01:45:10','No messages',0),(2096344,1782438370,'2026-06-26 01:46:10','No messages',0),(2096345,1782438429,'2026-06-26 01:47:09','No messages',0),(2096346,1782438490,'2026-06-26 01:48:10','No messages',0),(2096347,1782438549,'2026-06-26 01:49:09','No messages',0),(2096348,1782438610,'2026-06-26 01:50:10','No messages',0),(2096349,1782438669,'2026-06-26 01:51:09','No messages',0),(2096350,1782438729,'2026-06-26 01:52:09','No messages',0),(2096351,1782438789,'2026-06-26 01:53:09','No messages',0),(2096352,1782438850,'2026-06-26 01:54:10','No messages',0),(2096353,1782438910,'2026-06-26 01:55:10','No messages',0),(2096354,1782438970,'2026-06-26 01:56:10','No messages',0),(2096355,1782439030,'2026-06-26 01:57:10','No messages',0),(2096356,1782439090,'2026-06-26 01:58:10','No messages',0),(2096357,1782439149,'2026-06-26 01:59:09','No messages',0),(2096358,1782439212,'2026-06-26 02:00:12','No messages',0),(2096359,1782439269,'2026-06-26 02:01:09','No messages',0),(2096360,1782439330,'2026-06-26 02:02:10','No messages',0),(2096361,1782439389,'2026-06-26 02:03:09','No messages',0),(2096362,1782439450,'2026-06-26 02:04:10','No messages',0),(2096363,1782439510,'2026-06-26 02:05:10','No messages',0),(2096364,1782439570,'2026-06-26 02:06:10','No messages',0),(2096365,1782439630,'2026-06-26 02:07:10','No messages',0),(2096366,1782439690,'2026-06-26 02:08:10','No messages',0),(2096367,1782439750,'2026-06-26 02:09:10','No messages',0),(2096368,1782439810,'2026-06-26 02:10:10','No messages',0),(2096369,1782439869,'2026-06-26 02:11:09','No messages',0),(2096370,1782439929,'2026-06-26 02:12:09','No messages',0),(2096371,1782439990,'2026-06-26 02:13:10','No messages',0),(2096372,1782440049,'2026-06-26 02:14:09','No messages',0),(2096373,1782440111,'2026-06-26 02:15:11','No messages',0),(2096374,1782440169,'2026-06-26 02:16:09','No messages',0),(2096375,1782440230,'2026-06-26 02:17:10','No messages',0),(2096376,1782440290,'2026-06-26 02:18:10','No messages',0),(2096377,1782440349,'2026-06-26 02:19:09','No messages',0),(2096378,1782440410,'2026-06-26 02:20:10','No messages',0),(2096379,1782440469,'2026-06-26 02:21:09','No messages',0),(2096380,1782440530,'2026-06-26 02:22:10','No messages',0),(2096381,1782440589,'2026-06-26 02:23:09','No messages',0),(2096382,1782440649,'2026-06-26 02:24:09','No messages',0),(2096383,1782440710,'2026-06-26 02:25:10','No messages',0),(2096384,1782440770,'2026-06-26 02:26:10','No messages',0),(2096385,1782440830,'2026-06-26 02:27:10','No messages',0),(2096386,1782440890,'2026-06-26 02:28:10','No messages',0),(2096387,1782440950,'2026-06-26 02:29:10','No messages',0),(2096388,1782441011,'2026-06-26 02:30:11','No messages',0),(2096389,1782441068,'2026-06-26 02:31:08','No messages',0),(2096390,1782441129,'2026-06-26 02:32:09','No messages',0),(2096391,1782441190,'2026-06-26 02:33:10','No messages',0),(2096392,1782441250,'2026-06-26 02:34:10','No messages',0),(2096393,1782441310,'2026-06-26 02:35:10','No messages',0),(2096394,1782441370,'2026-06-26 02:36:10','No messages',0),(2096395,1782441429,'2026-06-26 02:37:09','No messages',0),(2096396,1782441490,'2026-06-26 02:38:10','No messages',0),(2096397,1782441549,'2026-06-26 02:39:09','No messages',0),(2096398,1782441609,'2026-06-26 02:40:09','No messages',0),(2096399,1782441669,'2026-06-26 02:41:09','No messages',0),(2096400,1782441730,'2026-06-26 02:42:10','No messages',0),(2096401,1782441790,'2026-06-26 02:43:10','No messages',0),(2096402,1782441850,'2026-06-26 02:44:10','No messages',0),(2096403,1782441910,'2026-06-26 02:45:10','No messages',0),(2096404,1782441970,'2026-06-26 02:46:10','No messages',0),(2096405,1782442029,'2026-06-26 02:47:09','No messages',0),(2096406,1782442090,'2026-06-26 02:48:10','No messages',0),(2096407,1782442150,'2026-06-26 02:49:10','No messages',0),(2096408,1782442210,'2026-06-26 02:50:10','No messages',0),(2096409,1782442269,'2026-06-26 02:51:09','No messages',0),(2096410,1782442329,'2026-06-26 02:52:09','No messages',0),(2096411,1782442389,'2026-06-26 02:53:09','No messages',0),(2096412,1782442450,'2026-06-26 02:54:10','No messages',0),(2096413,1782442509,'2026-06-26 02:55:09','No messages',0),(2096414,1782442570,'2026-06-26 02:56:10','No messages',0),(2096415,1782442630,'2026-06-26 02:57:10','No messages',0),(2096416,1782442690,'2026-06-26 02:58:10','No messages',0),(2096417,1782442750,'2026-06-26 02:59:10','No messages',0),(2096418,1782442813,'2026-06-26 03:00:13','No messages',0),(2096419,1782442870,'2026-06-26 03:01:10','No messages',0),(2096420,1782442929,'2026-06-26 03:02:09','No messages',0),(2096421,1782442989,'2026-06-26 03:03:09','No messages',0),(2096422,1782443049,'2026-06-26 03:04:09','No messages',0),(2096423,1782443111,'2026-06-26 03:05:11','No messages',0),(2096424,1782443170,'2026-06-26 03:06:10','No messages',0),(2096425,1782443228,'2026-06-26 03:07:08','No messages',0),(2096426,1782443290,'2026-06-26 03:08:10','No messages',0),(2096427,1782443350,'2026-06-26 03:09:10','No messages',0),(2096428,1782443410,'2026-06-26 03:10:10','No messages',0),(2096429,1782443468,'2026-06-26 03:11:08','No messages',0),(2096430,1782443530,'2026-06-26 03:12:10','No messages',0),(2096431,1782443589,'2026-06-26 03:13:09','No messages',0),(2096432,1782443649,'2026-06-26 03:14:09','No messages',0),(2096433,1782443710,'2026-06-26 03:15:10','No messages',0),(2096434,1782443769,'2026-06-26 03:16:09','No messages',0),(2096435,1782443829,'2026-06-26 03:17:09','No messages',0),(2096436,1782443890,'2026-06-26 03:18:10','No messages',0),(2096437,1782443949,'2026-06-26 03:19:09','No messages',0),(2096438,1782444010,'2026-06-26 03:20:10','No messages',0),(2096439,1782444069,'2026-06-26 03:21:09','No messages',0),(2096440,1782444130,'2026-06-26 03:22:10','No messages',0),(2096441,1782444189,'2026-06-26 03:23:09','No messages',0),(2096442,1782444250,'2026-06-26 03:24:10','No messages',0),(2096443,1782444310,'2026-06-26 03:25:10','No messages',0),(2096444,1782444370,'2026-06-26 03:26:10','No messages',0),(2096445,1782444430,'2026-06-26 03:27:10','No messages',0),(2096446,1782444490,'2026-06-26 03:28:10','No messages',0),(2096447,1782444549,'2026-06-26 03:29:09','No messages',0),(2096448,1782444611,'2026-06-26 03:30:11','No messages',0),(2096449,1782444669,'2026-06-26 03:31:09','No messages',0),(2096450,1782444730,'2026-06-26 03:32:10','No messages',0),(2096451,1782444790,'2026-06-26 03:33:10','No messages',0),(2096452,1782444849,'2026-06-26 03:34:09','No messages',0),(2096453,1782444910,'2026-06-26 03:35:10','No messages',0),(2096454,1782444970,'2026-06-26 03:36:10','No messages',0),(2096455,1782445029,'2026-06-26 03:37:09','No messages',0),(2096456,1782445090,'2026-06-26 03:38:10','No messages',0),(2096457,1782445150,'2026-06-26 03:39:10','No messages',0),(2096458,1782445210,'2026-06-26 03:40:10','No messages',0),(2096459,1782445269,'2026-06-26 03:41:09','No messages',0),(2096460,1782445330,'2026-06-26 03:42:10','No messages',0),(2096461,1782445390,'2026-06-26 03:43:10','No messages',0),(2096462,1782445449,'2026-06-26 03:44:09','No messages',0),(2096463,1782445511,'2026-06-26 03:45:11','No messages',0),(2096464,1782445570,'2026-06-26 03:46:10','No messages',0),(2096465,1782445628,'2026-06-26 03:47:08','No messages',0),(2096466,1782445690,'2026-06-26 03:48:10','No messages',0),(2096467,1782445749,'2026-06-26 03:49:09','No messages',0),(2096468,1782445810,'2026-06-26 03:50:10','No messages',0),(2096469,1782445869,'2026-06-26 03:51:09','No messages',0),(2096470,1782445930,'2026-06-26 03:52:10','No messages',0),(2096471,1782445989,'2026-06-26 03:53:09','No messages',0),(2096472,1782446050,'2026-06-26 03:54:10','No messages',0),(2096473,1782446110,'2026-06-26 03:55:10','No messages',0),(2096474,1782446170,'2026-06-26 03:56:10','No messages',0),(2096475,1782446230,'2026-06-26 03:57:10','No messages',0),(2096476,1782446289,'2026-06-26 03:58:09','No messages',0),(2096477,1782446349,'2026-06-26 03:59:09','No messages',0),(2096478,1782446412,'2026-06-26 04:00:12','No messages',0),(2096479,1782446469,'2026-06-26 04:01:09','No messages',0),(2096480,1782446529,'2026-06-26 04:02:09','No messages',0),(2096481,1782446589,'2026-06-26 04:03:09','No messages',0),(2096482,1782446650,'2026-06-26 04:04:10','No messages',0),(2096483,1782446711,'2026-06-26 04:05:11','No messages',0),(2096484,1782446770,'2026-06-26 04:06:10','No messages',0),(2096485,1782446829,'2026-06-26 04:07:09','No messages',0),(2096486,1782446889,'2026-06-26 04:08:09','No messages',0),(2096487,1782446950,'2026-06-26 04:09:10','No messages',0),(2096488,1782447010,'2026-06-26 04:10:10','No messages',0),(2096489,1782447069,'2026-06-26 04:11:09','No messages',0),(2096490,1782447130,'2026-06-26 04:12:10','No messages',0),(2096491,1782447190,'2026-06-26 04:13:10','No messages',0),(2096492,1782447250,'2026-06-26 04:14:10','No messages',0),(2096493,1782447310,'2026-06-26 04:15:10','No messages',0),(2096494,1782447369,'2026-06-26 04:16:09','No messages',0),(2096495,1782447429,'2026-06-26 04:17:09','No messages',0),(2096496,1782447489,'2026-06-26 04:18:09','No messages',0),(2096497,1782447549,'2026-06-26 04:19:09','No messages',0),(2096498,1782447610,'2026-06-26 04:20:10','No messages',0),(2096499,1782447670,'2026-06-26 04:21:10','No messages',0),(2096500,1782447729,'2026-06-26 04:22:09','No messages',0),(2096501,1782447789,'2026-06-26 04:23:09','No messages',0),(2096502,1782447850,'2026-06-26 04:24:10','No messages',0),(2096503,1782447909,'2026-06-26 04:25:09','No messages',0),(2096504,1782447970,'2026-06-26 04:26:10','No messages',0),(2096505,1782448030,'2026-06-26 04:27:10','No messages',0),(2096506,1782448089,'2026-06-26 04:28:09','No messages',0),(2096507,1782448149,'2026-06-26 04:29:09','No messages',0),(2096508,1782448212,'2026-06-26 04:30:12','No messages',0),(2096509,1782448269,'2026-06-26 04:31:09','No messages',0),(2096510,1782448330,'2026-06-26 04:32:10','No messages',0),(2096511,1782448390,'2026-06-26 04:33:10','No messages',0),(2096512,1782448450,'2026-06-26 04:34:10','No messages',0),(2096513,1782448510,'2026-06-26 04:35:10','No messages',0),(2096514,1782448570,'2026-06-26 04:36:10','No messages',0),(2096515,1782448629,'2026-06-26 04:37:09','No messages',0),(2096516,1782448689,'2026-06-26 04:38:09','No messages',0),(2096517,1782448750,'2026-06-26 04:39:10','No messages',0),(2096518,1782448810,'2026-06-26 04:40:10','No messages',0),(2096519,1782448869,'2026-06-26 04:41:09','No messages',0),(2096520,1782448929,'2026-06-26 04:42:09','No messages',0),(2096521,1782448988,'2026-06-26 04:43:08','No messages',0),(2096522,1782449050,'2026-06-26 04:44:10','No messages',0),(2096523,1782449110,'2026-06-26 04:45:10','No messages',0),(2096524,1782449170,'2026-06-26 04:46:10','No messages',0),(2096525,1782449229,'2026-06-26 04:47:09','No messages',0),(2096526,1782449290,'2026-06-26 04:48:10','No messages',0),(2096527,1782449349,'2026-06-26 04:49:09','No messages',0),(2096528,1782449410,'2026-06-26 04:50:10','No messages',0),(2096529,1782449470,'2026-06-26 04:51:10','No messages',0),(2096530,1782449529,'2026-06-26 04:52:09','No messages',0),(2096531,1782449589,'2026-06-26 04:53:09','No messages',0),(2096532,1782449649,'2026-06-26 04:54:09','No messages',0),(2096533,1782449710,'2026-06-26 04:55:10','No messages',0),(2096534,1782449769,'2026-06-26 04:56:09','No messages',0),(2096535,1782449829,'2026-06-26 04:57:09','No messages',0),(2096536,1782449889,'2026-06-26 04:58:09','No messages',0),(2096537,1782449949,'2026-06-26 04:59:09','No messages',0),(2096538,1782450012,'2026-06-26 05:00:12','No messages',0),(2096539,1782450069,'2026-06-26 05:01:09','No messages',0),(2096540,1782450130,'2026-06-26 05:02:10','No messages',0),(2096541,1782450189,'2026-06-26 05:03:09','No messages',0),(2096542,1782450249,'2026-06-26 05:04:09','No messages',0),(2096543,1782450311,'2026-06-26 05:05:11','No messages',0),(2096544,1782450370,'2026-06-26 05:06:10','No messages',0),(2096545,1782450429,'2026-06-26 05:07:09','No messages',0),(2096546,1782450489,'2026-06-26 05:08:09','No messages',0),(2096547,1782450550,'2026-06-26 05:09:10','No messages',0),(2096548,1782450610,'2026-06-26 05:10:10','No messages',0),(2096549,1782450669,'2026-06-26 05:11:09','No messages',0),(2096550,1782450730,'2026-06-26 05:12:10','No messages',0),(2096551,1782450789,'2026-06-26 05:13:09','No messages',0),(2096552,1782450850,'2026-06-26 05:14:10','No messages',0),(2096553,1782450911,'2026-06-26 05:15:11','No messages',0),(2096554,1782450969,'2026-06-26 05:16:09','No messages',0),(2096555,1782451029,'2026-06-26 05:17:09','No messages',0),(2096556,1782451090,'2026-06-26 05:18:10','No messages',0),(2096557,1782451150,'2026-06-26 05:19:10','No messages',0),(2096558,1782451210,'2026-06-26 05:20:10','No messages',0),(2096559,1782451269,'2026-06-26 05:21:09','No messages',0),(2096560,1782451330,'2026-06-26 05:22:10','No messages',0),(2096561,1782451389,'2026-06-26 05:23:09','No messages',0),(2096562,1782451450,'2026-06-26 05:24:10','No messages',0),(2096563,1782451510,'2026-06-26 05:25:10','No messages',0),(2096564,1782451570,'2026-06-26 05:26:10','No messages',0),(2096565,1782451629,'2026-06-26 05:27:09','No messages',0),(2096566,1782451689,'2026-06-26 05:28:09','No messages',0),(2096567,1782451749,'2026-06-26 05:29:09','No messages',0),(2096568,1782451812,'2026-06-26 05:30:12','No messages',0),(2096569,1782451869,'2026-06-26 05:31:09','No messages',0),(2096570,1782451930,'2026-06-26 05:32:10','No messages',0),(2096571,1782451989,'2026-06-26 05:33:09','No messages',0),(2096572,1782452050,'2026-06-26 05:34:10','No messages',0),(2096573,1782452110,'2026-06-26 05:35:10','No messages',0),(2096574,1782452170,'2026-06-26 05:36:10','No messages',0),(2096575,1782452230,'2026-06-26 05:37:10','No messages',0),(2096576,1782452289,'2026-06-26 05:38:09','No messages',0),(2096577,1782452350,'2026-06-26 05:39:10','No messages',0),(2096578,1782452410,'2026-06-26 05:40:10','No messages',0),(2096579,1782452469,'2026-06-26 05:41:09','No messages',0),(2096580,1782452530,'2026-06-26 05:42:10','No messages',0),(2096581,1782452590,'2026-06-26 05:43:10','No messages',0),(2096582,1782452649,'2026-06-26 05:44:09','No messages',0),(2096583,1782452711,'2026-06-26 05:45:11','No messages',0),(2096584,1782452769,'2026-06-26 05:46:09','No messages',0),(2096585,1782452829,'2026-06-26 05:47:09','No messages',0),(2096586,1782452890,'2026-06-26 05:48:10','No messages',0),(2096587,1782452949,'2026-06-26 05:49:09','No messages',0),(2096588,1782453010,'2026-06-26 05:50:10','No messages',0),(2096589,1782453070,'2026-06-26 05:51:10','No messages',0),(2096590,1782453130,'2026-06-26 05:52:10','No messages',0),(2096591,1782453189,'2026-06-26 05:53:09','No messages',0),(2096592,1782453250,'2026-06-26 05:54:10','No messages',0),(2096593,1782453310,'2026-06-26 05:55:10','No messages',0),(2096594,1782453370,'2026-06-26 05:56:10','No messages',0),(2096595,1782453430,'2026-06-26 05:57:10','No messages',0),(2096596,1782453490,'2026-06-26 05:58:10','No messages',0),(2096597,1782453549,'2026-06-26 05:59:09','No messages',0),(2096598,1782453611,'2026-06-26 06:00:11','No messages',0),(2096599,1782453669,'2026-06-26 06:01:09','No messages',0),(2096600,1782453730,'2026-06-26 06:02:10','No messages',0),(2096601,1782453790,'2026-06-26 06:03:10','No messages',0),(2096602,1782453849,'2026-06-26 06:04:09','No messages',0),(2096603,1782453910,'2026-06-26 06:05:10','No messages',0),(2096604,1782453970,'2026-06-26 06:06:10','No messages',0),(2096605,1782454029,'2026-06-26 06:07:09','No messages',0),(2096606,1782454090,'2026-06-26 06:08:10','No messages',0),(2096607,1782454150,'2026-06-26 06:09:10','No messages',0),(2096608,1782454209,'2026-06-26 06:10:09','No messages',0),(2096609,1782454270,'2026-06-26 06:11:10','No messages',0),(2096610,1782454329,'2026-06-26 06:12:09','No messages',0),(2096611,1782454389,'2026-06-26 06:13:09','No messages',0),(2096612,1782454450,'2026-06-26 06:14:10','No messages',0),(2096613,1782454511,'2026-06-26 06:15:11','No messages',0),(2096614,1782454570,'2026-06-26 06:16:10','No messages',0),(2096615,1782454629,'2026-06-26 06:17:09','No messages',0),(2096616,1782454689,'2026-06-26 06:18:09','No messages',0),(2096617,1782454750,'2026-06-26 06:19:10','No messages',0),(2096618,1782454810,'2026-06-26 06:20:10','No messages',0),(2096619,1782454870,'2026-06-26 06:21:10','No messages',0),(2096620,1782454930,'2026-06-26 06:22:10','No messages',0),(2096621,1782454989,'2026-06-26 06:23:09','No messages',0),(2096622,1782455050,'2026-06-26 06:24:10','No messages',0),(2096623,1782455110,'2026-06-26 06:25:10','No messages',0),(2096624,1782455169,'2026-06-26 06:26:09','No messages',0),(2096625,1782455230,'2026-06-26 06:27:10','No messages',0),(2096626,1782455290,'2026-06-26 06:28:10','No messages',0),(2096627,1782455349,'2026-06-26 06:29:09','No messages',0),(2096628,1782455411,'2026-06-26 06:30:11','No messages',0),(2096629,1782455469,'2026-06-26 06:31:09','No messages',0),(2096630,1782455529,'2026-06-26 06:32:09','No messages',0),(2096631,1782455589,'2026-06-26 06:33:09','No messages',0),(2096632,1782455650,'2026-06-26 06:34:10','No messages',0),(2096633,1782455709,'2026-06-26 06:35:09','No messages',0),(2096634,1782455770,'2026-06-26 06:36:10','No messages',0),(2096635,1782455829,'2026-06-26 06:37:09','No messages',0),(2096636,1782455890,'2026-06-26 06:38:10','No messages',0),(2096637,1782455950,'2026-06-26 06:39:10','No messages',0),(2096638,1782456010,'2026-06-26 06:40:10','No messages',0),(2096639,1782456069,'2026-06-26 06:41:09','No messages',0),(2096640,1782456129,'2026-06-26 06:42:09','No messages',0),(2096641,1782456189,'2026-06-26 06:43:09','No messages',0),(2096642,1782456250,'2026-06-26 06:44:10','No messages',0),(2096643,1782456311,'2026-06-26 06:45:11','No messages',0),(2096644,1782456370,'2026-06-26 06:46:10','No messages',0),(2096645,1782456429,'2026-06-26 06:47:09','No messages',0),(2096646,1782456490,'2026-06-26 06:48:10','No messages',0),(2096647,1782456548,'2026-06-26 06:49:08','No messages',0),(2096648,1782456610,'2026-06-26 06:50:10','No messages',0),(2096649,1782456670,'2026-06-26 06:51:10','No messages',0),(2096650,1782456729,'2026-06-26 06:52:09','No messages',0),(2096651,1782456789,'2026-06-26 06:53:09','No messages',0),(2096652,1782456850,'2026-06-26 06:54:10','No messages',0),(2096653,1782456910,'2026-06-26 06:55:10','No messages',0),(2096654,1782456970,'2026-06-26 06:56:10','No messages',0),(2096655,1782457030,'2026-06-26 06:57:10','No messages',0),(2096656,1782457090,'2026-06-26 06:58:10','No messages',0),(2096657,1782457150,'2026-06-26 06:59:10','No messages',0),(2096658,1782457214,'2026-06-26 07:00:14','No messages',0),(2096659,1782457269,'2026-06-26 07:01:09','No messages',0),(2096660,1782457329,'2026-06-26 07:02:09','No messages',0),(2096661,1782457389,'2026-06-26 07:03:09','No messages',0),(2096662,1782457450,'2026-06-26 07:04:10','No messages',0),(2096663,1782457510,'2026-06-26 07:05:10','No messages',0),(2096664,1782457570,'2026-06-26 07:06:10','No messages',0),(2096665,1782457629,'2026-06-26 07:07:09','No messages',0),(2096666,1782457690,'2026-06-26 07:08:10','No messages',0),(2096667,1782457750,'2026-06-26 07:09:10','No messages',0),(2096668,1782457810,'2026-06-26 07:10:10','No messages',0),(2096669,1782457869,'2026-06-26 07:11:09','No messages',0),(2096670,1782457930,'2026-06-26 07:12:10','No messages',0),(2096671,1782457989,'2026-06-26 07:13:09','No messages',0),(2096672,1782458049,'2026-06-26 07:14:09','No messages',0),(2096673,1782458111,'2026-06-26 07:15:11','No messages',0),(2096674,1782458170,'2026-06-26 07:16:10','No messages',0),(2096675,1782458229,'2026-06-26 07:17:09','No messages',0),(2096676,1782458289,'2026-06-26 07:18:09','No messages',0),(2096677,1782458349,'2026-06-26 07:19:09','No messages',0),(2096678,1782458410,'2026-06-26 07:20:10','No messages',0),(2096679,1782458469,'2026-06-26 07:21:09','No messages',0),(2096680,1782458529,'2026-06-26 07:22:09','No messages',0),(2096681,1782458589,'2026-06-26 07:23:09','No messages',0),(2096682,1782458650,'2026-06-26 07:24:10','No messages',0),(2096683,1782458710,'2026-06-26 07:25:10','No messages',0),(2096684,1782458770,'2026-06-26 07:26:10','No messages',0),(2096685,1782458830,'2026-06-26 07:27:10','No messages',0),(2096686,1782458890,'2026-06-26 07:28:10','No messages',0),(2096687,1782458950,'2026-06-26 07:29:10','No messages',0),(2096688,1782459011,'2026-06-26 07:30:11','No messages',0),(2096689,1782459069,'2026-06-26 07:31:09','No messages',0),(2096690,1782459130,'2026-06-26 07:32:10','No messages',0),(2096691,1782459190,'2026-06-26 07:33:10','No messages',0),(2096692,1782459250,'2026-06-26 07:34:10','No messages',0),(2096693,1782459309,'2026-06-26 07:35:09','No messages',0),(2096694,1782459370,'2026-06-26 07:36:10','No messages',0),(2096695,1782459430,'2026-06-26 07:37:10','No messages',0),(2096696,1782459489,'2026-06-26 07:38:09','No messages',0),(2096697,1782459550,'2026-06-26 07:39:10','No messages',0),(2096698,1782459610,'2026-06-26 07:40:10','No messages',0),(2096699,1782459669,'2026-06-26 07:41:09','No messages',0),(2096700,1782459730,'2026-06-26 07:42:10','No messages',0),(2096701,1782459790,'2026-06-26 07:43:10','No messages',0),(2096702,1782459849,'2026-06-26 07:44:09','No messages',0),(2096703,1782459910,'2026-06-26 07:45:10','No messages',0),(2096704,1782459970,'2026-06-26 07:46:10','No messages',0),(2096705,1782460029,'2026-06-26 07:47:09','No messages',0),(2096706,1782460090,'2026-06-26 07:48:10','No messages',0),(2096707,1782460149,'2026-06-26 07:49:09','No messages',0),(2096708,1782460210,'2026-06-26 07:50:10','No messages',0),(2096709,1782460269,'2026-06-26 07:51:09','No messages',0),(2096710,1782460330,'2026-06-26 07:52:10','No messages',0),(2096711,1782460390,'2026-06-26 07:53:10','No messages',0),(2096712,1782460449,'2026-06-26 07:54:09','No messages',0),(2096713,1782460510,'2026-06-26 07:55:10','No messages',0),(2096714,1782460569,'2026-06-26 07:56:09','No messages',0),(2096715,1782460630,'2026-06-26 07:57:10','No messages',0),(2096716,1782460689,'2026-06-26 07:58:09','No messages',0),(2096717,1782460749,'2026-06-26 07:59:09','No messages',0),(2096718,1782460811,'2026-06-26 08:00:11','No messages',0),(2096719,1782460869,'2026-06-26 08:01:09','No messages',0),(2096720,1782460930,'2026-06-26 08:02:10','No messages',0),(2096721,1782460990,'2026-06-26 08:03:10','No messages',0),(2096722,1782461050,'2026-06-26 08:04:10','No messages',0),(2096723,1782461110,'2026-06-26 08:05:10','No messages',0),(2096724,1782461170,'2026-06-26 08:06:10','No messages',0),(2096725,1782461230,'2026-06-26 08:07:10','No messages',0),(2096726,1782461290,'2026-06-26 08:08:10','No messages',0),(2096727,1782461350,'2026-06-26 08:09:10','No messages',0),(2096728,1782461410,'2026-06-26 08:10:10','No messages',0),(2096729,1782461469,'2026-06-26 08:11:09','No messages',0),(2096730,1782461529,'2026-06-26 08:12:09','No messages',0),(2096731,1782461589,'2026-06-26 08:13:09','No messages',0),(2096732,1782461650,'2026-06-26 08:14:10','No messages',0),(2096733,1782461711,'2026-06-26 08:15:11','No messages',0),(2096734,1782461770,'2026-06-26 08:16:10','No messages',0),(2096735,1782461830,'2026-06-26 08:17:10','No messages',0),(2096736,1782461890,'2026-06-26 08:18:10','No messages',0),(2096737,1782461949,'2026-06-26 08:19:09','No messages',0),(2096738,1782462010,'2026-06-26 08:20:10','No messages',0),(2096739,1782462069,'2026-06-26 08:21:09','No messages',0),(2096740,1782462130,'2026-06-26 08:22:10','No messages',0),(2096741,1782462189,'2026-06-26 08:23:09','No messages',0),(2096742,1782462250,'2026-06-26 08:24:10','No messages',0),(2096743,1782462310,'2026-06-26 08:25:10','No messages',0),(2096744,1782462369,'2026-06-26 08:26:09','No messages',0),(2096745,1782462429,'2026-06-26 08:27:09','No messages',0),(2096746,1782462490,'2026-06-26 08:28:10','No messages',0),(2096747,1782462549,'2026-06-26 08:29:09','No messages',0),(2096748,1782462611,'2026-06-26 08:30:11','No messages',0),(2096749,1782462669,'2026-06-26 08:31:09','No messages',0),(2096750,1782462730,'2026-06-26 08:32:10','No messages',0),(2096751,1782462789,'2026-06-26 08:33:09','No messages',0),(2096752,1782462849,'2026-06-26 08:34:09','No messages',0),(2096753,1782462910,'2026-06-26 08:35:10','No messages',0),(2096754,1782462969,'2026-06-26 08:36:09','No messages',0),(2096755,1782463028,'2026-06-26 08:37:08','No messages',0),(2096756,1782463089,'2026-06-26 08:38:09','No messages',0),(2096757,1782463149,'2026-06-26 08:39:09','No messages',0),(2096758,1782463210,'2026-06-26 08:40:10','No messages',0),(2096759,1782463269,'2026-06-26 08:41:09','No messages',0),(2096760,1782463330,'2026-06-26 08:42:10','No messages',0),(2096761,1782463389,'2026-06-26 08:43:09','No messages',0),(2096762,1782463449,'2026-06-26 08:44:09','No messages',0),(2096763,1782463511,'2026-06-26 08:45:11','No messages',0),(2096764,1782463569,'2026-06-26 08:46:09','No messages',0),(2096765,1782463629,'2026-06-26 08:47:09','No messages',0),(2096766,1782463689,'2026-06-26 08:48:09','No messages',0),(2096767,1782463750,'2026-06-26 08:49:10','No messages',0),(2096768,1782463810,'2026-06-26 08:50:10','No messages',0),(2096769,1782463869,'2026-06-26 08:51:09','No messages',0),(2096770,1782463930,'2026-06-26 08:52:10','No messages',0),(2096771,1782463989,'2026-06-26 08:53:09','No messages',0),(2096772,1782464050,'2026-06-26 08:54:10','No messages',0),(2096773,1782464110,'2026-06-26 08:55:10','No messages',0),(2096774,1782464170,'2026-06-26 08:56:10','No messages',0),(2096775,1782464230,'2026-06-26 08:57:10','No messages',0),(2096776,1782464289,'2026-06-26 08:58:09','No messages',0),(2096777,1782464350,'2026-06-26 08:59:10','No messages',0),(2096778,1782464412,'2026-06-26 09:00:12','No messages',0),(2096779,1782464469,'2026-06-26 09:01:09','No messages',0),(2096780,1782464530,'2026-06-26 09:02:10','No messages',0),(2096781,1782464589,'2026-06-26 09:03:09','No messages',0),(2096782,1782464650,'2026-06-26 09:04:10','No messages',0),(2096783,1782464710,'2026-06-26 09:05:10','No messages',0),(2096784,1782464769,'2026-06-26 09:06:09','No messages',0),(2096785,1782464830,'2026-06-26 09:07:10','No messages',0),(2096786,1782464890,'2026-06-26 09:08:10','No messages',0),(2096787,1782464950,'2026-06-26 09:09:10','No messages',0),(2096788,1782465010,'2026-06-26 09:10:10','No messages',0),(2096789,1782465070,'2026-06-26 09:11:10','No messages',0),(2096790,1782465130,'2026-06-26 09:12:10','No messages',0),(2096791,1782465189,'2026-06-26 09:13:09','No messages',0),(2096792,1782465250,'2026-06-26 09:14:10','No messages',0),(2096793,1782465311,'2026-06-26 09:15:11','No messages',0),(2096794,1782465370,'2026-06-26 09:16:10','No messages',0),(2096795,1782465429,'2026-06-26 09:17:09','No messages',0),(2096796,1782465490,'2026-06-26 09:18:10','No messages',0),(2096797,1782465549,'2026-06-26 09:19:09','No messages',0),(2096798,1782465609,'2026-06-26 09:20:09','No messages',0),(2096799,1782465669,'2026-06-26 09:21:09','No messages',0),(2096800,1782465730,'2026-06-26 09:22:10','No messages',0),(2096801,1782465789,'2026-06-26 09:23:09','No messages',0),(2096802,1782465850,'2026-06-26 09:24:10','No messages',0),(2096803,1782465909,'2026-06-26 09:25:09','No messages',0),(2096804,1782465970,'2026-06-26 09:26:10','No messages',0),(2096805,1782466029,'2026-06-26 09:27:09','No messages',0),(2096806,1782466090,'2026-06-26 09:28:10','No messages',0),(2096807,1782466150,'2026-06-26 09:29:10','No messages',0),(2096808,1782466212,'2026-06-26 09:30:12','No messages',0),(2096809,1782466270,'2026-06-26 09:31:10','No messages',0),(2096810,1782466330,'2026-06-26 09:32:10','No messages',0),(2096811,1782466390,'2026-06-26 09:33:10','No messages',0),(2096812,1782466450,'2026-06-26 09:34:10','No messages',0),(2096813,1782466510,'2026-06-26 09:35:10','No messages',0),(2096814,1782466569,'2026-06-26 09:36:09','No messages',0),(2096815,1782466629,'2026-06-26 09:37:09','No messages',0),(2096816,1782466689,'2026-06-26 09:38:09','No messages',0),(2096817,1782466750,'2026-06-26 09:39:10','No messages',0),(2096818,1782466809,'2026-06-26 09:40:09','No messages',0),(2096819,1782466870,'2026-06-26 09:41:10','No messages',0),(2096820,1782466928,'2026-06-26 09:42:08','No messages',0),(2096821,1782466982,'2026-06-26 09:43:02','Current time is 1782466982.  Last queue cron was called at 1782466928',0),(2096822,1782467048,'2026-06-26 09:44:08','No messages',0),(2096823,1782467110,'2026-06-26 09:45:10','No messages',0),(2096824,1782467168,'2026-06-26 09:46:08','No messages',0),(2096825,1782467228,'2026-06-26 09:47:08','No messages',0),(2096826,1782467287,'2026-06-26 09:48:07','No messages',0),(2096827,1782467347,'2026-06-26 09:49:07','No messages',0),(2096828,1782467409,'2026-06-26 09:50:09','No messages',0),(2096829,1782467467,'2026-06-26 09:51:07','No messages',0),(2096830,1782467527,'2026-06-26 09:52:07','No messages',0),(2096831,1782467587,'2026-06-26 09:53:07','No messages',0),(2096832,1782467648,'2026-06-26 09:54:08','No messages',0),(2096833,1782467709,'2026-06-26 09:55:09','No messages',0),(2096834,1782467768,'2026-06-26 09:56:08','No messages',0),(2096835,1782467828,'2026-06-26 09:57:08','No messages',0),(2096836,1782467887,'2026-06-26 09:58:07','No messages',0),(2096837,1782467947,'2026-06-26 09:59:07','No messages',0),(2096838,1782468010,'2026-06-26 10:00:10','No messages',0),(2096839,1782468069,'2026-06-26 10:01:09','No messages',0),(2096840,1782468129,'2026-06-26 10:02:09','No messages',0),(2096841,1782468188,'2026-06-26 10:03:08','No messages',0),(2096842,1782468249,'2026-06-26 10:04:09','No messages',0),(2096843,1782468309,'2026-06-26 10:05:09','No messages',0),(2096844,1782468369,'2026-06-26 10:06:09','No messages',0),(2096845,1782468428,'2026-06-26 10:07:08','No messages',0),(2096846,1782468489,'2026-06-26 10:08:09','No messages',0),(2096847,1782468549,'2026-06-26 10:09:09','No messages',0),(2096848,1782468610,'2026-06-26 10:10:10','No messages',0),(2096849,1782468668,'2026-06-26 10:11:08','No messages',0),(2096850,1782468729,'2026-06-26 10:12:09','No messages',0),(2096851,1782468788,'2026-06-26 10:13:08','No messages',0),(2096852,1782468849,'2026-06-26 10:14:09','No messages',0),(2096853,1782468910,'2026-06-26 10:15:10','No messages',0),(2096854,1782468969,'2026-06-26 10:16:09','No messages',0),(2096855,1782469028,'2026-06-26 10:17:08','No messages',0),(2096856,1782469089,'2026-06-26 10:18:09','No messages',0),(2096857,1782469149,'2026-06-26 10:19:09','No messages',0),(2096858,1782469209,'2026-06-26 10:20:09','No messages',0),(2096859,1782469268,'2026-06-26 10:21:08','No messages',0),(2096860,1782469330,'2026-06-26 10:22:10','No messages',0),(2096861,1782469389,'2026-06-26 10:23:09','No messages',0),(2096862,1782469449,'2026-06-26 10:24:09','No messages',0),(2096863,1782469509,'2026-06-26 10:25:09','No messages',0),(2096864,1782469569,'2026-06-26 10:26:09','No messages',0),(2096865,1782469629,'2026-06-26 10:27:09','No messages',0),(2096866,1782469689,'2026-06-26 10:28:09','No messages',0),(2096867,1782469748,'2026-06-26 10:29:08','No messages',0),(2096868,1782469810,'2026-06-26 10:30:10','No messages',0),(2096869,1782469868,'2026-06-26 10:31:08','No messages',0),(2096870,1782469929,'2026-06-26 10:32:09','No messages',0),(2096871,1782469988,'2026-06-26 10:33:08','No messages',0),(2096872,1782470049,'2026-06-26 10:34:09','No messages',0),(2096873,1782470109,'2026-06-26 10:35:09','No messages',0),(2096874,1782470169,'2026-06-26 10:36:09','No messages',0),(2096875,1782470229,'2026-06-26 10:37:09','No messages',0),(2096876,1782470289,'2026-06-26 10:38:09','No messages',0),(2096877,1782470349,'2026-06-26 10:39:09','No messages',0),(2096878,1782470409,'2026-06-26 10:40:09','No messages',0),(2096879,1782470469,'2026-06-26 10:41:09','No messages',0),(2096880,1782470529,'2026-06-26 10:42:09','No messages',0),(2096881,1782470588,'2026-06-26 10:43:08','No messages',0),(2096882,1782470648,'2026-06-26 10:44:08','No messages',0),(2096883,1782470710,'2026-06-26 10:45:10','No messages',0),(2096884,1782470769,'2026-06-26 10:46:09','No messages',0),(2096885,1782470828,'2026-06-26 10:47:08','No messages',0),(2096886,1782470889,'2026-06-26 10:48:09','No messages',0),(2096887,1782470948,'2026-06-26 10:49:08','No messages',0),(2096888,1782471009,'2026-06-26 10:50:09','No messages',0),(2096889,1782471069,'2026-06-26 10:51:09','No messages',0),(2096890,1782471128,'2026-06-26 10:52:08','No messages',0),(2096891,1782471188,'2026-06-26 10:53:08','No messages',0),(2096892,1782471248,'2026-06-26 10:54:08','No messages',0),(2096893,1782471309,'2026-06-26 10:55:09','No messages',0),(2096894,1782471369,'2026-06-26 10:56:09','No messages',0),(2096895,1782471429,'2026-06-26 10:57:09','No messages',0),(2096896,1782471488,'2026-06-26 10:58:08','No messages',0),(2096897,1782471549,'2026-06-26 10:59:09','No messages',0),(2096898,1782471611,'2026-06-26 11:00:11','No messages',0),(2096899,1782471669,'2026-06-26 11:01:09','No messages',0),(2096900,1782471728,'2026-06-26 11:02:08','No messages',0),(2096901,1782471789,'2026-06-26 11:03:09','No messages',0),(2096902,1782471849,'2026-06-26 11:04:09','No messages',0),(2096903,1782471910,'2026-06-26 11:05:10','No messages',0),(2096904,1782471969,'2026-06-26 11:06:09','No messages',0),(2096905,1782472029,'2026-06-26 11:07:09','No messages',0),(2096906,1782472090,'2026-06-26 11:08:10','No messages',0),(2096907,1782472149,'2026-06-26 11:09:09','No messages',0),(2096908,1782472210,'2026-06-26 11:10:10','No messages',0),(2096909,1782472268,'2026-06-26 11:11:08','No messages',0),(2096910,1782472329,'2026-06-26 11:12:09','No messages',0),(2096911,1782472389,'2026-06-26 11:13:09','No messages',0),(2096912,1782472449,'2026-06-26 11:14:09','No messages',0),(2096913,1782472510,'2026-06-26 11:15:10','No messages',0),(2096914,1782472569,'2026-06-26 11:16:09','No messages',0),(2096915,1782472629,'2026-06-26 11:17:09','No messages',0),(2096916,1782472689,'2026-06-26 11:18:09','No messages',0),(2096917,1782472749,'2026-06-26 11:19:09','No messages',0),(2096918,1782472809,'2026-06-26 11:20:09','No messages',0),(2096919,1782472869,'2026-06-26 11:21:09','No messages',0),(2096920,1782472929,'2026-06-26 11:22:09','No messages',0),(2096921,1782472989,'2026-06-26 11:23:09','No messages',0),(2096922,1782473049,'2026-06-26 11:24:09','No messages',0),(2096923,1782473109,'2026-06-26 11:25:09','No messages',0),(2096924,1782473169,'2026-06-26 11:26:09','No messages',0),(2096925,1782473229,'2026-06-26 11:27:09','No messages',0),(2096926,1782473290,'2026-06-26 11:28:10','No messages',0),(2096927,1782473349,'2026-06-26 11:29:09','No messages',0),(2096928,1782473412,'2026-06-26 11:30:12','No messages',0),(2096929,1782473469,'2026-06-26 11:31:09','No messages',0),(2096930,1782473529,'2026-06-26 11:32:09','No messages',0),(2096931,1782473589,'2026-06-26 11:33:09','No messages',0),(2096932,1782473649,'2026-06-26 11:34:09','No messages',0),(2096933,1782473710,'2026-06-26 11:35:10','No messages',0),(2096934,1782473769,'2026-06-26 11:36:09','No messages',0),(2096935,1782473829,'2026-06-26 11:37:09','No messages',0),(2096936,1782473889,'2026-06-26 11:38:09','No messages',0),(2096937,1782473950,'2026-06-26 11:39:10','No messages',0),(2096938,1782474009,'2026-06-26 11:40:09','No messages',0),(2096939,1782474069,'2026-06-26 11:41:09','No messages',0),(2096940,1782474130,'2026-06-26 11:42:10','No messages',0),(2096941,1782474189,'2026-06-26 11:43:09','No messages',0),(2096942,1782474249,'2026-06-26 11:44:09','No messages',0),(2096943,1782474310,'2026-06-26 11:45:10','No messages',0),(2096944,1782474369,'2026-06-26 11:46:09','No messages',0),(2096945,1782474429,'2026-06-26 11:47:09','No messages',0),(2096946,1782474490,'2026-06-26 11:48:10','No messages',0),(2096947,1782474548,'2026-06-26 11:49:08','No messages',0),(2096948,1782474610,'2026-06-26 11:50:10','No messages',0),(2096949,1782474669,'2026-06-26 11:51:09','No messages',0),(2096950,1782474729,'2026-06-26 11:52:09','No messages',0),(2096951,1782474789,'2026-06-26 11:53:09','No messages',0),(2096952,1782474849,'2026-06-26 11:54:09','No messages',0),(2096953,1782474910,'2026-06-26 11:55:10','No messages',0),(2096954,1782474968,'2026-06-26 11:56:08','No messages',0),(2096955,1782475029,'2026-06-26 11:57:09','No messages',0),(2096956,1782475089,'2026-06-26 11:58:09','No messages',0),(2096957,1782475149,'2026-06-26 11:59:09','No messages',0),(2096958,1782475211,'2026-06-26 12:00:11','No messages',0),(2096959,1782475269,'2026-06-26 12:01:09','No messages',0),(2096960,1782475329,'2026-06-26 12:02:09','No messages',0),(2096961,1782475389,'2026-06-26 12:03:09','No messages',0),(2096962,1782475449,'2026-06-26 12:04:09','No messages',0),(2096963,1782475510,'2026-06-26 12:05:10','No messages',0),(2096964,1782475569,'2026-06-26 12:06:09','No messages',0),(2096965,1782475629,'2026-06-26 12:07:09','No messages',0),(2096966,1782475689,'2026-06-26 12:08:09','No messages',0),(2096967,1782475749,'2026-06-26 12:09:09','No messages',0),(2096968,1782475810,'2026-06-26 12:10:10','No messages',0),(2096969,1782475869,'2026-06-26 12:11:09','No messages',0),(2096970,1782475929,'2026-06-26 12:12:09','No messages',0),(2096971,1782475989,'2026-06-26 12:13:09','No messages',0),(2096972,1782476049,'2026-06-26 12:14:09','No messages',0),(2096973,1782476111,'2026-06-26 12:15:11','No messages',0),(2096974,1782476170,'2026-06-26 12:16:10','No messages',0),(2096975,1782476228,'2026-06-26 12:17:08','No messages',0),(2096976,1782476289,'2026-06-26 12:18:09','No messages',0),(2096977,1782476349,'2026-06-26 12:19:09','No messages',0),(2096978,1782476409,'2026-06-26 12:20:09','No messages',0),(2096979,1782476469,'2026-06-26 12:21:09','No messages',0),(2096980,1782476529,'2026-06-26 12:22:09','No messages',0),(2096981,1782476589,'2026-06-26 12:23:09','No messages',0),(2096982,1782476649,'2026-06-26 12:24:09','No messages',0),(2096983,1782476709,'2026-06-26 12:25:09','No messages',0),(2096984,1782476770,'2026-06-26 12:26:10','No messages',0),(2096985,1782476830,'2026-06-26 12:27:10','No messages',0),(2096986,1782476890,'2026-06-26 12:28:10','No messages',0),(2096987,1782476949,'2026-06-26 12:29:09','No messages',0),(2096988,1782477011,'2026-06-26 12:30:11','No messages',0),(2096989,1782477069,'2026-06-26 12:31:09','No messages',0),(2096990,1782477129,'2026-06-26 12:32:09','No messages',0),(2096991,1782477189,'2026-06-26 12:33:09','No messages',0),(2096992,1782477249,'2026-06-26 12:34:09','No messages',0),(2096993,1782477310,'2026-06-26 12:35:10','No messages',0),(2096994,1782477369,'2026-06-26 12:36:09','No messages',0),(2096995,1782477429,'2026-06-26 12:37:09','No messages',0),(2096996,1782477490,'2026-06-26 12:38:10','No messages',0),(2096997,1782477549,'2026-06-26 12:39:09','No messages',0),(2096998,1782477610,'2026-06-26 12:40:10','No messages',0),(2096999,1782477669,'2026-06-26 12:41:09','No messages',0),(2097000,1782477729,'2026-06-26 12:42:09','No messages',0),(2097001,1782477789,'2026-06-26 12:43:09','No messages',0),(2097002,1782477849,'2026-06-26 12:44:09','No messages',0),(2097003,1782477910,'2026-06-26 12:45:10','No messages',0),(2097004,1782477969,'2026-06-26 12:46:09','No messages',0),(2097005,1782478029,'2026-06-26 12:47:09','No messages',0),(2097006,1782478089,'2026-06-26 12:48:09','No messages',0),(2097007,1782478149,'2026-06-26 12:49:09','No messages',0),(2097008,1782478210,'2026-06-26 12:50:10','No messages',0),(2097009,1782478269,'2026-06-26 12:51:09','No messages',0),(2097010,1782478329,'2026-06-26 12:52:09','No messages',0),(2097011,1782478389,'2026-06-26 12:53:09','No messages',0),(2097012,1782478449,'2026-06-26 12:54:09','No messages',0),(2097013,1782478510,'2026-06-26 12:55:10','No messages',0),(2097014,1782478570,'2026-06-26 12:56:10','No messages',0),(2097015,1782478629,'2026-06-26 12:57:09','No messages',0),(2097016,1782478689,'2026-06-26 12:58:09','No messages',0),(2097017,1782478749,'2026-06-26 12:59:09','No messages',0),(2097018,1782478812,'2026-06-26 13:00:12','No messages',0),(2097019,1782478869,'2026-06-26 13:01:09','No messages',0),(2097020,1782478929,'2026-06-26 13:02:09','No messages',0),(2097021,1782478989,'2026-06-26 13:03:09','No messages',0),(2097022,1782479049,'2026-06-26 13:04:09','No messages',0),(2097023,1782479109,'2026-06-26 13:05:09','No messages',0),(2097024,1782479169,'2026-06-26 13:06:09','No messages',0),(2097025,1782479229,'2026-06-26 13:07:09','No messages',0),(2097026,1782479289,'2026-06-26 13:08:09','No messages',0),(2097027,1782479350,'2026-06-26 13:09:10','No messages',0),(2097028,1782479409,'2026-06-26 13:10:09','No messages',0),(2097029,1782479468,'2026-06-26 13:11:08','No messages',0),(2097030,1782479529,'2026-06-26 13:12:09','No messages',0),(2097031,1782479589,'2026-06-26 13:13:09','No messages',0),(2097032,1782479649,'2026-06-26 13:14:09','No messages',0),(2097033,1782479710,'2026-06-26 13:15:10','No messages',0),(2097034,1782479770,'2026-06-26 13:16:10','No messages',0),(2097035,1782479829,'2026-06-26 13:17:09','No messages',0),(2097036,1782479889,'2026-06-26 13:18:09','No messages',0),(2097037,1782479949,'2026-06-26 13:19:09','No messages',0),(2097038,1782480010,'2026-06-26 13:20:10','No messages',0),(2097039,1782480069,'2026-06-26 13:21:09','No messages',0),(2097040,1782480129,'2026-06-26 13:22:09','No messages',0),(2097041,1782480189,'2026-06-26 13:23:09','No messages',0),(2097042,1782480250,'2026-06-26 13:24:10','No messages',0),(2097043,1782480310,'2026-06-26 13:25:10','No messages',0),(2097044,1782480370,'2026-06-26 13:26:10','No messages',0),(2097045,1782480429,'2026-06-26 13:27:09','No messages',0),(2097046,1782480490,'2026-06-26 13:28:10','No messages',0),(2097047,1782480549,'2026-06-26 13:29:09','No messages',0),(2097048,1782480612,'2026-06-26 13:30:12','No messages',0),(2097049,1782480669,'2026-06-26 13:31:09','No messages',0),(2097050,1782480730,'2026-06-26 13:32:10','No messages',0),(2097051,1782480788,'2026-06-26 13:33:08','No messages',0),(2097052,1782480849,'2026-06-26 13:34:09','No messages',0),(2097053,1782480909,'2026-06-26 13:35:09','No messages',0),(2097054,1782480970,'2026-06-26 13:36:10','No messages',0),(2097055,1782481029,'2026-06-26 13:37:09','No messages',0),(2097056,1782481090,'2026-06-26 13:38:10','No messages',0),(2097057,1782481149,'2026-06-26 13:39:09','No messages',0),(2097058,1782481209,'2026-06-26 13:40:09','No messages',0),(2097059,1782481269,'2026-06-26 13:41:09','No messages',0),(2097060,1782481330,'2026-06-26 13:42:10','No messages',0),(2097061,1782481389,'2026-06-26 13:43:09','No messages',0),(2097062,1782481449,'2026-06-26 13:44:09','No messages',0),(2097063,1782481510,'2026-06-26 13:45:10','No messages',0),(2097064,1782481570,'2026-06-26 13:46:10','No messages',0),(2097065,1782481628,'2026-06-26 13:47:08','No messages',0),(2097066,1782481689,'2026-06-26 13:48:09','No messages',0),(2097067,1782481749,'2026-06-26 13:49:09','No messages',0),(2097068,1782481810,'2026-06-26 13:50:10','No messages',0),(2097069,1782481869,'2026-06-26 13:51:09','No messages',0),(2097070,1782481930,'2026-06-26 13:52:10','No messages',0),(2097071,1782481989,'2026-06-26 13:53:09','No messages',0),(2097072,1782482049,'2026-06-26 13:54:09','No messages',0),(2097073,1782482109,'2026-06-26 13:55:09','No messages',0),(2097074,1782482170,'2026-06-26 13:56:10','No messages',0),(2097075,1782482228,'2026-06-26 13:57:08','No messages',0),(2097076,1782482289,'2026-06-26 13:58:09','No messages',0),(2097077,1782482348,'2026-06-26 13:59:08','No messages',0),(2097078,1782482411,'2026-06-26 14:00:11','No messages',0),(2097079,1782482469,'2026-06-26 14:01:09','No messages',0),(2097080,1782482529,'2026-06-26 14:02:09','No messages',0),(2097081,1782482588,'2026-06-26 14:03:08','No messages',0),(2097082,1782482650,'2026-06-26 14:04:10','No messages',0),(2097083,1782482710,'2026-06-26 14:05:10','No messages',0),(2097084,1782482770,'2026-06-26 14:06:10','No messages',0),(2097085,1782482829,'2026-06-26 14:07:09','No messages',0),(2097086,1782482889,'2026-06-26 14:08:09','No messages',0),(2097087,1782482950,'2026-06-26 14:09:10','No messages',0),(2097088,1782483010,'2026-06-26 14:10:10','No messages',0),(2097089,1782483069,'2026-06-26 14:11:09','No messages',0),(2097090,1782483129,'2026-06-26 14:12:09','No messages',0),(2097091,1782483189,'2026-06-26 14:13:09','No messages',0),(2097092,1782483250,'2026-06-26 14:14:10','No messages',0),(2097093,1782483310,'2026-06-26 14:15:10','No messages',0),(2097094,1782483369,'2026-06-26 14:16:09','No messages',0),(2097095,1782483429,'2026-06-26 14:17:09','No messages',0),(2097096,1782483490,'2026-06-26 14:18:10','No messages',0),(2097097,1782483549,'2026-06-26 14:19:09','No messages',0),(2097098,1782483609,'2026-06-26 14:20:09','No messages',0),(2097099,1782483670,'2026-06-26 14:21:10','No messages',0),(2097100,1782483729,'2026-06-26 14:22:09','No messages',0),(2097101,1782483790,'2026-06-26 14:23:10','No messages',0),(2097102,1782483849,'2026-06-26 14:24:09','No messages',0),(2097103,1782483909,'2026-06-26 14:25:09','No messages',0),(2097104,1782483970,'2026-06-26 14:26:10','No messages',0),(2097105,1782484029,'2026-06-26 14:27:09','No messages',0),(2097106,1782484090,'2026-06-26 14:28:10','No messages',0),(2097107,1782484149,'2026-06-26 14:29:09','No messages',0),(2097108,1782484211,'2026-06-26 14:30:11','No messages',0),(2097109,1782484269,'2026-06-26 14:31:09','No messages',0),(2097110,1782484329,'2026-06-26 14:32:09','No messages',0),(2097111,1782484389,'2026-06-26 14:33:09','No messages',0),(2097112,1782484450,'2026-06-26 14:34:10','No messages',0),(2097113,1782484510,'2026-06-26 14:35:10','No messages',0),(2097114,1782484568,'2026-06-26 14:36:08','No messages',0),(2097115,1782484630,'2026-06-26 14:37:10','No messages',0),(2097116,1782484690,'2026-06-26 14:38:10','No messages',0),(2097117,1782484750,'2026-06-26 14:39:10','No messages',0),(2097118,1782484810,'2026-06-26 14:40:10','No messages',0),(2097119,1782484870,'2026-06-26 14:41:10','No messages',0),(2097120,1782484930,'2026-06-26 14:42:10','No messages',0),(2097121,1782484990,'2026-06-26 14:43:10','No messages',0),(2097122,1782485049,'2026-06-26 14:44:09','No messages',0),(2097123,1782485111,'2026-06-26 14:45:11','No messages',0),(2097124,1782485170,'2026-06-26 14:46:10','No messages',0),(2097125,1782485229,'2026-06-26 14:47:09','No messages',0),(2097126,1782485289,'2026-06-26 14:48:09','No messages',0),(2097127,1782485349,'2026-06-26 14:49:09','No messages',0),(2097128,1782485410,'2026-06-26 14:50:10','No messages',0),(2097129,1782485468,'2026-06-26 14:51:08','No messages',0),(2097130,1782485530,'2026-06-26 14:52:10','No messages',0),(2097131,1782485589,'2026-06-26 14:53:09','No messages',0),(2097132,1782485649,'2026-06-26 14:54:09','No messages',0),(2097133,1782485709,'2026-06-26 14:55:09','No messages',0),(2097134,1782485769,'2026-06-26 14:56:09','No messages',0),(2097135,1782485829,'2026-06-26 14:57:09','No messages',0),(2097136,1782485889,'2026-06-26 14:58:09','No messages',0),(2097137,1782485948,'2026-06-26 14:59:08','No messages',0),(2097138,1782486013,'2026-06-26 15:00:13','No messages',0),(2097139,1782486069,'2026-06-26 15:01:09','No messages',0),(2097140,1782486130,'2026-06-26 15:02:10','No messages',0),(2097141,1782486189,'2026-06-26 15:03:09','No messages',0),(2097142,1782486250,'2026-06-26 15:04:10','No messages',0),(2097143,1782486310,'2026-06-26 15:05:10','No messages',0),(2097144,1782486368,'2026-06-26 15:06:08','No messages',0),(2097145,1782486429,'2026-06-26 15:07:09','No messages',0),(2097146,1782486489,'2026-06-26 15:08:09','No messages',0),(2097147,1782486549,'2026-06-26 15:09:09','No messages',0),(2097148,1782486610,'2026-06-26 15:10:10','No messages',0),(2097149,1782486669,'2026-06-26 15:11:09','No messages',0),(2097150,1782486729,'2026-06-26 15:12:09','No messages',0),(2097151,1782486789,'2026-06-26 15:13:09','No messages',0),(2097152,1782486849,'2026-06-26 15:14:09','No messages',0),(2097153,1782486911,'2026-06-26 15:15:11','No messages',0),(2097154,1782486970,'2026-06-26 15:16:10','No messages',0),(2097155,1782487029,'2026-06-26 15:17:09','No messages',0),(2097156,1782487089,'2026-06-26 15:18:09','No messages',0),(2097157,1782487149,'2026-06-26 15:19:09','No messages',0),(2097158,1782487209,'2026-06-26 15:20:09','No messages',0),(2097159,1782487269,'2026-06-26 15:21:09','No messages',0),(2097160,1782487329,'2026-06-26 15:22:09','No messages',0),(2097161,1782487389,'2026-06-26 15:23:09','No messages',0),(2097162,1782487450,'2026-06-26 15:24:10','No messages',0);
/*!40000 ALTER TABLE `oto_queue_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_queue_vals`
--

DROP TABLE IF EXISTS `oto_queue_vals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_queue_vals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(20) DEFAULT NULL,
  `value` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_queue_vals`
--

LOCK TABLES `oto_queue_vals` WRITE;
/*!40000 ALTER TABLE `oto_queue_vals` DISABLE KEYS */;
INSERT INTO `oto_queue_vals` (`id`, `field`, `value`) VALUES (1,'lastqueue',1782487450),(2,'lastmail',1775971160),(3,'lastsched',1782486910),(4,'messagespermin',2147483647),(5,'queuelimit',2147483647),(6,'linkexpiretime',604800),(7,'maillength',2147483647),(8,'iframesend',1);
/*!40000 ALTER TABLE `oto_queue_vals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_reports`
--

DROP TABLE IF EXISTS `oto_reports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_reports` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` int(11) NOT NULL DEFAULT 0,
  `userfrom` int(11) NOT NULL,
  `messageid` int(11) NOT NULL,
  `subjecttext` varchar(200) NOT NULL DEFAULT 'No Subject',
  `bodytext` text NOT NULL,
  `reasontext` varchar(150) NOT NULL,
  `action` int(11) NOT NULL DEFAULT 0,
  `autosuspended` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_reports`
--

LOCK TABLES `oto_reports` WRITE;
/*!40000 ALTER TABLE `oto_reports` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_reports` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_rto`
--

DROP TABLE IF EXISTS `oto_rto`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_rto` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `totalpercent` int(3) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_rto`
--

LOCK TABLES `oto_rto` WRITE;
/*!40000 ALTER TABLE `oto_rto` DISABLE KEYS */;
INSERT INTO `oto_rto` (`id`, `totalpercent`) VALUES (1,100);
/*!40000 ALTER TABLE `oto_rto` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_rtoads`
--

DROP TABLE IF EXISTS `oto_rtoads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_rtoads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ipn` varchar(50) NOT NULL DEFAULT '0',
  `shown` int(11) NOT NULL DEFAULT 0,
  `percent` int(11) NOT NULL DEFAULT 0,
  `highnum` int(11) NOT NULL DEFAULT 0,
  `lownum` int(11) NOT NULL DEFAULT 0,
  `content` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_rtoads`
--

LOCK TABLES `oto_rtoads` WRITE;
/*!40000 ALTER TABLE `oto_rtoads` DISABLE KEYS */;
INSERT INTO `oto_rtoads` (`id`, `ipn`, `shown`, `percent`, `highnum`, `lownum`, `content`) VALUES (1,'1',277,5,100,95,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Frank Offer</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642019904_rapidlist.PNG\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n   \r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/frankss/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"629a2f9382b1c5192a2a7072\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Lm_MuwsfH\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"629a2f9382b1c5192a2a7072\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQd1RYV2VtcEUiOnsidXJsIjoicGFnZS0xIn0sIkxtX011d3NmSCI6eyJ1cmwiOiJpbmRleCJ9LCJ1ZnlIYV94RUIiOnsidXJsIjoicGFnZS0yIn0sImIyVXY1N0NfYyI6eyJ1cmwiOiJwYWdlLTMifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]},{\"url\":\"page-1\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]},{\"url\":\"page-2\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]},{\"url\":\"page-3\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"629a2f9382b1c5192a2a7072\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Lm_MuwsfH\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg-overlay\">\r\n        \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ-overlay\">\r\n        \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JVCXXwD5S\" class=\"style-JVCXXwD5S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iCmSs08Sld\" class=\"style-iCmSs08Sld\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nfirRvWGK\" class=\"style-nfirRvWGK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xTZi_evMGC\" class=\"style-xTZi_evMGC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OXhEVsTS8\" class=\"style-OXhEVsTS8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yFOAl8Qsa\" class=\"style-yFOAl8Qsa\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Um0LTpe26S\" class=\"style-Um0LTpe26S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VTDcqjeVAF\" class=\"style-VTDcqjeVAF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vgUGcPIBm4\" class=\"style-vgUGcPIBm4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"whhxswXXk\" class=\"style-whhxswXXk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2OYjNExA76\" class=\"style-2OYjNExA76\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QrE0OFzoJi\" class=\"style-QrE0OFzoJi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DNyAzqs9H7\" class=\"style-DNyAzqs9H7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLhagGVVn\" class=\"style-RLhagGVVn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN1aghq4v9\" class=\"style-TN1aghq4v9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U_ZCcozYg\" class=\"style-U_ZCcozYg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r63OVBFLUh\" class=\"style-r63OVBFLUh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sQtRe6Rwc\" class=\"style-sQtRe6Rwc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vnTODaA9QE\" class=\"style-vnTODaA9QE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6iHldzmCz\" class=\"style-6iHldzmCz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4NP6JjIe75\" class=\"style-4NP6JjIe75\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UdwRRkOfo\" class=\"style-UdwRRkOfo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"z8rI2JoDl4\" class=\"style-z8rI2JoDl4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Tq8OpWli4\" class=\"style-Tq8OpWli4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MZgDPaFPi\" class=\"style-MZgDPaFPi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SNMY4ddvF\" class=\"style-SNMY4ddvF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3xJsI9Ixq\" class=\"style-3xJsI9Ixq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6sNwx3y0a\" class=\"style-6sNwx3y0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pIJ3rEiST\" class=\"style-pIJ3rEiST\">\r\n        \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tfH5RN09F\" class=\"style-tfH5RN09F\">\r\n        \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ddNM8oouP\" class=\"style-ddNM8oouP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cwb1P7HsOg\" class=\"style-cwb1P7HsOg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gR603Xpf\" class=\"style-8gR603Xpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"42geRpfrF\" class=\"style-42geRpfrF\">\r\n        \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hnfQHp0bMt\" class=\"style-hnfQHp0bMt\">\r\n        \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CVNQ02KKdm\" class=\"style-CVNQ02KKdm\">\r\n        \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MDaop1dyw\" class=\"style-MDaop1dyw\">\r\n        \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zzAv4E_rRw\" class=\"style-zzAv4E_rRw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L0xSEIYQH\" class=\"style-L0xSEIYQH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm-overlay\">\r\n        \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI-overlay\">\r\n        \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5k68o8eDj\" class=\"style-5k68o8eDj\">\r\n        \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W_SJAxOpU\" class=\"style-W_SJAxOpU\">\r\n        \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YFdlYXI44s\" class=\"style-YFdlYXI44s\">\r\n        \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p28XSz2Dr8\" class=\"style-p28XSz2Dr8\">\r\n        \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2995INqmX1\" class=\"style-2995INqmX1\">\r\n        \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZWmM9oaZJ\" class=\"style-ZWmM9oaZJ\">\r\n        \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hELXlwHigF\" class=\"style-hELXlwHigF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UYNHzjc9XL\" class=\"style-UYNHzjc9XL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qwXOCMdvJ\" class=\"style-qwXOCMdvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iawQbhj_l0\" class=\"style-iawQbhj_l0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TlJxcKiu8\" class=\"style-TlJxcKiu8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EcDQd6Qsd\" class=\"style-EcDQd6Qsd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W8HPx4fW6\" class=\"style-W8HPx4fW6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R0ou7_aFZk\" class=\"style-R0ou7_aFZk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5tbUrKVVs\" class=\"style-f5tbUrKVVs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mkGntwDqul\" class=\"style-mkGntwDqul\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"99gBmU4Xl\" class=\"style-99gBmU4Xl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIveWZozs6\" class=\"style-sIveWZozs6\">\r\n        \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3e6FTAIs9i\" class=\"style-3e6FTAIs9i\">\r\n        \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3cVem03cLb\" class=\"style-3cVem03cLb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"luC52k9Dop\" class=\"style-luC52k9Dop\">\r\n        \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8GTfPE0lkh\" class=\"style-8GTfPE0lkh\">\r\n        \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1awR1nPvd\" class=\"style-D1awR1nPvd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"COSrbaDmsh\" class=\"style-COSrbaDmsh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J_z76_RZn4\" class=\"style-J_z76_RZn4\">\r\n        \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ecZSsAHodS\" class=\"style-ecZSsAHodS\">\r\n        \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OGWki8oIxK\" class=\"style-OGWki8oIxK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qolWUwBxkP\" class=\"style-qolWUwBxkP\">\r\n        \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QjPnswPgW\" class=\"style-0QjPnswPgW\">\r\n        \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7ZzygdnDK\" class=\"style-g7ZzygdnDK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TKi99xtCwc\" class=\"style-TKi99xtCwc\">\r\n        \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0x5gytyNi\" class=\"style-T0x5gytyNi\">\r\n        \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gKveClTNhg\" class=\"style-gKveClTNhg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uOTetmF0P\" class=\"style-uOTetmF0P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0JYRwodpQ\" class=\"style-E0JYRwodpQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fEQf_5kqEO\" class=\"style-fEQf_5kqEO\">\r\n        \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3y76PjGMq\" class=\"style-u3y76PjGMq\">\r\n        \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMftO9Mgj\" class=\"style-YMftO9Mgj\">\r\n        \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2YoPqR513B\" class=\"style-2YoPqR513B\">\r\n        \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uewobCXWOm\" class=\"style-uewobCXWOm\">\r\n        \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HhR4We9Pj8\" class=\"style-HhR4We9Pj8\">\r\n        \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LFjxRV27Z_\" class=\"style-LFjxRV27Z_\">\r\n        \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Bkx240IHc\" class=\"style-0Bkx240IHc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"90kZvTqr0k\" class=\"style-90kZvTqr0k\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GI8NsP9vMT\" class=\"style-GI8NsP9vMT\">\r\n        \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0k4k3iL1Ns\" class=\"style-0k4k3iL1Ns\">\r\n        \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tQSxU1bGH4\" class=\"style-tQSxU1bGH4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nGze91qLM9\" class=\"style-nGze91qLM9\">\r\n        \r\n        .gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YUf5Vd3Zpj\" class=\"style-YUf5Vd3Zpj\">\r\n        \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lY2ocfQuNI\" class=\"style-lY2ocfQuNI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQ8I7JjOB6\" class=\"style-FQ8I7JjOB6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm-overlay\">\r\n        \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VgJGWFybSh\" class=\"style-VgJGWFybSh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EpR3FYP8KP\" class=\"style-EpR3FYP8KP\">\r\n        \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lX20hlPRT\" class=\"style-lX20hlPRT\">\r\n        \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jQW6E608vc\" class=\"style-jQW6E608vc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KMb5y_c30p\" class=\"style-KMb5y_c30p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PtImyMcr0c\" class=\"style-PtImyMcr0c\">\r\n        \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ijpsmOUYOx\" class=\"style-ijpsmOUYOx\">\r\n        \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eNgUY5HN1A\" class=\"style-eNgUY5HN1A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hP3n278NIX\" class=\"style-hP3n278NIX\">\r\n        \r\n        .gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_BWma0JGM\" class=\"style-_BWma0JGM\">\r\n        \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fvIHB16pmC\" class=\"style-fvIHB16pmC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5zLeBtD88t\" class=\"style-5zLeBtD88t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0wgdKXhPc\" class=\"style-0wgdKXhPc\">\r\n        \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f209ypL8V\" class=\"style-f209ypL8V\">\r\n        \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0f09MduSfs\" class=\"style-0f09MduSfs\">\r\n        \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b823Irvqy3\" class=\"style-b823Irvqy3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0GX9ShP7cU\" class=\"style-0GX9ShP7cU\">\r\n        \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yg5Yj9zwn\" class=\"style-0yg5Yj9zwn\">\r\n        \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSP6aMQWwu\" class=\"style-fSP6aMQWwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jj4nhdDw4a\" class=\"style-jj4nhdDw4a\">\r\n        \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pLq0nkrGLt\" class=\"style-pLq0nkrGLt\">\r\n        \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_jMvnockmU\" class=\"style-_jMvnockmU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0MHvUy5W_c\" class=\"style-0MHvUy5W_c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"SrqqQY8ReI\" tabindex=\"0\" id=\"SrqqQY8ReI\" style=\"\"><a name=\"SrqqQY8ReI\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hELXlwHigF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" tabindex=\"0\"></div>\r\n    </section><section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8luFF1BBg\" tabindex=\"0\" id=\"8luFF1BBg\" style=\"\"><a name=\"8luFF1BBg\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"lY2ocfQuNI\" tabindex=\"0\"><div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n                    <div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tQSxU1bGH4\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0k4k3iL1Ns\">\r\n        <div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"90kZvTqr0k\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_EwCyTjIut\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-zzAv4E_rRw\"><strong>Stop Paying For Ads - Get Instant Traffic With Our Secret Content System!</strong></p></div><div class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0Bkx240IHc\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LFjxRV27Z_\">\r\n        <div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><figure data-gp-component-id=\"pIJ3rEiST\" data-gp-component=\"image\" data-gp-classes=\"\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-pIJ3rEiST\" alt=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654191851_userassetsCGAN7ACRuploadsimages7sysbs8-1649343483.png\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654191851_userassetsCGAN7ACRuploadsimages7sysbs8-1649343483.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-pIJ3rEiST\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" tabindex=\"0\"></figure></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"tfH5RN09F\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"SNqb6cK1g\" data-gp-component=\"null\" tabindex=\"0\"></div></div></div><div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uOTetmF0P\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"gKveClTNhg\" tabindex=\"0\"><div class=\"gp-component-id-T0x5gytyNi\">\r\n                    <div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"g7ZzygdnDK\" tabindex=\"0\"><div class=\"gp-component-id-0QjPnswPgW\">\r\n        <div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"x0qLSFNQm\" tabindex=\"0\" id=\"x0qLSFNQm\" style=\"\"><a name=\"x0qLSFNQm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"5zLeBtD88t\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"fvIHB16pmC\" tabindex=\"0\"><div class=\"gp-component-id-_BWma0JGM\">\r\n                    <div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"eNgUY5HN1A\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-ijpsmOUYOx\">\r\n        <div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"KMb5y_c30p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"egr33Q0P62\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are Some Awesome Features About</strong></p><p class=\"gp-component-id-L0xSEIYQH\"><strong> Gorilla Leads Content</strong></p></div><div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"8gR603Xpf\" tabindex=\"0\"><div class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"ddNM8oouP\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-42geRpfrF\">\r\n        <div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><li class=\"gp-component gp-component-id-yFOAl8Qsa\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"yFOAl8Qsa\" tabindex=\"0\" style=\"\"></li><li class=\"gp-component gp-component-id-6sNwx3y0a\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"6sNwx3y0a\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-qeOp1QGKmr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"qeOp1QGKmr\" data-gp-component=\"null\"><p class=\"gp-component-id-3xJsI9Ixq\"><strong>Unique Content</strong></p></div></li><li class=\"gp-component gp-component-id-nfirRvWGK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"nfirRvWGK\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-WznRJtsk1e\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"WznRJtsk1e\" data-gp-component=\"null\"><p class=\"gp-component-id-iCmSs08Sld\"><strong>Automation</strong> </p></div></li><li class=\"gp-component gp-component-id-OXhEVsTS8\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"OXhEVsTS8\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Ie9L5UMqBf\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"Ie9L5UMqBf\" data-gp-component=\"null\"><p class=\"gp-component-id-xTZi_evMGC\"><strong>Easy of Use</strong></p></div></li><li class=\"gp-component gp-component-id-SNMY4ddvF\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"SNMY4ddvF\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-QyUiCsNBBQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"QyUiCsNBBQ\" data-gp-component=\"null\"><p class=\"gp-component-id-MZgDPaFPi\"><strong>Newbie Friendly</strong></p></div></li><li class=\"gp-component gp-component-id-Tq8OpWli4\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"Tq8OpWli4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-9bPrBJ1hPM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"9bPrBJ1hPM\" data-gp-component=\"null\"><p class=\"gp-component-id-z8rI2JoDl4\"><strong>Fast</strong></p></div></li><li class=\"gp-component gp-component-id-UdwRRkOfo\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"UdwRRkOfo\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-1AOIHIPuT6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"1AOIHIPuT6\" data-gp-component=\"null\"><p class=\"gp-component-id-4NP6JjIe75\"><strong>Flexible Search</strong></p></div></li><li class=\"gp-component gp-component-id-6iHldzmCz\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"6iHldzmCz\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-5aSFlv3mee\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5aSFlv3mee\" data-gp-component=\"null\"><p class=\"gp-component-id-vnTODaA9QE\"><strong>Deep Search Filters</strong></p></div></li><li class=\"gp-component gp-component-id-sQtRe6Rwc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"sQtRe6Rwc\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-9p7fnOg7mp\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"9p7fnOg7mp\" data-gp-component=\"null\"><p class=\"gp-component-id-r63OVBFLUh\"><strong>Correct Grammar Mistakes</strong></p></div></li><li class=\"gp-component gp-component-id-VTDcqjeVAF\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"VTDcqjeVAF\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-chJEUREBkY\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"chJEUREBkY\" data-gp-component=\"null\"><p class=\"gp-component-id-Um0LTpe26S\"><strong>Auto Punctuator</strong></p></div></li><li class=\"gp-component gp-component-id-whhxswXXk\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"whhxswXXk\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-r50zUSn6bU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"r50zUSn6bU\" data-gp-component=\"null\"><p class=\"gp-component-id-vgUGcPIBm4\"><strong>Content Spinner</strong></p></div></li><li class=\"gp-component gp-component-id-QrE0OFzoJi\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"QrE0OFzoJi\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8lfypumkXF\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"8lfypumkXF\" data-gp-component=\"null\"><p class=\"gp-component-id-2OYjNExA76\"><strong>Quick Convert</strong></p></div></li><li class=\"gp-component gp-component-id-RLhagGVVn\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"RLhagGVVn\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sK6bAf0gP5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"sK6bAf0gP5\" data-gp-component=\"null\"><p class=\"gp-component-id-DNyAzqs9H7\"> <strong>Auto Images</strong></p></div></li><li class=\"gp-component gp-component-id-U_ZCcozYg\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"U_ZCcozYg\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-glqLvZm6fJ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"glqLvZm6fJ\" data-gp-component=\"null\"><p class=\"gp-component-id-TN1aghq4v9\"><strong>Featured Image</strong></p></div></li></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"5k68o8eDj\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-W_SJAxOpU\">\r\n        <div class=\"gp-component-id-YFdlYXI44s\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"jQW6E608vc\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-lX20hlPRT\">\r\n        <div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VgJGWFybSh\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" tabindex=\"0\"><div class=\"gp-component-id-YMftO9Mgj\">\r\n        <div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"c8LWFknvJ\" tabindex=\"0\" id=\"c8LWFknvJ\" style=\"\"><a name=\"c8LWFknvJ\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-_jMvnockmU\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"_jMvnockmU\" tabindex=\"0\"><div class=\"gp-component-id-pLq0nkrGLt\">\r\n                    <div class=\"gp-component-id-jj4nhdDw4a\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"fSP6aMQWwu\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0yg5Yj9zwn\">\r\n        <div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b823Irvqy3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-R0ou7_aFZk\"><strong>Limited Time Offer</strong></p><p class=\"gp-component-id-JVCXXwD5S\"><strong>$47</strong></p></div><div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GvtpTSa4U\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9TIdYziGZ\"><br></p></div><div class=\"gp-text-container gp-component gp-component-id-01cTbNoFM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"01cTbNoFM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-iZc26vcYxj\"><br></p></div><div class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"EcDQd6Qsd\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-u3y76PjGMq\">\r\n        <div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden object-cover object-center gp-component gp-component-id-W8HPx4fW6\" href=\"https://sturgismarket.us/content-gorilla-2/\" target=\"_blank\" data-gp-button-id=\"hK7YkoW1L\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" alt=\"\" class=\"object-cover object-center\"> </a></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"OGWki8oIxK\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-ecZSsAHodS\">\r\n        <div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0wgdKXhPc\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-f209ypL8V\">\r\n        <div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mkGntwDqul\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\" class=\"gp-component-id-qwXOCMdvJ\"><br></p></div></div><div class=\"gp-component gp-component-id-TlJxcKiu8 relative\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\">\r\n      \r\n      \r\n      \r\n      \r\n      \r\n      <div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-iawQbhj_l0\"><strong><u><a href=\"members.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">No thanks</a></u></strong><u><a href=\"members.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">. I am ready to pass on this.</a></u></p></div>\r\n\r\n\r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      <a href=\"members.php\" data-gp-button-id=\"X300uIL-Z\" class=\"gp-container-link data-gp-no-parser\"></a>\r\n    </div>\r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8gDwjOwtm\" tabindex=\"0\" id=\"8gDwjOwtm\" style=\"\"><a name=\"8gDwjOwtm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"COSrbaDmsh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"D1awR1nPvd\" tabindex=\"0\"><div class=\"gp-component-id-8GTfPE0lkh\">\r\n                    <div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"3cVem03cLb\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-3e6FTAIs9i\">\r\n        <div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654272187_soloswaps.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">'),(2,'2',134,5,95,90,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Freds Offer</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642019904_rapidlist.PNG\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    \r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/fred/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"629f817dd6480603c6479513\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"PwTXWempE\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"629f817dd6480603c6479513\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQd1RYV2VtcEUiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"629f817dd6480603c6479513\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"PwTXWempE\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style class=\"style-VPlUQcmI9\" data-gp-styled-element=\"VPlUQcmI9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VPlUQcmI9 {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VPlUQcmI9 {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VPlUQcmI9 {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VPlUQcmI9 {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-VPlUQcmI9 {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style class=\"style-4q3LSG4xh\" data-gp-styled-element=\"4q3LSG4xh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4q3LSG4xh {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4q3LSG4xh {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4q3LSG4xh {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4q3LSG4xh {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4q3LSG4xh {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XaQ4SgMyGP\" class=\"style-XaQ4SgMyGP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XaQ4SgMyGP {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XaQ4SgMyGP {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XaQ4SgMyGP {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XaQ4SgMyGP {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-XaQ4SgMyGP {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uppVWmxuy\" class=\"style-uppVWmxuy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uppVWmxuy[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uppVWmxuy[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uppVWmxuy[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uppVWmxuy[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uppVWmxuy[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN3eAMF8Tm\" class=\"style-TN3eAMF8Tm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN3eAMF8Tm {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN3eAMF8Tm {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN3eAMF8Tm {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN3eAMF8Tm {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN3eAMF8Tm {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"akQRdpPsE\" class=\"style-akQRdpPsE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-akQRdpPsE[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-akQRdpPsE[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-akQRdpPsE[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-akQRdpPsE[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-akQRdpPsE[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXrZyFA6tT\" class=\"style-hXrZyFA6tT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hXrZyFA6tT {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hXrZyFA6tT {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hXrZyFA6tT {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hXrZyFA6tT {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-hXrZyFA6tT {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9E7lnJ3eV\" class=\"style-9E7lnJ3eV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9E7lnJ3eV[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9E7lnJ3eV[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9E7lnJ3eV[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9E7lnJ3eV[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9E7lnJ3eV[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NxeinrkTd\" class=\"style-NxeinrkTd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NxeinrkTd[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 40px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NxeinrkTd[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 40px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NxeinrkTd[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 40px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NxeinrkTd[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 40px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NxeinrkTd[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 40px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KMb5y_c30p\" class=\"style-KMb5y_c30p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm-overlay\">\r\n        \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bGYQMQ0yS\" class=\"style-bGYQMQ0yS\">\r\n        \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iyMp9YDiSH\" class=\"style-iyMp9YDiSH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ereyMx8qd\" class=\"style-ereyMx8qd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GtfB5SoWSQ\" class=\"style-GtfB5SoWSQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GtfB5SoWSQ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GtfB5SoWSQ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GtfB5SoWSQ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GtfB5SoWSQ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-GtfB5SoWSQ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"i9IQ_Qcl0\" class=\"style-i9IQ_Qcl0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i9IQ_Qcl0[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i9IQ_Qcl0[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i9IQ_Qcl0[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i9IQ_Qcl0[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i9IQ_Qcl0[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MZJa720lXy\" class=\"style-MZJa720lXy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t2UbzQhM70\" class=\"style-t2UbzQhM70\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"60c_RaAnme\" class=\"style-60c_RaAnme\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qw7wHmzG9r\" class=\"style-qw7wHmzG9r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7SAHzBMVxb\" class=\"style-7SAHzBMVxb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vob6y0gN_\" class=\"style-vob6y0gN_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g5qUFX8D2x\" class=\"style-g5qUFX8D2x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WkR0boi2d\" class=\"style-WkR0boi2d\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0jNhDg_bY0\" class=\"style-0jNhDg_bY0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0jNhDg_bY0 {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0jNhDg_bY0 {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0jNhDg_bY0 {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0jNhDg_bY0 {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0jNhDg_bY0 {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s8amrw0Dvi\" class=\"style-s8amrw0Dvi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yFOAl8Qsa\" class=\"style-yFOAl8Qsa\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tfH5RN09F\" class=\"style-tfH5RN09F\">\r\n        \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ddNM8oouP\" class=\"style-ddNM8oouP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cwb1P7HsOg\" class=\"style-cwb1P7HsOg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kajrvBuY_\" class=\"style-kajrvBuY_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gR603Xpf\" class=\"style-8gR603Xpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"42geRpfrF\" class=\"style-42geRpfrF\">\r\n        \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hnfQHp0bMt\" class=\"style-hnfQHp0bMt\">\r\n        \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CVNQ02KKdm\" class=\"style-CVNQ02KKdm\">\r\n        \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MDaop1dyw\" class=\"style-MDaop1dyw\">\r\n        \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zzAv4E_rRw\" class=\"style-zzAv4E_rRw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L0xSEIYQH\" class=\"style-L0xSEIYQH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm-overlay\">\r\n        \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI-overlay\">\r\n        \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5k68o8eDj\" class=\"style-5k68o8eDj\">\r\n        \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W_SJAxOpU\" class=\"style-W_SJAxOpU\">\r\n        \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YFdlYXI44s\" class=\"style-YFdlYXI44s\">\r\n        \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p28XSz2Dr8\" class=\"style-p28XSz2Dr8\">\r\n        \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2995INqmX1\" class=\"style-2995INqmX1\">\r\n        \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZWmM9oaZJ\" class=\"style-ZWmM9oaZJ\">\r\n        \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hELXlwHigF\" class=\"style-hELXlwHigF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UYNHzjc9XL\" class=\"style-UYNHzjc9XL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2cCThK7xft\" class=\"style-2cCThK7xft\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qwXOCMdvJ\" class=\"style-qwXOCMdvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iawQbhj_l0\" class=\"style-iawQbhj_l0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TlJxcKiu8\" class=\"style-TlJxcKiu8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EcDQd6Qsd\" class=\"style-EcDQd6Qsd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W8HPx4fW6\" class=\"style-W8HPx4fW6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R0ou7_aFZk\" class=\"style-R0ou7_aFZk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5tbUrKVVs\" class=\"style-f5tbUrKVVs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Kgt2GY_oL_\" class=\"style-Kgt2GY_oL_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mkGntwDqul\" class=\"style-mkGntwDqul\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"99gBmU4Xl\" class=\"style-99gBmU4Xl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIveWZozs6\" class=\"style-sIveWZozs6\">\r\n        \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3e6FTAIs9i\" class=\"style-3e6FTAIs9i\">\r\n        \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3cVem03cLb\" class=\"style-3cVem03cLb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"luC52k9Dop\" class=\"style-luC52k9Dop\">\r\n        \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8GTfPE0lkh\" class=\"style-8GTfPE0lkh\">\r\n        \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1awR1nPvd\" class=\"style-D1awR1nPvd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"COSrbaDmsh\" class=\"style-COSrbaDmsh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J_z76_RZn4\" class=\"style-J_z76_RZn4\">\r\n        \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ecZSsAHodS\" class=\"style-ecZSsAHodS\">\r\n        \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OGWki8oIxK\" class=\"style-OGWki8oIxK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qolWUwBxkP\" class=\"style-qolWUwBxkP\">\r\n        \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QjPnswPgW\" class=\"style-0QjPnswPgW\">\r\n        \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7ZzygdnDK\" class=\"style-g7ZzygdnDK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TKi99xtCwc\" class=\"style-TKi99xtCwc\">\r\n        \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0x5gytyNi\" class=\"style-T0x5gytyNi\">\r\n        \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gKveClTNhg\" class=\"style-gKveClTNhg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uOTetmF0P\" class=\"style-uOTetmF0P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoQyW0XpHY\" class=\"style-eoQyW0XpHY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0JYRwodpQ\" class=\"style-E0JYRwodpQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fEQf_5kqEO\" class=\"style-fEQf_5kqEO\">\r\n        \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3y76PjGMq\" class=\"style-u3y76PjGMq\">\r\n        \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMftO9Mgj\" class=\"style-YMftO9Mgj\">\r\n        \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2YoPqR513B\" class=\"style-2YoPqR513B\">\r\n        \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uewobCXWOm\" class=\"style-uewobCXWOm\">\r\n        \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HhR4We9Pj8\" class=\"style-HhR4We9Pj8\">\r\n        \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LFjxRV27Z_\" class=\"style-LFjxRV27Z_\">\r\n        \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Bkx240IHc\" class=\"style-0Bkx240IHc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"90kZvTqr0k\" class=\"style-90kZvTqr0k\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GI8NsP9vMT\" class=\"style-GI8NsP9vMT\">\r\n        \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0k4k3iL1Ns\" class=\"style-0k4k3iL1Ns\">\r\n        \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tQSxU1bGH4\" class=\"style-tQSxU1bGH4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nGze91qLM9\" class=\"style-nGze91qLM9\">\r\n        \r\n        .gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YUf5Vd3Zpj\" class=\"style-YUf5Vd3Zpj\">\r\n        \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lY2ocfQuNI\" class=\"style-lY2ocfQuNI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQ8I7JjOB6\" class=\"style-FQ8I7JjOB6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg-overlay\">\r\n        \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VgJGWFybSh\" class=\"style-VgJGWFybSh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EpR3FYP8KP\" class=\"style-EpR3FYP8KP\">\r\n        \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lX20hlPRT\" class=\"style-lX20hlPRT\">\r\n        \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jQW6E608vc\" class=\"style-jQW6E608vc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PtImyMcr0c\" class=\"style-PtImyMcr0c\">\r\n        \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ijpsmOUYOx\" class=\"style-ijpsmOUYOx\">\r\n        \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eNgUY5HN1A\" class=\"style-eNgUY5HN1A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hP3n278NIX\" class=\"style-hP3n278NIX\">\r\n        \r\n        .gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_BWma0JGM\" class=\"style-_BWma0JGM\">\r\n        \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fvIHB16pmC\" class=\"style-fvIHB16pmC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5zLeBtD88t\" class=\"style-5zLeBtD88t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0wgdKXhPc\" class=\"style-0wgdKXhPc\">\r\n        \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f209ypL8V\" class=\"style-f209ypL8V\">\r\n        \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0f09MduSfs\" class=\"style-0f09MduSfs\">\r\n        \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ-overlay\">\r\n        \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b823Irvqy3\" class=\"style-b823Irvqy3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0GX9ShP7cU\" class=\"style-0GX9ShP7cU\">\r\n        \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yg5Yj9zwn\" class=\"style-0yg5Yj9zwn\">\r\n        \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSP6aMQWwu\" class=\"style-fSP6aMQWwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jj4nhdDw4a\" class=\"style-jj4nhdDw4a\">\r\n        \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pLq0nkrGLt\" class=\"style-pLq0nkrGLt\">\r\n        \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_jMvnockmU\" class=\"style-_jMvnockmU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0MHvUy5W_c\" class=\"style-0MHvUy5W_c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"SrqqQY8ReI\" tabindex=\"0\" id=\"SrqqQY8ReI\" style=\"\"><a name=\"SrqqQY8ReI\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hELXlwHigF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" tabindex=\"0\"></div>\r\n    </section><section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8luFF1BBg\" tabindex=\"0\" id=\"8luFF1BBg\" style=\"\"><a name=\"8luFF1BBg\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"lY2ocfQuNI\" tabindex=\"0\"><div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n                    <div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tQSxU1bGH4\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0k4k3iL1Ns\">\r\n        <div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"90kZvTqr0k\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_EwCyTjIut\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-zzAv4E_rRw\"><strong>Partner And Profit</strong></p></div><div class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0Bkx240IHc\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LFjxRV27Z_\">\r\n        <div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><div data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component-id-bGYQMQ0yS gp-component\" data-gp-classes=\"\" data-gp-component=\"video-all\" data-gp-component-id=\"bGYQMQ0yS\" tabindex=\"0\">\r\n        <div class=\"bg-black cursor-pointer\" style=\"padding-bottom: 56.25%;\">\r\n        \r\n        <iframe src=\"https://www.youtube.com/embed/gsjhNponPdY?rel=0&modestbranding=1&controls=1\" data-gp-vembed-id=\"KN-b1eTWk\" allow=\"autoplay\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" allowfullscreen=\"\" mozallowfullscreen=\"\" webkitallowfullscreen=\"\" oallowfullscreen=\"\" msallowfullscreen=\"\"></iframe>\r\n        \r\n        </div>\r\n      </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"tfH5RN09F\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"SNqb6cK1g\" data-gp-component=\"null\" tabindex=\"0\"></div></div></div><div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uOTetmF0P\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"gKveClTNhg\" tabindex=\"0\"><div class=\"gp-component-id-T0x5gytyNi\">\r\n                    <div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"g7ZzygdnDK\" tabindex=\"0\"><div class=\"gp-component-id-0QjPnswPgW\">\r\n        <div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"x0qLSFNQm\" tabindex=\"0\" id=\"x0qLSFNQm\" style=\"\"><a name=\"x0qLSFNQm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"5zLeBtD88t\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"fvIHB16pmC\" tabindex=\"0\"><div class=\"gp-component-id-_BWma0JGM\">\r\n                    <div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"eNgUY5HN1A\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-ijpsmOUYOx\">\r\n        <div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"KMb5y_c30p\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654620955_7-Figure-Affiliate-System-Stack.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-NxeinrkTd\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"NxeinrkTd\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"egr33Q0P62\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are Some Awesome Features About</strong></p><p class=\"gp-component-id-L0xSEIYQH\"><strong> The 7 Figure Affiliate System</strong></p></div><div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"8gR603Xpf\" tabindex=\"0\"><div class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"ddNM8oouP\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-42geRpfrF\">\r\n        <div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><li class=\"gp-component gp-component-id-kajrvBuY_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"kajrvBuY_\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-i3WFfR26Rm\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"i3WFfR26Rm\" data-gp-component=\"null\"><p class=\"gp-component-id-s8amrw0Dvi\"> <strong>Our Highest Converting Offer Ever</strong></p></div></li><li class=\"gp-component gp-component-id-yFOAl8Qsa\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"yFOAl8Qsa\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-5vU2sirE8O\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"5vU2sirE8O\" data-gp-component=\"null\"><p class=\"gp-component-id-0jNhDg_bY0\"> <strong>100% Commissions On The ENTIRE Funnel, FE, Bump & All The OTO\'s</strong></p></div></li><li class=\"gp-component gp-component-id-i9IQ_Qcl0\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"i9IQ_Qcl0\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-D2w57_8u0f\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"D2w57_8u0f\" data-gp-component=\"null\"><p class=\"gp-component-id-GtfB5SoWSQ\"> <strong>Up to $417.95 Commission Per Customer</strong></p></div></li><li class=\"gp-component gp-component-id-t2UbzQhM70\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"t2UbzQhM70\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vBhnVHM0hm\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"vBhnVHM0hm\" data-gp-component=\"null\"><p class=\"gp-component-id-MZJa720lXy\"> <strong>Irresistible Front-End Offer $9.95</strong></p></div></li><li class=\"gp-component gp-component-id-qw7wHmzG9r\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"qw7wHmzG9r\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sBOs8PZPq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"sBOs8PZPq\" data-gp-component=\"null\"><p class=\"gp-component-id-60c_RaAnme\"> <strong>Rapid Affiliate QuickStart Guide (Value $47)</strong></p></div></li><li class=\"gp-component gp-component-id-vob6y0gN_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"vob6y0gN_\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-X_9aaxvsFm\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"X_9aaxvsFm\" data-gp-component=\"null\"><p class=\"gp-component-id-7SAHzBMVxb\"> <strong>Affiliate Profit Matrix Calculator (Value $47)</strong></p></div></li><li class=\"gp-component gp-component-id-WkR0boi2d\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"WkR0boi2d\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-w83jEeabP_\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w83jEeabP_\" data-gp-component=\"null\"><p class=\"gp-component-id-g5qUFX8D2x\"> <strong>The 7 Figure Affiliate Growth Orientation Session (Value $197)</strong></p></div></li><li class=\"gp-component gp-component-id-ereyMx8qd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"ereyMx8qd\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-avX79fDust\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"avX79fDust\" data-gp-component=\"null\"><p class=\"gp-component-id-iyMp9YDiSH\"> <strong>Community Access (Value $47)</strong></p></div></li><li class=\"gp-component gp-component-id-uppVWmxuy\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"uppVWmxuy\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-CM0ut7ijoC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CM0ut7ijoC\" data-gp-component=\"null\"><p class=\"gp-component-id-XaQ4SgMyGP\"> <strong>Affiliate Millionaire Mindset (Value $197)</strong></p></div></li><li class=\"gp-component gp-component-id-akQRdpPsE\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"akQRdpPsE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-hOUmg0rpO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"hOUmg0rpO\" data-gp-component=\"null\"><p class=\"gp-component-id-TN3eAMF8Tm\"> <strong>Ultimate Accountability System (Value $47)</strong></p></div></li><li class=\"gp-component gp-component-id-9E7lnJ3eV\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"9E7lnJ3eV\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-CBxC_9GvjQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"CBxC_9GvjQ\" data-gp-component=\"null\"><p class=\"gp-component-id-hXrZyFA6tT\"> <strong>7 Day Affiliate Fast Start (Value $47)</strong></p></div></li></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"5k68o8eDj\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-W_SJAxOpU\">\r\n        <div class=\"gp-component-id-YFdlYXI44s\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"jQW6E608vc\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-lX20hlPRT\">\r\n        <div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VgJGWFybSh\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" tabindex=\"0\"><div class=\"gp-component-id-YMftO9Mgj\">\r\n        <div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"c8LWFknvJ\" tabindex=\"0\" id=\"c8LWFknvJ\" style=\"\"><a name=\"c8LWFknvJ\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-_jMvnockmU\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"_jMvnockmU\" tabindex=\"0\"><div class=\"gp-component-id-pLq0nkrGLt\">\r\n                    <div class=\"gp-component-id-jj4nhdDw4a\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"fSP6aMQWwu\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0yg5Yj9zwn\">\r\n        <div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b823Irvqy3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-R0ou7_aFZk\"><strong>Hurry!</strong><br>Take advantage of this Special Offer</p></div><div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GvtpTSa4U\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-eoQyW0XpHY\"><strong>$9.95</strong></p></div><div class=\"gp-text-container gp-component gp-component-id-01cTbNoFM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"01cTbNoFM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Kgt2GY_oL_\">..is Your discounted price for today!</p></div><div class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"EcDQd6Qsd\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-u3y76PjGMq\">\r\n        <div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden gp-component gp-component-id-W8HPx4fW6\" href=\"http://clickly.club/MC7Fig/\" target=\"_blank\" data-gp-button-id=\"iX0Qynf4M\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" alt=\"\" class=\"object-cover object-center\"> </a></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"OGWki8oIxK\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-ecZSsAHodS\">\r\n        <div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0wgdKXhPc\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-f209ypL8V\">\r\n        <div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mkGntwDqul\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-qwXOCMdvJ\" style=\"text-align: center;\">I Understand this is a one time payment and I will not be charged again,</p><p class=\"gp-component-id-2cCThK7xft\" style=\"text-align: center;\">unless I choose to purchase the package again.</p></div></div><div class=\"gp-component gp-component-id-TlJxcKiu8 relative\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\" tabindex=\"0\">\r\n      \r\n      <div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-iawQbhj_l0\"><strong><u><a href=\"https://soloswaps.com/login.php?s=noauth\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">No thanks</a></u></strong><u><a href=\"https://soloswaps.com/login.php?s=noauth\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">. I am ready to pass on this.</a></u></p></div>\r\n      \r\n    \r\n      <a href=\"members.php\" data-gp-button-id=\"BEVVqmZIX\" class=\"gp-container-link data-gp-no-parser\"></a>\r\n    </div>\r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8gDwjOwtm\" tabindex=\"0\" id=\"8gDwjOwtm\" style=\"\"><a name=\"8gDwjOwtm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"COSrbaDmsh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"D1awR1nPvd\" tabindex=\"0\"><div class=\"gp-component-id-8GTfPE0lkh\">\r\n                    <div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">\r\n\r\n</div>\r\n                </div></div><div class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"3cVem03cLb\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-3e6FTAIs9i\">\r\n        <div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654272187_soloswaps.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">'),(3,'3',122,5,90,85,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Gordons Offer</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642019904_rapidlist.PNG\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    \r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/gordonoffer/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"629f8e399e7fb03fb03270a2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"PwTXWempE\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"629f8e399e7fb03fb03270a2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQd1RYV2VtcEUiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"629f8e399e7fb03fb03270a2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"PwTXWempE\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm-overlay\">\r\n        \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sfMSAVi2d\" class=\"style-sfMSAVi2d\">\r\n        \r\n        .gp-component-id-sfMSAVi2d {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sfMSAVi2d {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sfMSAVi2d {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sfMSAVi2d {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sfMSAVi2d {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sfMSAVi2d {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg-overlay\">\r\n        \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KMb5y_c30p\" class=\"style-KMb5y_c30p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bGYQMQ0yS\" class=\"style-bGYQMQ0yS\">\r\n        \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"s8amrw0Dvi\" class=\"style-s8amrw0Dvi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tfH5RN09F\" class=\"style-tfH5RN09F\">\r\n        \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ddNM8oouP\" class=\"style-ddNM8oouP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cwb1P7HsOg\" class=\"style-cwb1P7HsOg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kajrvBuY_\" class=\"style-kajrvBuY_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gR603Xpf\" class=\"style-8gR603Xpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"42geRpfrF\" class=\"style-42geRpfrF\">\r\n        \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hnfQHp0bMt\" class=\"style-hnfQHp0bMt\">\r\n        \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CVNQ02KKdm\" class=\"style-CVNQ02KKdm\">\r\n        \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MDaop1dyw\" class=\"style-MDaop1dyw\">\r\n        \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zzAv4E_rRw\" class=\"style-zzAv4E_rRw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L0xSEIYQH\" class=\"style-L0xSEIYQH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm-overlay\">\r\n        \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI-overlay\">\r\n        \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5k68o8eDj\" class=\"style-5k68o8eDj\">\r\n        \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W_SJAxOpU\" class=\"style-W_SJAxOpU\">\r\n        \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YFdlYXI44s\" class=\"style-YFdlYXI44s\">\r\n        \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p28XSz2Dr8\" class=\"style-p28XSz2Dr8\">\r\n        \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2995INqmX1\" class=\"style-2995INqmX1\">\r\n        \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZWmM9oaZJ\" class=\"style-ZWmM9oaZJ\">\r\n        \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hELXlwHigF\" class=\"style-hELXlwHigF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UYNHzjc9XL\" class=\"style-UYNHzjc9XL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2cCThK7xft\" class=\"style-2cCThK7xft\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qwXOCMdvJ\" class=\"style-qwXOCMdvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iawQbhj_l0\" class=\"style-iawQbhj_l0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TlJxcKiu8\" class=\"style-TlJxcKiu8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EcDQd6Qsd\" class=\"style-EcDQd6Qsd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W8HPx4fW6\" class=\"style-W8HPx4fW6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R0ou7_aFZk\" class=\"style-R0ou7_aFZk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5tbUrKVVs\" class=\"style-f5tbUrKVVs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Kgt2GY_oL_\" class=\"style-Kgt2GY_oL_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mkGntwDqul\" class=\"style-mkGntwDqul\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"99gBmU4Xl\" class=\"style-99gBmU4Xl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIveWZozs6\" class=\"style-sIveWZozs6\">\r\n        \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3e6FTAIs9i\" class=\"style-3e6FTAIs9i\">\r\n        \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3cVem03cLb\" class=\"style-3cVem03cLb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"luC52k9Dop\" class=\"style-luC52k9Dop\">\r\n        \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8GTfPE0lkh\" class=\"style-8GTfPE0lkh\">\r\n        \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1awR1nPvd\" class=\"style-D1awR1nPvd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"COSrbaDmsh\" class=\"style-COSrbaDmsh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J_z76_RZn4\" class=\"style-J_z76_RZn4\">\r\n        \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ecZSsAHodS\" class=\"style-ecZSsAHodS\">\r\n        \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OGWki8oIxK\" class=\"style-OGWki8oIxK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qolWUwBxkP\" class=\"style-qolWUwBxkP\">\r\n        \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QjPnswPgW\" class=\"style-0QjPnswPgW\">\r\n        \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7ZzygdnDK\" class=\"style-g7ZzygdnDK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TKi99xtCwc\" class=\"style-TKi99xtCwc\">\r\n        \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0x5gytyNi\" class=\"style-T0x5gytyNi\">\r\n        \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gKveClTNhg\" class=\"style-gKveClTNhg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uOTetmF0P\" class=\"style-uOTetmF0P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoQyW0XpHY\" class=\"style-eoQyW0XpHY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0JYRwodpQ\" class=\"style-E0JYRwodpQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fEQf_5kqEO\" class=\"style-fEQf_5kqEO\">\r\n        \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3y76PjGMq\" class=\"style-u3y76PjGMq\">\r\n        \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMftO9Mgj\" class=\"style-YMftO9Mgj\">\r\n        \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2YoPqR513B\" class=\"style-2YoPqR513B\">\r\n        \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uewobCXWOm\" class=\"style-uewobCXWOm\">\r\n        \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HhR4We9Pj8\" class=\"style-HhR4We9Pj8\">\r\n        \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LFjxRV27Z_\" class=\"style-LFjxRV27Z_\">\r\n        \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Bkx240IHc\" class=\"style-0Bkx240IHc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"90kZvTqr0k\" class=\"style-90kZvTqr0k\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GI8NsP9vMT\" class=\"style-GI8NsP9vMT\">\r\n        \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0k4k3iL1Ns\" class=\"style-0k4k3iL1Ns\">\r\n        \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tQSxU1bGH4\" class=\"style-tQSxU1bGH4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nGze91qLM9\" class=\"style-nGze91qLM9\">\r\n        \r\n        .gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YUf5Vd3Zpj\" class=\"style-YUf5Vd3Zpj\">\r\n        \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lY2ocfQuNI\" class=\"style-lY2ocfQuNI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQ8I7JjOB6\" class=\"style-FQ8I7JjOB6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VgJGWFybSh\" class=\"style-VgJGWFybSh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EpR3FYP8KP\" class=\"style-EpR3FYP8KP\">\r\n        \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lX20hlPRT\" class=\"style-lX20hlPRT\">\r\n        \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jQW6E608vc\" class=\"style-jQW6E608vc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PtImyMcr0c\" class=\"style-PtImyMcr0c\">\r\n        \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ijpsmOUYOx\" class=\"style-ijpsmOUYOx\">\r\n        \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eNgUY5HN1A\" class=\"style-eNgUY5HN1A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hP3n278NIX\" class=\"style-hP3n278NIX\">\r\n        \r\n        .gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_BWma0JGM\" class=\"style-_BWma0JGM\">\r\n        \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fvIHB16pmC\" class=\"style-fvIHB16pmC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5zLeBtD88t\" class=\"style-5zLeBtD88t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0wgdKXhPc\" class=\"style-0wgdKXhPc\">\r\n        \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f209ypL8V\" class=\"style-f209ypL8V\">\r\n        \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0f09MduSfs\" class=\"style-0f09MduSfs\">\r\n        \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ-overlay\">\r\n        \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b823Irvqy3\" class=\"style-b823Irvqy3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0GX9ShP7cU\" class=\"style-0GX9ShP7cU\">\r\n        \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yg5Yj9zwn\" class=\"style-0yg5Yj9zwn\">\r\n        \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSP6aMQWwu\" class=\"style-fSP6aMQWwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jj4nhdDw4a\" class=\"style-jj4nhdDw4a\">\r\n        \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pLq0nkrGLt\" class=\"style-pLq0nkrGLt\">\r\n        \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_jMvnockmU\" class=\"style-_jMvnockmU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0MHvUy5W_c\" class=\"style-0MHvUy5W_c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"SrqqQY8ReI\" tabindex=\"0\" id=\"SrqqQY8ReI\" style=\"\"><a name=\"SrqqQY8ReI\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hELXlwHigF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" tabindex=\"0\"></div>\r\n    </section><section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8luFF1BBg\" tabindex=\"0\" id=\"8luFF1BBg\" style=\"\"><a name=\"8luFF1BBg\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"lY2ocfQuNI\" tabindex=\"0\"><div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n                    <div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tQSxU1bGH4\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0k4k3iL1Ns\">\r\n        <div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"90kZvTqr0k\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_EwCyTjIut\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-zzAv4E_rRw\"><strong>Spoiler Alert: This Entire Product Launch SaleFunnels is Builtusing The Revolutionary A-1-Tec In Just Minutes</strong></p></div><div class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0Bkx240IHc\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LFjxRV27Z_\">\r\n        <div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><div data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component-id-bGYQMQ0yS gp-component\" data-gp-classes=\"\" data-gp-component=\"video-all\" data-gp-component-id=\"bGYQMQ0yS\" tabindex=\"0\">\r\n        <div class=\"bg-black cursor-pointer\" style=\"padding-bottom: 56.25%;\">\r\n        \r\n        <iframe src=\"https://player.vimeo.com/video/696178240?portrait=0&transparent=1\" data-gp-vembed-id=\"xsWqpt3B4\" allow=\"autoplay; fullscreen\" allowfullscreen=\"\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"></iframe>\r\n        \r\n        </div>\r\n      </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"tfH5RN09F\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"SNqb6cK1g\" data-gp-component=\"null\" tabindex=\"0\"></div></div></div><div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uOTetmF0P\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"gKveClTNhg\" tabindex=\"0\"><div class=\"gp-component-id-T0x5gytyNi\">\r\n                    <div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"g7ZzygdnDK\" tabindex=\"0\"><div class=\"gp-component-id-0QjPnswPgW\">\r\n        <div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"x0qLSFNQm\" tabindex=\"0\" id=\"x0qLSFNQm\" style=\"\"><a name=\"x0qLSFNQm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"5zLeBtD88t\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"fvIHB16pmC\" tabindex=\"0\"><div class=\"gp-component-id-_BWma0JGM\">\r\n                    <div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"eNgUY5HN1A\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-ijpsmOUYOx\">\r\n        <div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"KMb5y_c30p\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654624482_fcVp5K9.png?update=2\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-sfMSAVi2d\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"sfMSAVi2d\"><div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"egr33Q0P62\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here is An Awesome Features About</strong></p><p class=\"gp-component-id-L0xSEIYQH\"><strong> Funnelz Gold</strong></p></div><div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"8gR603Xpf\" tabindex=\"0\"><div class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"ddNM8oouP\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-42geRpfrF\">\r\n        <div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><li class=\"gp-component gp-component-id-kajrvBuY_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"kajrvBuY_\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-i3WFfR26Rm\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"i3WFfR26Rm\" data-gp-component=\"null\"><p class=\"gp-component-id-s8amrw0Dvi\"> <strong>First-to-Market AI-Assisted Funnel Builder *Builds Mobile Responsive Funnels With AMP Tech</strong></p></div></li></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"5k68o8eDj\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-W_SJAxOpU\">\r\n        <div class=\"gp-component-id-YFdlYXI44s\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"jQW6E608vc\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-lX20hlPRT\">\r\n        <div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VgJGWFybSh\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" tabindex=\"0\"><div class=\"gp-component-id-YMftO9Mgj\">\r\n        <div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"c8LWFknvJ\" tabindex=\"0\" id=\"c8LWFknvJ\" style=\"\"><a name=\"c8LWFknvJ\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-_jMvnockmU\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"_jMvnockmU\" tabindex=\"0\"><div class=\"gp-component-id-pLq0nkrGLt\">\r\n                    <div class=\"gp-component-id-jj4nhdDw4a\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"fSP6aMQWwu\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0yg5Yj9zwn\">\r\n        <div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b823Irvqy3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-R0ou7_aFZk\"><strong>Hurry!</strong><br>Take advantage of this Special Offer</p></div><div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GvtpTSa4U\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-eoQyW0XpHY\"><strong>$47 One Time</strong></p></div><div class=\"gp-text-container gp-component gp-component-id-01cTbNoFM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"01cTbNoFM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Kgt2GY_oL_\">..is Your discounted price for today!</p></div><div class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"EcDQd6Qsd\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-u3y76PjGMq\">\r\n        <div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden gp-component gp-component-id-W8HPx4fW6\" href=\"https://irc.thrivecart.com/funnelz-gold/\" target=\"_blank\" data-gp-button-id=\"h6YrpDCG7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" alt=\"\" class=\"object-cover object-center\"> </a></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"OGWki8oIxK\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-ecZSsAHodS\">\r\n        <div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0wgdKXhPc\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-f209ypL8V\">\r\n        <div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mkGntwDqul\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-qwXOCMdvJ\" style=\"text-align: center;\">I Understand this is a one time payment and I will not be charged again,</p><p class=\"gp-component-id-2cCThK7xft\" style=\"text-align: center;\">unless I choose to purchase the package again.</p></div></div><div class=\"gp-component gp-component-id-TlJxcKiu8 relative\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\" tabindex=\"0\">\r\n      \r\n      <div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-iawQbhj_l0\"><strong><u><a href=\"https://soloswaps.com/login.php?s=noauth\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">No thanks</a></u></strong><u><a href=\"https://soloswaps.com/login.php?s=noauth\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">. I am ready to pass on this.</a></u></p></div>\r\n      \r\n    \r\n      <a href=\"members.php\" data-gp-button-id=\"BEVVqmZIX\" class=\"gp-container-link data-gp-no-parser\"></a>\r\n    </div>\r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8gDwjOwtm\" tabindex=\"0\" id=\"8gDwjOwtm\" style=\"\"><a name=\"8gDwjOwtm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"COSrbaDmsh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"D1awR1nPvd\" tabindex=\"0\"><div class=\"gp-component-id-8GTfPE0lkh\">\r\n                    <div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">\r\n\r\n</div>\r\n                </div></div><div class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"3cVem03cLb\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-3e6FTAIs9i\">\r\n        <div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654272187_soloswaps.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">'),(4,'4',72,5,85,80,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Peters Offer</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642019904_rapidlist.PNG\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n   \r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/peter/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62a35f5cb2c6c11ed8681fb2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Lm_MuwsfH\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62a35f5cb2c6c11ed8681fb2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQd1RYV2VtcEUiOnsidXJsIjoicGFnZS0xIn0sIkxtX011d3NmSCI6eyJ1cmwiOiJpbmRleCJ9LCJ1ZnlIYV94RUIiOnsidXJsIjoicGFnZS0yIn0sImIyVXY1N0NfYyI6eyJ1cmwiOiJwYWdlLTMifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]},{\"url\":\"page-1\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]},{\"url\":\"page-2\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]},{\"url\":\"page-3\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62a35f5cb2c6c11ed8681fb2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"Lm_MuwsfH\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg-overlay\">\r\n        \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pIJ3rEiST\" class=\"style-pIJ3rEiST\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 82%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 82%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 82%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 82%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 82%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ-overlay\">\r\n        \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JVCXXwD5S\" class=\"style-JVCXXwD5S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yFOAl8Qsa\" class=\"style-yFOAl8Qsa\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DNyAzqs9H7\" class=\"style-DNyAzqs9H7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLhagGVVn\" class=\"style-RLhagGVVn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN1aghq4v9\" class=\"style-TN1aghq4v9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"U_ZCcozYg\" class=\"style-U_ZCcozYg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3xJsI9Ixq\" class=\"style-3xJsI9Ixq\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6sNwx3y0a\" class=\"style-6sNwx3y0a\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tfH5RN09F\" class=\"style-tfH5RN09F\">\r\n        \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ddNM8oouP\" class=\"style-ddNM8oouP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cwb1P7HsOg\" class=\"style-cwb1P7HsOg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gR603Xpf\" class=\"style-8gR603Xpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"42geRpfrF\" class=\"style-42geRpfrF\">\r\n        \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hnfQHp0bMt\" class=\"style-hnfQHp0bMt\">\r\n        \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CVNQ02KKdm\" class=\"style-CVNQ02KKdm\">\r\n        \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MDaop1dyw\" class=\"style-MDaop1dyw\">\r\n        \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zzAv4E_rRw\" class=\"style-zzAv4E_rRw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L0xSEIYQH\" class=\"style-L0xSEIYQH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm-overlay\">\r\n        \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI-overlay\">\r\n        \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5k68o8eDj\" class=\"style-5k68o8eDj\">\r\n        \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W_SJAxOpU\" class=\"style-W_SJAxOpU\">\r\n        \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YFdlYXI44s\" class=\"style-YFdlYXI44s\">\r\n        \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p28XSz2Dr8\" class=\"style-p28XSz2Dr8\">\r\n        \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2995INqmX1\" class=\"style-2995INqmX1\">\r\n        \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZWmM9oaZJ\" class=\"style-ZWmM9oaZJ\">\r\n        \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hELXlwHigF\" class=\"style-hELXlwHigF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UYNHzjc9XL\" class=\"style-UYNHzjc9XL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qwXOCMdvJ\" class=\"style-qwXOCMdvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iawQbhj_l0\" class=\"style-iawQbhj_l0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TlJxcKiu8\" class=\"style-TlJxcKiu8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EcDQd6Qsd\" class=\"style-EcDQd6Qsd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W8HPx4fW6\" class=\"style-W8HPx4fW6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R0ou7_aFZk\" class=\"style-R0ou7_aFZk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5tbUrKVVs\" class=\"style-f5tbUrKVVs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mkGntwDqul\" class=\"style-mkGntwDqul\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"99gBmU4Xl\" class=\"style-99gBmU4Xl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIveWZozs6\" class=\"style-sIveWZozs6\">\r\n        \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3e6FTAIs9i\" class=\"style-3e6FTAIs9i\">\r\n        \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3cVem03cLb\" class=\"style-3cVem03cLb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"luC52k9Dop\" class=\"style-luC52k9Dop\">\r\n        \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8GTfPE0lkh\" class=\"style-8GTfPE0lkh\">\r\n        \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1awR1nPvd\" class=\"style-D1awR1nPvd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"COSrbaDmsh\" class=\"style-COSrbaDmsh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J_z76_RZn4\" class=\"style-J_z76_RZn4\">\r\n        \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ecZSsAHodS\" class=\"style-ecZSsAHodS\">\r\n        \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OGWki8oIxK\" class=\"style-OGWki8oIxK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qolWUwBxkP\" class=\"style-qolWUwBxkP\">\r\n        \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QjPnswPgW\" class=\"style-0QjPnswPgW\">\r\n        \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7ZzygdnDK\" class=\"style-g7ZzygdnDK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TKi99xtCwc\" class=\"style-TKi99xtCwc\">\r\n        \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0x5gytyNi\" class=\"style-T0x5gytyNi\">\r\n        \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gKveClTNhg\" class=\"style-gKveClTNhg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uOTetmF0P\" class=\"style-uOTetmF0P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0JYRwodpQ\" class=\"style-E0JYRwodpQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fEQf_5kqEO\" class=\"style-fEQf_5kqEO\">\r\n        \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3y76PjGMq\" class=\"style-u3y76PjGMq\">\r\n        \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMftO9Mgj\" class=\"style-YMftO9Mgj\">\r\n        \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2YoPqR513B\" class=\"style-2YoPqR513B\">\r\n        \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uewobCXWOm\" class=\"style-uewobCXWOm\">\r\n        \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HhR4We9Pj8\" class=\"style-HhR4We9Pj8\">\r\n        \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LFjxRV27Z_\" class=\"style-LFjxRV27Z_\">\r\n        \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Bkx240IHc\" class=\"style-0Bkx240IHc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"90kZvTqr0k\" class=\"style-90kZvTqr0k\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GI8NsP9vMT\" class=\"style-GI8NsP9vMT\">\r\n        \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0k4k3iL1Ns\" class=\"style-0k4k3iL1Ns\">\r\n        \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tQSxU1bGH4\" class=\"style-tQSxU1bGH4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nGze91qLM9\" class=\"style-nGze91qLM9\">\r\n        \r\n        .gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YUf5Vd3Zpj\" class=\"style-YUf5Vd3Zpj\">\r\n        \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lY2ocfQuNI\" class=\"style-lY2ocfQuNI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQ8I7JjOB6\" class=\"style-FQ8I7JjOB6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm-overlay\">\r\n        \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VgJGWFybSh\" class=\"style-VgJGWFybSh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EpR3FYP8KP\" class=\"style-EpR3FYP8KP\">\r\n        \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lX20hlPRT\" class=\"style-lX20hlPRT\">\r\n        \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jQW6E608vc\" class=\"style-jQW6E608vc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KMb5y_c30p\" class=\"style-KMb5y_c30p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PtImyMcr0c\" class=\"style-PtImyMcr0c\">\r\n        \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ijpsmOUYOx\" class=\"style-ijpsmOUYOx\">\r\n        \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eNgUY5HN1A\" class=\"style-eNgUY5HN1A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hP3n278NIX\" class=\"style-hP3n278NIX\">\r\n        \r\n        .gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_BWma0JGM\" class=\"style-_BWma0JGM\">\r\n        \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fvIHB16pmC\" class=\"style-fvIHB16pmC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5zLeBtD88t\" class=\"style-5zLeBtD88t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0wgdKXhPc\" class=\"style-0wgdKXhPc\">\r\n        \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f209ypL8V\" class=\"style-f209ypL8V\">\r\n        \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0f09MduSfs\" class=\"style-0f09MduSfs\">\r\n        \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b823Irvqy3\" class=\"style-b823Irvqy3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0GX9ShP7cU\" class=\"style-0GX9ShP7cU\">\r\n        \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yg5Yj9zwn\" class=\"style-0yg5Yj9zwn\">\r\n        \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSP6aMQWwu\" class=\"style-fSP6aMQWwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jj4nhdDw4a\" class=\"style-jj4nhdDw4a\">\r\n        \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pLq0nkrGLt\" class=\"style-pLq0nkrGLt\">\r\n        \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_jMvnockmU\" class=\"style-_jMvnockmU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0MHvUy5W_c\" class=\"style-0MHvUy5W_c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"SrqqQY8ReI\" tabindex=\"0\" id=\"SrqqQY8ReI\" style=\"\"><a name=\"SrqqQY8ReI\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hELXlwHigF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" tabindex=\"0\"></div>\r\n    </section><section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8luFF1BBg\" tabindex=\"0\" id=\"8luFF1BBg\" style=\"\"><a name=\"8luFF1BBg\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"lY2ocfQuNI\" tabindex=\"0\"><div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n                    <div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tQSxU1bGH4\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0k4k3iL1Ns\">\r\n        <div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"90kZvTqr0k\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_EwCyTjIut\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-zzAv4E_rRw\"><strong>Do you want to discover 15 of the hottest FREE traffic sources on the planet?</strong></p></div><div class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0Bkx240IHc\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LFjxRV27Z_\">\r\n        <div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654874174_15ftr.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-pIJ3rEiST\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"tfH5RN09F\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"SNqb6cK1g\" data-gp-component=\"null\" tabindex=\"0\"></div></div></div><div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uOTetmF0P\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"gKveClTNhg\" tabindex=\"0\"><div class=\"gp-component-id-T0x5gytyNi\">\r\n                    <div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"g7ZzygdnDK\" tabindex=\"0\"><div class=\"gp-component-id-0QjPnswPgW\">\r\n        <div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"x0qLSFNQm\" tabindex=\"0\" id=\"x0qLSFNQm\" style=\"\"><a name=\"x0qLSFNQm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"5zLeBtD88t\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"fvIHB16pmC\" tabindex=\"0\"><div class=\"gp-component-id-_BWma0JGM\">\r\n                    <div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"eNgUY5HN1A\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-ijpsmOUYOx\">\r\n        <div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"KMb5y_c30p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"egr33Q0P62\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are Some Awesome Features About</strong></p><p class=\"gp-component-id-L0xSEIYQH\"><strong> 15 Free Traffic Resources</strong></p></div><div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"8gR603Xpf\" tabindex=\"0\"><div class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"ddNM8oouP\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-42geRpfrF\">\r\n        <div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><li class=\"gp-component gp-component-id-yFOAl8Qsa\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"yFOAl8Qsa\" tabindex=\"0\" style=\"\"></li><li class=\"gp-component gp-component-id-6sNwx3y0a\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"6sNwx3y0a\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-qeOp1QGKmr\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"qeOp1QGKmr\" data-gp-component=\"null\"><p class=\"gp-component-id-3xJsI9Ixq\"><strong>Sign up for this Email campaign & You will receive 15 FREE Traffic Resources</strong></p></div></li><li class=\"gp-component gp-component-id-RLhagGVVn\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"RLhagGVVn\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-sK6bAf0gP5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"sK6bAf0gP5\" data-gp-component=\"null\"><p class=\"gp-component-id-DNyAzqs9H7\"><strong>Not Facebook or Youtube, 15 Free Platforms For TrafficÂ & Sales</strong></p></div></li><li class=\"gp-component gp-component-id-U_ZCcozYg\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"U_ZCcozYg\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-glqLvZm6fJ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"glqLvZm6fJ\" data-gp-component=\"null\"><p class=\"gp-component-id-TN1aghq4v9\"><strong>Million Visitors per Month</strong></p></div></li></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"5k68o8eDj\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-W_SJAxOpU\">\r\n        <div class=\"gp-component-id-YFdlYXI44s\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"jQW6E608vc\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-lX20hlPRT\">\r\n        <div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VgJGWFybSh\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" tabindex=\"0\"><div class=\"gp-component-id-YMftO9Mgj\">\r\n        <div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"c8LWFknvJ\" tabindex=\"0\" id=\"c8LWFknvJ\" style=\"\"><a name=\"c8LWFknvJ\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-_jMvnockmU\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"_jMvnockmU\" tabindex=\"0\"><div class=\"gp-component-id-pLq0nkrGLt\">\r\n                    <div class=\"gp-component-id-jj4nhdDw4a\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"fSP6aMQWwu\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0yg5Yj9zwn\">\r\n        <div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b823Irvqy3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-R0ou7_aFZk\"><strong>Limited Time Offer</strong></p><p class=\"gp-component-id-JVCXXwD5S\"><strong>Absolutely Free!</strong></p></div><div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GvtpTSa4U\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9TIdYziGZ\"><br></p></div><div class=\"gp-text-container gp-component gp-component-id-01cTbNoFM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"01cTbNoFM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-iZc26vcYxj\"><br></p></div><div class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"EcDQd6Qsd\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-u3y76PjGMq\">\r\n        <div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden object-cover object-center gp-component gp-component-id-W8HPx4fW6\" href=\"https://llpgpro.com/5tz6lk23\" target=\"_blank\" data-gp-button-id=\"aNzfS2QnT\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" alt=\"\" class=\"object-cover object-center\"> </a></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"OGWki8oIxK\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-ecZSsAHodS\">\r\n        <div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0wgdKXhPc\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-f209ypL8V\">\r\n        <div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mkGntwDqul\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\" class=\"gp-component-id-qwXOCMdvJ\"><br></p></div></div><div class=\"gp-component gp-component-id-TlJxcKiu8 relative\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\" tabindex=\"0\">\r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n      <div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-iawQbhj_l0\"><strong><u><a href=\"members.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">No thanks</a></u></strong><u><a href=\"members.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">. I am ready to pass on this.</a></u></p></div>\r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      <a href=\"members.php\" data-gp-button-id=\"X300uIL-Z\" class=\"gp-container-link data-gp-no-parser\"></a>\r\n    </div>\r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8gDwjOwtm\" tabindex=\"0\" id=\"8gDwjOwtm\" style=\"\"><a name=\"8gDwjOwtm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"COSrbaDmsh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"D1awR1nPvd\" tabindex=\"0\"><div class=\"gp-component-id-8GTfPE0lkh\">\r\n                    <div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"3cVem03cLb\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-3e6FTAIs9i\">\r\n        <div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654272187_soloswaps.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">');
INSERT INTO `oto_rtoads` (`id`, `ipn`, `shown`, `percent`, `highnum`, `lownum`, `content`) VALUES (5,'5',102,5,80,75,'<title></title>\r\n<meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\" />\r\n<meta content=\"\" property=\"og:title\" />\r\n<meta content=\"\" property=\"og:image\" />\r\n<meta content=\"\" name=\"description\" />\r\n<meta content=\"\" name=\"keywords\" />\r\n<link href=\"https://fonts.gstatic.com\" rel=\"preconnect\" />\r\n<link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&amp;family=Amatic+SC:wght@400;700&amp;family=Architects+Daughter&amp;family=Asap:wght@400;700&amp;family=Balsamiq+Sans:wght@400;700&amp;family=Barlow:wght@400;700;900&amp;family=Bebas+Neue&amp;family=Bitter:wght@400;700;900&amp;family=Cabin:wght@400;700&amp;family=Cairo:wght@400;700&amp;family=Cormorant+Garamond:wght@400;700&amp;family=Crimson+Text:wght@400;700&amp;family=Dancing+Script:wght@400;700&amp;family=Fira+Sans:wght@400;700;900&amp;family=Fjalla+One&amp;family=Indie+Flower&amp;family=Josefin+Sans:wght@400;700&amp;family=Lato:wght@400;700;900&amp;family=Libre+Baskerville:wght@400;700&amp;family=Libre+Franklin:wght@400;700;900&amp;family=Lobster&amp;family=Lora:wght@400;700&amp;family=Martel:wght@400;700;900&amp;family=Merriweather:wght@400;700;900&amp;family=Montserrat:wght@400;700;900&amp;family=Mukta:wght@400;700&amp;family=Noto+Sans+JP:wght@400;700&amp;family=Noto+Sans+KR:wght@400;700;900&amp;family=Noto+Sans:wght@400;700&amp;family=Noto+Serif:wght@400;700&amp;family=Nunito+Sans:wght@200;300;400;700;900&amp;family=Nunito:wght@300;400;700;900&amp;family=Old+Standard+TT:wght@400;700&amp;family=Open+Sans+Condensed:wght@300;700&amp;family=Open+Sans:wght@300;400;700&amp;family=Oswald:wght@400;700&amp;family=Overpass:wght@400;700;900&amp;family=Oxygen:wght@300;400;700&amp;family=PT+Sans+Narrow:wght@400;700&amp;family=PT+Sans:wght@400;700&amp;family=PT+Serif:wght@400;700&amp;family=Pacifico&amp;family=Playfair+Display:wght@400;700;900&amp;family=Poppins:ital,wght@0,400;0,700;1,900&amp;family=Raleway:wght@400;700;900&amp;family=Roboto+Condensed:wght@400;700&amp;family=Roboto+Slab:wght@400;700;900&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;family=Rubik:ital,wght@0,400;0,700;1,900&amp;family=Shadows+Into+Light&amp;family=Signika:wght@400;700&amp;family=Slabo+27px&amp;family=Source+Code+Pro:wght@400;700;900&amp;family=Source+Sans+Pro:wght@400;700;900&amp;family=Source+Serif+Pro:wght@400;700;900&amp;family=Tajawal:wght@400;700;900&amp;family=Titillium+Web:wght@400;700;900&amp;family=Ubuntu:wght@400;700&amp;family=Work+Sans:wght@400;700;900&amp;display=swap\" rel=\"stylesheet\" />\r\n<style id=\"global-styles\" type=\"text/css\">\r\n</style>\r\n<link href=\"https://app.groove.cm/groovepages/css/chunk-vendors.css\" rel=\"stylesheet\" /><script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n<style id=\"IE-warning-style\" type=\"text/css\">#IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n</style>\r\n<style id=\"page-css\" type=\"text/css\">\r\n</style>\r\n<style id=\"section-block\" type=\"text/css\">section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n</style>\r\n<style id=\"custom-css\" type=\"text/css\">*{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n</style>\r\n<script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/frankoffer/\"\r\n     </script><script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script><!-- Matomo --><script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"6298e5d79f615a39492bb642\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Lm_MuwsfH\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script><noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript><!-- End Matomo Code --><!-- Start Popups --><script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script><!-- End Popups -->\r\n<div id=\"IE-warning\">\r\n<div class=\"IE-warning-message\">\r\n<p>Oops! Sorry!!</p>\r\n&nbsp;\r\n\r\n<p>This site doesn&#39;t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n</div>\r\n</div>\r\n<script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n\r\n<div id=\"custom-top\">&nbsp;</div>\r\n\r\n<div data-gp-page-id=\"Lm_MuwsfH\" id=\"page-container\">\r\n<div class=\"blocks-container\" id=\"blocks-container\">\r\n<section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"SrqqQY8ReI\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"SrqqQY8ReI\" style=\"\" tabindex=\"0\">\r\n<div data-section-overlay=\"\">&nbsp;</div>\r\n\r\n<div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-component=\"container\" data-gp-component-id=\"hELXlwHigF\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\"><img alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" tabindex=\"0\" /></div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8luFF1BBg\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8luFF1BBg\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"8luFF1BBg\"></a>\r\n\r\n<div data-section-overlay=\"\">&nbsp;</div>\r\n\r\n<div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-component=\"container\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-component-id=\"lY2ocfQuNI\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n<div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">&nbsp;</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0k4k3iL1Ns\">\r\n<div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-component=\"container\" data-gp-component-id=\"90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-component=\"null\" data-gp-component-id=\"_EwCyTjIut\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-zzAv4E_rRw\"><strong>Maximize Your ChatGPT Profits</strong></p>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-LFjxRV27Z_\">\r\n<div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-component=\"container\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<figure alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-pIJ3rEiST\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654191851_userassetsCGAN7ACRuploadsimages7sysbs8-1649343483.png\" tabindex=\"0\"><img alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-pIJ3rEiST\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://i.imgur.com/K0tiPFD.png\" style=\"width: 800px; height: 446px;\" tabindex=\"0\" /></figure>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"tfH5RN09F\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-component=\"null\" data-gp-component-id=\"SNqb6cK1g\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-text=\"\" tabindex=\"0\">&nbsp;\r\n<hr /></div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-component=\"container\" data-gp-component-id=\"uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-component-id=\"gKveClTNhg\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-T0x5gytyNi\">\r\n<div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">&nbsp;</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0QjPnswPgW\">\r\n<div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">&nbsp;</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"x0qLSFNQm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"x0qLSFNQm\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"x0qLSFNQm\"></a>\r\n\r\n<div data-section-overlay=\"\">&nbsp;</div>\r\n\r\n<div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-component=\"container\" data-gp-component-id=\"5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-component-id=\"fvIHB16pmC\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-_BWma0JGM\">\r\n<div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">&nbsp;</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-ijpsmOUYOx\">\r\n<div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-component=\"container\" data-gp-component-id=\"KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-component=\"null\" data-gp-component-id=\"egr33Q0P62\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are Some Awesome Features About</strong></p>\r\n\r\n<p class=\"gp-component-id-L0xSEIYQH\"><strong>AI Trace</strong></p>\r\n</div>\r\n\r\n<div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"8gR603Xpf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div cg=\"=\" class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"ddNM8oouP\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-42geRpfrF\">\r\n<div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-component=\"container\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<ul>\r\n	<li class=\"gp-component gp-component-id-nfirRvWGK\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"nfirRvWGK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-WznRJtsk1e\" data-gp-component=\"null\" data-gp-component-id=\"WznRJtsk1e\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-iCmSs08Sld\"><strong>Master Everything About ChatGPT &amp; How To Use<br />\r\n	It To Grow Your Business</strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\">&nbsp;</p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-OXhEVsTS8\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"OXhEVsTS8\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-Ie9L5UMqBf\" data-gp-component=\"null\" data-gp-component-id=\"Ie9L5UMqBf\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-xTZi_evMGC\"><strong>Tool REMOVES &quot;Ai&quot; Trace So You Can Copy/Paste </strong></p>\r\n\r\n	<p class=\"gp-component-id-xTZi_evMGC\"><strong>ChatGPT Content To Your Blogs Without Getting </strong></p>\r\n\r\n	<p class=\"gp-component-id-xTZi_evMGC\"><strong>Penalized</strong></p>\r\n\r\n	<p class=\"gp-component-id-xTZi_evMGC\">&nbsp;</p>\r\n\r\n	<p class=\"gp-component-id-xTZi_evMGC\"><strong>BULLETPOINTS</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-SNMY4ddvF\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"SNMY4ddvF\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-QyUiCsNBBQ\" data-gp-component=\"null\" data-gp-component-id=\"QyUiCsNBBQ\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-MZgDPaFPi\"><strong>&nbsp;ChatGPT Business Course</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-Tq8OpWli4\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"Tq8OpWli4\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-9bPrBJ1hPM\" data-gp-component=\"null\" data-gp-component-id=\"9bPrBJ1hPM\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-z8rI2JoDl4\"><strong>AiTracer Platform</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-UdwRRkOfo\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"UdwRRkOfo\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-1AOIHIPuT6\" data-gp-component=\"null\" data-gp-component-id=\"1AOIHIPuT6\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-4NP6JjIe75\"><strong>Tutorials and Training</strong></p>\r\n	</div>\r\n	</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div 3=\"\" class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\" data-gp-component-id=\"5k68o8eDj\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-W_SJAxOpU\">\r\n<div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">&nbsp;</div>\r\n\r\n<div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">&nbsp;</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-lX20hlPRT\">\r\n<div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-component=\"container\" data-gp-component-id=\"VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-YMftO9Mgj\">\r\n<div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">&nbsp;</div>\r\n\r\n<div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">&nbsp;</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"c8LWFknvJ\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"c8LWFknvJ\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"c8LWFknvJ\"></a>\r\n\r\n<div data-section-overlay=\"\">&nbsp;</div>\r\n\r\n<div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-component=\"container\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-_jMvnockmU\" data-gp-component=\"layout-1\" data-gp-component-id=\"_jMvnockmU\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-pLq0nkrGLt\">\r\n<div class=\"gp-component-id-jj4nhdDw4a\" data-gp-grid-col=\"\">&nbsp;</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0yg5Yj9zwn\">\r\n<div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-component=\"container\" data-gp-component-id=\"b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-component=\"null\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-R0ou7_aFZk\"><strong>Limited Time Offer</strong></p>\r\n\r\n<p class=\"gp-component-id-JVCXXwD5S\"><strong>$47</strong></p>\r\n</div>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U\" data-gp-component=\"null\" data-gp-component-id=\"GvtpTSa4U\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-9TIdYziGZ\">&nbsp;</p>\r\n</div>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-01cTbNoFM\" data-gp-component=\"null\" data-gp-component-id=\"01cTbNoFM\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-iZc26vcYxj\">&nbsp;</p>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-u3y76PjGMq\">\r\n<div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-component=\"container\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden object-cover object-center gp-component gp-component-id-W8HPx4fW6\" data-gp-button-id=\"hK7YkoW1L\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\" data-gp-dnd=\"\" data-gp-style=\"\" href=\"https://fasttrafficzone.com/t/aitrace\r\n\" target=\"_blank\"><img alt=\"\" class=\"object-cover object-center\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" /> </a></div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-ecZSsAHodS\">\r\n<div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">&nbsp;</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"0wgdKXhPc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-f209ypL8V\">\r\n<div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-component=\"container\" data-gp-component-id=\"mkGntwDqul\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-component=\"null\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-qwXOCMdvJ\" style=\"text-align: center;\">&nbsp;</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component gp-component-id-TlJxcKiu8 relative\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\">\r\n<div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3\" data-gp-component=\"null\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-iawQbhj_l0\"><a href=\"https://soloswaps.com/members.php\"><strong><u>No thanks&nbsp;I am ready to pass on this.</u></strong></a></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8gDwjOwtm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8gDwjOwtm\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"8gDwjOwtm\"></a>\r\n\r\n<div data-section-overlay=\"\">&nbsp;</div>\r\n\r\n<div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-component=\"container\" data-gp-component-id=\"COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-component-id=\"D1awR1nPvd\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-8GTfPE0lkh\">\r\n<div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">&nbsp;</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-3e6FTAIs9i\">\r\n<div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-component=\"container\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"><img alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://images.groovetech.io/3aT7vcmdsn--GIrBkAmKS52APMboSez95WhQnYGZb1g/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU0MjcyMTg3X3NvbG9zd2Fwcy5wbmc.webp\" style=\"width: 1140px; height: 98px;\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n</div>\r\n\r\n<div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\">&nbsp;</div>\r\n</div>\r\n<style data-gp-styled-element=\"true\" type=\"text/css\">\r\n</style>\r\n<style class=\"style-c8LWFknvJ-overlay\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">.gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-JVCXXwD5S\" data-gp-styled-element=\"JVCXXwD5S\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-iCmSs08Sld\" data-gp-styled-element=\"iCmSs08Sld\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-nfirRvWGK\" data-gp-styled-element=\"nfirRvWGK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-xTZi_evMGC\" data-gp-styled-element=\"xTZi_evMGC\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-OXhEVsTS8\" data-gp-styled-element=\"OXhEVsTS8\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-yFOAl8Qsa\" data-gp-styled-element=\"yFOAl8Qsa\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-Um0LTpe26S\" data-gp-styled-element=\"Um0LTpe26S\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-VTDcqjeVAF\" data-gp-styled-element=\"VTDcqjeVAF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-vgUGcPIBm4\" data-gp-styled-element=\"vgUGcPIBm4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-whhxswXXk\" data-gp-styled-element=\"whhxswXXk\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2OYjNExA76\" data-gp-styled-element=\"2OYjNExA76\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-QrE0OFzoJi\" data-gp-styled-element=\"QrE0OFzoJi\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-DNyAzqs9H7\" data-gp-styled-element=\"DNyAzqs9H7\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-RLhagGVVn\" data-gp-styled-element=\"RLhagGVVn\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TN1aghq4v9\" data-gp-styled-element=\"TN1aghq4v9\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-U_ZCcozYg\" data-gp-styled-element=\"U_ZCcozYg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-r63OVBFLUh\" data-gp-styled-element=\"r63OVBFLUh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-sQtRe6Rwc\" data-gp-styled-element=\"sQtRe6Rwc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-vnTODaA9QE\" data-gp-styled-element=\"vnTODaA9QE\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-6iHldzmCz\" data-gp-styled-element=\"6iHldzmCz\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-4NP6JjIe75\" data-gp-styled-element=\"4NP6JjIe75\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-UdwRRkOfo\" data-gp-styled-element=\"UdwRRkOfo\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-z8rI2JoDl4\" data-gp-styled-element=\"z8rI2JoDl4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-Tq8OpWli4\" data-gp-styled-element=\"Tq8OpWli4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-MZgDPaFPi\" data-gp-styled-element=\"MZgDPaFPi\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SNMY4ddvF\" data-gp-styled-element=\"SNMY4ddvF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3xJsI9Ixq\" data-gp-styled-element=\"3xJsI9Ixq\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-6sNwx3y0a\" data-gp-styled-element=\"6sNwx3y0a\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-pIJ3rEiST\" data-gp-styled-element=\"pIJ3rEiST\" type=\"text/css\">.gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8luFF1BBg\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-tfH5RN09F\" data-gp-styled-element=\"tfH5RN09F\" type=\"text/css\">.gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ddNM8oouP\" data-gp-styled-element=\"ddNM8oouP\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-cwb1P7HsOg\" data-gp-styled-element=\"cwb1P7HsOg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gR603Xpf\" data-gp-styled-element=\"8gR603Xpf\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-42geRpfrF\" data-gp-styled-element=\"42geRpfrF\" type=\"text/css\">.gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hnfQHp0bMt\" data-gp-styled-element=\"hnfQHp0bMt\" type=\"text/css\">.gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-CVNQ02KKdm\" data-gp-styled-element=\"CVNQ02KKdm\" type=\"text/css\">.gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-MDaop1dyw\" data-gp-styled-element=\"MDaop1dyw\" type=\"text/css\">.gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-zzAv4E_rRw\" data-gp-styled-element=\"zzAv4E_rRw\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-L0xSEIYQH\" data-gp-styled-element=\"L0xSEIYQH\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-x0qLSFNQm\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gDwjOwtm\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gDwjOwtm-overlay\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">.gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI-overlay\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">.gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-5k68o8eDj\" data-gp-styled-element=\"5k68o8eDj\" type=\"text/css\">.gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W_SJAxOpU\" data-gp-styled-element=\"W_SJAxOpU\" type=\"text/css\">.gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YFdlYXI44s\" data-gp-styled-element=\"YFdlYXI44s\" type=\"text/css\">.gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-p28XSz2Dr8\" data-gp-styled-element=\"p28XSz2Dr8\" type=\"text/css\">.gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2995INqmX1\" data-gp-styled-element=\"2995INqmX1\" type=\"text/css\">.gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-c8LWFknvJ\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ZWmM9oaZJ\" data-gp-styled-element=\"ZWmM9oaZJ\" type=\"text/css\">.gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hELXlwHigF\" data-gp-styled-element=\"hELXlwHigF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-UYNHzjc9XL\" data-gp-styled-element=\"UYNHzjc9XL\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qwXOCMdvJ\" data-gp-styled-element=\"qwXOCMdvJ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-iawQbhj_l0\" data-gp-styled-element=\"iawQbhj_l0\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TlJxcKiu8\" data-gp-styled-element=\"TlJxcKiu8\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EcDQd6Qsd\" data-gp-styled-element=\"EcDQd6Qsd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W8HPx4fW6\" data-gp-styled-element=\"W8HPx4fW6\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-R0ou7_aFZk\" data-gp-styled-element=\"R0ou7_aFZk\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-f5tbUrKVVs\" data-gp-styled-element=\"f5tbUrKVVs\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-mkGntwDqul\" data-gp-styled-element=\"mkGntwDqul\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-99gBmU4Xl\" data-gp-styled-element=\"99gBmU4Xl\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-sIveWZozs6\" data-gp-styled-element=\"sIveWZozs6\" type=\"text/css\">.gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3e6FTAIs9i\" data-gp-styled-element=\"3e6FTAIs9i\" type=\"text/css\">.gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3cVem03cLb\" data-gp-styled-element=\"3cVem03cLb\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-luC52k9Dop\" data-gp-styled-element=\"luC52k9Dop\" type=\"text/css\">.gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8GTfPE0lkh\" data-gp-styled-element=\"8GTfPE0lkh\" type=\"text/css\">.gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-D1awR1nPvd\" data-gp-styled-element=\"D1awR1nPvd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-COSrbaDmsh\" data-gp-styled-element=\"COSrbaDmsh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-J_z76_RZn4\" data-gp-styled-element=\"J_z76_RZn4\" type=\"text/css\">.gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ecZSsAHodS\" data-gp-styled-element=\"ecZSsAHodS\" type=\"text/css\">.gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-OGWki8oIxK\" data-gp-styled-element=\"OGWki8oIxK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qolWUwBxkP\" data-gp-styled-element=\"qolWUwBxkP\" type=\"text/css\">.gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0QjPnswPgW\" data-gp-styled-element=\"0QjPnswPgW\" type=\"text/css\">.gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-g7ZzygdnDK\" data-gp-styled-element=\"g7ZzygdnDK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TKi99xtCwc\" data-gp-styled-element=\"TKi99xtCwc\" type=\"text/css\">.gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-T0x5gytyNi\" data-gp-styled-element=\"T0x5gytyNi\" type=\"text/css\">.gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-gKveClTNhg\" data-gp-styled-element=\"gKveClTNhg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-uOTetmF0P\" data-gp-styled-element=\"uOTetmF0P\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-E0JYRwodpQ\" data-gp-styled-element=\"E0JYRwodpQ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fEQf_5kqEO\" data-gp-styled-element=\"fEQf_5kqEO\" type=\"text/css\">.gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-u3y76PjGMq\" data-gp-styled-element=\"u3y76PjGMq\" type=\"text/css\">.gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YMftO9Mgj\" data-gp-styled-element=\"YMftO9Mgj\" type=\"text/css\">.gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2YoPqR513B\" data-gp-styled-element=\"2YoPqR513B\" type=\"text/css\">.gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-uewobCXWOm\" data-gp-styled-element=\"uewobCXWOm\" type=\"text/css\">.gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-HhR4We9Pj8\" data-gp-styled-element=\"HhR4We9Pj8\" type=\"text/css\">.gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-LFjxRV27Z_\" data-gp-styled-element=\"LFjxRV27Z_\" type=\"text/css\">.gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0Bkx240IHc\" data-gp-styled-element=\"0Bkx240IHc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-90kZvTqr0k\" data-gp-styled-element=\"90kZvTqr0k\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-GI8NsP9vMT\" data-gp-styled-element=\"GI8NsP9vMT\" type=\"text/css\">.gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0k4k3iL1Ns\" data-gp-styled-element=\"0k4k3iL1Ns\" type=\"text/css\">.gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-tQSxU1bGH4\" data-gp-styled-element=\"tQSxU1bGH4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-nGze91qLM9\" data-gp-styled-element=\"nGze91qLM9\" type=\"text/css\">.gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YUf5Vd3Zpj\" data-gp-styled-element=\"YUf5Vd3Zpj\" type=\"text/css\">.gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-lY2ocfQuNI\" data-gp-styled-element=\"lY2ocfQuNI\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-FQ8I7JjOB6\" data-gp-styled-element=\"FQ8I7JjOB6\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8luFF1BBg-overlay\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">.gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-x0qLSFNQm-overlay\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">.gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-VgJGWFybSh\" data-gp-styled-element=\"VgJGWFybSh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EpR3FYP8KP\" data-gp-styled-element=\"EpR3FYP8KP\" type=\"text/css\">.gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-lX20hlPRT\" data-gp-styled-element=\"lX20hlPRT\" type=\"text/css\">.gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-jQW6E608vc\" data-gp-styled-element=\"jQW6E608vc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-KMb5y_c30p\" data-gp-styled-element=\"KMb5y_c30p\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-PtImyMcr0c\" data-gp-styled-element=\"PtImyMcr0c\" type=\"text/css\">.gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ijpsmOUYOx\" data-gp-styled-element=\"ijpsmOUYOx\" type=\"text/css\">.gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-eNgUY5HN1A\" data-gp-styled-element=\"eNgUY5HN1A\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hP3n278NIX\" data-gp-styled-element=\"hP3n278NIX\" type=\"text/css\">.gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-_BWma0JGM\" data-gp-styled-element=\"_BWma0JGM\" type=\"text/css\">.gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fvIHB16pmC\" data-gp-styled-element=\"fvIHB16pmC\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-5zLeBtD88t\" data-gp-styled-element=\"5zLeBtD88t\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0wgdKXhPc\" data-gp-styled-element=\"0wgdKXhPc\" type=\"text/css\">.gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-f209ypL8V\" data-gp-styled-element=\"f209ypL8V\" type=\"text/css\">.gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0f09MduSfs\" data-gp-styled-element=\"0f09MduSfs\" type=\"text/css\">.gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-b823Irvqy3\" data-gp-styled-element=\"b823Irvqy3\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0GX9ShP7cU\" data-gp-styled-element=\"0GX9ShP7cU\" type=\"text/css\">.gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0yg5Yj9zwn\" data-gp-styled-element=\"0yg5Yj9zwn\" type=\"text/css\">.gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fSP6aMQWwu\" data-gp-styled-element=\"fSP6aMQWwu\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-jj4nhdDw4a\" data-gp-styled-element=\"jj4nhdDw4a\" type=\"text/css\">.gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-pLq0nkrGLt\" data-gp-styled-element=\"pLq0nkrGLt\" type=\"text/css\">.gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-_jMvnockmU\" data-gp-styled-element=\"_jMvnockmU\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0MHvUy5W_c\" data-gp-styled-element=\"0MHvUy5W_c\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>'),(11,'0',84,5,50,45,'<meta charset=\"utf-8\" />\r\n<title></title>\r\n<meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\" />\r\n<meta content=\"\" property=\"og:title\" />\r\n<meta content=\"\" property=\"og:image\" />\r\n<meta content=\"\" name=\"description\" />\r\n<meta content=\"\" name=\"keywords\" />\r\n<link href=\"https://fonts.gstatic.com\" rel=\"preconnect\" />\r\n<link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\" />\r\n<style id=\"global-styles\" type=\"text/css\">\r\n</style>\r\n<link href=\"https://app.groove.cm/groovepages/css/chunk-vendors.css\" rel=\"stylesheet\" /><script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n<style id=\"IE-warning-style\" type=\"text/css\">#IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n</style>\r\n<style id=\"page-css\" type=\"text/css\">\r\n</style>\r\n<style id=\"section-block\" type=\"text/css\">section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n</style>\r\n<style id=\"custom-css\" type=\"text/css\">*{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n</style>\r\n<script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/frankoffer/\"\r\n     </script><script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script><!-- Matomo --><script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"6298e5d79f615a39492bb642\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Lm_MuwsfH\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script><noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript><!-- End Matomo Code --><!-- Start Popups --><script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script><!-- End Popups -->\r\n<div id=\"IE-warning\">\r\n<div class=\"IE-warning-message\">\r\n<p>Oops! Sorry!!</p>\r\nÂ \r\n\r\n<p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n</div>\r\n</div>\r\n<script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n\r\n<div data-gp-page-id=\"Lm_MuwsfH\" id=\"page-container\">\r\n<div class=\"blocks-container\" id=\"blocks-container\">\r\n<section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"SrqqQY8ReI\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"SrqqQY8ReI\" style=\"\" tabindex=\"0\">\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-component=\"container\" data-gp-component-id=\"hELXlwHigF\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\"><img alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" tabindex=\"0\" /></div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8luFF1BBg\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8luFF1BBg\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"8luFF1BBg\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-component=\"container\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-component-id=\"lY2ocfQuNI\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n<div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0k4k3iL1Ns\">\r\n<div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-component=\"container\" data-gp-component-id=\"90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-component=\"null\" data-gp-component-id=\"_EwCyTjIut\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<h1 class=\"gp-component-id-zzAv4E_rRw\"><strong>GET PAID $34 TO ENROLL EARN $34 WHEN PEOPLE ENROLL FOR FREE! THE ULTIMATE<br />\r\nAUTOMATED RESIDUAL INCOME BUILDER</strong></h1>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-LFjxRV27Z_\">\r\n<div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-component=\"container\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<figure alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-pIJ3rEiST\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654191851_userassetsCGAN7ACRuploadsimages7sysbs8-1649343483.png\" tabindex=\"0\">Â </figure>\r\n\r\n<figure alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-pIJ3rEiST\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654191851_userassetsCGAN7ACRuploadsimages7sysbs8-1649343483.png\" tabindex=\"0\"><iframe allowfullscreen=\"\" frameborder=\"0\" height=\"360\" src=\"https://myautobuilder.com/video/mynxrcp.mp4\" style=\"text-align: start; background-color: rgb(255, 255, 255);\" width=\"640\"></iframe></figure>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"tfH5RN09F\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-component=\"null\" data-gp-component-id=\"SNqb6cK1g\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-text=\"\" tabindex=\"0\">Â \r\n<hr /></div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-component=\"container\" data-gp-component-id=\"uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-component-id=\"gKveClTNhg\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-T0x5gytyNi\">\r\n<div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0QjPnswPgW\">\r\n<div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"x0qLSFNQm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"x0qLSFNQm\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"x0qLSFNQm\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-component=\"container\" data-gp-component-id=\"5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-component-id=\"fvIHB16pmC\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-_BWma0JGM\">\r\n<div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-ijpsmOUYOx\">\r\n<div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-component=\"container\" data-gp-component-id=\"KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-component=\"null\" data-gp-component-id=\"egr33Q0P62\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are Some Awesome Features About</strong></p>\r\n\r\n<p class=\"gp-component-id-L0xSEIYQH\"><strong>Nexus Rewards</strong></p>\r\n</div>\r\n\r\n<div style=\"display: flex; justify-content: center; align-items: center;\">Â </div>\r\n\r\n<div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"8gR603Xpf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div cg=\"=\" class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"ddNM8oouP\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-42geRpfrF\">\r\n<div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-component=\"container\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<ul>\r\n	<li class=\"gp-component gp-component-id-nfirRvWGK\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"nfirRvWGK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-WznRJtsk1e\" data-gp-component=\"null\" data-gp-component-id=\"WznRJtsk1e\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-iCmSs08Sld\"><strong>NEXTGEN AUTOMATED SYSTEM</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-OXhEVsTS8\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"OXhEVsTS8\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-Ie9L5UMqBf\" data-gp-component=\"null\" data-gp-component-id=\"Ie9L5UMqBf\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-xTZi_evMGC\"><strong>EARN $100\'S even $1000\'S</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-SNMY4ddvF\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"SNMY4ddvF\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-QyUiCsNBBQ\" data-gp-component=\"null\" data-gp-component-id=\"QyUiCsNBBQ\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-MZgDPaFPi\"><strong>WITHOUT RECRUITING</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-Tq8OpWli4\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"Tq8OpWli4\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-9bPrBJ1hPM\" data-gp-component=\"null\" data-gp-component-id=\"9bPrBJ1hPM\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-z8rI2JoDl4\"><strong>FIRST MOVERS ADVANTAGE</strong></p>\r\n	</div>\r\n	</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div 3=\"\" class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\" data-gp-component-id=\"5k68o8eDj\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-W_SJAxOpU\">\r\n<div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-lX20hlPRT\">\r\n<div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-component=\"container\" data-gp-component-id=\"VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-YMftO9Mgj\">\r\n<div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"c8LWFknvJ\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"c8LWFknvJ\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"c8LWFknvJ\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-component=\"container\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div cg=\"=\" class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0yg5Yj9zwn\">\r\n<div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-component=\"container\" data-gp-component-id=\"b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-component=\"null\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-R0ou7_aFZk\"><strong>Limited Time Offer</strong></p>\r\n\r\n<p class=\"gp-component-id-JVCXXwD5S\"><strong>JOIN FOR FREE NOW!!!</strong></p>\r\n</div>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U\" data-gp-component=\"null\" data-gp-component-id=\"GvtpTSa4U\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-9TIdYziGZ\">Â </p>\r\n</div>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-01cTbNoFM\" data-gp-component=\"null\" data-gp-component-id=\"01cTbNoFM\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-iZc26vcYxj\">Â </p>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-u3y76PjGMq\">\r\n<div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-component=\"container\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden object-cover object-center gp-component gp-component-id-W8HPx4fW6\" data-gp-button-id=\"hK7YkoW1L\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\" data-gp-dnd=\"\" data-gp-style=\"\" href=\"http://www.nexussnap.com/bigmikes\" target=\"_blank\"><img alt=\"\" class=\"object-cover object-center\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" /> </a></div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-ecZSsAHodS\">\r\n<div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"0wgdKXhPc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-f209ypL8V\">\r\n<div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-component=\"container\" data-gp-component-id=\"mkGntwDqul\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-component=\"null\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-qwXOCMdvJ\" style=\"text-align: center;\">Â </p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component gp-component-id-TlJxcKiu8 relative\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\">\r\n<div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3\" data-gp-component=\"null\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-iawQbhj_l0\"><a href=\"https://soloswaps.com/showoto.php\"><strong><u>No thanksÂ I am ready to pass on this.</u></strong></a></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8gDwjOwtm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8gDwjOwtm\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"8gDwjOwtm\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-component=\"container\" data-gp-component-id=\"COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-component-id=\"D1awR1nPvd\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-8GTfPE0lkh\">\r\n<div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-3e6FTAIs9i\">\r\n<div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-component=\"container\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"><img alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://images.groovetech.io/3aT7vcmdsn--GIrBkAmKS52APMboSez95WhQnYGZb1g/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU0MjcyMTg3X3NvbG9zd2Fwcy5wbmc.webp\" style=\"width: 1140px; height: 98px;\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n</div>\r\n\r\n<div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\">Â </div>\r\n</div>\r\n<style data-gp-styled-element=\"true\" type=\"text/css\">\r\n</style>\r\n<style class=\"style-c8LWFknvJ-overlay\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">.gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-JVCXXwD5S\" data-gp-styled-element=\"JVCXXwD5S\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-iCmSs08Sld\" data-gp-styled-element=\"iCmSs08Sld\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-nfirRvWGK\" data-gp-styled-element=\"nfirRvWGK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-xTZi_evMGC\" data-gp-styled-element=\"xTZi_evMGC\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-OXhEVsTS8\" data-gp-styled-element=\"OXhEVsTS8\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-yFOAl8Qsa\" data-gp-styled-element=\"yFOAl8Qsa\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-Um0LTpe26S\" data-gp-styled-element=\"Um0LTpe26S\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-VTDcqjeVAF\" data-gp-styled-element=\"VTDcqjeVAF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-vgUGcPIBm4\" data-gp-styled-element=\"vgUGcPIBm4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-whhxswXXk\" data-gp-styled-element=\"whhxswXXk\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2OYjNExA76\" data-gp-styled-element=\"2OYjNExA76\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-QrE0OFzoJi\" data-gp-styled-element=\"QrE0OFzoJi\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-DNyAzqs9H7\" data-gp-styled-element=\"DNyAzqs9H7\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-RLhagGVVn\" data-gp-styled-element=\"RLhagGVVn\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TN1aghq4v9\" data-gp-styled-element=\"TN1aghq4v9\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-U_ZCcozYg\" data-gp-styled-element=\"U_ZCcozYg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-r63OVBFLUh\" data-gp-styled-element=\"r63OVBFLUh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-sQtRe6Rwc\" data-gp-styled-element=\"sQtRe6Rwc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-vnTODaA9QE\" data-gp-styled-element=\"vnTODaA9QE\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-6iHldzmCz\" data-gp-styled-element=\"6iHldzmCz\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-4NP6JjIe75\" data-gp-styled-element=\"4NP6JjIe75\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-UdwRRkOfo\" data-gp-styled-element=\"UdwRRkOfo\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-z8rI2JoDl4\" data-gp-styled-element=\"z8rI2JoDl4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-Tq8OpWli4\" data-gp-styled-element=\"Tq8OpWli4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-MZgDPaFPi\" data-gp-styled-element=\"MZgDPaFPi\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SNMY4ddvF\" data-gp-styled-element=\"SNMY4ddvF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3xJsI9Ixq\" data-gp-styled-element=\"3xJsI9Ixq\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-6sNwx3y0a\" data-gp-styled-element=\"6sNwx3y0a\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-pIJ3rEiST\" data-gp-styled-element=\"pIJ3rEiST\" type=\"text/css\">.gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8luFF1BBg\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-tfH5RN09F\" data-gp-styled-element=\"tfH5RN09F\" type=\"text/css\">.gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ddNM8oouP\" data-gp-styled-element=\"ddNM8oouP\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-cwb1P7HsOg\" data-gp-styled-element=\"cwb1P7HsOg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gR603Xpf\" data-gp-styled-element=\"8gR603Xpf\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-42geRpfrF\" data-gp-styled-element=\"42geRpfrF\" type=\"text/css\">.gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hnfQHp0bMt\" data-gp-styled-element=\"hnfQHp0bMt\" type=\"text/css\">.gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-CVNQ02KKdm\" data-gp-styled-element=\"CVNQ02KKdm\" type=\"text/css\">.gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-MDaop1dyw\" data-gp-styled-element=\"MDaop1dyw\" type=\"text/css\">.gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-zzAv4E_rRw\" data-gp-styled-element=\"zzAv4E_rRw\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-L0xSEIYQH\" data-gp-styled-element=\"L0xSEIYQH\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-x0qLSFNQm\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gDwjOwtm\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gDwjOwtm-overlay\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">.gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI-overlay\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">.gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-5k68o8eDj\" data-gp-styled-element=\"5k68o8eDj\" type=\"text/css\">.gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W_SJAxOpU\" data-gp-styled-element=\"W_SJAxOpU\" type=\"text/css\">.gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YFdlYXI44s\" data-gp-styled-element=\"YFdlYXI44s\" type=\"text/css\">.gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-p28XSz2Dr8\" data-gp-styled-element=\"p28XSz2Dr8\" type=\"text/css\">.gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2995INqmX1\" data-gp-styled-element=\"2995INqmX1\" type=\"text/css\">.gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-c8LWFknvJ\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ZWmM9oaZJ\" data-gp-styled-element=\"ZWmM9oaZJ\" type=\"text/css\">.gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hELXlwHigF\" data-gp-styled-element=\"hELXlwHigF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-UYNHzjc9XL\" data-gp-styled-element=\"UYNHzjc9XL\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qwXOCMdvJ\" data-gp-styled-element=\"qwXOCMdvJ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-iawQbhj_l0\" data-gp-styled-element=\"iawQbhj_l0\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TlJxcKiu8\" data-gp-styled-element=\"TlJxcKiu8\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EcDQd6Qsd\" data-gp-styled-element=\"EcDQd6Qsd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W8HPx4fW6\" data-gp-styled-element=\"W8HPx4fW6\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-R0ou7_aFZk\" data-gp-styled-element=\"R0ou7_aFZk\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-f5tbUrKVVs\" data-gp-styled-element=\"f5tbUrKVVs\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-mkGntwDqul\" data-gp-styled-element=\"mkGntwDqul\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-99gBmU4Xl\" data-gp-styled-element=\"99gBmU4Xl\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-sIveWZozs6\" data-gp-styled-element=\"sIveWZozs6\" type=\"text/css\">.gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3e6FTAIs9i\" data-gp-styled-element=\"3e6FTAIs9i\" type=\"text/css\">.gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3cVem03cLb\" data-gp-styled-element=\"3cVem03cLb\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-luC52k9Dop\" data-gp-styled-element=\"luC52k9Dop\" type=\"text/css\">.gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8GTfPE0lkh\" data-gp-styled-element=\"8GTfPE0lkh\" type=\"text/css\">.gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-D1awR1nPvd\" data-gp-styled-element=\"D1awR1nPvd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-COSrbaDmsh\" data-gp-styled-element=\"COSrbaDmsh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-J_z76_RZn4\" data-gp-styled-element=\"J_z76_RZn4\" type=\"text/css\">.gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ecZSsAHodS\" data-gp-styled-element=\"ecZSsAHodS\" type=\"text/css\">.gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-OGWki8oIxK\" data-gp-styled-element=\"OGWki8oIxK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qolWUwBxkP\" data-gp-styled-element=\"qolWUwBxkP\" type=\"text/css\">.gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0QjPnswPgW\" data-gp-styled-element=\"0QjPnswPgW\" type=\"text/css\">.gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-g7ZzygdnDK\" data-gp-styled-element=\"g7ZzygdnDK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TKi99xtCwc\" data-gp-styled-element=\"TKi99xtCwc\" type=\"text/css\">.gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-T0x5gytyNi\" data-gp-styled-element=\"T0x5gytyNi\" type=\"text/css\">.gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-gKveClTNhg\" data-gp-styled-element=\"gKveClTNhg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-uOTetmF0P\" data-gp-styled-element=\"uOTetmF0P\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-E0JYRwodpQ\" data-gp-styled-element=\"E0JYRwodpQ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fEQf_5kqEO\" data-gp-styled-element=\"fEQf_5kqEO\" type=\"text/css\">.gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-u3y76PjGMq\" data-gp-styled-element=\"u3y76PjGMq\" type=\"text/css\">.gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YMftO9Mgj\" data-gp-styled-element=\"YMftO9Mgj\" type=\"text/css\">.gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2YoPqR513B\" data-gp-styled-element=\"2YoPqR513B\" type=\"text/css\">.gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-uewobCXWOm\" data-gp-styled-element=\"uewobCXWOm\" type=\"text/css\">.gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-HhR4We9Pj8\" data-gp-styled-element=\"HhR4We9Pj8\" type=\"text/css\">.gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-LFjxRV27Z_\" data-gp-styled-element=\"LFjxRV27Z_\" type=\"text/css\">.gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0Bkx240IHc\" data-gp-styled-element=\"0Bkx240IHc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-90kZvTqr0k\" data-gp-styled-element=\"90kZvTqr0k\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-GI8NsP9vMT\" data-gp-styled-element=\"GI8NsP9vMT\" type=\"text/css\">.gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0k4k3iL1Ns\" data-gp-styled-element=\"0k4k3iL1Ns\" type=\"text/css\">.gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-tQSxU1bGH4\" data-gp-styled-element=\"tQSxU1bGH4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-nGze91qLM9\" data-gp-styled-element=\"nGze91qLM9\" type=\"text/css\">.gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YUf5Vd3Zpj\" data-gp-styled-element=\"YUf5Vd3Zpj\" type=\"text/css\">.gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-lY2ocfQuNI\" data-gp-styled-element=\"lY2ocfQuNI\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-FQ8I7JjOB6\" data-gp-styled-element=\"FQ8I7JjOB6\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8luFF1BBg-overlay\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">.gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-x0qLSFNQm-overlay\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">.gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-VgJGWFybSh\" data-gp-styled-element=\"VgJGWFybSh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EpR3FYP8KP\" data-gp-styled-element=\"EpR3FYP8KP\" type=\"text/css\">.gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-lX20hlPRT\" data-gp-styled-element=\"lX20hlPRT\" type=\"text/css\">.gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-jQW6E608vc\" data-gp-styled-element=\"jQW6E608vc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-KMb5y_c30p\" data-gp-styled-element=\"KMb5y_c30p\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-PtImyMcr0c\" data-gp-styled-element=\"PtImyMcr0c\" type=\"text/css\">.gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ijpsmOUYOx\" data-gp-styled-element=\"ijpsmOUYOx\" type=\"text/css\">.gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-eNgUY5HN1A\" data-gp-styled-element=\"eNgUY5HN1A\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hP3n278NIX\" data-gp-styled-element=\"hP3n278NIX\" type=\"text/css\">.gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-_BWma0JGM\" data-gp-styled-element=\"_BWma0JGM\" type=\"text/css\">.gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fvIHB16pmC\" data-gp-styled-element=\"fvIHB16pmC\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-5zLeBtD88t\" data-gp-styled-element=\"5zLeBtD88t\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0wgdKXhPc\" data-gp-styled-element=\"0wgdKXhPc\" type=\"text/css\">.gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-f209ypL8V\" data-gp-styled-element=\"f209ypL8V\" type=\"text/css\">.gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0f09MduSfs\" data-gp-styled-element=\"0f09MduSfs\" type=\"text/css\">.gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-b823Irvqy3\" data-gp-styled-element=\"b823Irvqy3\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0GX9ShP7cU\" data-gp-styled-element=\"0GX9ShP7cU\" type=\"text/css\">.gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0yg5Yj9zwn\" data-gp-styled-element=\"0yg5Yj9zwn\" type=\"text/css\">.gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fSP6aMQWwu\" data-gp-styled-element=\"fSP6aMQWwu\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-jj4nhdDw4a\" data-gp-styled-element=\"jj4nhdDw4a\" type=\"text/css\">.gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-pLq0nkrGLt\" data-gp-styled-element=\"pLq0nkrGLt\" type=\"text/css\">.gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-_jMvnockmU\" data-gp-styled-element=\"_jMvnockmU\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0MHvUy5W_c\" data-gp-styled-element=\"0MHvUy5W_c\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>'),(6,'6',79,5,75,70,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>RonaldÂ´s Offer</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642019904_rapidlist.PNG\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n   \r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ronald/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62a23e452ca859194d168764\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"PwTXWempE\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62a23e452ca859194d168764\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQd1RYV2VtcEUiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62a23e452ca859194d168764\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"PwTXWempE\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"cwb1P7HsOg\" class=\"style-cwb1P7HsOg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;margin-top: 40px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;margin-top: 40px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;margin-top: 40px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;margin-top: 40px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;margin-top: 40px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg-overlay\">\r\n        \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TN3eAMF8Tm\" class=\"style-TN3eAMF8Tm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN3eAMF8Tm {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN3eAMF8Tm {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN3eAMF8Tm {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN3eAMF8Tm {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN3eAMF8Tm {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"akQRdpPsE\" class=\"style-akQRdpPsE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-akQRdpPsE[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-akQRdpPsE[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-akQRdpPsE[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-akQRdpPsE[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-akQRdpPsE[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NxeinrkTd\" class=\"style-NxeinrkTd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-NxeinrkTd[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 40px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-NxeinrkTd[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 40px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-NxeinrkTd[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 40px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-NxeinrkTd[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 40px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-NxeinrkTd[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-top: 40px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KMb5y_c30p\" class=\"style-KMb5y_c30p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm-overlay\">\r\n        \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 20, 81);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bGYQMQ0yS\" class=\"style-bGYQMQ0yS\">\r\n        \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tfH5RN09F\" class=\"style-tfH5RN09F\">\r\n        \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ddNM8oouP\" class=\"style-ddNM8oouP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gR603Xpf\" class=\"style-8gR603Xpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"42geRpfrF\" class=\"style-42geRpfrF\">\r\n        \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hnfQHp0bMt\" class=\"style-hnfQHp0bMt\">\r\n        \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CVNQ02KKdm\" class=\"style-CVNQ02KKdm\">\r\n        \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MDaop1dyw\" class=\"style-MDaop1dyw\">\r\n        \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zzAv4E_rRw\" class=\"style-zzAv4E_rRw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L0xSEIYQH\" class=\"style-L0xSEIYQH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm-overlay\">\r\n        \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI-overlay\">\r\n        \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5k68o8eDj\" class=\"style-5k68o8eDj\">\r\n        \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W_SJAxOpU\" class=\"style-W_SJAxOpU\">\r\n        \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YFdlYXI44s\" class=\"style-YFdlYXI44s\">\r\n        \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p28XSz2Dr8\" class=\"style-p28XSz2Dr8\">\r\n        \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2995INqmX1\" class=\"style-2995INqmX1\">\r\n        \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZWmM9oaZJ\" class=\"style-ZWmM9oaZJ\">\r\n        \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hELXlwHigF\" class=\"style-hELXlwHigF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UYNHzjc9XL\" class=\"style-UYNHzjc9XL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qwXOCMdvJ\" class=\"style-qwXOCMdvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iawQbhj_l0\" class=\"style-iawQbhj_l0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TlJxcKiu8\" class=\"style-TlJxcKiu8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EcDQd6Qsd\" class=\"style-EcDQd6Qsd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W8HPx4fW6\" class=\"style-W8HPx4fW6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R0ou7_aFZk\" class=\"style-R0ou7_aFZk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5tbUrKVVs\" class=\"style-f5tbUrKVVs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Kgt2GY_oL_\" class=\"style-Kgt2GY_oL_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mkGntwDqul\" class=\"style-mkGntwDqul\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"99gBmU4Xl\" class=\"style-99gBmU4Xl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIveWZozs6\" class=\"style-sIveWZozs6\">\r\n        \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3e6FTAIs9i\" class=\"style-3e6FTAIs9i\">\r\n        \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3cVem03cLb\" class=\"style-3cVem03cLb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"luC52k9Dop\" class=\"style-luC52k9Dop\">\r\n        \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8GTfPE0lkh\" class=\"style-8GTfPE0lkh\">\r\n        \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1awR1nPvd\" class=\"style-D1awR1nPvd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"COSrbaDmsh\" class=\"style-COSrbaDmsh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J_z76_RZn4\" class=\"style-J_z76_RZn4\">\r\n        \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ecZSsAHodS\" class=\"style-ecZSsAHodS\">\r\n        \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OGWki8oIxK\" class=\"style-OGWki8oIxK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qolWUwBxkP\" class=\"style-qolWUwBxkP\">\r\n        \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QjPnswPgW\" class=\"style-0QjPnswPgW\">\r\n        \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7ZzygdnDK\" class=\"style-g7ZzygdnDK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TKi99xtCwc\" class=\"style-TKi99xtCwc\">\r\n        \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0x5gytyNi\" class=\"style-T0x5gytyNi\">\r\n        \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gKveClTNhg\" class=\"style-gKveClTNhg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uOTetmF0P\" class=\"style-uOTetmF0P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoQyW0XpHY\" class=\"style-eoQyW0XpHY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0JYRwodpQ\" class=\"style-E0JYRwodpQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fEQf_5kqEO\" class=\"style-fEQf_5kqEO\">\r\n        \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3y76PjGMq\" class=\"style-u3y76PjGMq\">\r\n        \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMftO9Mgj\" class=\"style-YMftO9Mgj\">\r\n        \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2YoPqR513B\" class=\"style-2YoPqR513B\">\r\n        \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uewobCXWOm\" class=\"style-uewobCXWOm\">\r\n        \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HhR4We9Pj8\" class=\"style-HhR4We9Pj8\">\r\n        \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LFjxRV27Z_\" class=\"style-LFjxRV27Z_\">\r\n        \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Bkx240IHc\" class=\"style-0Bkx240IHc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"90kZvTqr0k\" class=\"style-90kZvTqr0k\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GI8NsP9vMT\" class=\"style-GI8NsP9vMT\">\r\n        \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0k4k3iL1Ns\" class=\"style-0k4k3iL1Ns\">\r\n        \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tQSxU1bGH4\" class=\"style-tQSxU1bGH4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nGze91qLM9\" class=\"style-nGze91qLM9\">\r\n        \r\n        .gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YUf5Vd3Zpj\" class=\"style-YUf5Vd3Zpj\">\r\n        \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lY2ocfQuNI\" class=\"style-lY2ocfQuNI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQ8I7JjOB6\" class=\"style-FQ8I7JjOB6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VgJGWFybSh\" class=\"style-VgJGWFybSh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EpR3FYP8KP\" class=\"style-EpR3FYP8KP\">\r\n        \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lX20hlPRT\" class=\"style-lX20hlPRT\">\r\n        \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jQW6E608vc\" class=\"style-jQW6E608vc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PtImyMcr0c\" class=\"style-PtImyMcr0c\">\r\n        \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ijpsmOUYOx\" class=\"style-ijpsmOUYOx\">\r\n        \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eNgUY5HN1A\" class=\"style-eNgUY5HN1A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hP3n278NIX\" class=\"style-hP3n278NIX\">\r\n        \r\n        .gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_BWma0JGM\" class=\"style-_BWma0JGM\">\r\n        \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fvIHB16pmC\" class=\"style-fvIHB16pmC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5zLeBtD88t\" class=\"style-5zLeBtD88t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0wgdKXhPc\" class=\"style-0wgdKXhPc\">\r\n        \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f209ypL8V\" class=\"style-f209ypL8V\">\r\n        \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0f09MduSfs\" class=\"style-0f09MduSfs\">\r\n        \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ-overlay\">\r\n        \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b823Irvqy3\" class=\"style-b823Irvqy3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0GX9ShP7cU\" class=\"style-0GX9ShP7cU\">\r\n        \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yg5Yj9zwn\" class=\"style-0yg5Yj9zwn\">\r\n        \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSP6aMQWwu\" class=\"style-fSP6aMQWwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jj4nhdDw4a\" class=\"style-jj4nhdDw4a\">\r\n        \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pLq0nkrGLt\" class=\"style-pLq0nkrGLt\">\r\n        \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_jMvnockmU\" class=\"style-_jMvnockmU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0MHvUy5W_c\" class=\"style-0MHvUy5W_c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"SrqqQY8ReI\" tabindex=\"0\" id=\"SrqqQY8ReI\" style=\"\"><a name=\"SrqqQY8ReI\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hELXlwHigF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" tabindex=\"0\"></div>\r\n    </section><section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8luFF1BBg\" tabindex=\"0\" id=\"8luFF1BBg\" style=\"\"><a name=\"8luFF1BBg\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"lY2ocfQuNI\" tabindex=\"0\"><div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n                    <div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tQSxU1bGH4\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0k4k3iL1Ns\">\r\n        <div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"90kZvTqr0k\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_EwCyTjIut\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-zzAv4E_rRw\"><strong>How to Get 2 Paid Referrals...</strong></p></div><div class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0Bkx240IHc\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LFjxRV27Z_\">\r\n        <div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><div data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component-id-bGYQMQ0yS gp-component\" data-gp-classes=\"\" data-gp-component=\"video-all\" data-gp-component-id=\"bGYQMQ0yS\" tabindex=\"0\">\r\n        <div class=\"bg-black cursor-pointer\" style=\"padding-bottom: 56.25%;\">\r\n        \r\n        <iframe src=\"https://player.vimeo.com/video/718822654?portrait=0&transparent=1\" data-gp-vembed-id=\"sapVTTzWB\" allow=\"autoplay; fullscreen\" allowfullscreen=\"\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"></iframe>\r\n        \r\n        </div>\r\n      </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"tfH5RN09F\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"SNqb6cK1g\" data-gp-component=\"null\" tabindex=\"0\"></div></div></div><div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uOTetmF0P\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"gKveClTNhg\" tabindex=\"0\"><div class=\"gp-component-id-T0x5gytyNi\">\r\n                    <div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"g7ZzygdnDK\" tabindex=\"0\"><div class=\"gp-component-id-0QjPnswPgW\">\r\n        <div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"x0qLSFNQm\" tabindex=\"0\" id=\"x0qLSFNQm\" style=\"\"><a name=\"x0qLSFNQm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"5zLeBtD88t\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"fvIHB16pmC\" tabindex=\"0\"><div class=\"gp-component-id-_BWma0JGM\">\r\n                    <div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"eNgUY5HN1A\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-ijpsmOUYOx\">\r\n        <div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"KMb5y_c30p\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654800232_HealthyNuLiving.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-NxeinrkTd\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"NxeinrkTd\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"egr33Q0P62\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are An Awesome Feature About</strong></p><p class=\"gp-component-id-L0xSEIYQH\"><strong> Healthy Nu Living</strong></p></div><div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"8gR603Xpf\" tabindex=\"0\"><div class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"ddNM8oouP\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-42geRpfrF\">\r\n        <div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><li class=\"gp-component gp-component-id-akQRdpPsE\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"akQRdpPsE\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-hOUmg0rpO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"hOUmg0rpO\" data-gp-component=\"null\"><p class=\"gp-component-id-TN3eAMF8Tm\"> <strong>Daily Commissions from 4 Income Streams (direct referrals, 2x10 matrix, residuals, products)</strong></p></div></li></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"5k68o8eDj\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-W_SJAxOpU\">\r\n        <div class=\"gp-component-id-YFdlYXI44s\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"jQW6E608vc\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-lX20hlPRT\">\r\n        <div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VgJGWFybSh\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" tabindex=\"0\"><div class=\"gp-component-id-YMftO9Mgj\">\r\n        <div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"c8LWFknvJ\" tabindex=\"0\" id=\"c8LWFknvJ\" style=\"\"><a name=\"c8LWFknvJ\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-_jMvnockmU\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"_jMvnockmU\" tabindex=\"0\"><div class=\"gp-component-id-pLq0nkrGLt\">\r\n                    <div class=\"gp-component-id-jj4nhdDw4a\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"fSP6aMQWwu\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0yg5Yj9zwn\">\r\n        <div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b823Irvqy3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-R0ou7_aFZk\"><strong>Hurry!</strong><br>Take advantage of this Special Offer</p></div><div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GvtpTSa4U\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-eoQyW0XpHY\"><strong>$39.95</strong></p></div><div class=\"gp-text-container gp-component gp-component-id-01cTbNoFM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"01cTbNoFM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Kgt2GY_oL_\">..is Your discounted price for today!</p></div><div class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"EcDQd6Qsd\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-u3y76PjGMq\">\r\n        <div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden gp-component gp-component-id-W8HPx4fW6\" href=\"https://lllpg.com/ronb2forU\" target=\"_blank\" data-gp-button-id=\"RRPKqWVg7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" alt=\"\" class=\"object-cover object-center\"> </a></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"OGWki8oIxK\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-ecZSsAHodS\">\r\n        <div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0wgdKXhPc\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-f209ypL8V\">\r\n        <div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mkGntwDqul\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p style=\"text-align: center;\" class=\"gp-component-id-qwXOCMdvJ\"><br></p></div></div><div class=\"gp-component gp-component-id-TlJxcKiu8 relative\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\">\r\n      \r\n      \r\n      \r\n      \r\n      \r\n      \r\n      <div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-iawQbhj_l0\"><strong><u><a href=\"https://soloswaps.com/login.php?s=noauth\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">No thanks</a></u></strong><u><a href=\"https://soloswaps.com/login.php?s=noauth\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">. I am ready to pass on this.</a></u></p></div>\r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      <a href=\"members.php\" data-gp-button-id=\"w9SLTwFSZ\" class=\"gp-container-link data-gp-no-parser\"></a>\r\n    </div>\r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8gDwjOwtm\" tabindex=\"0\" id=\"8gDwjOwtm\" style=\"\"><a name=\"8gDwjOwtm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"COSrbaDmsh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"D1awR1nPvd\" tabindex=\"0\"><div class=\"gp-component-id-8GTfPE0lkh\">\r\n                    <div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"3cVem03cLb\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-3e6FTAIs9i\">\r\n        <div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><img src=\"https://images.groovetech.io/3aT7vcmdsn--GIrBkAmKS52APMboSez95WhQnYGZb1g/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU0MjcyMTg3X3NvbG9zd2Fwcy5wbmc.webp\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">'),(7,'7',94,5,70,65,'<meta charset=\"utf-8\" />\r\n<title>GaryÂ´s Offer</title>\r\n<meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\" />\r\n<meta content=\"\" property=\"og:title\" />\r\n<meta content=\"\" property=\"og:image\" />\r\n<meta content=\"\" name=\"description\" />\r\n<meta content=\"\" name=\"keywords\" />\r\n<link href=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642019904_rapidlist.PNG\" rel=\"icon\" />\r\n<link href=\"https://fonts.gstatic.com\" rel=\"preconnect\" />\r\n<link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\" />\r\n<style id=\"global-styles\" type=\"text/css\">\r\n</style>\r\n<link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\" /><script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n<style id=\"IE-warning-style\" type=\"text/css\">#IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n</style>\r\n<style id=\"page-css\" type=\"text/css\">\r\n</style>\r\n<style id=\"section-block\" type=\"text/css\">section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n</style>\r\n<style id=\"custom-css\" type=\"text/css\">*{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n</style>\r\n<script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/garylo/\"\r\n     </script><script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script><!-- Matomo --><script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62adf9eeef34594be333b554\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"PwTXWempE\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script><noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript><!-- End Matomo Code --><!-- Start Popups --><script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script><!-- End Popups -->\r\n<div id=\"IE-warning\">\r\n<div class=\"IE-warning-message\">\r\n<p>Oops! Sorry!!</p>\r\nÂ \r\n\r\n<p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n</div>\r\n</div>\r\n<script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n\r\n<div id=\"custom-top\">Â </div>\r\n<script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQd1RYV2VtcEUiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62adf9eeef34594be333b554\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n\r\n<div data-gp-page-id=\"PwTXWempE\" id=\"page-container\">\r\n<div class=\"blocks-container\" id=\"blocks-container\">\r\n<style data-gp-styled-element=\"true\" type=\"text/css\">\r\n</style>\r\n<style class=\"style-2n7QHOFirV\" data-gp-styled-element=\"2n7QHOFirV\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2n7QHOFirV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2n7QHOFirV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2n7QHOFirV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2n7QHOFirV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2n7QHOFirV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W5Om6RFkW\" data-gp-styled-element=\"W5Om6RFkW\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W5Om6RFkW[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W5Om6RFkW[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W5Om6RFkW[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W5Om6RFkW[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W5Om6RFkW[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-JRZNrFb0vV\" data-gp-styled-element=\"JRZNrFb0vV\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JRZNrFb0vV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JRZNrFb0vV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JRZNrFb0vV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JRZNrFb0vV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JRZNrFb0vV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-Aq0He9820\" data-gp-styled-element=\"Aq0He9820\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Aq0He9820[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Aq0He9820[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Aq0He9820[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Aq0He9820[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Aq0He9820[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style data-gp-styled-element=\"41RPvOpWz\" type=\"text/css\">.gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-bGYQMQ0yS\" data-gp-styled-element=\"bGYQMQ0yS\" type=\"text/css\">.gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-iyMp9YDiSH\" data-gp-styled-element=\"iyMp9YDiSH\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ereyMx8qd\" data-gp-styled-element=\"ereyMx8qd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-MZJa720lXy\" data-gp-styled-element=\"MZJa720lXy\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-t2UbzQhM70\" data-gp-styled-element=\"t2UbzQhM70\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-60c_RaAnme\" data-gp-styled-element=\"60c_RaAnme\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qw7wHmzG9r\" data-gp-styled-element=\"qw7wHmzG9r\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-7SAHzBMVxb\" data-gp-styled-element=\"7SAHzBMVxb\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-vob6y0gN_\" data-gp-styled-element=\"vob6y0gN_\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-g5qUFX8D2x\" data-gp-styled-element=\"g5qUFX8D2x\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-WkR0boi2d\" data-gp-styled-element=\"WkR0boi2d\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0jNhDg_bY0\" data-gp-styled-element=\"0jNhDg_bY0\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0jNhDg_bY0 {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0jNhDg_bY0 {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0jNhDg_bY0 {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0jNhDg_bY0 {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0jNhDg_bY0 {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-s8amrw0Dvi\" data-gp-styled-element=\"s8amrw0Dvi\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-s8amrw0Dvi {\r\n          font-size: 22px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-yFOAl8Qsa\" data-gp-styled-element=\"yFOAl8Qsa\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8luFF1BBg\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-tfH5RN09F\" data-gp-styled-element=\"tfH5RN09F\" type=\"text/css\">.gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ddNM8oouP\" data-gp-styled-element=\"ddNM8oouP\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-cwb1P7HsOg\" data-gp-styled-element=\"cwb1P7HsOg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-kajrvBuY_\" data-gp-styled-element=\"kajrvBuY_\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kajrvBuY_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gR603Xpf\" data-gp-styled-element=\"8gR603Xpf\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-42geRpfrF\" data-gp-styled-element=\"42geRpfrF\" type=\"text/css\">.gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hnfQHp0bMt\" data-gp-styled-element=\"hnfQHp0bMt\" type=\"text/css\">.gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-CVNQ02KKdm\" data-gp-styled-element=\"CVNQ02KKdm\" type=\"text/css\">.gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-MDaop1dyw\" data-gp-styled-element=\"MDaop1dyw\" type=\"text/css\">.gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-zzAv4E_rRw\" data-gp-styled-element=\"zzAv4E_rRw\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-L0xSEIYQH\" data-gp-styled-element=\"L0xSEIYQH\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-x0qLSFNQm\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gDwjOwtm\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gDwjOwtm-overlay\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">.gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI-overlay\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">.gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-5k68o8eDj\" data-gp-styled-element=\"5k68o8eDj\" type=\"text/css\">.gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W_SJAxOpU\" data-gp-styled-element=\"W_SJAxOpU\" type=\"text/css\">.gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YFdlYXI44s\" data-gp-styled-element=\"YFdlYXI44s\" type=\"text/css\">.gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-p28XSz2Dr8\" data-gp-styled-element=\"p28XSz2Dr8\" type=\"text/css\">.gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2995INqmX1\" data-gp-styled-element=\"2995INqmX1\" type=\"text/css\">.gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-c8LWFknvJ\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ZWmM9oaZJ\" data-gp-styled-element=\"ZWmM9oaZJ\" type=\"text/css\">.gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hELXlwHigF\" data-gp-styled-element=\"hELXlwHigF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-UYNHzjc9XL\" data-gp-styled-element=\"UYNHzjc9XL\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2cCThK7xft\" data-gp-styled-element=\"2cCThK7xft\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qwXOCMdvJ\" data-gp-styled-element=\"qwXOCMdvJ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-iawQbhj_l0\" data-gp-styled-element=\"iawQbhj_l0\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TlJxcKiu8\" data-gp-styled-element=\"TlJxcKiu8\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EcDQd6Qsd\" data-gp-styled-element=\"EcDQd6Qsd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W8HPx4fW6\" data-gp-styled-element=\"W8HPx4fW6\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-R0ou7_aFZk\" data-gp-styled-element=\"R0ou7_aFZk\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-f5tbUrKVVs\" data-gp-styled-element=\"f5tbUrKVVs\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-Kgt2GY_oL_\" data-gp-styled-element=\"Kgt2GY_oL_\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-mkGntwDqul\" data-gp-styled-element=\"mkGntwDqul\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-99gBmU4Xl\" data-gp-styled-element=\"99gBmU4Xl\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-sIveWZozs6\" data-gp-styled-element=\"sIveWZozs6\" type=\"text/css\">.gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3e6FTAIs9i\" data-gp-styled-element=\"3e6FTAIs9i\" type=\"text/css\">.gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3cVem03cLb\" data-gp-styled-element=\"3cVem03cLb\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-luC52k9Dop\" data-gp-styled-element=\"luC52k9Dop\" type=\"text/css\">.gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8GTfPE0lkh\" data-gp-styled-element=\"8GTfPE0lkh\" type=\"text/css\">.gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-D1awR1nPvd\" data-gp-styled-element=\"D1awR1nPvd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-COSrbaDmsh\" data-gp-styled-element=\"COSrbaDmsh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-J_z76_RZn4\" data-gp-styled-element=\"J_z76_RZn4\" type=\"text/css\">.gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ecZSsAHodS\" data-gp-styled-element=\"ecZSsAHodS\" type=\"text/css\">.gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-OGWki8oIxK\" data-gp-styled-element=\"OGWki8oIxK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qolWUwBxkP\" data-gp-styled-element=\"qolWUwBxkP\" type=\"text/css\">.gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0QjPnswPgW\" data-gp-styled-element=\"0QjPnswPgW\" type=\"text/css\">.gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-g7ZzygdnDK\" data-gp-styled-element=\"g7ZzygdnDK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TKi99xtCwc\" data-gp-styled-element=\"TKi99xtCwc\" type=\"text/css\">.gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-T0x5gytyNi\" data-gp-styled-element=\"T0x5gytyNi\" type=\"text/css\">.gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-gKveClTNhg\" data-gp-styled-element=\"gKveClTNhg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-uOTetmF0P\" data-gp-styled-element=\"uOTetmF0P\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-eoQyW0XpHY\" data-gp-styled-element=\"eoQyW0XpHY\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-E0JYRwodpQ\" data-gp-styled-element=\"E0JYRwodpQ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fEQf_5kqEO\" data-gp-styled-element=\"fEQf_5kqEO\" type=\"text/css\">.gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-u3y76PjGMq\" data-gp-styled-element=\"u3y76PjGMq\" type=\"text/css\">.gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YMftO9Mgj\" data-gp-styled-element=\"YMftO9Mgj\" type=\"text/css\">.gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2YoPqR513B\" data-gp-styled-element=\"2YoPqR513B\" type=\"text/css\">.gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-uewobCXWOm\" data-gp-styled-element=\"uewobCXWOm\" type=\"text/css\">.gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-HhR4We9Pj8\" data-gp-styled-element=\"HhR4We9Pj8\" type=\"text/css\">.gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-LFjxRV27Z_\" data-gp-styled-element=\"LFjxRV27Z_\" type=\"text/css\">.gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0Bkx240IHc\" data-gp-styled-element=\"0Bkx240IHc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-90kZvTqr0k\" data-gp-styled-element=\"90kZvTqr0k\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-GI8NsP9vMT\" data-gp-styled-element=\"GI8NsP9vMT\" type=\"text/css\">.gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0k4k3iL1Ns\" data-gp-styled-element=\"0k4k3iL1Ns\" type=\"text/css\">.gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-tQSxU1bGH4\" data-gp-styled-element=\"tQSxU1bGH4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-nGze91qLM9\" data-gp-styled-element=\"nGze91qLM9\" type=\"text/css\">.gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YUf5Vd3Zpj\" data-gp-styled-element=\"YUf5Vd3Zpj\" type=\"text/css\">.gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-lY2ocfQuNI\" data-gp-styled-element=\"lY2ocfQuNI\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-FQ8I7JjOB6\" data-gp-styled-element=\"FQ8I7JjOB6\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8luFF1BBg-overlay\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">.gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-x0qLSFNQm-overlay\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">.gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-VgJGWFybSh\" data-gp-styled-element=\"VgJGWFybSh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EpR3FYP8KP\" data-gp-styled-element=\"EpR3FYP8KP\" type=\"text/css\">.gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-lX20hlPRT\" data-gp-styled-element=\"lX20hlPRT\" type=\"text/css\">.gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-jQW6E608vc\" data-gp-styled-element=\"jQW6E608vc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-KMb5y_c30p\" data-gp-styled-element=\"KMb5y_c30p\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-PtImyMcr0c\" data-gp-styled-element=\"PtImyMcr0c\" type=\"text/css\">.gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ijpsmOUYOx\" data-gp-styled-element=\"ijpsmOUYOx\" type=\"text/css\">.gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-eNgUY5HN1A\" data-gp-styled-element=\"eNgUY5HN1A\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hP3n278NIX\" data-gp-styled-element=\"hP3n278NIX\" type=\"text/css\">.gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-_BWma0JGM\" data-gp-styled-element=\"_BWma0JGM\" type=\"text/css\">.gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fvIHB16pmC\" data-gp-styled-element=\"fvIHB16pmC\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-5zLeBtD88t\" data-gp-styled-element=\"5zLeBtD88t\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0wgdKXhPc\" data-gp-styled-element=\"0wgdKXhPc\" type=\"text/css\">.gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-f209ypL8V\" data-gp-styled-element=\"f209ypL8V\" type=\"text/css\">.gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0f09MduSfs\" data-gp-styled-element=\"0f09MduSfs\" type=\"text/css\">.gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-c8LWFknvJ-overlay\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">.gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-b823Irvqy3\" data-gp-styled-element=\"b823Irvqy3\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0GX9ShP7cU\" data-gp-styled-element=\"0GX9ShP7cU\" type=\"text/css\">.gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0yg5Yj9zwn\" data-gp-styled-element=\"0yg5Yj9zwn\" type=\"text/css\">.gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fSP6aMQWwu\" data-gp-styled-element=\"fSP6aMQWwu\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-jj4nhdDw4a\" data-gp-styled-element=\"jj4nhdDw4a\" type=\"text/css\">.gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-pLq0nkrGLt\" data-gp-styled-element=\"pLq0nkrGLt\" type=\"text/css\">.gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-_jMvnockmU\" data-gp-styled-element=\"_jMvnockmU\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0MHvUy5W_c\" data-gp-styled-element=\"0MHvUy5W_c\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"SrqqQY8ReI\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"SrqqQY8ReI\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"SrqqQY8ReI\"></a>\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-component=\"container\" data-gp-component-id=\"hELXlwHigF\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\"><img alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" tabindex=\"0\" /></div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8luFF1BBg\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8luFF1BBg\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"8luFF1BBg\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-component=\"container\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-component-id=\"lY2ocfQuNI\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n<div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0k4k3iL1Ns\">\r\n<div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-component=\"container\" data-gp-component-id=\"90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-component=\"null\" data-gp-component-id=\"_EwCyTjIut\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-zzAv4E_rRw\"><strong>Let Us Go Clicking for Buyer Traffic</strong></p>\r\n</div>\r\n\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-LFjxRV27Z_\">\r\n<div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-component=\"container\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-bGYQMQ0yS gp-component\" data-gp-classes=\"\" data-gp-component=\"video-all\" data-gp-component-id=\"bGYQMQ0yS\" data-gp-dnd=\"\" data-gp-style=\"\">\r\n<div class=\"bg-black cursor-pointer\" style=\"padding-bottom: 56.25%;\"><iframe allow=\"autoplay\" allowfullscreen=\"\" data-gp-vembed-id=\"NzNDE7yDd\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" mozallowfullscreen=\"\" msallowfullscreen=\"\" oallowfullscreen=\"\" scrolling=\"no\" src=\"https://www.youtube.com/embed/UVbibuaslzU?rel=0&modestbranding=1&controls=1\" webkitallowfullscreen=\"\"></iframe></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"tfH5RN09F\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-component=\"null\" data-gp-component-id=\"SNqb6cK1g\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-text=\"\" tabindex=\"0\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-component=\"container\" data-gp-component-id=\"uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-component-id=\"gKveClTNhg\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-T0x5gytyNi\">\r\n<div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0QjPnswPgW\">\r\n<div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"x0qLSFNQm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"x0qLSFNQm\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"x0qLSFNQm\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-component=\"container\" data-gp-component-id=\"5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-component-id=\"fvIHB16pmC\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-_BWma0JGM\">\r\n<div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-ijpsmOUYOx\">\r\n<div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-component=\"container\" data-gp-component-id=\"KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-component=\"null\" data-gp-component-id=\"egr33Q0P62\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are Some Awesome Features About</strong></p>\r\n\r\n<p class=\"gp-component-id-L0xSEIYQH\"><strong>The Click Egine</strong></p>\r\n</div>\r\n\r\n<div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"8gR603Xpf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"ddNM8oouP\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-42geRpfrF\">\r\n<div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-component=\"container\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<ul>\r\n	<li class=\"gp-component gp-component-id-kajrvBuY_\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"kajrvBuY_\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-i3WFfR26Rm\" data-gp-component=\"null\" data-gp-component-id=\"i3WFfR26Rm\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-s8amrw0Dvi\"><strong>Drive more Traffic to your offer</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-yFOAl8Qsa\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"yFOAl8Qsa\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-5vU2sirE8O\" data-gp-component=\"null\" data-gp-component-id=\"5vU2sirE8O\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-0jNhDg_bY0\"><strong>Boost your conversion</strong></p>\r\n	</div>\r\n	</li>\r\n</ul>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-Y6WY6Z4bPB\" data-gp-component=\"null\" data-gp-component-id=\"Y6WY6Z4bPB\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\">\r\n<h1 class=\"gp-component-id-41RPvOpWz\"><strong>who can use Click Egine:</strong></h1>\r\n</div>\r\n\r\n<ul>\r\n	<li class=\"gp-component gp-component-id-t2UbzQhM70\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"t2UbzQhM70\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-vBhnVHM0hm\" data-gp-component=\"null\" data-gp-component-id=\"vBhnVHM0hm\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-MZJa720lXy\"><strong>Affiliate marketer</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-qw7wHmzG9r\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"qw7wHmzG9r\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-sBOs8PZPq\" data-gp-component=\"null\" data-gp-component-id=\"sBOs8PZPq\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-60c_RaAnme\"><strong>Product creator</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-vob6y0gN_\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"vob6y0gN_\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-X_9aaxvsFm\" data-gp-component=\"null\" data-gp-component-id=\"X_9aaxvsFm\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-7SAHzBMVxb\"><strong>Entrepreneur</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-WkR0boi2d\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"WkR0boi2d\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-w83jEeabP_\" data-gp-component=\"null\" data-gp-component-id=\"w83jEeabP_\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-g5qUFX8D2x\"><strong>Newbie</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-ereyMx8qd\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"ereyMx8qd\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-avX79fDust\" data-gp-component=\"null\" data-gp-component-id=\"avX79fDust\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-iyMp9YDiSH\"><strong>Business Owner</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-Aq0He9820\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"Aq0He9820\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-cmh0OSIq5T\" data-gp-component=\"null\" data-gp-component-id=\"cmh0OSIq5T\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-JRZNrFb0vV\"><strong>Local or Small Businesses.</strong></p>\r\n	</div>\r\n	</li>\r\n	<li class=\"gp-component gp-component-id-W5Om6RFkW\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"W5Om6RFkW\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-nCtiWmRz9F\" data-gp-component=\"null\" data-gp-component-id=\"nCtiWmRz9F\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-2n7QHOFirV\"><strong>Blogger</strong></p>\r\n	</div>\r\n	</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div 3=\"\" class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\" data-gp-component-id=\"5k68o8eDj\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-W_SJAxOpU\">\r\n<div class=\"gp-component-id-YFdlYXI44s\" data-gp-grid-col=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-lX20hlPRT\">\r\n<div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-component=\"container\" data-gp-component-id=\"VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-YMftO9Mgj\">\r\n<div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"c8LWFknvJ\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"c8LWFknvJ\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"c8LWFknvJ\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-component=\"container\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-_jMvnockmU\" data-gp-component=\"layout-1\" data-gp-component-id=\"_jMvnockmU\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-pLq0nkrGLt\">\r\n<div class=\"gp-component-id-jj4nhdDw4a\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0yg5Yj9zwn\">\r\n<div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-component=\"container\" data-gp-component-id=\"b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-component=\"null\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-R0ou7_aFZk\"><strong>Hurry!</strong><br />\r\nTake advantage of this Special Offer</p>\r\n</div>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U\" data-gp-component=\"null\" data-gp-component-id=\"GvtpTSa4U\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-eoQyW0XpHY\"><strong>4.90 per month</strong></p>\r\n</div>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-01cTbNoFM\" data-gp-component=\"null\" data-gp-component-id=\"01cTbNoFM\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-Kgt2GY_oL_\">..is Your discounted price for today!</p>\r\n</div>\r\n\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-u3y76PjGMq\">\r\n<div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-component=\"container\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden gp-component gp-component-id-W8HPx4fW6\" data-gp-button-id=\"J2fIuuxJU\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\" data-gp-dnd=\"\" data-gp-style=\"\" href=\"http://clickly.club/4ngvnvv/\" target=\"_blank\"><img alt=\"\" class=\"object-cover object-center\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" /> </a></div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-ecZSsAHodS\">\r\n<div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"0wgdKXhPc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-f209ypL8V\">\r\n<div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-component=\"container\" data-gp-component-id=\"mkGntwDqul\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-component=\"null\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-qwXOCMdvJ\" style=\"text-align: center;\">I Understand this is a one time payment and I will not be charged again,</p>\r\n\r\n<p class=\"gp-component-id-2cCThK7xft\" style=\"text-align: center;\">unless I choose to purchase the package again.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component gp-component-id-TlJxcKiu8 relative\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\">\r\n<div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3\" data-gp-component=\"null\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-iawQbhj_l0\"><a href=\"members.php\"><strong><u>No thanks</u></strong><u>. I am ready to pass on this.</u></a></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8gDwjOwtm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8gDwjOwtm\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"8gDwjOwtm\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-component=\"container\" data-gp-component-id=\"COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-component-id=\"D1awR1nPvd\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-8GTfPE0lkh\">\r\n<div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\",\"title\":\"1\" class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-3e6FTAIs9i\">\r\n<div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-component=\"container\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"><img alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://images.groovetech.io/3aT7vcmdsn--GIrBkAmKS52APMboSez95WhQnYGZb1g/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU0MjcyMTg3X3NvbG9zd2Fwcy5wbmc.webp\" style=\"width: 1140px; height: 98px;\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n</div>\r\n\r\n<div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\">Â </div>\r\n</div>\r\n\r\n<div id=\"custom-bottom\">Â </div>'),(8,'8',81,5,65,60,'<meta charset=\"utf-8\" />\r\n<title>Stan\'s Offer</title>\r\n<meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\" />\r\n<meta content=\"\" property=\"og:title\" />\r\n<meta content=\"\" property=\"og:image\" />\r\n<meta content=\"\" name=\"description\" />\r\n<meta content=\"\" name=\"keywords\" />\r\n<link href=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642019904_rapidlist.PNG\" rel=\"icon\" />\r\n<link href=\"https://fonts.gstatic.com\" rel=\"preconnect\" />\r\n<link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\" />\r\n<style id=\"global-styles\" type=\"text/css\">\r\n</style>\r\n<link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\" /><script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n<style id=\"IE-warning-style\" type=\"text/css\">#IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n</style>\r\n<style id=\"page-css\" type=\"text/css\">\r\n</style>\r\n<style id=\"section-block\" type=\"text/css\">section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n</style>\r\n<style id=\"custom-css\" type=\"text/css\">*{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n</style>\r\n<script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/gordono/\"\r\n     </script><script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script><!-- Matomo --><script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62a769946af56036c059a162\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Lm_MuwsfH\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script><noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript><!-- End Matomo Code --><!-- Start Popups --><script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script><!-- End Popups -->\r\n<div id=\"IE-warning\">\r\n<div class=\"IE-warning-message\">\r\n<p>Oops! Sorry!!</p>\r\nÂ \r\n\r\n<p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n</div>\r\n</div>\r\n<script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n\r\n<div id=\"custom-top\">Â </div>\r\n<script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQd1RYV2VtcEUiOnsidXJsIjoicGFnZS0xIn0sIkxtX011d3NmSCI6eyJ1cmwiOiJpbmRleCJ9LCJ1ZnlIYV94RUIiOnsidXJsIjoicGFnZS0yIn0sImIyVXY1N0NfYyI6eyJ1cmwiOiJwYWdlLTMifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]},{\"url\":\"page-1\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]},{\"url\":\"page-2\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]},{\"url\":\"page-3\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62a769946af56036c059a162\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n\r\n<div data-gp-page-id=\"Lm_MuwsfH\" id=\"page-container\">\r\n<div class=\"blocks-container\" id=\"blocks-container\">\r\n<style data-gp-styled-element=\"true\" type=\"text/css\">\r\n</style>\r\n<style class=\"style-Z9BEosNimj\" data-gp-styled-element=\"Z9BEosNimj\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Z9BEosNimj {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Z9BEosNimj {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Z9BEosNimj {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Z9BEosNimj {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Z9BEosNimj {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EzoPMuYWx\" data-gp-styled-element=\"EzoPMuYWx\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EzoPMuYWx[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EzoPMuYWx[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EzoPMuYWx[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EzoPMuYWx[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EzoPMuYWx[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0LG4aZR8gv\" data-gp-styled-element=\"0LG4aZR8gv\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0LG4aZR8gv {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0LG4aZR8gv {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0LG4aZR8gv {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0LG4aZR8gv {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0LG4aZR8gv {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-LULRZ02VZ\" data-gp-styled-element=\"LULRZ02VZ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LULRZ02VZ[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LULRZ02VZ[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LULRZ02VZ[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LULRZ02VZ[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LULRZ02VZ[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-b3P2g2BTPk\" data-gp-styled-element=\"b3P2g2BTPk\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-b3P2g2BTPk {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-b3P2g2BTPk {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-b3P2g2BTPk {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-b3P2g2BTPk {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-b3P2g2BTPk {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-G_nvcJHwY\" data-gp-styled-element=\"G_nvcJHwY\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-G_nvcJHwY[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-G_nvcJHwY[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-G_nvcJHwY[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-G_nvcJHwY[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-G_nvcJHwY[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-AHR50Xm15K\" data-gp-styled-element=\"AHR50Xm15K\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-AHR50Xm15K {\r\n          font-size: 2em;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-AHR50Xm15K {\r\n          font-size: 2em;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-AHR50Xm15K {\r\n          font-size: 2em;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-AHR50Xm15K {\r\n          font-size: 2em;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-AHR50Xm15K {\r\n          font-size: 2em;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-6FW3K6Y_gn\" data-gp-styled-element=\"6FW3K6Y_gn\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6FW3K6Y_gn {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6FW3K6Y_gn {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6FW3K6Y_gn {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6FW3K6Y_gn {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6FW3K6Y_gn {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-UvGDFCva5\" data-gp-styled-element=\"UvGDFCva5\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UvGDFCva5[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UvGDFCva5[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UvGDFCva5[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UvGDFCva5[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UvGDFCva5[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-PYnKcE0RZH\" data-gp-styled-element=\"PYnKcE0RZH\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PYnKcE0RZH {\r\n          font-size: 2em;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PYnKcE0RZH {\r\n          font-size: 2em;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PYnKcE0RZH {\r\n          font-size: 2em;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PYnKcE0RZH {\r\n          font-size: 2em;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PYnKcE0RZH {\r\n          font-size: 2em;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n</style>\r\n<style data-gp-styled-element=\"snREupSOj\" type=\"text/css\">.gp-component-id-snREupSOj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-snREupSOj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-snREupSOj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-snREupSOj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-snREupSOj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-snREupSOj {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8luFF1BBg-overlay\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">.gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-pIJ3rEiST\" data-gp-styled-element=\"pIJ3rEiST\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 82%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 82%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 82%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 82%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 82%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-c8LWFknvJ-overlay\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">.gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-JVCXXwD5S\" data-gp-styled-element=\"JVCXXwD5S\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-yFOAl8Qsa\" data-gp-styled-element=\"yFOAl8Qsa\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-DNyAzqs9H7\" data-gp-styled-element=\"DNyAzqs9H7\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-RLhagGVVn\" data-gp-styled-element=\"RLhagGVVn\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TN1aghq4v9\" data-gp-styled-element=\"TN1aghq4v9\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-U_ZCcozYg\" data-gp-styled-element=\"U_ZCcozYg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3xJsI9Ixq\" data-gp-styled-element=\"3xJsI9Ixq\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-6sNwx3y0a\" data-gp-styled-element=\"6sNwx3y0a\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8luFF1BBg\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-tfH5RN09F\" data-gp-styled-element=\"tfH5RN09F\" type=\"text/css\">.gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ddNM8oouP\" data-gp-styled-element=\"ddNM8oouP\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-cwb1P7HsOg\" data-gp-styled-element=\"cwb1P7HsOg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gR603Xpf\" data-gp-styled-element=\"8gR603Xpf\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-42geRpfrF\" data-gp-styled-element=\"42geRpfrF\" type=\"text/css\">.gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hnfQHp0bMt\" data-gp-styled-element=\"hnfQHp0bMt\" type=\"text/css\">.gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-CVNQ02KKdm\" data-gp-styled-element=\"CVNQ02KKdm\" type=\"text/css\">.gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-MDaop1dyw\" data-gp-styled-element=\"MDaop1dyw\" type=\"text/css\">.gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-zzAv4E_rRw\" data-gp-styled-element=\"zzAv4E_rRw\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-L0xSEIYQH\" data-gp-styled-element=\"L0xSEIYQH\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-x0qLSFNQm\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gDwjOwtm\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gDwjOwtm-overlay\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">.gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI-overlay\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">.gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-5k68o8eDj\" data-gp-styled-element=\"5k68o8eDj\" type=\"text/css\">.gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W_SJAxOpU\" data-gp-styled-element=\"W_SJAxOpU\" type=\"text/css\">.gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YFdlYXI44s\" data-gp-styled-element=\"YFdlYXI44s\" type=\"text/css\">.gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-p28XSz2Dr8\" data-gp-styled-element=\"p28XSz2Dr8\" type=\"text/css\">.gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2995INqmX1\" data-gp-styled-element=\"2995INqmX1\" type=\"text/css\">.gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-c8LWFknvJ\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ZWmM9oaZJ\" data-gp-styled-element=\"ZWmM9oaZJ\" type=\"text/css\">.gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hELXlwHigF\" data-gp-styled-element=\"hELXlwHigF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-UYNHzjc9XL\" data-gp-styled-element=\"UYNHzjc9XL\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qwXOCMdvJ\" data-gp-styled-element=\"qwXOCMdvJ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-iawQbhj_l0\" data-gp-styled-element=\"iawQbhj_l0\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TlJxcKiu8\" data-gp-styled-element=\"TlJxcKiu8\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EcDQd6Qsd\" data-gp-styled-element=\"EcDQd6Qsd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W8HPx4fW6\" data-gp-styled-element=\"W8HPx4fW6\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-R0ou7_aFZk\" data-gp-styled-element=\"R0ou7_aFZk\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-f5tbUrKVVs\" data-gp-styled-element=\"f5tbUrKVVs\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-mkGntwDqul\" data-gp-styled-element=\"mkGntwDqul\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-99gBmU4Xl\" data-gp-styled-element=\"99gBmU4Xl\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-sIveWZozs6\" data-gp-styled-element=\"sIveWZozs6\" type=\"text/css\">.gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3e6FTAIs9i\" data-gp-styled-element=\"3e6FTAIs9i\" type=\"text/css\">.gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3cVem03cLb\" data-gp-styled-element=\"3cVem03cLb\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-luC52k9Dop\" data-gp-styled-element=\"luC52k9Dop\" type=\"text/css\">.gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8GTfPE0lkh\" data-gp-styled-element=\"8GTfPE0lkh\" type=\"text/css\">.gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-D1awR1nPvd\" data-gp-styled-element=\"D1awR1nPvd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-COSrbaDmsh\" data-gp-styled-element=\"COSrbaDmsh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-J_z76_RZn4\" data-gp-styled-element=\"J_z76_RZn4\" type=\"text/css\">.gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ecZSsAHodS\" data-gp-styled-element=\"ecZSsAHodS\" type=\"text/css\">.gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-OGWki8oIxK\" data-gp-styled-element=\"OGWki8oIxK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qolWUwBxkP\" data-gp-styled-element=\"qolWUwBxkP\" type=\"text/css\">.gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0QjPnswPgW\" data-gp-styled-element=\"0QjPnswPgW\" type=\"text/css\">.gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-g7ZzygdnDK\" data-gp-styled-element=\"g7ZzygdnDK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TKi99xtCwc\" data-gp-styled-element=\"TKi99xtCwc\" type=\"text/css\">.gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-T0x5gytyNi\" data-gp-styled-element=\"T0x5gytyNi\" type=\"text/css\">.gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-gKveClTNhg\" data-gp-styled-element=\"gKveClTNhg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-uOTetmF0P\" data-gp-styled-element=\"uOTetmF0P\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-E0JYRwodpQ\" data-gp-styled-element=\"E0JYRwodpQ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fEQf_5kqEO\" data-gp-styled-element=\"fEQf_5kqEO\" type=\"text/css\">.gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-u3y76PjGMq\" data-gp-styled-element=\"u3y76PjGMq\" type=\"text/css\">.gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YMftO9Mgj\" data-gp-styled-element=\"YMftO9Mgj\" type=\"text/css\">.gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2YoPqR513B\" data-gp-styled-element=\"2YoPqR513B\" type=\"text/css\">.gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-uewobCXWOm\" data-gp-styled-element=\"uewobCXWOm\" type=\"text/css\">.gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-HhR4We9Pj8\" data-gp-styled-element=\"HhR4We9Pj8\" type=\"text/css\">.gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-LFjxRV27Z_\" data-gp-styled-element=\"LFjxRV27Z_\" type=\"text/css\">.gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0Bkx240IHc\" data-gp-styled-element=\"0Bkx240IHc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-90kZvTqr0k\" data-gp-styled-element=\"90kZvTqr0k\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-GI8NsP9vMT\" data-gp-styled-element=\"GI8NsP9vMT\" type=\"text/css\">.gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0k4k3iL1Ns\" data-gp-styled-element=\"0k4k3iL1Ns\" type=\"text/css\">.gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-tQSxU1bGH4\" data-gp-styled-element=\"tQSxU1bGH4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-nGze91qLM9\" data-gp-styled-element=\"nGze91qLM9\" type=\"text/css\">.gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YUf5Vd3Zpj\" data-gp-styled-element=\"YUf5Vd3Zpj\" type=\"text/css\">.gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-lY2ocfQuNI\" data-gp-styled-element=\"lY2ocfQuNI\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-FQ8I7JjOB6\" data-gp-styled-element=\"FQ8I7JjOB6\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-x0qLSFNQm-overlay\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">.gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-VgJGWFybSh\" data-gp-styled-element=\"VgJGWFybSh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EpR3FYP8KP\" data-gp-styled-element=\"EpR3FYP8KP\" type=\"text/css\">.gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-lX20hlPRT\" data-gp-styled-element=\"lX20hlPRT\" type=\"text/css\">.gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-jQW6E608vc\" data-gp-styled-element=\"jQW6E608vc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-KMb5y_c30p\" data-gp-styled-element=\"KMb5y_c30p\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-PtImyMcr0c\" data-gp-styled-element=\"PtImyMcr0c\" type=\"text/css\">.gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ijpsmOUYOx\" data-gp-styled-element=\"ijpsmOUYOx\" type=\"text/css\">.gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-eNgUY5HN1A\" data-gp-styled-element=\"eNgUY5HN1A\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hP3n278NIX\" data-gp-styled-element=\"hP3n278NIX\" type=\"text/css\">.gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-_BWma0JGM\" data-gp-styled-element=\"_BWma0JGM\" type=\"text/css\">.gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fvIHB16pmC\" data-gp-styled-element=\"fvIHB16pmC\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-5zLeBtD88t\" data-gp-styled-element=\"5zLeBtD88t\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0wgdKXhPc\" data-gp-styled-element=\"0wgdKXhPc\" type=\"text/css\">.gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-f209ypL8V\" data-gp-styled-element=\"f209ypL8V\" type=\"text/css\">.gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0f09MduSfs\" data-gp-styled-element=\"0f09MduSfs\" type=\"text/css\">.gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-b823Irvqy3\" data-gp-styled-element=\"b823Irvqy3\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0GX9ShP7cU\" data-gp-styled-element=\"0GX9ShP7cU\" type=\"text/css\">.gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0yg5Yj9zwn\" data-gp-styled-element=\"0yg5Yj9zwn\" type=\"text/css\">.gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fSP6aMQWwu\" data-gp-styled-element=\"fSP6aMQWwu\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-jj4nhdDw4a\" data-gp-styled-element=\"jj4nhdDw4a\" type=\"text/css\">.gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-pLq0nkrGLt\" data-gp-styled-element=\"pLq0nkrGLt\" type=\"text/css\">.gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-_jMvnockmU\" data-gp-styled-element=\"_jMvnockmU\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0MHvUy5W_c\" data-gp-styled-element=\"0MHvUy5W_c\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"SrqqQY8ReI\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"SrqqQY8ReI\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"SrqqQY8ReI\"></a>\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-component=\"container\" data-gp-component-id=\"hELXlwHigF\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\"><img alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" tabindex=\"0\" /></div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8luFF1BBg\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8luFF1BBg\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"8luFF1BBg\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-component=\"container\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div cg=\"=\" class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0k4k3iL1Ns\">\r\n<div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-component=\"container\" data-gp-component-id=\"90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div cg=\"=\" class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-LFjxRV27Z_\">\r\n<div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-component=\"container\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"><img alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-pIJ3rEiST\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://i.imgur.com/1D5iDTv.png\" style=\"width: 780px; height: 1080px;\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"tfH5RN09F\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-component=\"null\" data-gp-component-id=\"SNqb6cK1g\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-text=\"\" tabindex=\"0\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-component=\"container\" data-gp-component-id=\"uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-component-id=\"gKveClTNhg\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-T0x5gytyNi\">\r\n<div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0QjPnswPgW\">\r\n<div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"x0qLSFNQm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"x0qLSFNQm\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"x0qLSFNQm\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-component=\"container\" data-gp-component-id=\"5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-component-id=\"fvIHB16pmC\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-_BWma0JGM\">\r\n<div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-ijpsmOUYOx\">\r\n<div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-component=\"container\" data-gp-component-id=\"KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-component=\"null\" data-gp-component-id=\"egr33Q0P62\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are Some Awesome Features About</strong></p>\r\n\r\n<p class=\"gp-component-id-L0xSEIYQH\"><strong>14 day quick list building challenge</strong></p>\r\n</div>\r\n\r\n<div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"8gR603Xpf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div cg=\"=\" class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"ddNM8oouP\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-42geRpfrF\">\r\n<div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-component=\"container\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<ul>\r\n	<li class=\"gp-component gp-component-id-yFOAl8Qsa\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"yFOAl8Qsa\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">Â </li>\r\n</ul>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-7VL9Ci32Zi\" data-gp-component=\"null\" data-gp-component-id=\"7VL9Ci32Zi\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\">Â </div>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-qeOp1QGKmr gp-component gp-component-id-6sNwx3y0a\" data-gp-component=\"null\" data-gp-component-id=\"qeOp1QGKmr\" data-gp-style=\"\" data-gp-text=\"\">\r\n<p class=\"gp-component-id-3xJsI9Ixq\"><strong>Free Traffic and Sales</strong></p>\r\n</div>\r\n\r\n<ul>\r\n	<li class=\"gp-component gp-component-id-RLhagGVVn\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"RLhagGVVn\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-sK6bAf0gP5\" data-gp-component=\"null\" data-gp-component-id=\"sK6bAf0gP5\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-DNyAzqs9H7\"><strong>You Are About To Get Access To 15 Free Traffic Sources</strong></p>\r\n	</div>\r\n	</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div 3=\"\" class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\" data-gp-component-id=\"5k68o8eDj\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-W_SJAxOpU\">\r\n<div class=\"gp-component-id-YFdlYXI44s\" data-gp-grid-col=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-lX20hlPRT\">\r\n<div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-component=\"container\" data-gp-component-id=\"VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-YMftO9Mgj\">\r\n<div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"c8LWFknvJ\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"c8LWFknvJ\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"c8LWFknvJ\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-component=\"container\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-_jMvnockmU\" data-gp-component=\"layout-1\" data-gp-component-id=\"_jMvnockmU\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-pLq0nkrGLt\">\r\n<div class=\"gp-component-id-jj4nhdDw4a\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0yg5Yj9zwn\">\r\n<div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-component=\"container\" data-gp-component-id=\"b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-component=\"null\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-R0ou7_aFZk\"><strong>Limited Time Offer</strong></p>\r\n\r\n<p class=\"gp-component-id-JVCXXwD5S\"><b>Completely Free!!!</b></p>\r\n</div>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U\" data-gp-component=\"null\" data-gp-component-id=\"GvtpTSa4U\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-9TIdYziGZ\">Â </p>\r\n</div>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-01cTbNoFM\" data-gp-component=\"null\" data-gp-component-id=\"01cTbNoFM\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-MbD_UsF4x\">Â </p>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-u3y76PjGMq\">\r\n<div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-component=\"container\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden object-cover object-center gp-component gp-component-id-W8HPx4fW6\" data-gp-button-id=\"HHfc987zH\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\" data-gp-dnd=\"\" data-gp-style=\"\" href=\"https://llpgpro.com/d63fy32m/loginad\" target=\"_blank\"><img alt=\"\" class=\"object-cover object-center\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" /> </a></div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-ecZSsAHodS\">\r\n<div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"0wgdKXhPc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-f209ypL8V\">\r\n<div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-component=\"container\" data-gp-component-id=\"mkGntwDqul\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-component=\"null\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-qwXOCMdvJ\" style=\"text-align: center;\">Â </p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component gp-component-id-TlJxcKiu8 relative\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\">\r\n<div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3\" data-gp-component=\"null\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-iawQbhj_l0\"><strong><u><a href=\"members.php\" target=\"_self\">No thanks</a></u></strong><u><a href=\"members.php\" target=\"_self\">. I am ready to pass on this.</a></u></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8gDwjOwtm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8gDwjOwtm\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"8gDwjOwtm\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-component=\"container\" data-gp-component-id=\"COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-component-id=\"D1awR1nPvd\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-8GTfPE0lkh\">\r\n<div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-3e6FTAIs9i\">\r\n<div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-component=\"container\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"><img alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654272187_soloswaps.png\" style=\"width: 1140px; height: 98px;\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n</div>\r\n\r\n<div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\">Â </div>\r\n</div>\r\n\r\n<div id=\"custom-bottom\">Â </div>');
INSERT INTO `oto_rtoads` (`id`, `ipn`, `shown`, `percent`, `highnum`, `lownum`, `content`) VALUES (9,'9',82,5,60,55,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>AllanÂ´s Offer</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642019904_rapidlist.PNG\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\" />\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/allanlo/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62b9fe3d99c7995efd4276e3\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"PwTXWempE\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62b9fe3d99c7995efd4276e3\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQd1RYV2VtcEUiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62b9fe3d99c7995efd4276e3\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"PwTXWempE\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"aBbXvxqSD_\" class=\"style-aBbXvxqSD_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aBbXvxqSD_ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aBbXvxqSD_ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aBbXvxqSD_ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aBbXvxqSD_ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aBbXvxqSD_ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rf58BMN0f\" class=\"style-rf58BMN0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rf58BMN0f[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rf58BMN0f[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rf58BMN0f[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rf58BMN0f[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rf58BMN0f[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3vi_MbM8p5\" class=\"style-3vi_MbM8p5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vi_MbM8p5 {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vi_MbM8p5 {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vi_MbM8p5 {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vi_MbM8p5 {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3vi_MbM8p5 {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u1HNTbmUY\" class=\"style-u1HNTbmUY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u1HNTbmUY[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u1HNTbmUY[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u1HNTbmUY[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u1HNTbmUY[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u1HNTbmUY[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9C94R65W0w\" class=\"style-9C94R65W0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9C94R65W0w {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9C94R65W0w {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9C94R65W0w {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9C94R65W0w {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9C94R65W0w {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L90nUPlzN\" class=\"style-L90nUPlzN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L90nUPlzN[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L90nUPlzN[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L90nUPlzN[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L90nUPlzN[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L90nUPlzN[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rS6gZ8igKC\" class=\"style-rS6gZ8igKC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rS6gZ8igKC {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rS6gZ8igKC {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rS6gZ8igKC {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rS6gZ8igKC {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-rS6gZ8igKC {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pDXZ9VV9O\" class=\"style-pDXZ9VV9O\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pDXZ9VV9O[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pDXZ9VV9O[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pDXZ9VV9O[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pDXZ9VV9O[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pDXZ9VV9O[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"q8SQDOVuoD\" class=\"style-q8SQDOVuoD\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q8SQDOVuoD {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q8SQDOVuoD {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q8SQDOVuoD {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q8SQDOVuoD {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-q8SQDOVuoD {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ViJOFEx00\" class=\"style-ViJOFEx00\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ViJOFEx00[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ViJOFEx00[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ViJOFEx00[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ViJOFEx00[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ViJOFEx00[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZdVvsxqCfA\" class=\"style-ZdVvsxqCfA\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZdVvsxqCfA {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZdVvsxqCfA {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZdVvsxqCfA {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZdVvsxqCfA {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-ZdVvsxqCfA {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xAHaY486w\" class=\"style-xAHaY486w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xAHaY486w[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xAHaY486w[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xAHaY486w[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xAHaY486w[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xAHaY486w[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"e1eFRT7dLj\" class=\"style-e1eFRT7dLj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e1eFRT7dLj {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e1eFRT7dLj {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e1eFRT7dLj {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e1eFRT7dLj {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-e1eFRT7dLj {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"No17CE0ww\" class=\"style-No17CE0ww\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-No17CE0ww[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-No17CE0ww[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-No17CE0ww[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-No17CE0ww[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-No17CE0ww[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hq9NhggAmk\" class=\"style-Hq9NhggAmk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hq9NhggAmk {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hq9NhggAmk {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hq9NhggAmk {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hq9NhggAmk {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hq9NhggAmk {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F5cu8IB9_\" class=\"style-F5cu8IB9_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F5cu8IB9_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F5cu8IB9_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F5cu8IB9_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F5cu8IB9_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F5cu8IB9_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KPSBa0CVvw\" class=\"style-KPSBa0CVvw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KPSBa0CVvw {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KPSBa0CVvw {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KPSBa0CVvw {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KPSBa0CVvw {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KPSBa0CVvw {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gcIJqBTyT\" class=\"style-gcIJqBTyT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gcIJqBTyT[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gcIJqBTyT[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gcIJqBTyT[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gcIJqBTyT[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gcIJqBTyT[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg-overlay\">\r\n        \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"BX_k0FHQ9\" class=\"style-BX_k0FHQ9\">\r\n        \r\n        .gp-component-id-BX_k0FHQ9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-BX_k0FHQ9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-BX_k0FHQ9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-BX_k0FHQ9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-BX_k0FHQ9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-BX_k0FHQ9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2n7QHOFirV\" class=\"style-2n7QHOFirV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2n7QHOFirV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2n7QHOFirV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2n7QHOFirV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2n7QHOFirV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2n7QHOFirV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W5Om6RFkW\" class=\"style-W5Om6RFkW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W5Om6RFkW[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W5Om6RFkW[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W5Om6RFkW[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W5Om6RFkW[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W5Om6RFkW[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JRZNrFb0vV\" class=\"style-JRZNrFb0vV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JRZNrFb0vV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JRZNrFb0vV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JRZNrFb0vV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JRZNrFb0vV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JRZNrFb0vV {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Aq0He9820\" class=\"style-Aq0He9820\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Aq0He9820[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Aq0He9820[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Aq0He9820[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Aq0He9820[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Aq0He9820[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"41RPvOpWz\">\r\n        \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-41RPvOpWz {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bGYQMQ0yS\" class=\"style-bGYQMQ0yS\">\r\n        \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iyMp9YDiSH\" class=\"style-iyMp9YDiSH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ereyMx8qd\" class=\"style-ereyMx8qd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MZJa720lXy\" class=\"style-MZJa720lXy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t2UbzQhM70\" class=\"style-t2UbzQhM70\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"60c_RaAnme\" class=\"style-60c_RaAnme\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qw7wHmzG9r\" class=\"style-qw7wHmzG9r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7SAHzBMVxb\" class=\"style-7SAHzBMVxb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vob6y0gN_\" class=\"style-vob6y0gN_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g5qUFX8D2x\" class=\"style-g5qUFX8D2x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g5qUFX8D2x {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WkR0boi2d\" class=\"style-WkR0boi2d\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WkR0boi2d[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tfH5RN09F\" class=\"style-tfH5RN09F\">\r\n        \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ddNM8oouP\" class=\"style-ddNM8oouP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cwb1P7HsOg\" class=\"style-cwb1P7HsOg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gR603Xpf\" class=\"style-8gR603Xpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"42geRpfrF\" class=\"style-42geRpfrF\">\r\n        \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hnfQHp0bMt\" class=\"style-hnfQHp0bMt\">\r\n        \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CVNQ02KKdm\" class=\"style-CVNQ02KKdm\">\r\n        \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MDaop1dyw\" class=\"style-MDaop1dyw\">\r\n        \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zzAv4E_rRw\" class=\"style-zzAv4E_rRw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L0xSEIYQH\" class=\"style-L0xSEIYQH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm-overlay\">\r\n        \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI-overlay\">\r\n        \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5k68o8eDj\" class=\"style-5k68o8eDj\">\r\n        \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W_SJAxOpU\" class=\"style-W_SJAxOpU\">\r\n        \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YFdlYXI44s\" class=\"style-YFdlYXI44s\">\r\n        \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p28XSz2Dr8\" class=\"style-p28XSz2Dr8\">\r\n        \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2995INqmX1\" class=\"style-2995INqmX1\">\r\n        \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZWmM9oaZJ\" class=\"style-ZWmM9oaZJ\">\r\n        \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hELXlwHigF\" class=\"style-hELXlwHigF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UYNHzjc9XL\" class=\"style-UYNHzjc9XL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2cCThK7xft\" class=\"style-2cCThK7xft\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2cCThK7xft {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qwXOCMdvJ\" class=\"style-qwXOCMdvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iawQbhj_l0\" class=\"style-iawQbhj_l0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TlJxcKiu8\" class=\"style-TlJxcKiu8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EcDQd6Qsd\" class=\"style-EcDQd6Qsd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W8HPx4fW6\" class=\"style-W8HPx4fW6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R0ou7_aFZk\" class=\"style-R0ou7_aFZk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5tbUrKVVs\" class=\"style-f5tbUrKVVs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Kgt2GY_oL_\" class=\"style-Kgt2GY_oL_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Kgt2GY_oL_ {\r\n          font-size: 18px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 15px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mkGntwDqul\" class=\"style-mkGntwDqul\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"99gBmU4Xl\" class=\"style-99gBmU4Xl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIveWZozs6\" class=\"style-sIveWZozs6\">\r\n        \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3e6FTAIs9i\" class=\"style-3e6FTAIs9i\">\r\n        \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3cVem03cLb\" class=\"style-3cVem03cLb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"luC52k9Dop\" class=\"style-luC52k9Dop\">\r\n        \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8GTfPE0lkh\" class=\"style-8GTfPE0lkh\">\r\n        \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1awR1nPvd\" class=\"style-D1awR1nPvd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"COSrbaDmsh\" class=\"style-COSrbaDmsh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J_z76_RZn4\" class=\"style-J_z76_RZn4\">\r\n        \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ecZSsAHodS\" class=\"style-ecZSsAHodS\">\r\n        \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OGWki8oIxK\" class=\"style-OGWki8oIxK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qolWUwBxkP\" class=\"style-qolWUwBxkP\">\r\n        \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QjPnswPgW\" class=\"style-0QjPnswPgW\">\r\n        \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7ZzygdnDK\" class=\"style-g7ZzygdnDK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TKi99xtCwc\" class=\"style-TKi99xtCwc\">\r\n        \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0x5gytyNi\" class=\"style-T0x5gytyNi\">\r\n        \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gKveClTNhg\" class=\"style-gKveClTNhg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uOTetmF0P\" class=\"style-uOTetmF0P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoQyW0XpHY\" class=\"style-eoQyW0XpHY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;padding-top: 29px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0JYRwodpQ\" class=\"style-E0JYRwodpQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fEQf_5kqEO\" class=\"style-fEQf_5kqEO\">\r\n        \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3y76PjGMq\" class=\"style-u3y76PjGMq\">\r\n        \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMftO9Mgj\" class=\"style-YMftO9Mgj\">\r\n        \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2YoPqR513B\" class=\"style-2YoPqR513B\">\r\n        \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uewobCXWOm\" class=\"style-uewobCXWOm\">\r\n        \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HhR4We9Pj8\" class=\"style-HhR4We9Pj8\">\r\n        \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LFjxRV27Z_\" class=\"style-LFjxRV27Z_\">\r\n        \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Bkx240IHc\" class=\"style-0Bkx240IHc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"90kZvTqr0k\" class=\"style-90kZvTqr0k\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GI8NsP9vMT\" class=\"style-GI8NsP9vMT\">\r\n        \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0k4k3iL1Ns\" class=\"style-0k4k3iL1Ns\">\r\n        \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tQSxU1bGH4\" class=\"style-tQSxU1bGH4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nGze91qLM9\" class=\"style-nGze91qLM9\">\r\n        \r\n        .gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YUf5Vd3Zpj\" class=\"style-YUf5Vd3Zpj\">\r\n        \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lY2ocfQuNI\" class=\"style-lY2ocfQuNI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQ8I7JjOB6\" class=\"style-FQ8I7JjOB6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm-overlay\">\r\n        \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VgJGWFybSh\" class=\"style-VgJGWFybSh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EpR3FYP8KP\" class=\"style-EpR3FYP8KP\">\r\n        \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lX20hlPRT\" class=\"style-lX20hlPRT\">\r\n        \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jQW6E608vc\" class=\"style-jQW6E608vc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KMb5y_c30p\" class=\"style-KMb5y_c30p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PtImyMcr0c\" class=\"style-PtImyMcr0c\">\r\n        \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ijpsmOUYOx\" class=\"style-ijpsmOUYOx\">\r\n        \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eNgUY5HN1A\" class=\"style-eNgUY5HN1A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hP3n278NIX\" class=\"style-hP3n278NIX\">\r\n        \r\n        .gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_BWma0JGM\" class=\"style-_BWma0JGM\">\r\n        \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fvIHB16pmC\" class=\"style-fvIHB16pmC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5zLeBtD88t\" class=\"style-5zLeBtD88t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0wgdKXhPc\" class=\"style-0wgdKXhPc\">\r\n        \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f209ypL8V\" class=\"style-f209ypL8V\">\r\n        \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0f09MduSfs\" class=\"style-0f09MduSfs\">\r\n        \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ-overlay\">\r\n        \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b823Irvqy3\" class=\"style-b823Irvqy3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0GX9ShP7cU\" class=\"style-0GX9ShP7cU\">\r\n        \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yg5Yj9zwn\" class=\"style-0yg5Yj9zwn\">\r\n        \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSP6aMQWwu\" class=\"style-fSP6aMQWwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jj4nhdDw4a\" class=\"style-jj4nhdDw4a\">\r\n        \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pLq0nkrGLt\" class=\"style-pLq0nkrGLt\">\r\n        \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_jMvnockmU\" class=\"style-_jMvnockmU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0MHvUy5W_c\" class=\"style-0MHvUy5W_c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"SrqqQY8ReI\" tabindex=\"0\" id=\"SrqqQY8ReI\" style=\"\"><a name=\"SrqqQY8ReI\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hELXlwHigF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" tabindex=\"0\"></div>\r\n    </section><section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8luFF1BBg\" tabindex=\"0\" id=\"8luFF1BBg\" style=\"\"><a name=\"8luFF1BBg\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"lY2ocfQuNI\" tabindex=\"0\"><div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n                    <div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tQSxU1bGH4\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0k4k3iL1Ns\">\r\n        <div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"90kZvTqr0k\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_EwCyTjIut\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-zzAv4E_rRw\"><strong>CREATE VIRAL CONTENT SITES IN ANY NICHE OF YOUR DESIRE WITH BUZZIOUS</strong></p></div><div class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0Bkx240IHc\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LFjxRV27Z_\">\r\n        <div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><div data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component-id-bGYQMQ0yS gp-component dndbefore-bottom\" data-gp-classes=\"\" data-gp-component=\"video-all\" data-gp-component-id=\"bGYQMQ0yS\" tabindex=\"0\">\r\n        <div class=\"bg-black cursor-pointer\" style=\"padding-bottom: 56.25%;\">\r\n        \r\n        <iframe src=\"https://www.youtube.com/embed/SdvFVuImaIE?rel=0&modestbranding=1&controls=1\" data-gp-vembed-id=\"NXZICEEXr\" allow=\"autoplay\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" allowfullscreen=\"\" mozallowfullscreen=\"\" webkitallowfullscreen=\"\" oallowfullscreen=\"\" msallowfullscreen=\"\"></iframe>\r\n        \r\n        </div>\r\n      </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"tfH5RN09F\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"SNqb6cK1g\" data-gp-component=\"null\" tabindex=\"0\"></div></div><img src=\"https://images.groovetech.io/kxa8yetiFhh79ddqdvayEGe5eHBHNxumtCHlpzo6uaA/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2MzU2ODUxX0JVWlpJT1VTUE5HR1JBUEhJQ1NJTUFHRS5wbmc.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-BX_k0FHQ9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"BX_k0FHQ9\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uOTetmF0P\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"gKveClTNhg\" tabindex=\"0\"><div class=\"gp-component-id-T0x5gytyNi\">\r\n                    <div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"g7ZzygdnDK\" tabindex=\"0\"><div class=\"gp-component-id-0QjPnswPgW\">\r\n        <div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"x0qLSFNQm\" tabindex=\"0\" id=\"x0qLSFNQm\" style=\"\"><a name=\"x0qLSFNQm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"5zLeBtD88t\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"fvIHB16pmC\" tabindex=\"0\"><div class=\"gp-component-id-_BWma0JGM\">\r\n                    <div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"eNgUY5HN1A\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-ijpsmOUYOx\">\r\n        <div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"KMb5y_c30p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"egr33Q0P62\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are Some Awesome Features About</strong></p><p class=\"gp-component-id-L0xSEIYQH\"><strong> BUZZIOUS</strong></p></div><div class=\"gp-component-id-8gR603Xpf gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"8gR603Xpf\" tabindex=\"0\"><div class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"ddNM8oouP\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-42geRpfrF\">\r\n        <div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Y6WY6Z4bPB dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Y6WY6Z4bPB\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-41RPvOpWz\"><strong>NO MONTHLY FEES</strong></h1></div><li class=\"gp-component gp-component-id-t2UbzQhM70 dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"t2UbzQhM70\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-vBhnVHM0hm\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"vBhnVHM0hm\" data-gp-component=\"null\"><p class=\"gp-component-id-MZJa720lXy\"> <strong>Advanced Site Builder</strong></p></div></li><li class=\"gp-component gp-component-id-qw7wHmzG9r\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"qw7wHmzG9r\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-sBOs8PZPq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"sBOs8PZPq\" data-gp-component=\"null\"><p class=\"gp-component-id-60c_RaAnme\"> <strong>Multi-Site License</strong></p></div></li><li class=\"gp-component gp-component-id-vob6y0gN_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"vob6y0gN_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-X_9aaxvsFm\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"X_9aaxvsFm\" data-gp-component=\"null\"><p class=\"gp-component-id-7SAHzBMVxb\"> <strong>Content Curation Technology</strong></p></div></li><li class=\"gp-component gp-component-id-WkR0boi2d\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"WkR0boi2d\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-w83jEeabP_\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"w83jEeabP_\" data-gp-component=\"null\"><p class=\"gp-component-id-g5qUFX8D2x\"> <strong>Unlimited Content Curation From Many Sources</strong></p></div></li><li class=\"gp-component gp-component-id-ereyMx8qd dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"ereyMx8qd\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-avX79fDust\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"avX79fDust\" data-gp-component=\"null\"><p class=\"gp-component-id-iyMp9YDiSH\"> <strong>Works For Any Niche</strong></p></div></li><li class=\"gp-component gp-component-id-Aq0He9820 dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"Aq0He9820\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-cmh0OSIq5T\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"cmh0OSIq5T\" data-gp-component=\"null\"><p class=\"gp-component-id-JRZNrFb0vV\"><strong>Unlimited Pages and Posts</strong></p></div></li><li class=\"gp-component gp-component-id-W5Om6RFkW dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"W5Om6RFkW\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nCtiWmRz9F\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"nCtiWmRz9F\" data-gp-component=\"null\"><p class=\"gp-component-id-2n7QHOFirV\"><strong>Sub-domain Generator</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-No17CE0ww\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"No17CE0ww\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-MATESPo_33\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"MATESPo_33\" data-gp-component=\"null\"><p class=\"gp-component-id-e1eFRT7dLj\"><strong>Hosting Included</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-F5cu8IB9_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"F5cu8IB9_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-m2Xsm5yyw\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"m2Xsm5yyw\" data-gp-component=\"null\"><p class=\"gp-component-id-Hq9NhggAmk\"><strong>WYSIWYG Editor</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-gcIJqBTyT\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"gcIJqBTyT\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-F1f_yy4WbT\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"F1f_yy4WbT\" data-gp-component=\"null\"><p class=\"gp-component-id-KPSBa0CVvw\"><strong>Comment Management System</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-pDXZ9VV9O\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"pDXZ9VV9O\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-OftAwjrN5v\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"OftAwjrN5v\" data-gp-component=\"null\"><p class=\"gp-component-id-rS6gZ8igKC\"><strong>Lead Generation System</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-ViJOFEx00\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"ViJOFEx00\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-GGZ6wwO_X\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"GGZ6wwO_X\" data-gp-component=\"null\"><p class=\"gp-component-id-q8SQDOVuoD\"><strong>Email List Building Integration</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-xAHaY486w\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"xAHaY486w\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-E9_6fSP3zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"E9_6fSP3zC\" data-gp-component=\"null\"><p class=\"gp-component-id-ZdVvsxqCfA\"><strong>Cloud-Based: No Download or Install Needed</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-u1HNTbmUY\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"u1HNTbmUY\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NWU7Jm77iY\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"NWU7Jm77iY\" data-gp-component=\"null\"><p class=\"gp-component-id-3vi_MbM8p5\"><strong>Run It Anywhere There Is an Internet Connection</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-L90nUPlzN\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"L90nUPlzN\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mlbF30hYvP\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"mlbF30hYvP\" data-gp-component=\"null\"><p class=\"gp-component-id-9C94R65W0w\"><strong>Step By Step Video Training</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-rf58BMN0f\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"rf58BMN0f\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-YkbMoPvxPW\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"YkbMoPvxPW\" data-gp-component=\"null\"><p class=\"gp-component-id-aBbXvxqSD_\"><strong>Commercial Rights</strong></p></div></li></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"5k68o8eDj\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-W_SJAxOpU\">\r\n        <div class=\"gp-component-id-YFdlYXI44s\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"jQW6E608vc\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-lX20hlPRT\">\r\n        <div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VgJGWFybSh\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" tabindex=\"0\"><div class=\"gp-component-id-YMftO9Mgj\">\r\n        <div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"c8LWFknvJ\" tabindex=\"0\" id=\"c8LWFknvJ\" style=\"\"><a name=\"c8LWFknvJ\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-_jMvnockmU\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"_jMvnockmU\" tabindex=\"0\"><div class=\"gp-component-id-pLq0nkrGLt\">\r\n                    <div class=\"gp-component-id-jj4nhdDw4a\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"fSP6aMQWwu\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0yg5Yj9zwn\">\r\n        <div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b823Irvqy3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-R0ou7_aFZk\"><strong>Hurry!</strong><br>Take advantage of this Special Offer</p></div><div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GvtpTSa4U\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-eoQyW0XpHY\"><strong>ONE TIME FEE $37</strong></p></div><div class=\"gp-text-container gp-component gp-component-id-01cTbNoFM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"01cTbNoFM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Kgt2GY_oL_\">..is Your discounted price for today!</p></div><div class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"EcDQd6Qsd\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-u3y76PjGMq\">\r\n        <div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden dndbefore-bottom gp-component gp-component-id-W8HPx4fW6\" href=\"https://realdore2021--irc.thrivecart.com/buzzious/?ref=freeclicksloginofr\" target=\"_blank\" data-gp-button-id=\"Lr0VsD4Bt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" alt=\"\" class=\"object-cover object-center\"> </a></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"OGWki8oIxK\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-ecZSsAHodS\">\r\n        <div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0wgdKXhPc\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-f209ypL8V\">\r\n        <div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"mkGntwDqul\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-qwXOCMdvJ\" style=\"text-align: center;\">I Understand this is a one time payment and I will not be charged again,</p><p class=\"gp-component-id-2cCThK7xft\" style=\"text-align: center;\">unless I choose to purchase the package again.</p></div></div><div class=\"gp-component gp-component-id-TlJxcKiu8 relative dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\">\r\n      \r\n      \r\n      \r\n      <div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-iawQbhj_l0\"><strong><u><a href=\"https://soloswaps.com/login.php?s=noauth\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">No thanks</a></u></strong><u><a href=\"https://soloswaps.com/login.php?s=noauth\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">. I am ready to pass on this.</a></u></p></div>\r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      <a href=\"members.php\" data-gp-button-id=\"zYf0nNFaD\" class=\"gp-container-link data-gp-no-parser\"></a>\r\n    </div>\r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8gDwjOwtm\" tabindex=\"0\" id=\"8gDwjOwtm\" style=\"\"><a name=\"8gDwjOwtm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"COSrbaDmsh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"D1awR1nPvd\" tabindex=\"0\"><div class=\"gp-component-id-8GTfPE0lkh\">\r\n                    <div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"3cVem03cLb\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-3e6FTAIs9i\">\r\n        <div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><img src=\"https://images.groovetech.io/3aT7vcmdsn--GIrBkAmKS52APMboSez95WhQnYGZb1g/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU0MjcyMTg3X3NvbG9zd2Fwcy5wbmc.webp\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center dndbefore-bottom gp-component gp-component-id-ZWmM9oaZJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">'),(10,'10',67,5,55,50,'<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>LynwoodÂ´s Offer</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642019904_rapidlist.PNG\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\" />\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/lynnwood/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62bda77f6ceb8b597e309022\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"PwTXWempE\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62bda77f6ceb8b597e309022\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQd1RYV2VtcEUiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"About Us 1.0\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62bda77f6ceb8b597e309022\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"PwTXWempE\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg-overlay\">\r\n        \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoQyW0XpHY\" class=\"style-eoQyW0XpHY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;margin-bottom: 29px;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;margin-bottom: 29px;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;margin-bottom: 29px;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;margin-bottom: 29px;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoQyW0XpHY {\r\n          font-size: 55px;color: rgb(11, 91, 42);text-align: center;font-family: Montserrat;margin-bottom: 29px;padding-top: 29px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EEHPpbRY5v\" class=\"style-EEHPpbRY5v\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EEHPpbRY5v {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EEHPpbRY5v {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EEHPpbRY5v {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EEHPpbRY5v {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EEHPpbRY5v {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8nLhmW72W\" class=\"style-8nLhmW72W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8nLhmW72W[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8nLhmW72W[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8nLhmW72W[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8nLhmW72W[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8nLhmW72W[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aBbXvxqSD_\" class=\"style-aBbXvxqSD_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aBbXvxqSD_ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aBbXvxqSD_ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aBbXvxqSD_ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aBbXvxqSD_ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-aBbXvxqSD_ {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rf58BMN0f\" class=\"style-rf58BMN0f\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rf58BMN0f[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rf58BMN0f[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rf58BMN0f[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rf58BMN0f[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rf58BMN0f[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9C94R65W0w\" class=\"style-9C94R65W0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9C94R65W0w {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9C94R65W0w {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9C94R65W0w {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9C94R65W0w {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-9C94R65W0w {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L90nUPlzN\" class=\"style-L90nUPlzN\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-L90nUPlzN[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-L90nUPlzN[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-L90nUPlzN[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-L90nUPlzN[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-L90nUPlzN[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Hq9NhggAmk\" class=\"style-Hq9NhggAmk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hq9NhggAmk {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hq9NhggAmk {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hq9NhggAmk {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hq9NhggAmk {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Hq9NhggAmk {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F5cu8IB9_\" class=\"style-F5cu8IB9_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F5cu8IB9_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F5cu8IB9_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F5cu8IB9_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F5cu8IB9_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F5cu8IB9_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bGYQMQ0yS\" class=\"style-bGYQMQ0yS\">\r\n        \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bGYQMQ0yS {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iyMp9YDiSH\" class=\"style-iyMp9YDiSH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iyMp9YDiSH {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ereyMx8qd\" class=\"style-ereyMx8qd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ereyMx8qd[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MZJa720lXy\" class=\"style-MZJa720lXy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZJa720lXy {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"t2UbzQhM70\" class=\"style-t2UbzQhM70\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-t2UbzQhM70[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"60c_RaAnme\" class=\"style-60c_RaAnme\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-60c_RaAnme {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qw7wHmzG9r\" class=\"style-qw7wHmzG9r\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qw7wHmzG9r[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7SAHzBMVxb\" class=\"style-7SAHzBMVxb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-7SAHzBMVxb {\r\n          font-size: 22px;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;width: 100%;display: inline-block;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vob6y0gN_\" class=\"style-vob6y0gN_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vob6y0gN_[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8luFF1BBg\" class=\"style-8luFF1BBg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tfH5RN09F\" class=\"style-tfH5RN09F\">\r\n        \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ddNM8oouP\" class=\"style-ddNM8oouP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cwb1P7HsOg\" class=\"style-cwb1P7HsOg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gR603Xpf\" class=\"style-8gR603Xpf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"42geRpfrF\" class=\"style-42geRpfrF\">\r\n        \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hnfQHp0bMt\" class=\"style-hnfQHp0bMt\">\r\n        \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CVNQ02KKdm\" class=\"style-CVNQ02KKdm\">\r\n        \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"MDaop1dyw\" class=\"style-MDaop1dyw\">\r\n        \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zzAv4E_rRw\" class=\"style-zzAv4E_rRw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"L0xSEIYQH\" class=\"style-L0xSEIYQH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8gDwjOwtm\" class=\"style-8gDwjOwtm-overlay\">\r\n        \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SrqqQY8ReI\" class=\"style-SrqqQY8ReI-overlay\">\r\n        \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5k68o8eDj\" class=\"style-5k68o8eDj\">\r\n        \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W_SJAxOpU\" class=\"style-W_SJAxOpU\">\r\n        \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YFdlYXI44s\" class=\"style-YFdlYXI44s\">\r\n        \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"p28XSz2Dr8\" class=\"style-p28XSz2Dr8\">\r\n        \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2995INqmX1\" class=\"style-2995INqmX1\">\r\n        \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZWmM9oaZJ\" class=\"style-ZWmM9oaZJ\">\r\n        \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hELXlwHigF\" class=\"style-hELXlwHigF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UYNHzjc9XL\" class=\"style-UYNHzjc9XL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iawQbhj_l0\" class=\"style-iawQbhj_l0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TlJxcKiu8\" class=\"style-TlJxcKiu8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EcDQd6Qsd\" class=\"style-EcDQd6Qsd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W8HPx4fW6\" class=\"style-W8HPx4fW6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"R0ou7_aFZk\" class=\"style-R0ou7_aFZk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5tbUrKVVs\" class=\"style-f5tbUrKVVs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"99gBmU4Xl\" class=\"style-99gBmU4Xl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"sIveWZozs6\" class=\"style-sIveWZozs6\">\r\n        \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3e6FTAIs9i\" class=\"style-3e6FTAIs9i\">\r\n        \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3cVem03cLb\" class=\"style-3cVem03cLb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"luC52k9Dop\" class=\"style-luC52k9Dop\">\r\n        \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8GTfPE0lkh\" class=\"style-8GTfPE0lkh\">\r\n        \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1awR1nPvd\" class=\"style-D1awR1nPvd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"COSrbaDmsh\" class=\"style-COSrbaDmsh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J_z76_RZn4\" class=\"style-J_z76_RZn4\">\r\n        \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ecZSsAHodS\" class=\"style-ecZSsAHodS\">\r\n        \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OGWki8oIxK\" class=\"style-OGWki8oIxK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qolWUwBxkP\" class=\"style-qolWUwBxkP\">\r\n        \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QjPnswPgW\" class=\"style-0QjPnswPgW\">\r\n        \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7ZzygdnDK\" class=\"style-g7ZzygdnDK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TKi99xtCwc\" class=\"style-TKi99xtCwc\">\r\n        \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T0x5gytyNi\" class=\"style-T0x5gytyNi\">\r\n        \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gKveClTNhg\" class=\"style-gKveClTNhg\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uOTetmF0P\" class=\"style-uOTetmF0P\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"E0JYRwodpQ\" class=\"style-E0JYRwodpQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fEQf_5kqEO\" class=\"style-fEQf_5kqEO\">\r\n        \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u3y76PjGMq\" class=\"style-u3y76PjGMq\">\r\n        \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YMftO9Mgj\" class=\"style-YMftO9Mgj\">\r\n        \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2YoPqR513B\" class=\"style-2YoPqR513B\">\r\n        \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uewobCXWOm\" class=\"style-uewobCXWOm\">\r\n        \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HhR4We9Pj8\" class=\"style-HhR4We9Pj8\">\r\n        \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LFjxRV27Z_\" class=\"style-LFjxRV27Z_\">\r\n        \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0Bkx240IHc\" class=\"style-0Bkx240IHc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"90kZvTqr0k\" class=\"style-90kZvTqr0k\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GI8NsP9vMT\" class=\"style-GI8NsP9vMT\">\r\n        \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0k4k3iL1Ns\" class=\"style-0k4k3iL1Ns\">\r\n        \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tQSxU1bGH4\" class=\"style-tQSxU1bGH4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nGze91qLM9\" class=\"style-nGze91qLM9\">\r\n        \r\n        .gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YUf5Vd3Zpj\" class=\"style-YUf5Vd3Zpj\">\r\n        \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lY2ocfQuNI\" class=\"style-lY2ocfQuNI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQ8I7JjOB6\" class=\"style-FQ8I7JjOB6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"x0qLSFNQm\" class=\"style-x0qLSFNQm-overlay\">\r\n        \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VgJGWFybSh\" class=\"style-VgJGWFybSh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EpR3FYP8KP\" class=\"style-EpR3FYP8KP\">\r\n        \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lX20hlPRT\" class=\"style-lX20hlPRT\">\r\n        \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jQW6E608vc\" class=\"style-jQW6E608vc\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KMb5y_c30p\" class=\"style-KMb5y_c30p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PtImyMcr0c\" class=\"style-PtImyMcr0c\">\r\n        \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ijpsmOUYOx\" class=\"style-ijpsmOUYOx\">\r\n        \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eNgUY5HN1A\" class=\"style-eNgUY5HN1A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hP3n278NIX\" class=\"style-hP3n278NIX\">\r\n        \r\n        .gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_BWma0JGM\" class=\"style-_BWma0JGM\">\r\n        \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fvIHB16pmC\" class=\"style-fvIHB16pmC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5zLeBtD88t\" class=\"style-5zLeBtD88t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0wgdKXhPc\" class=\"style-0wgdKXhPc\">\r\n        \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f209ypL8V\" class=\"style-f209ypL8V\">\r\n        \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0f09MduSfs\" class=\"style-0f09MduSfs\">\r\n        \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c8LWFknvJ\" class=\"style-c8LWFknvJ-overlay\">\r\n        \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"b823Irvqy3\" class=\"style-b823Irvqy3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0GX9ShP7cU\" class=\"style-0GX9ShP7cU\">\r\n        \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0yg5Yj9zwn\" class=\"style-0yg5Yj9zwn\">\r\n        \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSP6aMQWwu\" class=\"style-fSP6aMQWwu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jj4nhdDw4a\" class=\"style-jj4nhdDw4a\">\r\n        \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pLq0nkrGLt\" class=\"style-pLq0nkrGLt\">\r\n        \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_jMvnockmU\" class=\"style-_jMvnockmU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0MHvUy5W_c\" class=\"style-0MHvUy5W_c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"SrqqQY8ReI\" tabindex=\"0\" id=\"SrqqQY8ReI\" style=\"\"><a name=\"SrqqQY8ReI\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hELXlwHigF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" tabindex=\"0\"></div>\r\n    </section><section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8luFF1BBg\" tabindex=\"0\" id=\"8luFF1BBg\" style=\"\"><a name=\"8luFF1BBg\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"lY2ocfQuNI\" tabindex=\"0\"><div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n                    <div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"tQSxU1bGH4\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0k4k3iL1Ns\">\r\n        <div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"90kZvTqr0k\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"_EwCyTjIut\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-zzAv4E_rRw\"><strong>WARNING: Your FREE System Is Only Available To Claim For The Next 24 Hours</strong></p></div><div class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0Bkx240IHc\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-LFjxRV27Z_\">\r\n        <div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><div data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component-id-bGYQMQ0yS gp-component dndbefore-bottom\" data-gp-classes=\"\" data-gp-component=\"video-all\" data-gp-component-id=\"bGYQMQ0yS\" tabindex=\"0\">\r\n        <div class=\"bg-black cursor-pointer\" style=\"padding-bottom: 56.25%;\">\r\n        \r\n        <iframe src=\"https://player.vimeo.com/video/725640928?portrait=0&transparent=1\" data-gp-vembed-id=\"TBsuXWkei\" allow=\"autoplay; fullscreen\" allowfullscreen=\"\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"></iframe>\r\n        \r\n        </div>\r\n      </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"tfH5RN09F\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"SNqb6cK1g\" data-gp-component=\"null\" tabindex=\"0\"></div></div></div><div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uOTetmF0P\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"gKveClTNhg\" tabindex=\"0\"><div class=\"gp-component-id-T0x5gytyNi\">\r\n                    <div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"g7ZzygdnDK\" tabindex=\"0\"><div class=\"gp-component-id-0QjPnswPgW\">\r\n        <div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n    </section><section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"x0qLSFNQm\" tabindex=\"0\" id=\"x0qLSFNQm\" style=\"\"><a name=\"x0qLSFNQm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"5zLeBtD88t\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"fvIHB16pmC\" tabindex=\"0\"><div class=\"gp-component-id-_BWma0JGM\">\r\n                    <div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"eNgUY5HN1A\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-ijpsmOUYOx\">\r\n        <div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"KMb5y_c30p\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"egr33Q0P62\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are Some Awesome Features About</strong></p><p class=\"gp-component-id-L0xSEIYQH\"><strong> Rapid Profit Machine</strong></p></div><div class=\"gp-component-id-8gR603Xpf gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"8gR603Xpf\" tabindex=\"0\"><div class=\"gp-component-id-ddNM8oouP gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"ddNM8oouP\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-42geRpfrF\">\r\n        <div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><li class=\"gp-component gp-component-id-t2UbzQhM70 dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"t2UbzQhM70\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-vBhnVHM0hm\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"vBhnVHM0hm\" data-gp-component=\"null\"><p class=\"gp-component-id-MZJa720lXy\"> <strong>Get paid monthly</strong></p></div></li><li class=\"gp-component gp-component-id-qw7wHmzG9r dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"qw7wHmzG9r\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-sBOs8PZPq\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"sBOs8PZPq\" data-gp-component=\"null\"><p class=\"gp-component-id-60c_RaAnme\"> <strong>Free system</strong></p></div></li><li class=\"gp-component gp-component-id-vob6y0gN_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"vob6y0gN_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-X_9aaxvsFm\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"X_9aaxvsFm\" data-gp-component=\"null\"><p class=\"gp-component-id-7SAHzBMVxb\"> <strong>Content Curation Technology</strong></p></div></li><li class=\"gp-component gp-component-id-ereyMx8qd dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"ereyMx8qd\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-avX79fDust\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"avX79fDust\" data-gp-component=\"null\"><p class=\"gp-component-id-iyMp9YDiSH\"> <strong>Available for a limited time</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-F5cu8IB9_\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"F5cu8IB9_\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-m2Xsm5yyw\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"m2Xsm5yyw\" data-gp-component=\"null\"><p class=\"gp-component-id-Hq9NhggAmk\"><strong>Done for you</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-L90nUPlzN\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"L90nUPlzN\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mlbF30hYvP\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"mlbF30hYvP\" data-gp-component=\"null\"><p class=\"gp-component-id-9C94R65W0w\"><strong>Free system</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-rf58BMN0f\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"rf58BMN0f\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-YkbMoPvxPW\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"YkbMoPvxPW\" data-gp-component=\"null\"><p class=\"gp-component-id-aBbXvxqSD_\"><strong>Get paid monthly</strong></p></div></li><li class=\"gp-component dndbefore-bottom gp-component-id-8nLhmW72W\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\"id\":59,\"name\":\"list-regular\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDE3IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTMuODA4IDE5LjMwNWMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4LTIuMTAzIDAtMy44MDgtMS42OTItMy44MDgtMy43OHMxLjcwNS0zLjc4IDMuODA4LTMuNzh6bTAgLjgxYy0xLjYyNS4wMTktMi45MyAxLjMzNS0yLjkyNCAyLjk0Ny4wMDYgMS42MTMgMS4zMjIgMi45MiAyLjk0NyAyLjkyNSAxLjYyNS4wMDYgMi45NS0xLjI5IDIuOTY5LTIuOTAyQTIuOTM3IDIuOTM3IDAgMCAwIDUuOTE4IDIxYTIuOTggMi45OCAwIDAgMC0yLjExLS44NTF2LS4wMzR6bTYuMTIgMy43OTFoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMS0uMTUzLjM4OC0uMzYxLjQyMkg5LjkyOGEuNDMyLjQzMiAwIDAgMS0uNDMtLjE4OC40MjUuNDI1IDAgMCAxIDAtLjQ2Ny40MzIuNDMyIDAgMCAxIC40My0uMTg5ek0zLjgwOCA5LjY2NGMyLjEwMyAwIDMuODA4IDEuNjkyIDMuODA4IDMuNzgtLjAwNiAyLjA4NS0xLjcwNyAzLjc3NC0zLjgwOCAzLjc4QzEuNzA1IDE3LjIyNCAwIDE1LjUzIDAgMTMuNDQ0YzAtMi4wODggMS43MDUtMy43OCAzLjgwOC0zLjc4em0wIC44MWMtMS42MjYuMDE4LTIuOTMyIDEuMzM3LTIuOTI0IDIuOTUuMDA4IDEuNjE1IDEuMzI4IDIuOTIgMi45NTQgMi45MjIgMS42MjYuMDAyIDIuOTUtMS4zIDIuOTYyLTIuOTE0YTIuOTM3IDIuOTM3IDAgMCAwLS44ODItMi4wODQgMi45OCAyLjk4IDAgMCAwLTIuMTEtLjg1MnYtLjAyMnptMCAxLjcyMWMuNjg5IDAgMS4yNDcuNTU0IDEuMjQ3IDEuMjM3IDAgLjY4NC0uNTU4IDEuMjM4LTEuMjQ3IDEuMjM4YTEuMjQyIDEuMjQyIDAgMCAxLTEuMjQ3LTEuMjM4YzAtLjY4My41NTgtMS4yMzcgMS4yNDctMS4yMzd6bTYuMTIgMS4yMDRoNi41NWEuNDI4LjQyOCAwIDAgMSAuMzYyLjQyMmMwIC4yMDktLjE1My4zODgtLjM2MS40MjFIOS45MjhhLjQzMi40MzIgMCAwIDEtLjQzLS4xODguNDI1LjQyNSAwIDAgMSAwLS40NjcuNDMyLjQzMiAwIDAgMSAuNDMtLjE4OHpNMy44MTYuMDFDNS45MTYuMDEgNy42MiAxLjY5NSA3LjYyNyAzLjc4YzAgMS4wMDYtLjQwMiAxLjk3LTEuMTE4IDIuNjhhMy44MzQgMy44MzQgMCAwIDEtMi43MDEgMS4xMTFDMS43MDggNy41NjUuMDA5IDUuODcyLjAxMSAzLjc4OC4wMTMgMS43MDMgMS43MTUuMDEzIDMuODE2LjAxem0tLjAwOC44MUMyLjE4Mi44NC44NzYgMi4xNTguODg0IDMuNzcyYy4wMDggMS42MTUgMS4zMjggMi45MiAyLjk1NCAyLjkyMiAxLjYyNi4wMDIgMi45NS0xLjMgMi45NjItMi45MTRhMi45MzcgMi45MzcgMCAwIDAtLjg4Mi0yLjA4NSAyLjk4IDIuOTggMCAwIDAtMi4xMS0uODUxVi44MnptMTMuMTAxIDIuMzE1YS40MjUuNDI1IDAgMCAxIDAgLjQ2Ny40MzIuNDMyIDAgMCAxLS40My4xODhIOS45MjhhLjQyOC40MjggMCAwIDEtLjM2MS0uNDIyYzAtLjIwOS4xNTMtLjM4OC4zNjEtLjQyMmg2LjU1YS40MzIuNDMyIDAgMCAxIC40MzEuMTg5eiIvPgo8L3N2Zz4K\",\"title\":\"Regular List\",\"index\":4,\"hasMenu\":false}}\" data-gp-component-id=\"8nLhmW72W\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-USqzpQqil\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component-id=\"USqzpQqil\" data-gp-component=\"null\"><p class=\"gp-component-id-EEHPpbRY5v\"><strong>Start earning today</strong></p></div></li></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\"id\":50,\"name\":\"layout-3-3-3\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NTlILjc1VjI0YzAgLjkuNzMgMS42MyAxLjYzIDEuNjNIMjZBMS42MyAxLjYzIDAgMCAwIDI3LjY3IDI0VjUuNjU5ek05LjMyIDguMDlhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg0LjMzYS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6bTcuMjYgMGEuNS41IDAgMCAxIC41LjV2MTQuMDZhLjUuNSAwIDAgMS0uNS41aC00Ljk5YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDQuOTl6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"3 Columns\",\"index\":3,\"hasMenu\":true}}\" data-gp-component-id=\"5k68o8eDj\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-W_SJAxOpU\">\r\n        <div class=\"gp-component-id-YFdlYXI44s\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"jQW6E608vc\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-lX20hlPRT\">\r\n        <div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"VgJGWFybSh\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" tabindex=\"0\"><div class=\"gp-component-id-YMftO9Mgj\">\r\n        <div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"c8LWFknvJ\" tabindex=\"0\" id=\"c8LWFknvJ\" style=\"\"><a name=\"c8LWFknvJ\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-_jMvnockmU\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"_jMvnockmU\" tabindex=\"0\"><div class=\"gp-component-id-pLq0nkrGLt\">\r\n                    <div class=\"gp-component-id-jj4nhdDw4a\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"fSP6aMQWwu\" style=\"\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-0yg5Yj9zwn\">\r\n        <div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"b823Irvqy3\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-R0ou7_aFZk\"><strong>Hurry!</strong><br>Take advantage of this Special Offer</p></div><div class=\"gp-text-container gp-component gp-component-id-GvtpTSa4U dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"GvtpTSa4U\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-eoQyW0XpHY\"><strong>Absolutely Free!</strong></p></div><div class=\"gp-component gp-component-id-EcDQd6Qsd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"EcDQd6Qsd\" tabindex=\"0\" style=\"\"><div class=\"gp-component-id-u3y76PjGMq\">\r\n        <div class=\"gp-component-id-fEQf_5kqEO\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-E0JYRwodpQ\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"E0JYRwodpQ\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><a class=\"inline-flex items-start justify-start overflow-hidden dndbefore-bottom gp-component gp-component-id-W8HPx4fW6\" href=\"https://warriorplus.com/o2/a/dgzvj4/0Link\" target=\"_blank\" data-gp-button-id=\"A4xvgW-1P\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" alt=\"\" class=\"object-cover object-center\"> </a></div>\r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-OGWki8oIxK\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"OGWki8oIxK\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-ecZSsAHodS\">\r\n        <div class=\"gp-component-id-J_z76_RZn4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component-id-0wgdKXhPc gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0wgdKXhPc\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-f209ypL8V\">\r\n        <div class=\"gp-component-id-0f09MduSfs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-TlJxcKiu8 relative dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"container\" data-gp-component-id=\"TlJxcKiu8\">\r\n      \r\n      \r\n      \r\n      \r\n      \r\n      <div class=\"gp-text-container gp-component gp-component-id-lbwrAwMoH3 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"lbwrAwMoH3\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-iawQbhj_l0\"><strong><u><a href=\"https://soloswaps.com/login.php?s=noauth\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">No thanks</a></u></strong><u><a href=\"https://soloswaps.com/login.php?s=noauth\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">. I am ready to pass on this.</a></u></p></div>\r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      \r\n    \r\n      <a href=\"members.php\" data-gp-button-id=\"lMshDq4Kp\" class=\"gp-container-link data-gp-no-parser\"></a>\r\n    </div>\r\n        </div>\r\n      </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"8gDwjOwtm\" tabindex=\"0\" id=\"8gDwjOwtm\" style=\"\"><a name=\"8gDwjOwtm\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"COSrbaDmsh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"D1awR1nPvd\" tabindex=\"0\"><div class=\"gp-component-id-8GTfPE0lkh\">\r\n                    <div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div><div class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"3cVem03cLb\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-3e6FTAIs9i\">\r\n        <div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><img src=\"https://images.groovetech.io/3aT7vcmdsn--GIrBkAmKS52APMboSez95WhQnYGZb1g/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU0MjcyMTg3X3NvbG9zd2Fwcy5wbmc.webp\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center dndbefore-bottom gp-component gp-component-id-ZWmM9oaZJ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(12,'0',46,3,45,42,'<meta charset=\"utf-8\" />\r\n<title>KerstinÂ´s Offer</title>\r\n<meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\" />\r\n<meta content=\"\" property=\"og:title\" />\r\n<meta content=\"\" property=\"og:image\" />\r\n<meta content=\"\" name=\"description\" />\r\n<meta content=\"\" name=\"keywords\" />\r\n<link href=\"https://fonts.gstatic.com\" rel=\"preconnect\" />\r\n<link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\" />\r\n<style id=\"global-styles\" type=\"text/css\">\r\n</style>\r\n<link href=\"https://app.groove.cm/groovepages/css/chunk-vendors.css\" rel=\"stylesheet\" /><script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n<style id=\"IE-warning-style\" type=\"text/css\">#IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n</style>\r\n<style id=\"page-css\" type=\"text/css\">\r\n</style>\r\n<style id=\"section-block\" type=\"text/css\">section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n</style>\r\n<style id=\"custom-css\" type=\"text/css\">*{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h2 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h3 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h4 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h5 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  h6 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n</style>\r\n<script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/frankoffer/\"\r\n     </script><script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script><!-- Matomo --><script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"6298e5d79f615a39492bb642\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"Lm_MuwsfH\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script><noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript><!-- End Matomo Code --><!-- Start Popups --><script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script><!-- End Popups -->\r\n<div id=\"IE-warning\">\r\n<div class=\"IE-warning-message\">\r\n<p>Oops! Sorry!!</p>\r\nÂ \r\n\r\n<p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n</div>\r\n</div>\r\n<script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n\r\n<div data-gp-page-id=\"Lm_MuwsfH\" id=\"page-container\">\r\n<div class=\"blocks-container\" id=\"blocks-container\">\r\n<section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"SrqqQY8ReI\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"SrqqQY8ReI\" style=\"\" tabindex=\"0\">\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-component=\"container\" data-gp-component-id=\"hELXlwHigF\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\"><img alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" tabindex=\"0\" /></div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8luFF1BBg\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8luFF1BBg\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"8luFF1BBg\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-component=\"container\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-component-id=\"lY2ocfQuNI\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n<div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0k4k3iL1Ns\">\r\n<div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-component=\"container\" data-gp-component-id=\"90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-component=\"null\" data-gp-component-id=\"_EwCyTjIut\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-zzAv4E_rRw\"><strong>Get paid to advertise!</strong></p>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-LFjxRV27Z_\">\r\n<div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-component=\"container\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<figure alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-pIJ3rEiST\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1654191851_userassetsCGAN7ACRuploadsimages7sysbs8-1649343483.png\" tabindex=\"0\"><img alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-pIJ3rEiST\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://imgallery.llsvr.com/kerstin.64e63757e7c1a.jpg\" style=\"width: 1081px; height: 494px;\" tabindex=\"0\" /></figure>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"tfH5RN09F\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-component=\"null\" data-gp-component-id=\"SNqb6cK1g\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-text=\"\" tabindex=\"0\">Â \r\n<hr /></div>\r\n</div>\r\n</div>\r\n\r\n<div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-component=\"container\" data-gp-component-id=\"uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-component-id=\"gKveClTNhg\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-T0x5gytyNi\">\r\n<div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0QjPnswPgW\">\r\n<div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"x0qLSFNQm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"x0qLSFNQm\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"x0qLSFNQm\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-component=\"container\" data-gp-component-id=\"5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-component-id=\"fvIHB16pmC\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-_BWma0JGM\">\r\n<div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-ijpsmOUYOx\">\r\n<div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-component=\"container\" data-gp-component-id=\"KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-component=\"null\" data-gp-component-id=\"egr33Q0P62\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-cwb1P7HsOg\"><strong>Here Are Some Awesome Features About</strong></p>\r\n\r\n<p class=\"gp-component-id-cwb1P7HsOg\"><strong>My Traffic Powerliner</strong></p>\r\n</div>\r\n\r\n<div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"8gR603Xpf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div cg=\"=\" class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"ddNM8oouP\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-42geRpfrF\">\r\n<div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-component=\"container\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<ul>\r\n	<li class=\"gp-component gp-component-id-nfirRvWGK\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"nfirRvWGK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n	<div class=\"gp-text-container gp-component gp-component-id-WznRJtsk1e\" data-gp-component=\"null\" data-gp-component-id=\"WznRJtsk1e\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-iCmSs08Sld\"><strong>.Â  2x12 forced matrix for spillover and under</strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\"><br />\r\n	<strong>.Â  25% check matching pay down 4 Levels</strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\">Â </p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\"><strong>.Â  $25 & $50 Fast Start Bonuses</strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\">Â </p>\r\n\r\n	<div class=\"gp-text-container gp-component gp-component-id-WznRJtsk1e\" data-gp-component=\"null\" data-gp-component-id=\"WznRJtsk1e\" data-gp-style=\"\" data-gp-text=\"\">\r\n	<p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"><strong>. 100 clicks each month or 1,500 per year </strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"><strong>Â  Â to your offer(s)</strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"><br />\r\n	<strong>Â· 2x12 Forced Matrix with Spillover!</strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"><br />\r\n	<strong>Â· Earn Up To $4,915 Per Month Without Sponsoring!</strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"><br />\r\n	<strong>. $25 & $50 Fast Start Bonuses!</strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"><br />\r\n	<strong>Â· 4 Generations Worth of Matching Bonuses!</strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"><br />\r\n	<strong>Â· Back Office to Manage Your Business!</strong></p>\r\n\r\n	<p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"><br />\r\n	<strong>Â· Live calls with the CEO/Team</strong></p>\r\n	</div>\r\n	</div>\r\n	</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<div 3=\"\" class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\" data-gp-component-id=\"5k68o8eDj\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-W_SJAxOpU\">\r\n<div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-lX20hlPRT\">\r\n<div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-component=\"container\" data-gp-component-id=\"VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-YMftO9Mgj\">\r\n<div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\">Â </div>\r\n\r\n<div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"c8LWFknvJ\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"c8LWFknvJ\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"c8LWFknvJ\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-component=\"container\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div cg=\"=\" class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-0yg5Yj9zwn\">\r\n<div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-component=\"container\" data-gp-component-id=\"b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-component=\"null\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n<p class=\"gp-component-id-R0ou7_aFZk\"><strong>Limited Time Offer</strong></p>\r\n\r\n<div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-component=\"null\" data-gp-component-id=\"_EwCyTjIut\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" tabindex=\"0\">\r\n<p class=\"gp-component-id-zzAv4E_rRw\" style=\"overflow-wrap: break-word;\"><strong>$20/month or $200/year (there is also a one-time $40 charge to set up your website and back office)<br />\r\nYou can advertise your business for $20/month and get 100 real monthly visitors.<br />\r\nOr $200/year and get 1500 visitors yearly.</strong></p>\r\n\r\n<p class=\"gp-component-id-zzAv4E_rRw\" style=\"overflow-wrap: break-word;\"><span style=\"font-weight: bolder; overflow-wrap: break-word; color: rgb(4, 81, 174); font-family: Montserrat; font-size: 35px; text-align: center;\">CLAIM NOW! and getÂ 3 MASSIVE Bonuses valued at $591!</span></p>\r\n\r\n<p class=\"gp-component-id-zzAv4E_rRw\" style=\"overflow-wrap: break-word;\"><a class=\"inline-flex items-start justify-start overflow-hidden object-cover object-center gp-component gp-component-id-W8HPx4fW6\" data-gp-button-id=\"hK7YkoW1L\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\" data-gp-dnd=\"\" data-gp-style=\"\" href=\"https://llpgpro.com/SignmeupMTP/\" target=\"_blank\"><img alt=\"\" class=\"object-cover object-center\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" /></a></p>\r\n\r\n<div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-component=\"container\" data-gp-component-id=\"mkGntwDqul\" data-gp-container=\"\" data-gp-style=\"\" style=\"width: 1168px; color: rgb(0, 0, 0); font-family: sans-serif; font-size: medium;\" tabindex=\"0\">\r\n<div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-component=\"null\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" tabindex=\"0\">\r\n<p class=\"gp-component-id-qwXOCMdvJ\" style=\"text-align: center;\"><a href=\"https://soloswaps.com/showoto.php\"><span style=\"font-weight: bolder;\"><u>No thanksÂ I am ready to pass on this.</u></span></a></p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n\r\n<section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8gDwjOwtm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8gDwjOwtm\" style=\"\" tabindex=\"0\"><a data-gp-block-anchor=\"\" name=\"8gDwjOwtm\"></a>\r\n\r\n<div data-section-overlay=\"\">Â </div>\r\n\r\n<div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-component=\"container\" data-gp-component-id=\"COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-component-id=\"D1awR1nPvd\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-8GTfPE0lkh\">\r\n<div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\">Â </div>\r\n</div>\r\n</div>\r\n\r\n<div cg=\"=\" class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n<div class=\"gp-component-id-3e6FTAIs9i\">\r\n<div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n<div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-component=\"container\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"><img alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://images.groovetech.io/3aT7vcmdsn--GIrBkAmKS52APMboSez95WhQnYGZb1g/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU0MjcyMTg3X3NvbG9zd2Fwcy5wbmc.webp\" style=\"width: 1140px; height: 98px;\" /></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</section>\r\n</div>\r\n\r\n<div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\">Â </div>\r\n</div>\r\n<style data-gp-styled-element=\"true\" type=\"text/css\">\r\n</style>\r\n<style class=\"style-c8LWFknvJ-overlay\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">.gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgba(3, 58, 124, 0.8);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-JVCXXwD5S\" data-gp-styled-element=\"JVCXXwD5S\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n          font-size: 51px !important;color: rgba(11, 91, 42, 1);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-iCmSs08Sld\" data-gp-styled-element=\"iCmSs08Sld\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-nfirRvWGK\" data-gp-styled-element=\"nfirRvWGK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nfirRvWGK[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-xTZi_evMGC\" data-gp-styled-element=\"xTZi_evMGC\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-OXhEVsTS8\" data-gp-styled-element=\"OXhEVsTS8\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-yFOAl8Qsa\" data-gp-styled-element=\"yFOAl8Qsa\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n          font-size: 1px !important;color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-Um0LTpe26S\" data-gp-styled-element=\"Um0LTpe26S\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-VTDcqjeVAF\" data-gp-styled-element=\"VTDcqjeVAF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-vgUGcPIBm4\" data-gp-styled-element=\"vgUGcPIBm4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-whhxswXXk\" data-gp-styled-element=\"whhxswXXk\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-whhxswXXk[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2OYjNExA76\" data-gp-styled-element=\"2OYjNExA76\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-QrE0OFzoJi\" data-gp-styled-element=\"QrE0OFzoJi\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-DNyAzqs9H7\" data-gp-styled-element=\"DNyAzqs9H7\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-RLhagGVVn\" data-gp-styled-element=\"RLhagGVVn\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLhagGVVn[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TN1aghq4v9\" data-gp-styled-element=\"TN1aghq4v9\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-U_ZCcozYg\" data-gp-styled-element=\"U_ZCcozYg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;white-space: nowrap;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-r63OVBFLUh\" data-gp-styled-element=\"r63OVBFLUh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-sQtRe6Rwc\" data-gp-styled-element=\"sQtRe6Rwc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-vnTODaA9QE\" data-gp-styled-element=\"vnTODaA9QE\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-6iHldzmCz\" data-gp-styled-element=\"6iHldzmCz\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6iHldzmCz[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-4NP6JjIe75\" data-gp-styled-element=\"4NP6JjIe75\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-UdwRRkOfo\" data-gp-styled-element=\"UdwRRkOfo\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-z8rI2JoDl4\" data-gp-styled-element=\"z8rI2JoDl4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n          font-size: 22px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-Tq8OpWli4\" data-gp-styled-element=\"Tq8OpWli4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-MZgDPaFPi\" data-gp-styled-element=\"MZgDPaFPi\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SNMY4ddvF\" data-gp-styled-element=\"SNMY4ddvF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3xJsI9Ixq\" data-gp-styled-element=\"3xJsI9Ixq\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n          font-size: 22px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-6sNwx3y0a\" data-gp-styled-element=\"6sNwx3y0a\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n          color: rgb(32, 45, 60);margin-bottom: 12px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;position: relative;white-space: nowrap;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-pIJ3rEiST\" data-gp-styled-element=\"pIJ3rEiST\" type=\"text/css\">.gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pIJ3rEiST {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8luFF1BBg\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg[data-gp-component] {\r\n          background-size: cover;padding-top: 108px;padding-bottom: 30px;min-height: 50px;position: relative;z-index: auto !important;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-tfH5RN09F\" data-gp-styled-element=\"tfH5RN09F\" type=\"text/css\">.gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tfH5RN09F {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ddNM8oouP\" data-gp-styled-element=\"ddNM8oouP\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ddNM8oouP[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(255, 255, 255);margin-top: 65px;padding-left: 15px;padding-right: 15px;padding-top: 15px;padding-bottom: 15px;width: 583px;position: relative;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-cwb1P7HsOg\" data-gp-styled-element=\"cwb1P7HsOg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gR603Xpf\" data-gp-styled-element=\"8gR603Xpf\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gR603Xpf[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-42geRpfrF\" data-gp-styled-element=\"42geRpfrF\" type=\"text/css\">.gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-42geRpfrF {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hnfQHp0bMt\" data-gp-styled-element=\"hnfQHp0bMt\" type=\"text/css\">.gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hnfQHp0bMt {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-CVNQ02KKdm\" data-gp-styled-element=\"CVNQ02KKdm\" type=\"text/css\">.gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVNQ02KKdm {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-MDaop1dyw\" data-gp-styled-element=\"MDaop1dyw\" type=\"text/css\">.gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-MDaop1dyw {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 280px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;width: 1124px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-zzAv4E_rRw\" data-gp-styled-element=\"zzAv4E_rRw\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n          font-size: 35px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 0px;padding-bottom: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n          background-size: cover;padding-top: 15px;padding-bottom: 15px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-L0xSEIYQH\" data-gp-styled-element=\"L0xSEIYQH\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n          font-size: 35px;color: rgb(255, 255, 255);text-align: center;letter-spacing: -0.05em;line-height: 1.25;font-family: Montserrat;padding-top: 0px;padding-bottom: 30px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-x0qLSFNQm\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n          background-size: cover;padding-top: 35px;padding-bottom: 35px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gDwjOwtm\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n          background-size: cover;padding-top: 40px;padding-bottom: 40px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8gDwjOwtm-overlay\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">.gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI-overlay\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">.gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-5k68o8eDj\" data-gp-styled-element=\"5k68o8eDj\" type=\"text/css\">.gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5k68o8eDj {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W_SJAxOpU\" data-gp-styled-element=\"W_SJAxOpU\" type=\"text/css\">.gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W_SJAxOpU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YFdlYXI44s\" data-gp-styled-element=\"YFdlYXI44s\" type=\"text/css\">.gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YFdlYXI44s {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-p28XSz2Dr8\" data-gp-styled-element=\"p28XSz2Dr8\" type=\"text/css\">.gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-p28XSz2Dr8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2995INqmX1\" data-gp-styled-element=\"2995INqmX1\" type=\"text/css\">.gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2995INqmX1 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 33.33%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-c8LWFknvJ\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n          background-size: cover;padding-top: 10px;padding-bottom: 10px;z-index: auto !important;min-height: 50px;position: relative;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ZWmM9oaZJ\" data-gp-styled-element=\"ZWmM9oaZJ\" type=\"text/css\">.gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZWmM9oaZJ {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hELXlwHigF\" data-gp-styled-element=\"hELXlwHigF\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 640px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 768px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 992px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hELXlwHigF[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;height: 280px;max-width: 1200px;flex-direction: row;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-UYNHzjc9XL\" data-gp-styled-element=\"UYNHzjc9XL\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qwXOCMdvJ\" data-gp-styled-element=\"qwXOCMdvJ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n          cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-iawQbhj_l0\" data-gp-styled-element=\"iawQbhj_l0\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n          font-size: 22px;color: rgb(4, 81, 174);text-align: center;font-family: Montserrat;padding-top: 20px;padding-bottom: 29px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TlJxcKiu8\" data-gp-styled-element=\"TlJxcKiu8\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EcDQd6Qsd\" data-gp-styled-element=\"EcDQd6Qsd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;height: 109px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 1184px;height: 109px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-W8HPx4fW6\" data-gp-styled-element=\"W8HPx4fW6\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n          width: 453px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-R0ou7_aFZk\" data-gp-styled-element=\"R0ou7_aFZk\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n          font-size: 35px;color: rgb(228, 63, 112);text-align: center;font-family: Montserrat;margin-top: 20px;padding-top: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-f5tbUrKVVs\" data-gp-styled-element=\"f5tbUrKVVs\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n          margin-top: 15px;margin-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-mkGntwDqul\" data-gp-styled-element=\"mkGntwDqul\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mkGntwDqul[data-gp-component] {\r\n          padding-bottom: 15px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-99gBmU4Xl\" data-gp-styled-element=\"99gBmU4Xl\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-bottom: 29px;width: 78%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n          width: 78%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-sIveWZozs6\" data-gp-styled-element=\"sIveWZozs6\" type=\"text/css\">.gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-sIveWZozs6 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3e6FTAIs9i\" data-gp-styled-element=\"3e6FTAIs9i\" type=\"text/css\">.gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3e6FTAIs9i {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-3cVem03cLb\" data-gp-styled-element=\"3cVem03cLb\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3cVem03cLb[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-luC52k9Dop\" data-gp-styled-element=\"luC52k9Dop\" type=\"text/css\">.gp-component-id-luC52k9Dop {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-luC52k9Dop {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8GTfPE0lkh\" data-gp-styled-element=\"8GTfPE0lkh\" type=\"text/css\">.gp-component-id-8GTfPE0lkh {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8GTfPE0lkh {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-D1awR1nPvd\" data-gp-styled-element=\"D1awR1nPvd\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-COSrbaDmsh\" data-gp-styled-element=\"COSrbaDmsh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-J_z76_RZn4\" data-gp-styled-element=\"J_z76_RZn4\" type=\"text/css\">.gp-component-id-J_z76_RZn4 {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J_z76_RZn4 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ecZSsAHodS\" data-gp-styled-element=\"ecZSsAHodS\" type=\"text/css\">.gp-component-id-ecZSsAHodS {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ecZSsAHodS {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-OGWki8oIxK\" data-gp-styled-element=\"OGWki8oIxK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-qolWUwBxkP\" data-gp-styled-element=\"qolWUwBxkP\" type=\"text/css\">.gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qolWUwBxkP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0QjPnswPgW\" data-gp-styled-element=\"0QjPnswPgW\" type=\"text/css\">.gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QjPnswPgW {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-g7ZzygdnDK\" data-gp-styled-element=\"g7ZzygdnDK\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-TKi99xtCwc\" data-gp-styled-element=\"TKi99xtCwc\" type=\"text/css\">.gp-component-id-TKi99xtCwc {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TKi99xtCwc {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-T0x5gytyNi\" data-gp-styled-element=\"T0x5gytyNi\" type=\"text/css\">.gp-component-id-T0x5gytyNi {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T0x5gytyNi {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-gKveClTNhg\" data-gp-styled-element=\"gKveClTNhg\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gKveClTNhg[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-uOTetmF0P\" data-gp-styled-element=\"uOTetmF0P\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uOTetmF0P[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-E0JYRwodpQ\" data-gp-styled-element=\"E0JYRwodpQ\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fEQf_5kqEO\" data-gp-styled-element=\"fEQf_5kqEO\" type=\"text/css\">.gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fEQf_5kqEO {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-u3y76PjGMq\" data-gp-styled-element=\"u3y76PjGMq\" type=\"text/css\">.gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u3y76PjGMq {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YMftO9Mgj\" data-gp-styled-element=\"YMftO9Mgj\" type=\"text/css\">.gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YMftO9Mgj {\r\n          flex-wrap: wrap;margin-right: -16px;margin-left: -16px;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-2YoPqR513B\" data-gp-styled-element=\"2YoPqR513B\" type=\"text/css\">.gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2YoPqR513B {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-uewobCXWOm\" data-gp-styled-element=\"uewobCXWOm\" type=\"text/css\">.gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uewobCXWOm {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 50%;padding-left: 16px;padding-right: 16px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-HhR4We9Pj8\" data-gp-styled-element=\"HhR4We9Pj8\" type=\"text/css\">.gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HhR4We9Pj8 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-LFjxRV27Z_\" data-gp-styled-element=\"LFjxRV27Z_\" type=\"text/css\">.gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LFjxRV27Z_ {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0Bkx240IHc\" data-gp-styled-element=\"0Bkx240IHc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-90kZvTqr0k\" data-gp-styled-element=\"90kZvTqr0k\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-GI8NsP9vMT\" data-gp-styled-element=\"GI8NsP9vMT\" type=\"text/css\">.gp-component-id-GI8NsP9vMT {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GI8NsP9vMT {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0k4k3iL1Ns\" data-gp-styled-element=\"0k4k3iL1Ns\" type=\"text/css\">.gp-component-id-0k4k3iL1Ns {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0k4k3iL1Ns {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-tQSxU1bGH4\" data-gp-styled-element=\"tQSxU1bGH4\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-nGze91qLM9\" data-gp-styled-element=\"nGze91qLM9\" type=\"text/css\">.gp-component-id-nGze91qLM9 {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nGze91qLM9 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-YUf5Vd3Zpj\" data-gp-styled-element=\"YUf5Vd3Zpj\" type=\"text/css\">.gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YUf5Vd3Zpj {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-lY2ocfQuNI\" data-gp-styled-element=\"lY2ocfQuNI\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-FQ8I7JjOB6\" data-gp-styled-element=\"FQ8I7JjOB6\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-8luFF1BBg-overlay\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">.gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-x0qLSFNQm-overlay\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">.gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(3, 58, 124, 0.8);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n          background-color: rgba(15, 20, 81, 1);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-VgJGWFybSh\" data-gp-styled-element=\"VgJGWFybSh\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-EpR3FYP8KP\" data-gp-styled-element=\"EpR3FYP8KP\" type=\"text/css\">.gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EpR3FYP8KP {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-lX20hlPRT\" data-gp-styled-element=\"lX20hlPRT\" type=\"text/css\">.gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lX20hlPRT {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-jQW6E608vc\" data-gp-styled-element=\"jQW6E608vc\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jQW6E608vc[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-KMb5y_c30p\" data-gp-styled-element=\"KMb5y_c30p\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-PtImyMcr0c\" data-gp-styled-element=\"PtImyMcr0c\" type=\"text/css\">.gp-component-id-PtImyMcr0c {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PtImyMcr0c {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-ijpsmOUYOx\" data-gp-styled-element=\"ijpsmOUYOx\" type=\"text/css\">.gp-component-id-ijpsmOUYOx {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ijpsmOUYOx {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-eNgUY5HN1A\" data-gp-styled-element=\"eNgUY5HN1A\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-hP3n278NIX\" data-gp-styled-element=\"hP3n278NIX\" type=\"text/css\">.gp-component-id-hP3n278NIX {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hP3n278NIX {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-_BWma0JGM\" data-gp-styled-element=\"_BWma0JGM\" type=\"text/css\">.gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_BWma0JGM {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fvIHB16pmC\" data-gp-styled-element=\"fvIHB16pmC\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-5zLeBtD88t\" data-gp-styled-element=\"5zLeBtD88t\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0wgdKXhPc\" data-gp-styled-element=\"0wgdKXhPc\" type=\"text/css\">.gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0wgdKXhPc {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-f209ypL8V\" data-gp-styled-element=\"f209ypL8V\" type=\"text/css\">.gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f209ypL8V {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0f09MduSfs\" data-gp-styled-element=\"0f09MduSfs\" type=\"text/css\">.gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0f09MduSfs {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-b823Irvqy3\" data-gp-styled-element=\"b823Irvqy3\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-b823Irvqy3[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0GX9ShP7cU\" data-gp-styled-element=\"0GX9ShP7cU\" type=\"text/css\">.gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0GX9ShP7cU {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0yg5Yj9zwn\" data-gp-styled-element=\"0yg5Yj9zwn\" type=\"text/css\">.gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0yg5Yj9zwn {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-fSP6aMQWwu\" data-gp-styled-element=\"fSP6aMQWwu\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-jj4nhdDw4a\" data-gp-styled-element=\"jj4nhdDw4a\" type=\"text/css\">.gp-component-id-jj4nhdDw4a {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jj4nhdDw4a {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-pLq0nkrGLt\" data-gp-styled-element=\"pLq0nkrGLt\" type=\"text/css\">.gp-component-id-pLq0nkrGLt {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pLq0nkrGLt {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-_jMvnockmU\" data-gp-styled-element=\"_jMvnockmU\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_jMvnockmU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n</style>\r\n<style class=\"style-0MHvUy5W_c\" data-gp-styled-element=\"0MHvUy5W_c\" type=\"text/css\">@media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }\r\n</style>'),(13,'12',36,10,42,32,'<meta charset=\"utf-8\" />\r\n<title>Mike Sexsmith\'s Offer</title>\r\n<meta content=\"width=device-width, initial-scale=1.0\" name=\"viewport\" />\r\n<meta content=\"\" property=\"og:title\" />\r\n<meta content=\"\" property=\"og:image\" />\r\n<meta content=\"\" name=\"description\" />\r\n<meta content=\"\" name=\"keywords\" />\r\n<link href=\"https://fonts.gstatic.com\" rel=\"preconnect\" />\r\n<link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\" />\r\n<style id=\"global-styles\" type=\"text/css\"></style>\r\n<link href=\"https://app.groove.cm/groovepages/css/chunk-vendors.css\" rel=\"stylesheet\" />\r\n<script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n<style id=\"IE-warning-style\" type=\"text/css\">\r\n    #IE-warning {\r\n      display: none;\r\n      position: fixed;\r\n      width: 100%;\r\n      height: 100%;\r\n      z-index: 9999;\r\n      background: white;\r\n    }\r\n    \r\n    .IE-warning-message {\r\n      position: absolute;\r\n      left: 50%;\r\n      top: 50%;\r\n      transform: translate(-50%, -50%);\r\n      text-align: center;\r\n    }\r\n</style>\r\n<style id=\"page-css\" type=\"text/css\"></style>\r\n<style id=\"section-block\" type=\"text/css\">\r\n    section[data-gp-block] {\r\n      z-index: auto;\r\n      position: relative;\r\n      min-height: 50px;\r\n    }\r\n    \r\n    section[data-gp-block].textediting {\r\n      z-index: 99 !important;\r\n    }\r\n    \r\n    section[data-gp-block].fix-top,\r\n    section[data-gp-block].fix-bottom {\r\n      z-index: 20 !important;\r\n    }\r\n    \r\n    section[data-gp-block]>*:not([data-section-overlay]) {\r\n      position: relative;\r\n    }\r\n    \r\n    [data-gp-container] .gp-text-container * {\r\n      overflow-wrap: break-word;\r\n    }\r\n    \r\n    [data-gp-navmenu-id] .gp-navmenu-parentlink>a,\r\n    [data-gp-navmenu-id] .gp-navmenu-link>a,\r\n    [data-gp-navmenu-id] .lg\\:mr-9>a {\r\n      color: inherit;\r\n    }\r\n    \r\n    [data-gp-text] {\r\n      display: flex;\r\n      flex-direction: column;\r\n    }\r\n    \r\n    [data-gp-component=\'slider-block\'].gp-component> :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n    [data-gp-block].gp-component> :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n      z-index: 15;\r\n      position: relative;\r\n    }\r\n    \r\n    section[data-gp-block].gp-component>div[data-section-overlay] {\r\n      z-index: 14 !important;\r\n    }\r\n    \r\n    section[data-gp-block].gp-component>div[data-gp-component=\'pattern-background\'] {\r\n      z-index: 12 !important;\r\n    }\r\n    \r\n    [data-gp-component=\"video-background\"] {\r\n      position: absolute !important;\r\n      z-index: 11;\r\n      top: 0;\r\n      left: 0;\r\n      right: 0;\r\n      height: 100%;\r\n      max-height: 100%;\r\n      overflow-y: hidden;\r\n      pointer-events: none;\r\n    }\r\n    \r\n    [data-gp-component=\"video-background\"]>[data-gp-component=\"video-overlay\"] {\r\n      position: absolute;\r\n      top: 0;\r\n      left: 0;\r\n      right: 0;\r\n      bottom: 0;\r\n      pointer-events: none;\r\n    }\r\n    \r\n    [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n      position: absolute;\r\n      width: 100%;\r\n      height: 100%;\r\n      pointer-events: none;\r\n    }\r\n    \r\n    [data-gp-component=\"image\"] img {\r\n      width: 100%;\r\n    }\r\n    \r\n    [data-gp-component=\"pattern-background\"] {\r\n      position: absolute !important;\r\n      z-index: 10;\r\n      top: 0;\r\n      left: 0;\r\n      right: 0;\r\n      height: 100%;\r\n      max-height: 100%;\r\n      overflow-y: hidden;\r\n      pointer-events: none;\r\n    }\r\n    \r\n    .hidden-block {\r\n      display: none !important;\r\n    }\r\n</style>\r\n<style id=\"custom-css\" type=\"text/css\">\r\n    /* Hero image - full height, no crop; keep width, height auto */\r\n    .gp-component-id-pIJ3rEiST,\r\n    .gp-component-id-pIJ3rEiST img {\r\n      height: auto !important;\r\n      object-fit: contain !important;\r\n      max-width: 100%;\r\n    }\r\n    /* Features box - text wraps inside box, no overflow */\r\n    .gp-component-id-CVNQ02KKdm {\r\n      overflow-wrap: break-word !important;\r\n      word-wrap: break-word !important;\r\n      overflow: hidden !important;\r\n      box-sizing: border-box !important;\r\n    }\r\n    .gp-component-id-CVNQ02KKdm .gp-text-container,\r\n    .gp-component-id-CVNQ02KKdm p,\r\n    .gp-component-id-WznRJtsk1e {\r\n      overflow-wrap: break-word !important;\r\n      word-wrap: break-word !important;\r\n      min-width: 0;\r\n      white-space: normal !important;\r\n    }\r\n    /* Override list item nowrap so bullets wrap inside box */\r\n    .gp-component-id-nfirRvWGK[data-gp-component] {\r\n      white-space: normal !important;\r\n    }\r\n    * {}\r\n    \r\n    html {\r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n    }\r\n    \r\n    body {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n    }\r\n    \r\n    body * {\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n    }\r\n    \r\n    main {\r\n      display: block;\r\n    }\r\n    \r\n    h1 {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n    }\r\n    \r\n    hr {\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n    }\r\n    \r\n    pre {\r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    b {\r\n      font-weight: bolder;\r\n    }\r\n    \r\n    strong {\r\n      font-weight: bolder;\r\n    }\r\n    \r\n    code {\r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n    }\r\n    \r\n    kbd {\r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n    }\r\n    \r\n    samp {\r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n    }\r\n    \r\n    small {\r\n      font-size: 80%;\r\n    }\r\n    \r\n    sub {\r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n    }\r\n    \r\n    sup {\r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n    }\r\n    \r\n    img {\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n    }\r\n    \r\n    button {\r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n    }\r\n    \r\n    input {\r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n    }\r\n    \r\n    optgroup {\r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n    }\r\n    \r\n    select {\r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n    }\r\n    \r\n    textarea {\r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n    }\r\n    \r\n    fieldset {\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    legend {\r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n    }\r\n    \r\n    progress {\r\n      vertical-align: baseline;\r\n    }\r\n    \r\n    details {\r\n      display: block;\r\n    }\r\n    \r\n    summary {\r\n      display: list-item;\r\n    }\r\n    \r\n    template {\r\n      display: none;\r\n    }\r\n    \r\n    blockquote {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    dd {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    dl {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    figure {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    h2 {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    h3 {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    h4 {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    h5 {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    h6 {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    p {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n    }\r\n    \r\n    ol {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n    }\r\n    \r\n    ul {\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n    }\r\n    \r\n    table {\r\n      border-collapse: collapse;\r\n    }\r\n    \r\n    a {\r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n    }\r\n</style>\r\n<script type=\"text/javascript\">\r\n    window.websiteurl = \"https://htmltest.groovepages.com/frankoffer/\"\r\n</script>\r\n<script>\r\n    window.site || window.encodeSite || (window.encodeSite = function(e, s) {\r\n      return e.pages = JSON.parse(atob(e.pages)), window.site = function(e) {\r\n        try {\r\n          const s = {\r\n            ...e.pages\r\n          } || {};\r\n          return new Proxy({}, {}) instanceof Object ? (delete e.pages, e.isProxy = !0, new Proxy(e, {\r\n            pages: s,\r\n            get(e, s) {\r\n              return \"pages\" === s && s in this.pages ? this.pages[s] : \"pages\" === s ? this.pages : s in e ? e[s] : void 0\r\n            },\r\n            set: (e, s, t) => (e[s] = t, !0)\r\n          })) : void 0\r\n        } catch (e) {}\r\n        const s = {\r\n          ...e.pages\r\n        } || {};\r\n        if (new Proxy({}, {}) instanceof Object) return delete e.pages, e.isProxy = !0, new Proxy(e, {\r\n          pages: s,\r\n          get(e, s) {\r\n            return \"pages\" === s && s in this.pages ? this.pages[s] : \"pages\" === s ? this.pages : s in e ? e[s] : void 0\r\n          },\r\n          set: (e, s, t) => (e[s] = t, !0)\r\n        })\r\n      }(e), window.site\r\n    });\r\n</script> <!-- Matomo -->\r\n<script type=\"text/javascript\">\r\n    var _paq = window._paq || [];\r\n    /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n    _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n    _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n    _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n    _paq.push([\'setCustomDimension\', 1, \"6298e5d79f615a39492bb642\"]);\r\n    _paq.push([\'setCustomDimension\', 2, \"Lm_MuwsfH\"]);\r\n    _paq.push([\'trackPageView\']);\r\n    _paq.push([\'enableLinkTracking\']);\r\n    (function() {\r\n      var u = \"//matomo.groovetech.io/\";\r\n      _paq.push([\'setTrackerUrl\', u + \'matomo.php\']);\r\n      _paq.push([\'setSiteId\', \'4\']);\r\n      var d = document,\r\n        g = d.createElement(\'script\'),\r\n        s = d.getElementsByTagName(\'script\')[0];\r\n      g.type = \'text/javascript\';\r\n      g.async = true;\r\n      g.defer = true;\r\n      g.src = u + \'matomo.js\';\r\n      s.parentNode.insertBefore(g, s);\r\n    })();\r\n</script> <noscript>\r\n    <p> <img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /> </p>\r\n</noscript> <!-- End Matomo Code -->\r\n<!-- Start Popups -->\r\n<script>\r\n    if (!window.mergeContentSettings) {\r\n      function mergeContentSettings() {}\r\n    }\r\n</script> <!-- End Popups -->\r\n<div id=\"IE-warning\">\r\n    <div class=\"IE-warning-message\">\r\n        <p>Oops! Sorry!!</p>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge. </p>\r\n    </div>\r\n</div>\r\n<script id=\"IE-check\">\r\n    (function() {\r\n      if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n        document.getElementById(\"IE-warning\").style.display = \"block\";\r\n      } else {\r\n        document.getElementById(\"IE-warning\").remove();\r\n      }\r\n    })();\r\n</script>\r\n<div data-gp-page-id=\"Lm_MuwsfH\" id=\"page-container\">\r\n    <div class=\"blocks-container\" id=\"blocks-container\">\r\n        <section class=\"gp-component-id-SrqqQY8ReI gp-component\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"SrqqQY8ReI\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"SrqqQY8ReI\" style=\"\" tabindex=\"0\">\r\n            <div data-section-overlay=\"\"></div>\r\n            <div class=\"gp-component-id-hELXlwHigF gp-component\" data-gp-component=\"container\" data-gp-component-id=\"hELXlwHigF\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\"> <img alt=\"\" class=\"gp-component gp-component-id-MDaop1dyw\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"MDaop1dyw\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642106832_bright_1-01.png\" tabindex=\"0\" /> </div>\r\n        </section>\r\n        <section class=\"gp-component gp-component-id-8luFF1BBg\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8luFF1BBg\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8luFF1BBg\" style=\"\" tabindex=\"0\"> <a data-gp-block-anchor=\"\" name=\"8luFF1BBg\"></a>\r\n            <div data-section-overlay=\"\"></div>\r\n            <div class=\"gp-component gp-component-id-FQ8I7JjOB6\" data-gp-component=\"container\" data-gp-component-id=\"FQ8I7JjOB6\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                <div class=\"gp-component gp-component-id-lY2ocfQuNI\" data-gp-component=\"layout-1\" data-gp-component-id=\"lY2ocfQuNI\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-YUf5Vd3Zpj\">\r\n                        <div class=\"gp-component-id-nGze91qLM9\" data-gp-grid-col=\"\"></div>\r\n                    </div>\r\n                </div>\r\n                <div cg=\"=\" class=\"gp-component gp-component-id-tQSxU1bGH4\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"tQSxU1bGH4\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-0k4k3iL1Ns\">\r\n                        <div class=\"gp-component-id-GI8NsP9vMT\" data-gp-grid-col=\"\">\r\n                            <div class=\"gp-component gp-component-id-90kZvTqr0k\" data-gp-component=\"container\" data-gp-component-id=\"90kZvTqr0k\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                                <div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-component=\"null\" data-gp-component-id=\"_EwCyTjIut\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n                                    <H1>\r\n                                        <p class=\"gp-component-id-zzAv4E_rRw\"> <strong>MASSIFLY</strong> </p>\r\n                                    </H1>\r\n                                    <H3>\r\n                                        <p class=\"gp-component-id-zzAv4E_rRw\"> <strong>Simple system unlocking massive income from many paths!</strong> </p>\r\n                                    </H3>\r\n                                </div>\r\n                                <div cg=\"=\" class=\"gp-component gp-component-id-0Bkx240IHc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"0Bkx240IHc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n                                    <div class=\"gp-component-id-LFjxRV27Z_\">\r\n                                        <div class=\"gp-component-id-HhR4We9Pj8\" data-gp-grid-col=\"\">\r\n                                            <div class=\"gp-component gp-component-id-f5tbUrKVVs\" data-gp-component=\"container\" data-gp-component-id=\"f5tbUrKVVs\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n                                                <figure alt=\"\" class=\"inline-flex items-start justify-start gp-component gp-component-id-pIJ3rEiST\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://massifly.com/sources/graphic/media_1765957868556.jpeg\" tabindex=\"0\"> <img alt=\"\" class=\"inline-flex items-start justify-start gp-component gp-component-id-pIJ3rEiST\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"pIJ3rEiST\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://massifly.com/sources/graphic/media_1765957868556.jpeg\" style=\"width: 100%; max-width: 882px; height: auto;\" tabindex=\"0\" /> </figure>\r\n                                            </div>\r\n                                        </div>\r\n                                    </div>\r\n                                </div>\r\n                            </div>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n                <div class=\"gp-component-id-tfH5RN09F gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"tfH5RN09F\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-text-container gp-component gp-component-id-SNqb6cK1g\" data-gp-component=\"null\" data-gp-component-id=\"SNqb6cK1g\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-text=\"\" tabindex=\"0\">\r\n                        <hr />\r\n                    </div>\r\n                </div>\r\n            </div>\r\n            <div class=\"gp-component gp-component-id-uOTetmF0P\" data-gp-component=\"container\" data-gp-component-id=\"uOTetmF0P\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                <div class=\"gp-component gp-component-id-gKveClTNhg\" data-gp-component=\"layout-1\" data-gp-component-id=\"gKveClTNhg\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-T0x5gytyNi\">\r\n                        <div class=\"gp-component-id-TKi99xtCwc\" data-gp-grid-col=\"\"></div>\r\n                    </div>\r\n                </div>\r\n                <div cg=\"=\" class=\"gp-component gp-component-id-g7ZzygdnDK\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"g7ZzygdnDK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-0QjPnswPgW\">\r\n                        <div class=\"gp-component-id-qolWUwBxkP\" data-gp-grid-col=\"\"></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </section>\r\n        <section class=\"gp-component gp-component-id-x0qLSFNQm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"x0qLSFNQm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"x0qLSFNQm\" style=\"\" tabindex=\"0\"> <a data-gp-block-anchor=\"\" name=\"x0qLSFNQm\"></a>\r\n            <div data-section-overlay=\"\"></div>\r\n            <div class=\"gp-component gp-component-id-5zLeBtD88t\" data-gp-component=\"container\" data-gp-component-id=\"5zLeBtD88t\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                <div class=\"gp-component gp-component-id-fvIHB16pmC\" data-gp-component=\"layout-1\" data-gp-component-id=\"fvIHB16pmC\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-_BWma0JGM\">\r\n                        <div class=\"gp-component-id-hP3n278NIX\" data-gp-grid-col=\"\"></div>\r\n                    </div>\r\n                </div>\r\n                <div cg=\"=\" class=\"gp-component gp-component-id-eNgUY5HN1A\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"eNgUY5HN1A\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-ijpsmOUYOx\">\r\n                        <div class=\"gp-component-id-PtImyMcr0c\" data-gp-grid-col=\"\">\r\n                            <div class=\"gp-component gp-component-id-KMb5y_c30p\" data-gp-component=\"container\" data-gp-component-id=\"KMb5y_c30p\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                                <div class=\"gp-text-container gp-component gp-component-id-egr33Q0P62\" data-gp-component=\"null\" data-gp-component-id=\"egr33Q0P62\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n                                    <p class=\"gp-component-id-cwb1P7HsOg\"> <strong>Here Are Some Awesome Features About</strong> </p>\r\n                                    <p class=\"gp-component-id-cwb1P7HsOg\"> <strong>Massifly</strong> </p>\r\n                                </div>\r\n                                <div class=\"gp-component-id-8gR603Xpf gp-component\" data-gp-component=\"container\" data-gp-component-data=\"{\" data-gp-component-id=\"8gR603Xpf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n                                    <div cg=\"=\" class=\"gp-component-id-ddNM8oouP gp-component\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"ddNM8oouP\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n                                        <div class=\"gp-component-id-42geRpfrF\">\r\n                                            <div class=\"gp-component-id-hnfQHp0bMt\" data-gp-grid-col=\"\">\r\n                                                <div class=\"gp-component-id-CVNQ02KKdm gp-component\" data-gp-component=\"container\" data-gp-component-id=\"CVNQ02KKdm\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n                                                    <ul>\r\n                                                        <li class=\"gp-component gp-component-id-nfirRvWGK\" data-gp-component=\"list-regular\" data-gp-component-data=\"{\" data-gp-component-id=\"nfirRvWGK\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" regular=\"\" style=\"\" tabindex=\"0\">\r\n                                                            <div class=\"gp-text-container gp-component gp-component-id-WznRJtsk1e\" data-gp-component=\"null\" data-gp-component-id=\"WznRJtsk1e\" data-gp-style=\"\" data-gp-text=\"\">\r\n                                                                <p class=\"gp-component-id-iCmSs08Sld\"> <strong> - No sponsoring needed. Multiple income streams built to scale.</strong> </p>\r\n                                                                <p class=\"gp-component-id-iCmSs08Sld\"> <strong> - Earn in multiple ways with a simple system. </strong> </p>\r\n                                                                <p class=\"gp-component-id-iCmSs08Sld\"> <strong> - Unique income design with massive upside. </strong> </p>\r\n                                                                <p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"> <strong> - Powerful traffic built to convert leads, sales, and sign-ups. </strong> </p>\r\n                                                                <p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"> <strong> - Weâ€™re building fast and earning together.</strong> </p>\r\n                                                                <p class=\"gp-component-id-iCmSs08Sld\" style=\"overflow-wrap: break-word;\"> <strong> - Plug in Now</strong> </p>\r\n                                                            </div> \r\n\r\n                                                        </li>\r\n                                                    </ul>\r\n                                                </div>\r\n                                            </div>\r\n                                        </div>\r\n                                    </div>\r\n                                </div>\r\n                                <div 3=\"\" class=\"gp-component-id-5k68o8eDj gp-component\" data-gp-component=\"layout-3-3-3\" data-gp-component-data=\"{\" data-gp-component-id=\"5k68o8eDj\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n                                    <div class=\"gp-component-id-W_SJAxOpU\">\r\n                                        <div class=\"gp-component-id-p28XSz2Dr8\" data-gp-grid-col=\"\"></div>\r\n                                        <div class=\"gp-component-id-2995INqmX1\" data-gp-grid-col=\"\"></div>\r\n                                    </div>\r\n                                </div>\r\n                                <div cg=\"=\" class=\"gp-component gp-component-id-jQW6E608vc\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"jQW6E608vc\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" tabindex=\"0\">\r\n                                    <div class=\"gp-component-id-lX20hlPRT\">\r\n                                        <div class=\"gp-component-id-EpR3FYP8KP\" data-gp-grid-col=\"\">\r\n                                            <div class=\"gp-component gp-component-id-VgJGWFybSh\" data-gp-component=\"container\" data-gp-component-id=\"VgJGWFybSh\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\">\r\n                                                <div class=\"gp-component gp-component-id-99gBmU4Xl\" data-gp-classes=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"99gBmU4Xl\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                                                    <div class=\"gp-component-id-YMftO9Mgj\">\r\n                                                        <div class=\"gp-component-id-2YoPqR513B\" data-gp-grid-col=\"\"></div>\r\n                                                        <div class=\"gp-component-id-uewobCXWOm\" data-gp-grid-col=\"\"></div>\r\n                                                    </div>\r\n                                                </div>\r\n                                            </div>\r\n                                        </div>\r\n                                    </div>\r\n                                </div>\r\n                            </div>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </section>\r\n        <section class=\"gp-component gp-component-id-c8LWFknvJ\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"c8LWFknvJ\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"c8LWFknvJ\" style=\"\" tabindex=\"0\"> <a data-gp-block-anchor=\"\" name=\"c8LWFknvJ\"></a>\r\n            <div data-section-overlay=\"\"></div>\r\n            <div class=\"gp-component gp-component-id-0MHvUy5W_c\" data-gp-component=\"container\" data-gp-component-id=\"0MHvUy5W_c\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                <div cg=\"=\" class=\"gp-component gp-component-id-fSP6aMQWwu\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"fSP6aMQWwu\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-0yg5Yj9zwn\">\r\n                        <div class=\"gp-component-id-0GX9ShP7cU\" data-gp-grid-col=\"\">\r\n                            <div class=\"gp-component gp-component-id-b823Irvqy3\" data-gp-component=\"container\" data-gp-component-id=\"b823Irvqy3\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                                <div class=\"gp-text-container gp-component gp-component-id-Lx2MYvoeml\" data-gp-component=\"null\" data-gp-component-id=\"Lx2MYvoeml\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" style=\"\" tabindex=\"0\">\r\n                                    <p class=\"gp-component-id-R0ou7_aFZk\"> <strong>Limited Time Offer</strong> </p>\r\n                                    <div class=\"gp-text-container gp-component gp-component-id-_EwCyTjIut\" data-gp-component=\"null\" data-gp-component-id=\"_EwCyTjIut\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" tabindex=\"0\">\r\n                                        <p class=\"gp-component-id-zzAv4E_rRw\" style=\"overflow-wrap: break-word;\"> <strong>FREE  TO JOIN</strong> </p>\r\n                                        <p class=\"gp-component-id-zzAv4E_rRw\" style=\"overflow-wrap: break-word;\"> <a class=\"inline-flex items-start justify-start overflow-hidden object-cover object-center gp-component gp-component-id-W8HPx4fW6\" data-gp-button-id=\"hK7YkoW1L\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W8HPx4fW6\" data-gp-dnd=\"\" data-gp-style=\"\" href=\"https://massifly.com/sp/the-momentum-mini-pack?r=bigmikes\" target=\"_blank\"> <img alt=\"\" class=\"object-cover object-center\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1642079933_claim.png\" /> </a> </p>\r\n                                        <div class=\"gp-component-id-mkGntwDqul gp-component\" data-gp-component=\"container\" data-gp-component-id=\"mkGntwDqul\" data-gp-container=\"\" data-gp-style=\"\" style=\"width: 1168px; color: rgb(0, 0, 0); font-family: sans-serif; font-size: medium;\" tabindex=\"0\">\r\n                                            <div class=\"gp-text-container gp-component gp-component-id-JMqxuN1rWL\" data-gp-component=\"null\" data-gp-component-id=\"JMqxuN1rWL\" data-gp-dnd=\"true\" data-gp-style=\"true\" data-gp-text=\"true\" tabindex=\"0\">\r\n                                                <p class=\"gp-component-id-qwXOCMdvJ\" style=\"text-align: center;\"> <a href=\"https://trafficbuildr.com/showoto.php\"> <span style=\"font-weight: bolder;\"> <u>No thanks I am ready to pass on this.</u> </span> </a> </p>\r\n                                            </div>\r\n                                        </div>\r\n                                    </div>\r\n                                </div>\r\n                            </div>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </section>\r\n        <section class=\"gp-component gp-component-id-8gDwjOwtm\" data-gp-block=\"true\" data-gp-component=\"block\" data-gp-component-id=\"8gDwjOwtm\" data-gp-dnd=\"\" data-gp-style=\"\" id=\"8gDwjOwtm\" style=\"\" tabindex=\"0\"> <a data-gp-block-anchor=\"\" name=\"8gDwjOwtm\"></a>\r\n            <div data-section-overlay=\"\"></div>\r\n            <div class=\"gp-component gp-component-id-COSrbaDmsh\" data-gp-component=\"container\" data-gp-component-id=\"COSrbaDmsh\" data-gp-container=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                <div class=\"gp-component gp-component-id-D1awR1nPvd\" data-gp-component=\"layout-1\" data-gp-component-id=\"D1awR1nPvd\" data-gp-dnd=\"\" data-gp-style=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-8GTfPE0lkh\">\r\n                        <div class=\"gp-component-id-luC52k9Dop\" data-gp-grid-col=\"\"></div>\r\n                    </div>\r\n                </div>\r\n                <div cg=\"=\" class=\"gp-component gp-component-id-3cVem03cLb\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\" data-gp-component-id=\"3cVem03cLb\" data-gp-dnd=\"\" data-gp-style=\"\" data:image=\"\" style=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-3e6FTAIs9i\">\r\n                        <div class=\"gp-component-id-sIveWZozs6\" data-gp-grid-col=\"\">\r\n                            <div class=\"gp-component gp-component-id-UYNHzjc9XL\" data-gp-component=\"container\" data-gp-component-id=\"UYNHzjc9XL\" data-gp-container=\"\" data-gp-style=\"\" style=\"\" tabindex=\"0\"> <img alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZWmM9oaZJ\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZWmM9oaZJ\" data-gp-dnd=\"\" data-gp-style=\"\" src=\"https://i.imgur.com/kYl5XdX.png\" style=\"width: 1140px; height: 98px;\" /> </div>\r\n                        </div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </section>\r\n    </div>\r\n    <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n</div>\r\n<style data-gp-styled-element=\"true\" type=\"text/css\"></style>\r\n<style class=\"style-c8LWFknvJ-overlay\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">\r\n    .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n      z-index: 0 !important;\r\n      background-color: rgba(3, 58, 124, 0.8);\r\n      position: absolute;\r\n      bottom: 0px;\r\n      top: 0px;\r\n      left: 0px;\r\n      right: 0px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n        background-color: rgb(255, 255, 255);\r\n        z-index: 0 !important;\r\n        position: absolute;\r\n        bottom: 0px;\r\n        top: 0px;\r\n        left: 0px;\r\n        right: 0px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n        background-color: rgb(255, 255, 255);\r\n        z-index: 0 !important;\r\n        position: absolute;\r\n        bottom: 0px;\r\n        top: 0px;\r\n        left: 0px;\r\n        right: 0px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n        background-color: rgb(255, 255, 255);\r\n        z-index: 0 !important;\r\n        position: absolute;\r\n        bottom: 0px;\r\n        top: 0px;\r\n        left: 0px;\r\n        right: 0px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n        background-color: rgb(255, 255, 255);\r\n        z-index: 0 !important;\r\n        position: absolute;\r\n        bottom: 0px;\r\n        top: 0px;\r\n        left: 0px;\r\n        right: 0px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-c8LWFknvJ.gp-component [data-section-overlay] {\r\n        background-color: rgb(255, 255, 255);\r\n        z-index: 0 !important;\r\n        position: absolute;\r\n        bottom: 0px;\r\n        top: 0px;\r\n        left: 0px;\r\n        right: 0px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-JVCXXwD5S\" data-gp-styled-element=\"JVCXXwD5S\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n        font-size: 51px !important;\r\n        color: rgba(11, 91, 42, 1);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        margin-top: 20px;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n        font-size: 51px !important;\r\n        color: rgba(11, 91, 42, 1);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        margin-top: 20px;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n        font-size: 51px !important;\r\n        color: rgba(11, 91, 42, 1);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        margin-top: 20px;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n        font-size: 51px !important;\r\n        color: rgba(11, 91, 42, 1);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        margin-top: 20px;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-JVCXXwD5S {\r\n        font-size: 51px !important;\r\n        color: rgba(11, 91, 42, 1);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        margin-top: 20px;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-iCmSs08Sld\" data-gp-styled-element=\"iCmSs08Sld\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-iCmSs08Sld {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-nfirRvWGK\" data-gp-styled-element=\"nfirRvWGK\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-nfirRvWGK[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-nfirRvWGK[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-nfirRvWGK[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-nfirRvWGK[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-nfirRvWGK[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-xTZi_evMGC\" data-gp-styled-element=\"xTZi_evMGC\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-xTZi_evMGC {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-OXhEVsTS8\" data-gp-styled-element=\"OXhEVsTS8\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-OXhEVsTS8[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-yFOAl8Qsa\" data-gp-styled-element=\"yFOAl8Qsa\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n        font-size: 1px !important;\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n        font-size: 1px !important;\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n        font-size: 1px !important;\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n        font-size: 1px !important;\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-yFOAl8Qsa[data-gp-component] {\r\n        font-size: 1px !important;\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-Um0LTpe26S\" data-gp-styled-element=\"Um0LTpe26S\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-Um0LTpe26S {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-VTDcqjeVAF\" data-gp-styled-element=\"VTDcqjeVAF\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-VTDcqjeVAF[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-vgUGcPIBm4\" data-gp-styled-element=\"vgUGcPIBm4\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-vgUGcPIBm4 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-whhxswXXk\" data-gp-styled-element=\"whhxswXXk\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-whhxswXXk[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-whhxswXXk[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-whhxswXXk[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-whhxswXXk[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-whhxswXXk[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-2OYjNExA76\" data-gp-styled-element=\"2OYjNExA76\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-2OYjNExA76 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-QrE0OFzoJi\" data-gp-styled-element=\"QrE0OFzoJi\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-QrE0OFzoJi[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-DNyAzqs9H7\" data-gp-styled-element=\"DNyAzqs9H7\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-DNyAzqs9H7 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-RLhagGVVn\" data-gp-styled-element=\"RLhagGVVn\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-RLhagGVVn[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-RLhagGVVn[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-RLhagGVVn[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-RLhagGVVn[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-RLhagGVVn[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-TN1aghq4v9\" data-gp-styled-element=\"TN1aghq4v9\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-TN1aghq4v9 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-U_ZCcozYg\" data-gp-styled-element=\"U_ZCcozYg\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-U_ZCcozYg[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        white-space: nowrap;\r\n        position: relative;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-r63OVBFLUh\" data-gp-styled-element=\"r63OVBFLUh\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-r63OVBFLUh {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-sQtRe6Rwc\" data-gp-styled-element=\"sQtRe6Rwc\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-sQtRe6Rwc[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-vnTODaA9QE\" data-gp-styled-element=\"vnTODaA9QE\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-vnTODaA9QE {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-6iHldzmCz\" data-gp-styled-element=\"6iHldzmCz\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-6iHldzmCz[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-6iHldzmCz[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-6iHldzmCz[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-6iHldzmCz[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-6iHldzmCz[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-4NP6JjIe75\" data-gp-styled-element=\"4NP6JjIe75\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-4NP6JjIe75 {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-UdwRRkOfo\" data-gp-styled-element=\"UdwRRkOfo\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-UdwRRkOfo[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-z8rI2JoDl4\" data-gp-styled-element=\"z8rI2JoDl4\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-z8rI2JoDl4 {\r\n        font-size: 22px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-Tq8OpWli4\" data-gp-styled-element=\"Tq8OpWli4\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-Tq8OpWli4[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-MZgDPaFPi\" data-gp-styled-element=\"MZgDPaFPi\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-MZgDPaFPi {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-SNMY4ddvF\" data-gp-styled-element=\"SNMY4ddvF\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-SNMY4ddvF[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-3xJsI9Ixq\" data-gp-styled-element=\"3xJsI9Ixq\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-3xJsI9Ixq {\r\n        font-size: 22px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-6sNwx3y0a\" data-gp-styled-element=\"6sNwx3y0a\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-6sNwx3y0a[data-gp-component] {\r\n        color: rgb(32, 45, 60);\r\n        margin-bottom: 12px;\r\n        padding-right: 16px;\r\n        padding-top: 8px;\r\n        padding-bottom: 8px;\r\n        position: relative;\r\n        white-space: nowrap;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-pIJ3rEiST\" data-gp-styled-element=\"pIJ3rEiST\" type=\"text/css\">\r\n    .gp-component-id-pIJ3rEiST {\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n      display: inline-flex;\r\n      align-items: flex-start;\r\n      justify-content: flex-start;\r\n      object-fit: cover;\r\n      object-position: center center;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-pIJ3rEiST {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: auto;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-pIJ3rEiST {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: auto;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-pIJ3rEiST {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: auto;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-pIJ3rEiST {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: auto;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-pIJ3rEiST {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: auto;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-8luFF1BBg\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-8luFF1BBg[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 108px;\r\n        padding-bottom: 30px;\r\n        min-height: 50px;\r\n        position: relative;\r\n        z-index: auto !important;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-8luFF1BBg[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 108px;\r\n        padding-bottom: 30px;\r\n        min-height: 50px;\r\n        position: relative;\r\n        z-index: auto !important;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-8luFF1BBg[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 108px;\r\n        padding-bottom: 30px;\r\n        min-height: 50px;\r\n        position: relative;\r\n        z-index: auto !important;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-8luFF1BBg[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 108px;\r\n        padding-bottom: 30px;\r\n        min-height: 50px;\r\n        position: relative;\r\n        z-index: auto !important;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-8luFF1BBg[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 108px;\r\n        padding-bottom: 30px;\r\n        min-height: 50px;\r\n        position: relative;\r\n        z-index: auto !important;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-tfH5RN09F\" data-gp-styled-element=\"tfH5RN09F\" type=\"text/css\">\r\n    .gp-component-id-tfH5RN09F {\r\n      width: 100%;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-tfH5RN09F {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-tfH5RN09F {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-tfH5RN09F {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-tfH5RN09F {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-tfH5RN09F {\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-ddNM8oouP\" data-gp-styled-element=\"ddNM8oouP\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-ddNM8oouP[data-gp-component] {\r\n        border-top-left-radius: 5.6px;\r\n        border-top-right-radius: 5.6px;\r\n        border-bottom-left-radius: 5.6px;\r\n        border-bottom-right-radius: 5.6px;\r\n        background-color: rgb(255, 255, 255);\r\n        margin-top: 65px;\r\n        padding-left: 15px;\r\n        padding-right: 15px;\r\n        padding-top: 15px;\r\n        padding-bottom: 15px;\r\n        width: 583px;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-ddNM8oouP[data-gp-component] {\r\n        border-top-left-radius: 5.6px;\r\n        border-top-right-radius: 5.6px;\r\n        border-bottom-left-radius: 5.6px;\r\n        border-bottom-right-radius: 5.6px;\r\n        background-color: rgb(255, 255, 255);\r\n        margin-top: 65px;\r\n        padding-left: 15px;\r\n        padding-right: 15px;\r\n        padding-top: 15px;\r\n        padding-bottom: 15px;\r\n        width: 583px;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-ddNM8oouP[data-gp-component] {\r\n        border-top-left-radius: 5.6px;\r\n        border-top-right-radius: 5.6px;\r\n        border-bottom-left-radius: 5.6px;\r\n        border-bottom-right-radius: 5.6px;\r\n        background-color: rgb(255, 255, 255);\r\n        margin-top: 65px;\r\n        padding-left: 15px;\r\n        padding-right: 15px;\r\n        padding-top: 15px;\r\n        padding-bottom: 15px;\r\n        width: 583px;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-ddNM8oouP[data-gp-component] {\r\n        border-top-left-radius: 5.6px;\r\n        border-top-right-radius: 5.6px;\r\n        border-bottom-left-radius: 5.6px;\r\n        border-bottom-right-radius: 5.6px;\r\n        background-color: rgb(255, 255, 255);\r\n        margin-top: 65px;\r\n        padding-left: 15px;\r\n        padding-right: 15px;\r\n        padding-top: 15px;\r\n        padding-bottom: 15px;\r\n        width: 583px;\r\n        position: relative;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-ddNM8oouP[data-gp-component] {\r\n        border-top-left-radius: 5.6px;\r\n        border-top-right-radius: 5.6px;\r\n        border-bottom-left-radius: 5.6px;\r\n        border-bottom-right-radius: 5.6px;\r\n        background-color: rgb(255, 255, 255);\r\n        margin-top: 65px;\r\n        padding-left: 15px;\r\n        padding-right: 15px;\r\n        padding-top: 15px;\r\n        padding-bottom: 15px;\r\n        width: 583px;\r\n        position: relative;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-cwb1P7HsOg\" data-gp-styled-element=\"cwb1P7HsOg\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n        font-size: 35px;\r\n        color: rgb(255, 255, 255);\r\n        text-align: center;\r\n        line-height: 1.25;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n        font-size: 35px;\r\n        color: rgb(255, 255, 255);\r\n        text-align: center;\r\n        line-height: 1.25;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n        font-size: 35px;\r\n        color: rgb(255, 255, 255);\r\n        text-align: center;\r\n        line-height: 1.25;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n        font-size: 35px;\r\n        color: rgb(255, 255, 255);\r\n        text-align: center;\r\n        line-height: 1.25;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-cwb1P7HsOg {\r\n        font-size: 35px;\r\n        color: rgb(255, 255, 255);\r\n        text-align: center;\r\n        line-height: 1.25;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-8gR603Xpf\" data-gp-styled-element=\"8gR603Xpf\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-8gR603Xpf[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-8gR603Xpf[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-8gR603Xpf[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-8gR603Xpf[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-8gR603Xpf[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-42geRpfrF\" data-gp-styled-element=\"42geRpfrF\" type=\"text/css\">\r\n    .gp-component-id-42geRpfrF {\r\n      margin-right: -8px;\r\n      margin-left: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-42geRpfrF {\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-42geRpfrF {\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-42geRpfrF {\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-42geRpfrF {\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-42geRpfrF {\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-hnfQHp0bMt\" data-gp-styled-element=\"hnfQHp0bMt\" type=\"text/css\">\r\n    .gp-component-id-hnfQHp0bMt {\r\n      padding-right: 8px;\r\n      width: 100%;\r\n      padding-left: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-hnfQHp0bMt {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-hnfQHp0bMt {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-hnfQHp0bMt {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-hnfQHp0bMt {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-hnfQHp0bMt {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-CVNQ02KKdm\" data-gp-styled-element=\"CVNQ02KKdm\" type=\"text/css\">\r\n    .gp-component-id-CVNQ02KKdm {\r\n      width: 100%;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-CVNQ02KKdm {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-CVNQ02KKdm {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-CVNQ02KKdm {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-CVNQ02KKdm {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-CVNQ02KKdm {\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-MDaop1dyw\" data-gp-styled-element=\"MDaop1dyw\" type=\"text/css\">\r\n    .gp-component-id-MDaop1dyw {\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n      display: inline-flex;\r\n      align-items: flex-start;\r\n      justify-content: flex-start;\r\n      object-fit: cover;\r\n      object-position: center center;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-MDaop1dyw {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: 280px;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n        width: 1124px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-MDaop1dyw {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: 280px;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-MDaop1dyw {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: 280px;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-MDaop1dyw {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: 280px;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-MDaop1dyw {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: 280px;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n        width: 1124px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-zzAv4E_rRw\" data-gp-styled-element=\"zzAv4E_rRw\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n        font-size: 35px;\r\n        color: rgb(4, 81, 174);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 20px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n        font-size: 35px;\r\n        color: rgb(4, 81, 174);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 20px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n        font-size: 35px;\r\n        color: rgb(4, 81, 174);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 20px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n        font-size: 35px;\r\n        color: rgb(4, 81, 174);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 20px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-zzAv4E_rRw {\r\n        font-size: 35px;\r\n        color: rgb(4, 81, 174);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 20px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 15px;\r\n        padding-bottom: 15px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 15px;\r\n        padding-bottom: 15px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 15px;\r\n        padding-bottom: 15px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 15px;\r\n        padding-bottom: 15px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-SrqqQY8ReI[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 15px;\r\n        padding-bottom: 15px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-L0xSEIYQH\" data-gp-styled-element=\"L0xSEIYQH\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n        font-size: 35px;\r\n        color: rgb(255, 255, 255);\r\n        text-align: center;\r\n        letter-spacing: -0.05em;\r\n        line-height: 1.25;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 30px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n        font-size: 35px;\r\n        color: rgb(255, 255, 255);\r\n        text-align: center;\r\n        letter-spacing: -0.05em;\r\n        line-height: 1.25;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 30px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n        font-size: 35px;\r\n        color: rgb(255, 255, 255);\r\n        text-align: center;\r\n        letter-spacing: -0.05em;\r\n        line-height: 1.25;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 30px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n        font-size: 35px;\r\n        color: rgb(255, 255, 255);\r\n        text-align: center;\r\n        letter-spacing: -0.05em;\r\n        line-height: 1.25;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 30px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-L0xSEIYQH {\r\n        font-size: 35px;\r\n        color: rgb(255, 255, 255);\r\n        text-align: center;\r\n        letter-spacing: -0.05em;\r\n        line-height: 1.25;\r\n        font-family: Montserrat;\r\n        padding-top: 0px;\r\n        padding-bottom: 30px;\r\n        box-sizing: border-box;\r\n        cursor: text;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-x0qLSFNQm\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 35px;\r\n        padding-bottom: 35px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 35px;\r\n        padding-bottom: 35px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 35px;\r\n        padding-bottom: 35px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 35px;\r\n        padding-bottom: 35px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-x0qLSFNQm[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 35px;\r\n        padding-bottom: 35px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-8gDwjOwtm\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 40px;\r\n        padding-bottom: 40px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 40px;\r\n        padding-bottom: 40px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 40px;\r\n        padding-bottom: 40px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 40px;\r\n        padding-bottom: 40px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-8gDwjOwtm[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 40px;\r\n        padding-bottom: 40px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-8gDwjOwtm-overlay\" data-gp-styled-element=\"8gDwjOwtm\" type=\"text/css\">\r\n    .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n      z-index: 0 !important;\r\n      right: 0px;\r\n      left: 0px;\r\n      top: 0px;\r\n      bottom: 0px;\r\n      position: absolute;\r\n      background-color: rgba(3, 58, 124, 0.8);\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n        background-color: rgba(4, 81, 174, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n        background-color: rgba(4, 81, 174, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n        background-color: rgba(4, 81, 174, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n        background-color: rgba(4, 81, 174, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-8gDwjOwtm.gp-component [data-section-overlay] {\r\n        background-color: rgba(4, 81, 174, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-SrqqQY8ReI-overlay\" data-gp-styled-element=\"SrqqQY8ReI\" type=\"text/css\">\r\n    .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n      z-index: 0 !important;\r\n      right: 0px;\r\n      left: 0px;\r\n      top: 0px;\r\n      bottom: 0px;\r\n      position: absolute;\r\n      background-color: rgba(3, 58, 124, 0.8);\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n        background-color: rgba(4, 81, 174, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n        background-color: rgba(4, 81, 174, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n        background-color: rgba(4, 81, 174, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n        background-color: rgba(4, 81, 174, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-SrqqQY8ReI.gp-component [data-section-overlay] {\r\n        background-color: rgba(4, 81, 174, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-5k68o8eDj\" data-gp-styled-element=\"5k68o8eDj\" type=\"text/css\">\r\n    .gp-component-id-5k68o8eDj {\r\n      padding-right: 8px;\r\n      width: 100%;\r\n      padding-left: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-5k68o8eDj {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-5k68o8eDj {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-5k68o8eDj {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-5k68o8eDj {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-5k68o8eDj {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-W_SJAxOpU\" data-gp-styled-element=\"W_SJAxOpU\" type=\"text/css\">\r\n    .gp-component-id-W_SJAxOpU {\r\n      flex-wrap: wrap;\r\n      margin-right: -8px;\r\n      margin-left: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-W_SJAxOpU {\r\n        flex-wrap: wrap;\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-W_SJAxOpU {\r\n        flex-wrap: wrap;\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-W_SJAxOpU {\r\n        flex-wrap: wrap;\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-W_SJAxOpU {\r\n        flex-wrap: wrap;\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-W_SJAxOpU {\r\n        flex-wrap: wrap;\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n        display: flex;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-YFdlYXI44s\" data-gp-styled-element=\"YFdlYXI44s\" type=\"text/css\">\r\n    .gp-component-id-YFdlYXI44s {\r\n      flex-basis: auto;\r\n      flex-shrink: 0;\r\n      flex-grow: 0;\r\n      padding-right: 8px;\r\n      width: 100%;\r\n      padding-left: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-YFdlYXI44s {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-YFdlYXI44s {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-YFdlYXI44s {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 33.33%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-YFdlYXI44s {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 33.33%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-YFdlYXI44s {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 33.33%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-p28XSz2Dr8\" data-gp-styled-element=\"p28XSz2Dr8\" type=\"text/css\">\r\n    .gp-component-id-p28XSz2Dr8 {\r\n      flex-basis: auto;\r\n      flex-shrink: 0;\r\n      flex-grow: 0;\r\n      padding-right: 8px;\r\n      width: 100%;\r\n      padding-left: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-p28XSz2Dr8 {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-p28XSz2Dr8 {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-p28XSz2Dr8 {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 33.33%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-p28XSz2Dr8 {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 33.33%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-p28XSz2Dr8 {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 33.33%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-2995INqmX1\" data-gp-styled-element=\"2995INqmX1\" type=\"text/css\">\r\n    .gp-component-id-2995INqmX1 {\r\n      flex-basis: auto;\r\n      flex-shrink: 0;\r\n      flex-grow: 0;\r\n      padding-right: 8px;\r\n      width: 100%;\r\n      padding-left: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-2995INqmX1 {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-2995INqmX1 {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-2995INqmX1 {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 33.33%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-2995INqmX1 {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 33.33%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-2995INqmX1 {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        padding-right: 8px;\r\n        width: 33.33%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-c8LWFknvJ\" data-gp-styled-element=\"c8LWFknvJ\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 10px;\r\n        padding-bottom: 10px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 10px;\r\n        padding-bottom: 10px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 10px;\r\n        padding-bottom: 10px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 10px;\r\n        padding-bottom: 10px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-c8LWFknvJ[data-gp-component] {\r\n        background-size: cover;\r\n        padding-top: 10px;\r\n        padding-bottom: 10px;\r\n        z-index: auto !important;\r\n        min-height: 50px;\r\n        position: relative;\r\n        background-position-x: 50%;\r\n        background-position-y: 50%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-ZWmM9oaZJ\" data-gp-styled-element=\"ZWmM9oaZJ\" type=\"text/css\">\r\n    .gp-component-id-ZWmM9oaZJ {\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n      display: inline-flex;\r\n      align-items: flex-start;\r\n      justify-content: flex-start;\r\n      object-fit: cover;\r\n      object-position: center center;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-ZWmM9oaZJ {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: auto;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-ZWmM9oaZJ {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: auto;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-ZWmM9oaZJ {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: auto;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-ZWmM9oaZJ {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: auto;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-ZWmM9oaZJ {\r\n        border-left-style: solid;\r\n        border-bottom-style: solid;\r\n        border-right-style: solid;\r\n        border-top-style: solid;\r\n        height: auto;\r\n        max-width: 100%;\r\n        display: inline-flex;\r\n        align-items: flex-start;\r\n        justify-content: flex-start;\r\n        object-fit: cover;\r\n        object-position: center center;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-hELXlwHigF\" data-gp-styled-element=\"hELXlwHigF\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-hELXlwHigF[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        height: 280px;\r\n        flex-direction: row;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-hELXlwHigF[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        height: 280px;\r\n        max-width: 640px;\r\n        flex-direction: row;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-hELXlwHigF[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        height: 280px;\r\n        max-width: 768px;\r\n        flex-direction: row;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-hELXlwHigF[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        height: 280px;\r\n        max-width: 992px;\r\n        flex-direction: row;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-hELXlwHigF[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        height: 280px;\r\n        max-width: 1200px;\r\n        flex-direction: row;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-UYNHzjc9XL\" data-gp-styled-element=\"UYNHzjc9XL\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-UYNHzjc9XL[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-qwXOCMdvJ\" data-gp-styled-element=\"qwXOCMdvJ\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-qwXOCMdvJ {\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-iawQbhj_l0\" data-gp-styled-element=\"iawQbhj_l0\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n        font-size: 22px;\r\n        color: rgb(4, 81, 174);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        padding-top: 20px;\r\n        padding-bottom: 29px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n        font-size: 22px;\r\n        color: rgb(4, 81, 174);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        padding-top: 20px;\r\n        padding-bottom: 29px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n        font-size: 22px;\r\n        color: rgb(4, 81, 174);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        padding-top: 20px;\r\n        padding-bottom: 29px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n        font-size: 22px;\r\n        color: rgb(4, 81, 174);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        padding-top: 20px;\r\n        padding-bottom: 29px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-iawQbhj_l0 {\r\n        font-size: 22px;\r\n        color: rgb(4, 81, 174);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        padding-top: 20px;\r\n        padding-bottom: 29px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-TlJxcKiu8\" data-gp-styled-element=\"TlJxcKiu8\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n        padding-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n        padding-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n        padding-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n        padding-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-TlJxcKiu8[data-gp-component] {\r\n        padding-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-EcDQd6Qsd\" data-gp-styled-element=\"EcDQd6Qsd\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 1184px;\r\n        height: 109px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        height: 109px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        height: 109px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        height: 109px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-EcDQd6Qsd[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 1184px;\r\n        height: 109px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-W8HPx4fW6\" data-gp-styled-element=\"W8HPx4fW6\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n        width: 453px;\r\n        justify-content: flex-start;\r\n        align-items: flex-start;\r\n        display: inline-flex;\r\n        object-position: center center;\r\n        object-fit: cover;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n        width: 453px;\r\n        justify-content: flex-start;\r\n        align-items: flex-start;\r\n        display: inline-flex;\r\n        object-position: center center;\r\n        object-fit: cover;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n        width: 453px;\r\n        justify-content: flex-start;\r\n        align-items: flex-start;\r\n        display: inline-flex;\r\n        object-position: center center;\r\n        object-fit: cover;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n        width: 453px;\r\n        justify-content: flex-start;\r\n        align-items: flex-start;\r\n        display: inline-flex;\r\n        object-position: center center;\r\n        object-fit: cover;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-W8HPx4fW6[data-gp-component] {\r\n        width: 453px;\r\n        justify-content: flex-start;\r\n        align-items: flex-start;\r\n        display: inline-flex;\r\n        object-position: center center;\r\n        object-fit: cover;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-R0ou7_aFZk\" data-gp-styled-element=\"R0ou7_aFZk\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n        font-size: 35px;\r\n        color: rgb(228, 63, 112);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        margin-top: 20px;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n        font-size: 35px;\r\n        color: rgb(228, 63, 112);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        margin-top: 20px;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n        font-size: 35px;\r\n        color: rgb(228, 63, 112);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        margin-top: 20px;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n        font-size: 35px;\r\n        color: rgb(228, 63, 112);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        margin-top: 20px;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      [data-gp-text] .gp-component-id-R0ou7_aFZk {\r\n        font-size: 35px;\r\n        color: rgb(228, 63, 112);\r\n        text-align: center;\r\n        font-family: Montserrat;\r\n        margin-top: 20px;\r\n        padding-top: 0px;\r\n        padding-bottom: 0px;\r\n        cursor: text;\r\n        box-sizing: border-box;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-f5tbUrKVVs\" data-gp-styled-element=\"f5tbUrKVVs\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n        margin-top: 15px;\r\n        margin-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n        margin-top: 15px;\r\n        margin-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n        margin-top: 15px;\r\n        margin-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n        margin-top: 15px;\r\n        margin-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-f5tbUrKVVs[data-gp-component] {\r\n        margin-top: 15px;\r\n        margin-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-mkGntwDqul\" data-gp-styled-element=\"mkGntwDqul\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-mkGntwDqul[data-gp-component] {\r\n        padding-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-mkGntwDqul[data-gp-component] {\r\n        padding-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-mkGntwDqul[data-gp-component] {\r\n        padding-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-mkGntwDqul[data-gp-component] {\r\n        padding-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-mkGntwDqul[data-gp-component] {\r\n        padding-bottom: 15px;\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-99gBmU4Xl\" data-gp-styled-element=\"99gBmU4Xl\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        padding-bottom: 29px;\r\n        width: 78%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        padding-bottom: 29px;\r\n        width: 78%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        padding-bottom: 29px;\r\n        width: 78%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        padding-bottom: 29px;\r\n        width: 78%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-99gBmU4Xl[data-gp-component] {\r\n        width: 78%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-sIveWZozs6\" data-gp-styled-element=\"sIveWZozs6\" type=\"text/css\">\r\n    .gp-component-id-sIveWZozs6 {\r\n      padding-left: 8px;\r\n      width: 100%;\r\n      padding-right: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-sIveWZozs6 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-sIveWZozs6 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-sIveWZozs6 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-sIveWZozs6 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-sIveWZozs6 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-3e6FTAIs9i\" data-gp-styled-element=\"3e6FTAIs9i\" type=\"text/css\">\r\n    .gp-component-id-3e6FTAIs9i {\r\n      margin-left: -8px;\r\n      margin-right: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-3e6FTAIs9i {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-3e6FTAIs9i {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-3e6FTAIs9i {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-3e6FTAIs9i {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-3e6FTAIs9i {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-3cVem03cLb\" data-gp-styled-element=\"3cVem03cLb\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-3cVem03cLb[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-3cVem03cLb[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-3cVem03cLb[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-3cVem03cLb[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-3cVem03cLb[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-luC52k9Dop\" data-gp-styled-element=\"luC52k9Dop\" type=\"text/css\">\r\n    .gp-component-id-luC52k9Dop {\r\n      padding-right: 8px;\r\n      padding-left: 8px;\r\n      width: 100%;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-luC52k9Dop {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-luC52k9Dop {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-luC52k9Dop {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-luC52k9Dop {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-luC52k9Dop {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-8GTfPE0lkh\" data-gp-styled-element=\"8GTfPE0lkh\" type=\"text/css\">\r\n    .gp-component-id-8GTfPE0lkh {\r\n      margin-right: -8px;\r\n      margin-left: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-8GTfPE0lkh {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-8GTfPE0lkh {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-8GTfPE0lkh {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-8GTfPE0lkh {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-8GTfPE0lkh {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-D1awR1nPvd\" data-gp-styled-element=\"D1awR1nPvd\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-D1awR1nPvd[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-COSrbaDmsh\" data-gp-styled-element=\"COSrbaDmsh\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 640px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 768px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 992px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-COSrbaDmsh[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 1200px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-J_z76_RZn4\" data-gp-styled-element=\"J_z76_RZn4\" type=\"text/css\">\r\n    .gp-component-id-J_z76_RZn4 {\r\n      padding-right: 8px;\r\n      width: 100%;\r\n      padding-left: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-J_z76_RZn4 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-J_z76_RZn4 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-J_z76_RZn4 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-J_z76_RZn4 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-J_z76_RZn4 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-ecZSsAHodS\" data-gp-styled-element=\"ecZSsAHodS\" type=\"text/css\">\r\n    .gp-component-id-ecZSsAHodS {\r\n      margin-right: -8px;\r\n      margin-left: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-ecZSsAHodS {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-ecZSsAHodS {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-ecZSsAHodS {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-ecZSsAHodS {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-ecZSsAHodS {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-OGWki8oIxK\" data-gp-styled-element=\"OGWki8oIxK\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-OGWki8oIxK[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-qolWUwBxkP\" data-gp-styled-element=\"qolWUwBxkP\" type=\"text/css\">\r\n    .gp-component-id-qolWUwBxkP {\r\n      padding-left: 8px;\r\n      width: 100%;\r\n      padding-right: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-qolWUwBxkP {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-qolWUwBxkP {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-qolWUwBxkP {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-qolWUwBxkP {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-qolWUwBxkP {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-0QjPnswPgW\" data-gp-styled-element=\"0QjPnswPgW\" type=\"text/css\">\r\n    .gp-component-id-0QjPnswPgW {\r\n      margin-left: -8px;\r\n      margin-right: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-0QjPnswPgW {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-0QjPnswPgW {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-0QjPnswPgW {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-0QjPnswPgW {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-0QjPnswPgW {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-g7ZzygdnDK\" data-gp-styled-element=\"g7ZzygdnDK\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-g7ZzygdnDK[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-TKi99xtCwc\" data-gp-styled-element=\"TKi99xtCwc\" type=\"text/css\">\r\n    .gp-component-id-TKi99xtCwc {\r\n      padding-right: 8px;\r\n      padding-left: 8px;\r\n      width: 100%;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-TKi99xtCwc {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-TKi99xtCwc {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-TKi99xtCwc {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-TKi99xtCwc {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-TKi99xtCwc {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-T0x5gytyNi\" data-gp-styled-element=\"T0x5gytyNi\" type=\"text/css\">\r\n    .gp-component-id-T0x5gytyNi {\r\n      margin-right: -8px;\r\n      margin-left: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-T0x5gytyNi {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-T0x5gytyNi {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-T0x5gytyNi {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-T0x5gytyNi {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-T0x5gytyNi {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-gKveClTNhg\" data-gp-styled-element=\"gKveClTNhg\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-gKveClTNhg[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-gKveClTNhg[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-gKveClTNhg[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-gKveClTNhg[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-gKveClTNhg[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-uOTetmF0P\" data-gp-styled-element=\"uOTetmF0P\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-uOTetmF0P[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-uOTetmF0P[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 640px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-uOTetmF0P[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 768px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-uOTetmF0P[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 992px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-uOTetmF0P[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 1200px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-E0JYRwodpQ\" data-gp-styled-element=\"E0JYRwodpQ\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-E0JYRwodpQ[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-fEQf_5kqEO\" data-gp-styled-element=\"fEQf_5kqEO\" type=\"text/css\">\r\n    .gp-component-id-fEQf_5kqEO {\r\n      padding-left: 8px;\r\n      width: 100%;\r\n      padding-right: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-fEQf_5kqEO {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-fEQf_5kqEO {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-fEQf_5kqEO {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-fEQf_5kqEO {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-fEQf_5kqEO {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-u3y76PjGMq\" data-gp-styled-element=\"u3y76PjGMq\" type=\"text/css\">\r\n    .gp-component-id-u3y76PjGMq {\r\n      margin-left: -8px;\r\n      margin-right: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-u3y76PjGMq {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-u3y76PjGMq {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-u3y76PjGMq {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-u3y76PjGMq {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-u3y76PjGMq {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-YMftO9Mgj\" data-gp-styled-element=\"YMftO9Mgj\" type=\"text/css\">\r\n    .gp-component-id-YMftO9Mgj {\r\n      flex-wrap: wrap;\r\n      margin-right: -16px;\r\n      margin-left: -16px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-YMftO9Mgj {\r\n        flex-wrap: wrap;\r\n        margin-right: -16px;\r\n        margin-left: -16px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-YMftO9Mgj {\r\n        flex-wrap: wrap;\r\n        margin-right: -16px;\r\n        margin-left: -16px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-YMftO9Mgj {\r\n        flex-wrap: wrap;\r\n        margin-right: -16px;\r\n        margin-left: -16px;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-YMftO9Mgj {\r\n        flex-wrap: wrap;\r\n        margin-right: -16px;\r\n        margin-left: -16px;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-YMftO9Mgj {\r\n        flex-wrap: wrap;\r\n        margin-right: -16px;\r\n        margin-left: -16px;\r\n        display: flex;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-2YoPqR513B\" data-gp-styled-element=\"2YoPqR513B\" type=\"text/css\">\r\n    .gp-component-id-2YoPqR513B {\r\n      flex-basis: auto;\r\n      flex-shrink: 0;\r\n      flex-grow: 0;\r\n      width: 100%;\r\n      padding-left: 16px;\r\n      padding-right: 16px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-2YoPqR513B {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        width: 100%;\r\n        padding-left: 16px;\r\n        padding-right: 16px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-2YoPqR513B {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        width: 100%;\r\n        padding-left: 16px;\r\n        padding-right: 16px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-2YoPqR513B {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        width: 50%;\r\n        padding-left: 16px;\r\n        padding-right: 16px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-2YoPqR513B {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        width: 50%;\r\n        padding-left: 16px;\r\n        padding-right: 16px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-2YoPqR513B {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        width: 50%;\r\n        padding-left: 16px;\r\n        padding-right: 16px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-uewobCXWOm\" data-gp-styled-element=\"uewobCXWOm\" type=\"text/css\">\r\n    .gp-component-id-uewobCXWOm {\r\n      flex-basis: auto;\r\n      flex-shrink: 0;\r\n      flex-grow: 0;\r\n      width: 100%;\r\n      padding-left: 16px;\r\n      padding-right: 16px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-uewobCXWOm {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        width: 100%;\r\n        padding-left: 16px;\r\n        padding-right: 16px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-uewobCXWOm {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        width: 100%;\r\n        padding-left: 16px;\r\n        padding-right: 16px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-uewobCXWOm {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        width: 50%;\r\n        padding-left: 16px;\r\n        padding-right: 16px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-uewobCXWOm {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        width: 50%;\r\n        padding-left: 16px;\r\n        padding-right: 16px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-uewobCXWOm {\r\n        flex-basis: auto;\r\n        flex-shrink: 0;\r\n        flex-grow: 0;\r\n        width: 50%;\r\n        padding-left: 16px;\r\n        padding-right: 16px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-HhR4We9Pj8\" data-gp-styled-element=\"HhR4We9Pj8\" type=\"text/css\">\r\n    .gp-component-id-HhR4We9Pj8 {\r\n      padding-left: 8px;\r\n      width: 100%;\r\n      padding-right: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-HhR4We9Pj8 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-HhR4We9Pj8 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-HhR4We9Pj8 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-HhR4We9Pj8 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-HhR4We9Pj8 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-LFjxRV27Z_\" data-gp-styled-element=\"LFjxRV27Z_\" type=\"text/css\">\r\n    .gp-component-id-LFjxRV27Z_ {\r\n      margin-left: -8px;\r\n      margin-right: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-LFjxRV27Z_ {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-LFjxRV27Z_ {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-LFjxRV27Z_ {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-LFjxRV27Z_ {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-LFjxRV27Z_ {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-0Bkx240IHc\" data-gp-styled-element=\"0Bkx240IHc\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-0Bkx240IHc[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-90kZvTqr0k\" data-gp-styled-element=\"90kZvTqr0k\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-90kZvTqr0k[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-GI8NsP9vMT\" data-gp-styled-element=\"GI8NsP9vMT\" type=\"text/css\">\r\n    .gp-component-id-GI8NsP9vMT {\r\n      padding-right: 8px;\r\n      width: 100%;\r\n      padding-left: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-GI8NsP9vMT {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-GI8NsP9vMT {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-GI8NsP9vMT {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-GI8NsP9vMT {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-GI8NsP9vMT {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-0k4k3iL1Ns\" data-gp-styled-element=\"0k4k3iL1Ns\" type=\"text/css\">\r\n    .gp-component-id-0k4k3iL1Ns {\r\n      margin-right: -8px;\r\n      margin-left: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-0k4k3iL1Ns {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-0k4k3iL1Ns {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-0k4k3iL1Ns {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-0k4k3iL1Ns {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-0k4k3iL1Ns {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-tQSxU1bGH4\" data-gp-styled-element=\"tQSxU1bGH4\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-tQSxU1bGH4[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-nGze91qLM9\" data-gp-styled-element=\"nGze91qLM9\" type=\"text/css\">\r\n    .gp-component-id-nGze91qLM9 {\r\n      width: 100%;\r\n      padding-left: 8px;\r\n      padding-right: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-nGze91qLM9 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-nGze91qLM9 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-nGze91qLM9 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-nGze91qLM9 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-nGze91qLM9 {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-YUf5Vd3Zpj\" data-gp-styled-element=\"YUf5Vd3Zpj\" type=\"text/css\">\r\n    .gp-component-id-YUf5Vd3Zpj {\r\n      margin-left: -8px;\r\n      margin-right: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-YUf5Vd3Zpj {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-YUf5Vd3Zpj {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-YUf5Vd3Zpj {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-YUf5Vd3Zpj {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-YUf5Vd3Zpj {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-lY2ocfQuNI\" data-gp-styled-element=\"lY2ocfQuNI\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-lY2ocfQuNI[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-FQ8I7JjOB6\" data-gp-styled-element=\"FQ8I7JjOB6\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 640px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 768px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 992px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-FQ8I7JjOB6[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 1200px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-8luFF1BBg-overlay\" data-gp-styled-element=\"8luFF1BBg\" type=\"text/css\">\r\n    .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n      z-index: 0 !important;\r\n      right: 0px;\r\n      left: 0px;\r\n      top: 0px;\r\n      bottom: 0px;\r\n      position: absolute;\r\n      background-color: rgba(3, 58, 124, 0.8);\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n        background-color: rgb(255, 255, 255);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n        background-color: rgb(255, 255, 255);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n        background-color: rgb(255, 255, 255);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n        background-color: rgb(255, 255, 255);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-8luFF1BBg.gp-component [data-section-overlay] {\r\n        background-color: rgb(255, 255, 255);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-x0qLSFNQm-overlay\" data-gp-styled-element=\"x0qLSFNQm\" type=\"text/css\">\r\n    .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n      z-index: 0 !important;\r\n      right: 0px;\r\n      left: 0px;\r\n      top: 0px;\r\n      bottom: 0px;\r\n      position: absolute;\r\n      background-color: rgba(3, 58, 124, 0.8);\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n        background-color: rgba(15, 20, 81, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n        background-color: rgba(15, 20, 81, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n        background-color: rgba(15, 20, 81, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n        background-color: rgba(15, 20, 81, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-x0qLSFNQm.gp-component [data-section-overlay] {\r\n        background-color: rgba(15, 20, 81, 1);\r\n        z-index: 0 !important;\r\n        right: 0px;\r\n        left: 0px;\r\n        top: 0px;\r\n        bottom: 0px;\r\n        position: absolute;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-VgJGWFybSh\" data-gp-styled-element=\"VgJGWFybSh\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-VgJGWFybSh[data-gp-component] {\r\n        width: 100%;\r\n        justify-content: center;\r\n        display: flex;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-EpR3FYP8KP\" data-gp-styled-element=\"EpR3FYP8KP\" type=\"text/css\">\r\n    .gp-component-id-EpR3FYP8KP {\r\n      padding-left: 8px;\r\n      width: 100%;\r\n      padding-right: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-EpR3FYP8KP {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-EpR3FYP8KP {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-EpR3FYP8KP {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-EpR3FYP8KP {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-EpR3FYP8KP {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-lX20hlPRT\" data-gp-styled-element=\"lX20hlPRT\" type=\"text/css\">\r\n    .gp-component-id-lX20hlPRT {\r\n      margin-left: -8px;\r\n      margin-right: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-lX20hlPRT {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-lX20hlPRT {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-lX20hlPRT {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-lX20hlPRT {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-lX20hlPRT {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-jQW6E608vc\" data-gp-styled-element=\"jQW6E608vc\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-jQW6E608vc[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-jQW6E608vc[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-jQW6E608vc[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-jQW6E608vc[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-jQW6E608vc[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-KMb5y_c30p\" data-gp-styled-element=\"KMb5y_c30p\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-KMb5y_c30p[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-PtImyMcr0c\" data-gp-styled-element=\"PtImyMcr0c\" type=\"text/css\">\r\n    .gp-component-id-PtImyMcr0c {\r\n      padding-right: 8px;\r\n      width: 100%;\r\n      padding-left: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-PtImyMcr0c {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-PtImyMcr0c {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-PtImyMcr0c {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-PtImyMcr0c {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-PtImyMcr0c {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-ijpsmOUYOx\" data-gp-styled-element=\"ijpsmOUYOx\" type=\"text/css\">\r\n    .gp-component-id-ijpsmOUYOx {\r\n      margin-right: -8px;\r\n      margin-left: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-ijpsmOUYOx {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-ijpsmOUYOx {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-ijpsmOUYOx {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-ijpsmOUYOx {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-ijpsmOUYOx {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-eNgUY5HN1A\" data-gp-styled-element=\"eNgUY5HN1A\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-eNgUY5HN1A[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-hP3n278NIX\" data-gp-styled-element=\"hP3n278NIX\" type=\"text/css\">\r\n    .gp-component-id-hP3n278NIX {\r\n      width: 100%;\r\n      padding-left: 8px;\r\n      padding-right: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-hP3n278NIX {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-hP3n278NIX {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-hP3n278NIX {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-hP3n278NIX {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-hP3n278NIX {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-_BWma0JGM\" data-gp-styled-element=\"_BWma0JGM\" type=\"text/css\">\r\n    .gp-component-id-_BWma0JGM {\r\n      margin-left: -8px;\r\n      margin-right: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-_BWma0JGM {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-_BWma0JGM {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-_BWma0JGM {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-_BWma0JGM {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-_BWma0JGM {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-fvIHB16pmC\" data-gp-styled-element=\"fvIHB16pmC\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-fvIHB16pmC[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-5zLeBtD88t\" data-gp-styled-element=\"5zLeBtD88t\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 640px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 768px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 992px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-5zLeBtD88t[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 1200px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-0wgdKXhPc\" data-gp-styled-element=\"0wgdKXhPc\" type=\"text/css\">\r\n    .gp-component-id-0wgdKXhPc {\r\n      padding-right: 8px;\r\n      width: 100%;\r\n      padding-left: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-0wgdKXhPc {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-0wgdKXhPc {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-0wgdKXhPc {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-0wgdKXhPc {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-0wgdKXhPc {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-f209ypL8V\" data-gp-styled-element=\"f209ypL8V\" type=\"text/css\">\r\n    .gp-component-id-f209ypL8V {\r\n      margin-right: -8px;\r\n      margin-left: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-f209ypL8V {\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-f209ypL8V {\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-f209ypL8V {\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-f209ypL8V {\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-f209ypL8V {\r\n        margin-right: -8px;\r\n        margin-left: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-0f09MduSfs\" data-gp-styled-element=\"0f09MduSfs\" type=\"text/css\">\r\n    .gp-component-id-0f09MduSfs {\r\n      padding-right: 8px;\r\n      width: 100%;\r\n      padding-left: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-0f09MduSfs {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-0f09MduSfs {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-0f09MduSfs {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-0f09MduSfs {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-0f09MduSfs {\r\n        padding-right: 8px;\r\n        width: 100%;\r\n        padding-left: 8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-b823Irvqy3\" data-gp-styled-element=\"b823Irvqy3\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-b823Irvqy3[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-b823Irvqy3[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-b823Irvqy3[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-b823Irvqy3[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-b823Irvqy3[data-gp-component] {\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-0GX9ShP7cU\" data-gp-styled-element=\"0GX9ShP7cU\" type=\"text/css\">\r\n    .gp-component-id-0GX9ShP7cU {\r\n      padding-left: 8px;\r\n      width: 100%;\r\n      padding-right: 8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-0GX9ShP7cU {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-0GX9ShP7cU {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-0GX9ShP7cU {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-0GX9ShP7cU {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-0GX9ShP7cU {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-0yg5Yj9zwn\" data-gp-styled-element=\"0yg5Yj9zwn\" type=\"text/css\">\r\n    .gp-component-id-0yg5Yj9zwn {\r\n      margin-left: -8px;\r\n      margin-right: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-0yg5Yj9zwn {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-0yg5Yj9zwn {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-0yg5Yj9zwn {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-0yg5Yj9zwn {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-0yg5Yj9zwn {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-fSP6aMQWwu\" data-gp-styled-element=\"fSP6aMQWwu\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-fSP6aMQWwu[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-jj4nhdDw4a\" data-gp-styled-element=\"jj4nhdDw4a\" type=\"text/css\">\r\n    .gp-component-id-jj4nhdDw4a {\r\n      padding-right: 8px;\r\n      padding-left: 8px;\r\n      width: 100%;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-jj4nhdDw4a {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-jj4nhdDw4a {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-jj4nhdDw4a {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-jj4nhdDw4a {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-jj4nhdDw4a {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-pLq0nkrGLt\" data-gp-styled-element=\"pLq0nkrGLt\" type=\"text/css\">\r\n    .gp-component-id-pLq0nkrGLt {\r\n      margin-right: -8px;\r\n      margin-left: -8px;\r\n    }\r\n    \r\n    @media (max-width: 639px) {\r\n      .gp-component-id-pLq0nkrGLt {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-pLq0nkrGLt {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-pLq0nkrGLt {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-pLq0nkrGLt {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-pLq0nkrGLt {\r\n        margin-left: -8px;\r\n        margin-right: -8px;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-_jMvnockmU\" data-gp-styled-element=\"_jMvnockmU\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-_jMvnockmU[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-_jMvnockmU[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-_jMvnockmU[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-_jMvnockmU[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-_jMvnockmU[data-gp-component] {\r\n        padding-left: 8px;\r\n        padding-right: 8px;\r\n        width: 100%;\r\n      }\r\n    }\r\n</style>\r\n<style class=\"style-0MHvUy5W_c\" data-gp-styled-element=\"0MHvUy5W_c\" type=\"text/css\">\r\n    @media (max-width: 639px) {\r\n      .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 767px) and (min-width: 640px) {\r\n      .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 640px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 991px) and (min-width: 768px) {\r\n      .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 768px;\r\n      }\r\n    }\r\n    \r\n    @media (max-width: 1199px) and (min-width: 992px) {\r\n      .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 992px;\r\n      }\r\n    }\r\n    \r\n    @media (min-width: 1200px) {\r\n      .gp-component-id-0MHvUy5W_c[data-gp-component] {\r\n        margin-left: auto;\r\n        margin-right: auto;\r\n        width: 100%;\r\n        max-width: 1200px;\r\n      }\r\n    }\r\n</style>');
/*!40000 ALTER TABLE `oto_rtoads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_sales`
--

DROP TABLE IF EXISTS `oto_sales`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_sales` (
  `salesid` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `affid` int(11) unsigned NOT NULL DEFAULT 0,
  `saledate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `itemid` varchar(20) DEFAULT NULL,
  `itemname` varchar(50) DEFAULT NULL,
  `itemamount` float(6,2) DEFAULT NULL,
  `status` char(1) DEFAULT NULL,
  `commission` float(6,2) DEFAULT NULL,
  `txn_id` varchar(100) NOT NULL DEFAULT '',
  `salestier` int(11) NOT NULL DEFAULT 1,
  `purchaserid` int(11) DEFAULT 0,
  `prize` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`salesid`),
  KEY `affid` (`affid`),
  KEY `saledate` (`saledate`),
  KEY `prize` (`prize`),
  KEY `commission` (`commission`),
  KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_sales`
--

LOCK TABLES `oto_sales` WRITE;
/*!40000 ALTER TABLE `oto_sales` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_sales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_savedstats`
--

DROP TABLE IF EXISTS `oto_savedstats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_savedstats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `statstype` int(11) NOT NULL DEFAULT 0,
  `statsname` varchar(50) DEFAULT '',
  `startdate` date NOT NULL DEFAULT '0000-00-00',
  `enddate` date NOT NULL DEFAULT '0000-00-00',
  `mtype` int(11) NOT NULL DEFAULT 0,
  `boardtype` int(11) NOT NULL DEFAULT 1,
  `showid` int(11) NOT NULL DEFAULT 1,
  `showfirst` int(11) NOT NULL DEFAULT 1,
  `showlast` int(11) NOT NULL DEFAULT 1,
  `showuser` int(11) NOT NULL DEFAULT 0,
  `topnumber` int(11) NOT NULL DEFAULT 10,
  `tablecolor` varchar(50) DEFAULT 'white',
  `tablecolor2` varchar(50) DEFAULT 'gray',
  `bordercolor` varchar(50) DEFAULT 'black',
  `textcolor` varchar(50) DEFAULT 'black',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_savedstats`
--

LOCK TABLES `oto_savedstats` WRITE;
/*!40000 ALTER TABLE `oto_savedstats` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_savedstats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_savedtemplates`
--

DROP TABLE IF EXISTS `oto_savedtemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_savedtemplates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `timesaved` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL DEFAULT 0,
  `subjecttext` varchar(200) NOT NULL DEFAULT 'No Subject',
  `bodytext` text NOT NULL,
  `linkurl` varchar(200) NOT NULL DEFAULT 'about:blank',
  PRIMARY KEY (`id`),
  KEY `timesaved` (`timesaved`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM AUTO_INCREMENT=240 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_savedtemplates`
--

LOCK TABLES `oto_savedtemplates` WRITE;
/*!40000 ALTER TABLE `oto_savedtemplates` DISABLE KEYS */;
INSERT INTO `oto_savedtemplates` (`id`, `timesaved`, `userid`, `subjecttext`, `bodytext`, `linkurl`) VALUES (1,1653765550,22,'My Marketing School','Claim a free course\r\nProduct creation\r\nSign up\r\nLog in\r\nVisit menu tab bonus\r\nTo claim','Https://mymarketingschool.com'),(2,1653802736,33,'A year From Now','Think about it.\r\n\r\nWhere will you be\r\na year from now?\r\n\r\nWill, you still be struggling\r\nto make online marketing work\r\nbecause you don\'t have your\r\nown product or a website to work with that can earn youÂ \r\n\r\ntons of dollars like up to 10.080 and more no limit.\r\n\r\n...Or will you be enjoying\r\nthe exhilarating feeling of\r\nmaking the Big bucks...\r\n\r\n...selling your products: On a website that you can earn up to and overÂ \r\n\r\n10.080 a month but it will not stop there because also there is no limitÂ \r\n\r\non how much you can earn here at this website?\r\n\r\nRegister now:\r\n\r\nhttps://NPNBuilder.com/195432\r\n\r\nBest regards,\r\n\r\nJohn Clarke Shark, The Doctorkiller deal idea guy.\r\n\r\nsaying are you going to be next? are you? to live the dream life?\r\n\r\nTake it, Get it, Live it, OR KEEP ON DREAMING ALL ABOUT IT?','https://globalnpn.com/lds/go/1/195432/'),(3,1653958439,62,'[Free] Steal My Funnel - Cheatcode Inside','#FIRSTNAME# \r\n\r\nWould you like a funnel that converts?\r\n\r\nGuaranteed to get you signups and sales â€¦?\r\n\r\nWhat about one already including:\r\nâ€“ All sales pages (copywriting/design included)\r\nâ€“ All email followups written (nothing to edit!)\r\nâ€“ Everything hosted and full of your links.. in just a few seconds\r\nâ€“ 4 step training series showing you everything you need to make it work for you\r\n\r\nSeriously this system is wild and best of all, it WORKSâ€¦!\r\n\r\nGet your hands on it for free today\r\n=> https://funnelmates.com/f/22199/3064/\r\n\r\nEnjoy!\r\nâ€“ Roy Revill','https://funnelmates.com/f/22199/3064/'),(140,1680853675,57,'Free Solo Ad at #1 Converting Traffic Site','Hi, \r\nLast Monday, 242 Traffic launched ... a next-generation mailer that doesn\'t overflow your inbox.\r\n \r\nIn just 6 days, the site passed 1,000 signups and is ranked as the #1 Best Converting Traffic Site in the Traffic Wise rankings. \r\n\r\nIf you have not tried this amazing new source of traffic that converts into signups and sales, then you should join right away. \r\n\r\nThey are giving away 1,000 free mailing credits to all new members, which will let you send your ad to 1,000 highly responsive members. All the members have taken action by joining in the last week! \r\n\r\nSign up for a free account today at 242 Traffic and claim your free solo ad.\r\n\r\nThanks.\r\nHugh Evans','https://www.242Traffic.com/home.asp?rid=83&p=11'),(6,1654262982,22,'My Marketing School','Claim a free course\r\nProduct creation\r\nSign up\r\nLog in\r\nVisit menu tab bonus\r\nTo claim','Https://mymarketingschool.com'),(7,1654555347,117,'Grab a HUGE $250K advertising package.','#FIRSTNAME#,\r\n\r\n250K+ in advertising for any business you have, want or are promoting.Free traffic that pays, period.\r\n\r\n#CREDITLINK#\r\n\r\n~Jeremy Gray, CEO\r\nGrayTech LLC <== Google It!','https://evolutiondailycash.com'),(8,1654597850,91,'An Amazing Digital Business offer You Must See','Hi #FIRSTNAME# ],\r\n\r\nStart Working For Yourself...\r\n\r\nWe provide you everything to get your \r\nonline business up and running quickly! \r\nI was up and running in no time!\r\n\r\nThe best part is, you\'ll get to see our Global \r\nCommunity from all walks of life with some\r\ngiving their own video testimonials!! \r\n\r\nAs a Digital Business owner myself, \r\nI want to see you become a Digital Business \r\nOwner working to your own Flexible Schedule!!\r\nReview Our Free Webinar/Workshop\r\n\r\nNothing to lose but just maybe What\r\nYou maybe looking for!!  See for yourself!\r\n\r\nLincoln Aniteye','https://www.lincsnicks.com/'),(9,1654621420,22,'Is Your Website Ada Compliant','Is Your Website Ada Compliant','https://mymarketingschool.com/content.php?page=ada1s'),(10,1654691824,8,'#FIRSTNAME# your shortcut to get more traffic Fast','Hi #FIRSTNAME#,\r\n\r\nInstantly get targeted traffic... \r\neven if you have no clue how to begin.\r\n\r\nOutrageous software that grabs Free \r\ntargeted traffic and leads.\r\n\r\nYou\'ll finally be able to get all \r\nthe fr-ee traffic you want to anything \r\nyou want to promote online.\r\n\r\nClaim this Fr-ee Traffic Builder Software.\r\n\r\nGet your copy right now before they\r\ngo back to selling the software.\r\n\r\n==>> https://llpgpro.com/trfcbuildr\r\n\r\nRegards,\r\nDanilo Gesmundo','https://llpgpro.com/trfcbuildr'),(11,1654962929,14,'Traffic Site That Works For You!','Traffic Site That Works For You!\r\n\r\nElite List Building is doing LOTS of great stuff\r\nto help members with earning online:\r\n\r\nAdding members daily who are actively wanting to\r\njoin new opportunities.\r\n\r\nTeaching traffic and income building strategies.\r\nPromoting on behalf of members.\r\n\r\nProviding up to date training and guidance.....\r\nand so much more.\r\n\r\nPop over and have a look today.\r\nI am sure you will love what ELB has to offer.\r\n\r\nClick Here to Signup:\r\n\r\nRegards\r\nTommie\r\n\r\n\r\n\r\n...','https://www.elitelistbuilding.com/index.php?r=mrtommie'),(12,1655267552,111,'I have a lovely gift for you','Hi friend,\r\n\r\nDid you get your copy of the new book that Iâ€™m giving away?\r\n\r\nIn it, we shared exactly how you can start generating $100 to even $1,000 per day with no website and just an email address.\r\n\r\nClick the link to get your complimentary playbook now (worth $97)\r\n\r\nListen, this is an easy method that can help you rapidly build an email business..\r\n\r\n..and start creating passive income online with just as little as 15 minutes.\r\n\r\nIn fact, itâ€™s so simple that anyone can do it.\r\n\r\nClick the link to access your no-charged copy now and create your own perpetual income\r\n\r\nThank you and good luck\r\n\r\nYours,\r\n\r\nJoshua','https://llpgpro.com/7g95k731'),(13,1655271303,123,'How to Get 2 Paid Referrals...','Are you ready for your taste of success?\r\n\r\nOur team\'s youtube influencer earned $2,597 in less than 30 days.\r\n\r\nWhat did you earn last month? Anything?\r\n\r\nMaybe it\'s time to try something that actually works.\r\n\r\n\r\nSo, why not let us show you how?\r\n\r\n\r\nHere are some details:\r\n\r\n$15 Per Referral direct referral!\r\n\r\n2x10 Forced Matrix!\r\n\r\n100% Matching Bonuses! (that\'s right when your team earns so do you...) more details inside!!\r\n\r\nThis is all possible with our','https://lllpg.com/ronb2forU'),(14,1655690171,102,'How To Win Buyers And Influence Sales','How To Learn 15 DAY FREE TRAFFIC RESOURCES','https://llpgpro.com/8s0zmfgk'),(232,1734913558,9,'Claim Your 3 Promo Codes','Welcome to Win Traffic Daily!\r\n\r\nYour ultimate destination for responsive advertising â€“ now featuring Solo Ads\r\nfor even greater results!\r\n\r\nClaim your 3 promo codes right now and unlock:\r\n\r\n10,000 Credits\r\n(3) 30-day Banner Ads\r\n(3) 30-day Text Ads\r\nA total value of $44 â€“ completely free!\r\nSimply join below, and your promo codes will be waiting in the members area.\r\n\r\nWhat makes Win Traffic Daily stand out?\r\n\r\nðŸ† Diverse Ad Options: Banner Ads, Text Ads, Login Ads, and Solo Ads!\r\nðŸ† Proven Audience: Advertise to engaged buyers who joined as Founders.\r\nðŸ† Bonus Advertising Credits: Get extra credits just for signing up.\r\nðŸ† Strategic Flexibility: Trade credits for more ads to maximize your reach.\r\nðŸ† Exciting Rewards: Win generous ad packages and even cash prizes.\r\nðŸ† Consistent Income: Enjoy weekly commissions paid worldwide.\r\nðŸ† Risk-Free Start: Join now for free and start promoting your business today!\r\n\r\nReady to boost your business?\r\n\r\nSign up now and claim your promo codes!','https://wintrafficdaily.com/index.php?r=cyberco'),(139,1680222121,242,'Simple Affiliate Tools','en Perdew, at NAMS,  has a new product for affiliate marketers.\r\n\r\nIt\'s called','https://marketingbasics101.com/namssat-br-pg'),(16,1655761628,60,'What happens when you don\'t advertise everyday?','Nothing.\r\n\r\nThis is what youâ€™ll get from LeadsLeapâ€¦\r\n\r\n*FREE traffic to your website.\r\n\r\n*FREE autoresponder service, your own list, not co-owned.\r\n\r\n*FREE page builder, hosting included.\r\n\r\n*FREE popup generator, hosting included.\r\n\r\n*FREE link tracker that can differentiate, bot vs human traffic.\r\n\r\n*Make FREE money while benefiting from all of these!\r\n\r\n***Basically, almost everything youâ€™ll need to create a successful\r\n\r\nonline business can be found in your FREE membership.\r\n\r\n***Seeing is believing.','https://www.GetShuffler.com/squeezepage.php?fid=1499478'),(17,1655767534,119,'Get your first 20 $ Online','Check out this programme and take action to finish our training and we will pay you 20$\r\nYes I free to join.','https://olspsystem.com/join/551632'),(18,1655769631,111,'Why I Use Crypto Bots (And Maybe You Should Too)','Hi #FIRSTNAME#,\r\n\r\nFor years I was trying to make it on the crypto market but seemed to miss out all the time. Going long when I should go short, going short when I should go long. I got very frustrated and kept on losing money. My wife wasn\'t happy!Â \r\n\r\nThis changed dramatically when I discovered this auto trading software! Slowly I managed to grow my portfolio, I could believe it! Without staring at charts all day, following the news, and doing whatever other traders do! And the best thing is: my wife is happy!\r\n\r\nNow you can discover the best crypto bots for automatic trading. All in one system by clicking the link! It\'s FREE to sign-up! \r\n\r\nNo it\'s not A \'One Click\' Get Rich Fast Scam! \r\nNO! Over 500.000 Crypto Traders World Wide trusts this Serious Software!\r\n\r\nClick the link below to get started! \r\n\r\nYours,\r\n\r\nJoshua Fincham','https://llpgpro.com/1wp0d5tz'),(19,1655815271,119,'Free Traffic Generation System!','WELCOME TO: Traffic Builder Pro! \r\n\r\nTraffic Builder Pro, is a new Borne and yes is A Manual Surfing Platform which gives you the opportunity to grow your online business for free! \r\n\r\nWhen you register your account you get: \r\n\r\n1) 1000Â  surfing points value for free \r\nIf you surf more then 25 sites per day for 7 days you will get 10.000 extra credits per week! Wich are 40.000 per month plus 1000 Daily Bonuses credits you will get 70.000 FREEÂ  credits to any of your business','https://llclick.com/g611t3h8/?rsc='),(20,1655947853,111,'The Secrets of The Gurus To Dominate Clickbank','Hi #FIRSTNAME#,\r\n\r\nIf I could show you how to dominate Clickbank and drive traffic would you be interested? Do You Want to Learn The Secrets of The Gurus, Get More Traffic and Dominate Clickbank?\r\n\r\nWe want to help you to dominate the Clickbank marketplace! That\'s why I\'m giving away this valuable eBook for FREE!\r\n\r\nClick the link to access this amazing eBook and start making money online!\r\n\r\nYours,\r\n\r\nJoshua','https://llpgpro.com/26237w48'),(21,1656015635,119,'Build Your online Presence!','First name of recipient], \r\n\r\nReal Quick: \r\n\r\nA new push-button system has just launched called... \r\n\r\n\'Lead Lightning\' \r\n\r\n...and I wanted to share it with you first.\r\n\r\n\r\n\r\nUse it to create a frenzy of buyers, build\r\nyour list, create sales and exposure to\r\nyour primary business... and so much more! \r\n\r\nEnjoy! \r\n\r\nTalk soon,','https://llclick.com/y12185wj/esystem'),(22,1656111095,119,'The System to build your business','First name of recipient], \r\n\r\nReal Quick: \r\n\r\nA new push-button system has just launched called... \r\n\r\n\'Lead Lightning\' \r\n\r\n...and I wanted to share it with you first.\r\n\r\n\r\n\r\nUse it to create a frenzy of buyers, build\r\nyour list, create sales and exposure to\r\nyour primary business... and so much more! \r\n\r\nEnjoy! \r\n\r\nTalk soon','https://llclick.com/y12185wj/herkulist'),(23,1656239793,91,'An Amazing Digital Business offer! Just Must See!','Hi #FIRSTNAME# ],\r\n\r\nStart Working For Yourself...\r\n\r\nWe provide you everything to get your \r\nonline business up and running quickly! \r\nI was up and running in no time!\r\n\r\nThe best part is, you\'ll get to see our Global \r\nCommunity from all walks of life with some\r\ngiving their own video testimonials!! \r\n\r\nAs a Digital Business owner myself, \r\nI want to see you become a Digital Business \r\nOwner working to your own Flexible Schedule!!\r\nReview Our Free Webinar/Workshop\r\n\r\nNothing to lose but just maybe What\r\nYou maybe looking for!!  See for yourself!\r\n\r\nLincoln Aniteye','https://www.lincsnicks.com/'),(24,1656369850,119,'The Click Engine','The Web Traffic is the life-blood of any online business, checkout this website and start promoting your business!','https://warriorplus.com/o2/a/kxxyfx/0'),(25,1656383469,111,'Your Weekly Free Gift! Download Now!','Hi #FISTNAME#,\r\n\r\nYour Weekly Free Gift is waiting for you!\r\n\r\nDo You Want to Learn The Secrets of The Gurus, Get More Traffic and Dominate Clickbank??\r\n\r\nWith this Free Gift You will learn the valuable lessons about: \r\n\r\n- How to do Keyword Research\r\n- Gauging the Competition\r\n- Advertising Demand\r\n- Keyword Tracking\r\n- Using Special Keyword Tools\r\n- Finding The Best Tips and Techniques\r\n- Choosing The Best Products\r\n- And much, much more...\r\n\r\nIf You Have Online Income Methods Failed in The Past, You Need to download This Gift!\r\n\r\nTo Your Succes...\r\n\r\nYours,\r\n\r\nJoshua','https://llpgpro.com/26237w48/solo'),(26,1656527997,119,'Stop, learning and start Earning','Get out from information overload.\r\n\r\nGet results.\r\n\r\nSo EASY To Do, You\'ll Think You\'ve Been Hiding Under a\r\nBush The Past Year.\r\n\r\nBest Solution For a Quick New Start','https://llclick.com/dls87thr'),(27,1656882425,139,'High Ticket Commissions with FREE system here','#FIRSTNAME# imagine being able to earn from a FREE system where hundreds of people are helping you to get to that point. Must see this and the results that people are having! You will love it!','https://olspsystem.com/join/5769'),(28,1656885194,119,'All you need to Succeed','I appreciate your continued interest as a subscriber...\r\n\r\nSo I am saying thanks,\r\n\r\nGo Here For Full Details\r\n\r\nTalk later','https://albentrepreneur.com'),(29,1656928332,123,'Ha Ha #FIRSTNAME#, It works...','I am kinda shocked and I\'m laughing out loud\r\nabout how easy it is to make money with this\r\nteam build.\r\n\r\nBecause it took a few just steps from start to\r\nfinish and was actually simple enough for anyone\r\nto do (like today, as in right now).\r\n \r\nRon b, Here\'s the perfect pay plan we use.\r\n\r\nHere\'s our team\'s perfect success plan.\r\n\r\nLet\'s help everyone get 2 personal referrals!\r\n\r\nMy team is now full! I\'m helping everyone on my team enroll 2 members.\r\n\r\nThe link above is a rotating link so my whole team can benefit.\r\n\r\nRonald Burgess\r\nHNL 5-Star Partner','https://lllpg.com/rbHealthyNuLiving'),(30,1657158088,111,'[Video] $1,000+ DAILY on autopilot','Hi,\r\n\r\nThe difference between getting rich or struggling comes down to what youâ€™re selling.\r\n\r\nPeople selling BMWs make more than those selling Hyundaiâ€™s. People selling mansions make more than those selling mobile homes.\r\n\r\nThe same is true online - when you sell HIGH TICKET offers, you make more - itâ€™s that simple.\r\n\r\nSo instead of fighting for scraps & competing with thousands of other marketers promoting $10-$20 offers for tiny commissions â€¦\r\n\r\nBreakthrough New System Lets You Clone Done-For-You High Ticket Business That Makes Over $1,000+ Per Day...\r\n\r\nClick The Link To Find Out How!\r\n\r\nThanks for reading and speak to you soon!\r\n\r\nYours,\r\n\r\nJoshua Fincham','https://llpgpro.com/1myr4plz/soloswap'),(31,1657223024,119,'The best free List Builder System','Are you looking to build an email list and you can\'t find how to do that! I want to share it with you this amazing system! Check it out and thanks me later!','https://llclick.com/y12185wj'),(32,1657689562,123,'How to Get $50 Instant Pymts to Your Account N4?','Watch this video to See How to Get $50 Instant Pymts2ur Acct w/o Speaking to Anyone\r\n\r\nWe have the fastest-growing team in Text ALN right now and it is super exciting to be a part of it.\r\n\r\nJust take a look at some of our team\'s results in this 6 Minute Video...\r\n \r\nWatch The Video Here to see some of our success... \r\n\r\nThis will officially be launching on July 15th and will put those who get in NOW in a major position to bank some huge checks.\r\n\r\nIt will also allow you to earn some Up-Front $$$$ daily while building a HUGE monthly residual income!\r\n\r\nThat\'s of course only if you TAKE ACTION.\r\n\r\nGet started now\r\n \r\nThe product is something we all use every single day, 24/7.\r\n\r\nAt least if you\'re reading this I HOPE you use this.\r\n\r\n\r\nWatch the video & then create your account to get started!\r\n\r\nWe are now placing people on level 4 of this 3*4 Global Forced Matrix.\r\n\r\nI am looking forward to Welcoming You as the newest member of our Team!!\r\n\r\nRonald Burgess','https://lllpg.com/go-TextALN'),(33,1657847439,119,'If is free is beter','Honest question...\r\n\r\n\r\nWould you pay $7 for a million-dollar blueprint?\r\n\r\n\r\n...of course, you would right?\r\n\r\n\r\n\r\nI mean, who in their RIGHT MIND would pass up on a chance to learn how to make a million dollars?\r\n\r\n\r\n\r\nWell actually, what if I could give you a 10 million dollar blueprint for free?\r\n\r\n\r\n...now that would be sweet!\r\n\r\n\r\n\r\nSo that\'s EXACTLY what I\'m going to do RIGHT NOW.','https://llclick.com/y12185wj'),(34,1658341001,119,'Free Manual Traffic Exchange! Join now','Hi there, \r\n\r\nI know doubling or tripling your income is not easy. \r\n\r\nBut Iâ€™ve come across a method that truly WORKS! \r\n\r\nNow, wouldnâ€™t it be awesome to just sit back, enjoy and be your own BOSS','https://llclick.com/g611t3h8/'),(35,1658343004,34,'Get Free Leads With Best Kept Secret Ever!','#FIRSTNAME#\r\n\r\nFree Lead System is going viral. \r\n\r\nThe secret to how to get free leads every day with hot new marketing system. \r\n\r\nIndustry game-changer. \r\n\r\nFree Video reveals how!\r\n\r\n https://www.trker.com/go/164244 \r\n\r\nRegards,\r\nJoan Beaulieu','https://www.trker.com/go/164244'),(36,1658447258,117,'#FIRSTNAME#, 170K in 4 months.','#FIRSTNAME#, Wow what a day! \r\n \r\nWe are still crushing it with sales on Facebook and LinkedIn as we speak. The momentum has been through the roof and I\'m blown away, and grateful for all the training that\'s been provided.\r\n \r\nCheck it out...see that','https://cracking-the-code.clickfunnels.com/social-tips'),(37,1658495249,141,'Want more Traffic to your Ads? Check this out..','Hi #FIRSTNAME# ,\r\n\r\nWant more Traffic to your Ads?\r\n\r\nThis Free \'Viral Advertising System\' gives you traffic, exposure + useful marketing tools to help you become successful online!\r\n \r\n...in the next 10 minutes you can be completely setup and ready to get your ads seen with our 100% FREE Advertising System.\r\n\r\nYour Member Benefits Include:\r\n\r\nFREE lifetime access to our unique advertising system\r\nAbility to earn ad credits & win daily prizes for browsing ads\r\nAbility to create a personalized profile box with favorite links\r\nAbility to buy advertising with ad credits, cash or bitcoin\r\nAbility to upgrade your account for more benefits & features\r\nFREE bonus advertising.. just for joining Promo Code: welcome\r\nPlus many more features waiting for you on the inside..\r\n\r\nClick Here to Signup FREE:\r\n\r\nhttp://www.GrowAHomeBusiness.com/?rd=tv4dnRO4','https://www.GrowAHomeBusiness.com/?rd=tv4dnRO4'),(38,1658753562,141,'Want more Traffic to your Ads? Check this out..','Hi \r\n#FIRSTNAME#,\r\n\r\nWant more Traffic to your Ads?\r\n\r\nThis Free \'Viral Advertising System\' gives you traffic, exposure + useful marketing tools to help you become successful online!\r\n \r\n...in the next 10 minutes you can be completely setup and ready to get your ads seen with our 100% FREE Advertising System.\r\n\r\nYour Member Benefits Include:\r\n\r\nFREE lifetime access to our unique advertising system\r\nAbility to earn ad credits & win daily prizes for browsing ads\r\nAbility to create a personalized profile box with favorite links\r\nAbility to buy advertising with ad credits, cash or bitcoin\r\nAbility to upgrade your account for more benefits & features\r\nFREE bonus advertising.. just for joining Promo Code: welcome\r\nPlus many more features waiting for you on the inside..\r\n\r\nClick Here to Signup FREE:\r\n\r\n\r\nhttp://www.GrowAHomeBusiness.com/?rd=tv4dnRO4','https://www.GrowAHomeBusiness.com/?rd=tv4dnRO4'),(39,1659027190,60,'What happens when you don\'t advertise everyday?','119K Members    28M Real Visitors Sent    56K App Uses\r\n\r\nThis is what youâ€™ll get from LeadsLeapâ€¦\r\n\r\n*FREE traffic to your website.\r\n\r\n*FREE autoresponder service, your own list, not co-owned.\r\n\r\n*FREE page builder, hosting included.\r\n\r\n*FREE popup generator, hosting included.\r\n\r\n*FREE link tracker that can differentiate, bot vs human traffic.\r\n\r\n*Make FREE money while benefiting from all of these!\r\n\r\n***Basically, almost everything youâ€™ll need to create a successful\r\n\r\nonline business can be found in your FREE membership.\r\n\r\n***Seeing is believing.','https://www.GetShuffler.com/squeezepage.php?fid=1499478'),(40,1659181573,35,'Get Profit Making QR Codes On 1+Billion Smartphone','#FIRSTNAME#,\r\nALL online and offline businesses need this in 2022!','https://paykstrt.com/39654/62038'),(41,1659247333,123,'HotðŸ”¥NEW System Spits Out Unlmtd 100%Instant Pymts','Hi,\r\n\r\nI want to show you the fastest and easiest way to create daily income\r\n\r\nfrom home using this new opportunity...\r\n\r\nThis platform helps you get paid daily while also advertising your primary businesses!\r\n\r\n\r\n>>> Click Here\r\nto get started now!!\r\n\r\n\r\nA one-time payment of $10 to start earning unlimited payments per day!\r\n\r\nThe best thing is... you also earn when your referrals generate signups!\r\n\r\nNow tell me, wouldn\'t you like to generate 1-4 new sales daily?\r\n\r\nYou owe it to yourself to be successful. Start Now!\r\n \r\nClick Here To Get Started','https://lllpg.com/rbVirtualCashflowSystem'),(42,1659272596,141,'Want more Traffic to your Ads? Check this out..','Hi \r\n#FIRSTNAME# ,\r\n\r\nWant more Traffic to your Ads?\r\n\r\nThis Free \'Viral Advertising System\' gives you traffic, exposure + useful marketing tools to help you become successful online!\r\n \r\n...in the next 10 minutes you can be completely setup and ready to get your ads seen with our 100% FREE Advertising System.\r\n\r\nYour Member Benefits Include:\r\n\r\nFREE lifetime access to our unique advertising system\r\nAbility to earn ad credits & win daily prizes for browsing ads\r\nAbility to create a personalized profile box with favorite links\r\nAbility to buy advertising with ad credits, cash or bitcoin\r\nAbility to upgrade your account for more benefits & features\r\nFREE bonus advertising.. just for joining Promo Code: welcome\r\nPlus many more features waiting for you on the inside..\r\n\r\nClick Here to Signup FREE:\r\n\r\n\r\nhttp://www.GrowAHomeBusiness.com/?rd=tv4dnRO4','https://www.GrowAHomeBusiness.com/?rd=tv4dnRO4'),(43,1659274065,73,'Get referrals & build your downlines easily! Check','Hi #FIRSTNAME#,\r\n\r\n\r\n\r\nWant to build your downlines to multiple sites and fast?\r\n\r\nJoin this Free \'Downline Builder System\' to get referrals to our recommended programs + add your own! This site will help you to finally succeed online!\r\n \r\n...in the next 10 minutes you can be completely setup and ready to build your downlines fast with our 100% FREE Downline Builder System.\r\n\r\nYour Member Benefits Include:\r\n\r\nFREE lifetime access to our unique downline builder system\r\nFREE bonus advertising.. just for joining Promo Code: welcome\r\nAbility to add your own programs to the downline builder\r\nAll the tools and resources to build successfully promote\r\nPlus many more features waiting for you on the inside\r\n\r\nClick Here to Signup FREE:\r\nhttp://www.GrowAHomeBusiness.com/?rd=vj8E1P2s','https://www.GrowAHomeBusiness.com/?rd=vj8E1P2s'),(44,1659405574,161,'Free Courses for Affiliates','HI\r\n\r\nSucceed in Affiliate marketing\r\nwith step by step training.\r\n\r\nSee you on the inside.\r\nPam','https://tdpages.com/63934/page136420'),(45,1659758586,162,'Finally Make Money Online With Just A $5 Investmen','#FIRSTNAME#,\r\nAre you sick and tired of struggling to make money online?\r\nAll the GURU\'s say','https://www.millionairewith5.com/?scoie372'),(46,1660124255,8,'#FIRSTNAME#, the deepest list building secrets','Hi #FIRSTNAME#,\r\n\r\nToday... \r\n\r\nI\'ll be revealing my secrets to getting\r\nmore money from your emailsâ€¦\r\n\r\n...than you ever have before.\r\n\r\nThe surefire tactics that will make me you millionsâ€¦\r\n\r\nUse them for yourself.\r\n\r\nHurry up and, grab your link & start building your list.\r\n\r\n#CREDITLINK#\r\n\r\nBest regards,\r\nDanilo Gesmundo','https://llpgpro.com/14daylistbuilding/soloswaps'),(47,1660199392,176,'10 signups and 2 Upgrades from 55 views!','Absolutely worth your time!\r\n\r\n1 ads gave me:\r\n55 clicks\r\n4 sign-ups at Easy Traffic Boost\r\n3 sign-ups at Banner Ads That Pay\r\n3 sign-ups at List Unlocked\r\n10 sign-ups Total! \r\nAnd\r\n2 Upgrades Too! \r\n\r\nI\'m glad I joined and you should too...\r\n\r\nI\'m not the only one getting results :)\r\n\r\nGuaranteed visitors and results, I like it.\r\n\r\nMoreï¼š\r\n\r\nJoin Today and Get $47 in FREE Ads!\r\n\r\n1700 Email Credits/2000 Banner Credits/2000 Text Ad Credits +1 Full Page Login Ad worth $47\r\n\r\nUse Promo Code: Express','https://www.safelist8.com/2022/05/10-signups-and-2-upgrades-from-55-views.html'),(48,1660371035,141,'Want more Traffic to your Ads? Check this out..','Hi \r\n#FIRSTNAME#,\r\n\r\nWant more Traffic to your Ads?\r\n\r\nThis Free \'Viral Advertising System\' gives you traffic, exposure + useful marketing tools to help you become successful online!\r\n \r\n...in the next 10 minutes you can be completely setup and ready to get your ads seen with our 100% FREE Advertising System.\r\n\r\nYour Member Benefits Include:\r\n\r\nFREE lifetime access to our unique advertising system\r\nAbility to earn ad credits & win daily prizes for browsing ads\r\nAbility to create a personalized profile box with favorite links\r\nAbility to buy advertising with ad credits, cash or bitcoin\r\nAbility to upgrade your account for more benefits & features\r\nFREE bonus advertising.. just for joining Promo Code: welcome\r\nPlus many more features waiting for you on the inside..\r\n\r\nClick Here to Signup FREE:\r\n\r\n\r\nhttp://www.GrowAHomeBusiness.com/?rd=tv4dnRO4','https://www.GrowAHomeBusiness.com/?rd=tv4dnRO4'),(49,1660440896,50,'Get 9000 FREE Credits From 9 Traffic Exchange To H','Why Would You Go All Alone When There Are People Like Me That Would Like To Build a Business For You? Team Up With Us And We Will Surf With You! \r\n\r\nNo Experience Needed! No out of pocket cost! Easy to follow teamwork!','https://t-adbar.com/_kuja'),(50,1660576333,176,'9 signups and 2 Upgrades from 65 views!','Join Today and Get $47 in FREE Ads!\r\n\r\n2500 Email Credits/2500 Banner Credits/2500 Text Ad Credits +1 Full Page Login Ad worth $47\r\n\r\nUse Promo Code: ANGELSDELIVER','https://www.safelist8.com/2022/08/9-signups-and-2-upgrades-from-65-views.html'),(51,1660699044,91,'Learn how to build a successful online business','Hi #FIRSTNAME#,\r\n\r\nThere are so many days we wake up and say to ourselves, â€œis this really how life is supposed to beâ€?\r\n\r\nNOPE. I donâ€™t want that for you, or anyone and I have a solution for you!\r\n\r\nEveryday should NEVER feel like our version of groundhog day as we pull ourselves together and just go through the motions of life settling with unhappiness and stress because we dislike our jobs and are not earning enough to make a living...\r\n\r\nFind out how I am making a living online all whilst doing what I love!\r\n\r\nHelp is around for free information on how you can do this too.\r\n\r\nEver thought about getting into Digital Marketing and just not sure where to begin or how it all works?\r\n\r\nWell, we got you covered!!\r\n\r\nCheck out our free Starter Class by clicking HERE to register.\r\n\r\nAll the Best.\r\nLincoln','https://www.lincsnicks.com/'),(52,1660912265,141,'Want more Traffic to your Ads? Check this out..','Hi ~fname~,\r\n\r\nWant more Traffic to your Ads?\r\n\r\nThis Free \'Viral Advertising System\' gives you traffic, exposure + useful marketing tools to help you become successful online!\r\n \r\n...in the next 10 minutes you can be completely setup and ready to get your ads seen with our 100% FREE Advertising System.\r\n\r\nYour Member Benefits Include:\r\n\r\nFREE lifetime access to our unique advertising system\r\nAbility to earn ad credits & win daily prizes for browsing ads\r\nAbility to create a personalized profile box with favorite links\r\nAbility to buy advertising with ad credits, cash or bitcoin\r\nAbility to upgrade your account for more benefits & features\r\nFREE bonus advertising.. just for joining Promo Code: welcome\r\nPlus many more features waiting for you on the inside..\r\n\r\nClick Here to Signup FREE:\r\n\r\n\r\nhttp://www.GrowAHomeBusiness.com/?rd=tv4dnRO4','https://www.GrowAHomeBusiness.com/?rd=bo3lITlO'),(53,1660957514,81,'100,000 Free Visitors Per Month!','The 3 Hour Cash Machine\r\n\r\nPay Close ATTENTION!...\r\n\r\nThis Free system will help you to...\r\n\r\nâ€¢â€ƒGenerate up to 100,000 Free Visitors per month.\r\nâ€¢â€ƒWhile making up to $1,900+ per month.\r\nâ€¢â€ƒAnd build your own email list\r\n\r\nAll of that using a complete done for you free system!\r\n\r\nClick the below/credit link to learn how.\r\n\r\nTo your success,\r\n\r\nWilf O','https://llpgpro.com/3HCMachin2/soloswps-m'),(54,1661187220,91,'Why are you not making it?','Hi #FIRSTNAME#,\r\nHave you ever wondered why so many people donâ€™t make it online?\r\n\r\nItâ€™s not a lack of training.\r\n\r\nYouTube alone has more than enough fr-ee training to eclipse every university on earth 10 times over.\r\n\r\nItâ€™s not a lack of opportunity.\r\n\r\nNew success stories are being created every day out there as there is right now.\r\n\r\nSo what is it?\r\n\r\n1 wordâ€¦\r\n\r\nOverwhelm.\r\n\r\nNot knowing where to start and not having a clear roadmap.\r\n\r\nThat stops now.\r\n\r\nMy mentor James has put together a fr-ee system where overwhelm will be a thing of the past.\r\n\r\nWith weekly live training, a brand new technology which eliminates all the tech headaches and a fr-ee traffic rotator from his own pocket.\r\n\r\nThereâ€™s no way to get overwhelmed because itâ€™s all done for youâ€¦\r\n\r\nA helping hand is here, we are with you every step of the way!#CREDITLINK#\r\n\r\nGet started today and then stop by in the group for Wednesdayâ€™s Live VIP session and youâ€™ll see what I mean.\r\n\r\nKind regards,\r\nLincoln Aniteye','https://warriorplus.com/o2/a/w9xr1y/0'),(55,1661318220,177,'#FIRSTNAME# #LASTNAME# Want to Step Up Your Income? Concentrate On This Now!','Hi #FIRSTNAME#!\r\nIt really doesn\'t get any easier than this!\r\n\r\nEVERYTHING you need to start earning easy\r\nmonthly payments are at your fingertips.\r\n\r\nBuild your own list and mail 5 levels deep,\r\nRecurring and single payments commissions!\r\n\r\nClick The Credit Link and Take Action Now!\r\n\r\nEnter your best email, this is not a safelist.\r\n\r\nYours sincerely, Vasiliy Rybkin','https://www.prosperitymarketingsystem.com/go/?s=192487&tag=mailings'),(56,1661476232,91,'Suicide to success!','Hi,\r\nIt was January 2017.\r\nAfter recovering from his final suicide attempt he found a new drive to make up for all the wasted time.\r\nNot knowing where to start and no marketable skills!\r\nLow Confidence.\r\nNo courage to put a profile picture up on Facebook!\r\nHe got scammed, ripped off, laughed at, and stung bad.\r\nBut he didnâ€™t give up!\r\nThe desire to make it pushed him to keep going, every, single, time.\r\nMost people donâ€™t have that kind of tenacity!\r\nMost people quit up-to 6 months, when they hit a wall.\r\nItâ€™s hard to carry on when you keep landing face down in the dirt over and over again.\r\nAnd thatâ€™s why I am here to help.\r\nMy mentor Jamesâ€™ new RPM system provides you with everything you need to succeed online.\r\nWith weekly live training, a brand new technology which eliminates all the tech headaches and a fr-ee traffic rotator from his own pocket.\r\nClick the link join a truly supportive community and world class training at no cost to you.\r\n\r\nKind regards\r\nLincoln Aniteye','https://warriorplus.com/o2/a/w9xr1y/0'),(57,1662184273,181,'Done for you funnel with multiple streams of incom','If you\'re looking for a newbie friendly done for you system with step by step training check this out..','https://warriorplus.com/o2/a/x45hnx/0'),(156,1690844572,301,'WANT To MAKE 1K-5K A DAY!','Hi,\r\n\r\nThe potential to earn 3,493 commissions is real and within your reach.\r\n\r\nWant to know how?\r\n\r\nJoin this free case study to discover the powerful technique that can make this happen.\r\n\r\nHosted by a Multi Award Winning Clickbank Platinum seller, and designed to help you generate sales and subscribers without doing ANY selling!\r\n\r\nGo Here to find out more:\r\nhttps://llpgpro.com/3n9wx7p8/\r\n\r\nBest,\r\n\r\nJim Derr','https://llpgpro.com/3n9wx7p8/'),(93,1672396453,176,'12 signups and 3 Upgrades from 88 views!','This is not a works-today-gone-tomorrow launch. \r\n\r\nAbsolutely worth your time!\r\n\r\n1 ads gave me:\r\n88 clicks\r\n5 sign-ups at Easy Traffic Boost\r\n4 sign-ups at Banner Ads That Pay\r\n3 sign-ups at List Unlocked\r\n12 sign-ups Total! \r\nAnd\r\n3 Upgrades Too! \r\n\r\nI\'m glad I joined and you should too...\r\n\r\nI\'m not the only one getting results :)\r\n\r\nGuaranteed visitors and results, I like it.\r\n\r\nMoreï¼š\r\n\r\nJoin Today and Get $20 in FREE Ads!\r\n\r\n1,000 Credits - 1 Login Spotlight - 200 Credits Banners\r\n\r\nUse Promo Code: ADSEXPLOSIVES','https://www.safelist8.com/2022/02/12-signups-and-3-upgrades-from-88-views.html'),(60,1663269846,18,'ðŸ”¥What Are You Waiting For','Hi, \r\nIf you REALLY want success, you can get it\r\nwith this rock solid, twenty year old company\r\n\r\nFind out where and how to advertise with over a dozen streams of income\r\n\r\nClick here to check out the system\r\n \r\nCheers\r\n\r\nBen','https://clicktrakr.biz/1vvvYFdbAs'),(61,1663380603,176,'10 signups and 2 Upgrades from 55 views!','Join Today and Get $47 in FREE Ads!\r\n\r\n1700 Email Credits/2000 Banner Credits/2000 Text Ad Credits +1 Full Page Login Ad worth $47\r\n\r\nUse Promo Code: Express','https://www.safelist8.com/2022/05/10-signups-and-2-upgrades-from-55-views.html'),(62,1663970325,180,'The best way to build your list','Starting is what matters {!firstname_fix} \r\n\r\nNo doubt you\'ve made a wise decision to join this list. You will be encouraged and pushed to learn internet marketing very quickly so you can see equally quick results ===> [LINK] The faster you get going, the quicker you put in motion the machinery that will give you FREEDOM from your job. Because the aim is not to replace your present job for another job at home. NO. The aim is to throw off the shackles of your present life for automated and mobile freedom. Because whenever you can earn wherever you have an internet connection, you will definitely be on your way. Strive for that. Because when you start achieving and you\'re at a respectable level in your internet marketing career, you will be wondering why you never started earlier. But the key, my friend, is to get started. ===>Â  You and I both are going to make it worth your while. Talk soon \r\n\r\nhttps://llclick.com/y12185wj/','https://llclick.com/y12185wj/'),(63,1663972246,111,'Struggling to get leads? Let me help!','Hi #FIRSTNAME#\r\n\r\nA lot of people that want to make money online struggle to get leads to promote whatever they are promoting.\r\n\r\nIf you are one of those people I have good news!\r\n\r\nWill 10 leads a day help you build your email list? How about 100 leads a day?\r\n\r\nHow would you like to discover a way to receive 1000 leads a day? Yes 1000 leads!!\r\n\r\nAnd the best past: FOR FREE!\r\n\r\nYes ABSOLUTELY FREE!\r\n\r\nWatch the short video below to discover how and thank my later!\r\n\r\nHappy to help succeed online!\r\n\r\nYours,\r\n\r\nJoshua Fincham','https://llpgpro.com/7wf7zrkp/soloswap'),(65,1664235472,140,'Here Are Your Massive Traffic Site Memberships!','GET Massive Traffic Streams with 6 Mega Sites! Proven traffic strategies, ultra popular home business recommendations. Get 50,000 Safelist Email Credits from our SafelisteXtreme Safelist! 20,000 Advertising Credits FREE from our Traffic Ad Links Solo List & Ad Board System. Get 20,000 Advertising Credits FREE from our Ultimate Safelist & Exchange! Fill out the form NOW! HURRY! Limited Time Offer!!\r\n                               \r\nTo Your Success,\r\n\r\nBobbi Jo Nichols\r\nSkype: bjnichols51\r\nCell: 573-680-0961\r\nEmail: info@bjsmarketingetc.com','https://www.bjsetc.com/?rd=pb1HUcoo'),(66,1664277266,194,'#FIRSTNAME# This should be a no-brainer...','Hi  #FIRSTNAME#,\r\n\r\n\r\nI\'ll make this simple... \r\n\r\nWould you give me one weekend of work...\r\nFor a lifetime of high-quality traffic?\r\n\r\nNo more traffic surfing, reading emails, \r\nclicking ads? \r\n\r\nInstead you\'d have a traffic system that\r\ndelivers visitors to any site you like...\r\n\r\nWhether you\'re working on not.\r\n\r\nBe warned, this isn\'t some loophole or \r\ngimmick... there\'s real work required, \r\nso it won\'t be for everyone...\r\n\r\nBut if you\'re serious about building an \r\nonline business, you should check this \r\nout ASAP. \r\n\r\nregards\r\nThorsten Harte\r\n\r\n\r\n#CREDITLINK# - Link to click for credits','https://llclickpro.com/h3dbrrxm/'),(158,1691995431,140,'OVER 500,000 Advertising Credits-PLUS 30000 SOLOS','#FIRSTNAME# ATTENTION:\r\n\r\nGet OVER 500,000 FREE Advertising Credits - Limited Time No Cost Offer Join Our Turn-Key FREE Membership Program AND YOU GET...\r\n\r\nâ€¢Dragon Safelist - With Over 12,000 very active members we can give you 100,000 credits\r\n\r\n â€¢Safelist eXtreme - Our TOP Safelist! You get 100,000 Credits.\r\n\r\nâ€¢Dragon Surfer - HOT New Site we host. 1500+ Members. You get 25,000 Credits\r\n\r\n â€¢Traffic Ad Links - Over 20,000 Members. You get 100,000 Credits\r\n\r\nâ€¢Email My Ads - With Over 12,000 very active members we can give you 50,000 credits. Credits\r\n\r\nâ€¢Safelist King - The name says it all! You get 20,000 Credits.\r\n\r\nâ€¢Traffic Center - Since 2002 We have over 8,000 Members. You get 10,000 Visitor Credits.\r\n\r\nâ€¢Safelist Exchange - Over 15,000 Members. Our Massive ad exchange system is always busy!\r\n\r\nYou get 100,000 Credits PLUS 30,000 Solo eMail Blaster Per Month!\r\n\r\nYours In Success,\r\n\r\nBobbi Nichols','https://www.bjsetc.com/?rd=pk4KlC6h'),(68,1665324821,18,'The next-generation of Email Marketing is here','Hey #FIRSTNAME# ,\r\n\r\nThis is a true NO BRAINER system.\r\n\r\nYes, this will do all he hard work for you.\r\n\r\nIn fact you don\'t have to spend more than 1 hour a day\r\n\r\nThe money maker software and tools, and guides are\r\n\r\navailable to guide you step by step. Simple instructions! \r\n\r\nIt\'s paint by numbers simple:\r\n\r\nSome guy pulled 2000.00 with this last week alone.\r\n\r\nPowerful! right?\r\n\r\nStart Now: If you really want it.\r\n\r\nCheers\r\n\r\nBen\r\n\r\nP.S. - If you\'ve been sitting on the fence, \r\nits time to take action or miss out on the best deal of the year!','https://clicktrakr.biz/mlgs'),(69,1666027322,174,'Do you know the secrets of making $100 per day?','Hello, \r\n\r\nAre you earning all the money you ever wanted?\r\n\r\nDo you want to be able to pay off all your bills and\r\nchange your life forever?\r\n\r\nI want to show you a free report to making money online... There are\r\nno strings attached, simply visit my website to read more...\r\n\r\nVisit: https://www.showmethemoneytoday.com/pos2\r\n\r\nYou have probably tried many things and ended up \r\nspending a lot of money on plans or programs that\r\nyou just couldn\'t figure out or just plain don\'t \r\nwork for most people.\r\n\r\nThat\'s about to change. I am going to hand YOU an \r\ninstant online business that can earn you hundreds\r\nof dollars per week!\r\n\r\nAre you ready to get started?','https://www.showmethemoneytoday.com/pos2'),(70,1666969938,176,'10 signups and 2 Upgrades from 45 views!','Absolutely worth your time!\r\n\r\n1 ads gave me:\r\n45 clicks\r\n3 sign-ups at Easy Traffic Boost\r\n4 sign-ups at Banner Ads That Pay\r\n3 sign-ups at List Unlocked\r\n10 sign-ups Total! \r\nAnd\r\n2 Upgrades Too! \r\n\r\nI\'m glad I joined and you should too...\r\n\r\nI\'m not the only one getting results :)\r\n\r\nGuaranteed visitors and results, I like it.\r\n\r\nMoreï¼š\r\n\r\nJoin Today and Get $47 in FREE Ads!\r\n\r\n1000 Email Credits/1000 Banner Credits/1000 Text Ad Credits +1 Full Page Login Ad worth $47\r\n\r\nUse Promo Code: Continental','https://www.safelist8.com/2022/07/10-signups-and-2-upgrades-from-45-views.html'),(71,1666992751,174,'Do you know the secrets of generating leads?','#FIRSTNAME#\r\nAre you earning all the money you ever wanted?\r\n\r\nDo you want your financial dreams to come true?\r\n\r\nMy name is Jason and I want to give you \r\na free presentation that will show you how to \r\ngenerate traffic and leads with our system... There are\r\nno strings attached, simply visit my website to read more...\r\n\r\nYou have probably tried many things and ended up \r\nspending a lot of money on plans or programs that\r\nyou just couldn\'t figure out or just plain don\'t \r\nwork for most people.\r\n\r\nThat\'s about to change. I am going to show you an \r\nopportunity that with your time and effort can earn \r\nyou thousands of dollars per year. \r\n\r\nAre YOU ready to claim your lead generation system?\r\n\r\nSincerely,\r\nJason','https://llclickpro.com/zycrttk7/SS'),(72,1667757675,203,'ðŸ˜¨ No Sales Yesterday? Are You Frustrated?','Welcome!\r\n\r\nFirst you get the traffic, then you get the money!!\r\n\r\nSo get traffic daily!\r\n\r\nWith my new funnel, I am creating it in a way that will allow me\r\n\r\nto play the background and just get traffic & sales.\r\n\r\nOnce I am done I will focus on mastering traffic.\r\n\r\n\r\nAs long as I can get traffic, I can get sales!\r\n\r\nLess Talk. More Action!\r\n\r\n\r\nPS.\r\n\r\nWant To Get Results Fast... Within 30 to 90 days?\r\n\r\nGo hard on what you already know.\r\n\r\nWhat\'s your favorite marketing strategy?\r\n\r\nFocus on that one... success and happiness will follow!','https://llpgpro.com/rbz8j9fy/'),(73,1668787278,89,'Revolutionary Email Solution For Internet Marketer','Hi #FIRSTNAME#,\r\n\r\nWhat you\'re about to discover will LITERALLY change the way\r\nyou do business online! Not only will it increase your work\r\nproductivity, it will also get you MASSIVE, targeted exposure!\r\n\r\nReading this email will take you a few minutes, but this is\r\nnothing compared to the time you WILL save by using this \r\nall-in-one email solution. Take a close look...\r\n\r\nThis email solution is the most advanced email platform for\r\nonline business owners and marketers. It is the one and only\r\nplatform designed with internet marketers in mind.\r\n\r\nViralinBox is the name given to this insanely powerful email\r\nand marketing tool. It will help you increase your productivity \r\nby managing ALL your emails from a single dashboard!\r\n\r\n-----\r\nRead Enough? Join ViralinBox NOW!\r\n#CREDITLINK#\r\n-----\r\nTo Your Success,\r\n\r\nMichaelÂ Camire','https://viralinbox.com/michaelcamire'),(75,1668897788,205,'Save in Everyday Needs & Create Income in One','Hi, \r\n\r\nDo you buy Insurance {car, home, health}?\r\nDo you have cable, phone, and other monthly\r\nsubscriptions?\r\nDo you travel or want to, but thought it was too\r\nexpensive?\r\n\r\nWhat if you could save on all of that for as little as $20 to start?\r\n\r\nAnd what if you could earn from referring others\r\nwho want to save and maybe do the same, well HERE\r\nIT IS.\r\n\r\nLet\'s get you started:\r\n\r\n\r\nDarla Key','https://llpgpro.com/wr5vsf4n/'),(76,1668918318,50,'Just Launched : Multi-Level Traffic Generator','This is massive exposure\r\nFIRSTNAME','https://llclick.com/mjdz3b57/'),(77,1669004466,204,'Get The Exact system I use to get signups daily...','Get your hands on the exact same system and Done for You Funnel\r\nI use to get signups daily into my opportunity.\r\n\r\n\r\nWhat would that kind of growth do for your business?\r\n\r\n\r\nPMS is a simple to use Powerful Plug-and-Play System that\r\n\r\nhelps you grow your primary business on autopilot.\r\n\r\n\r\nBut it doesn\'t stop there! This completely customizable marketing system let\'s you\r\n\r\nalso plug-in up to 15 other resources of YOUR choice. Cha-Ching!\r\n\r\nExplosive downline growth is only a click away:\r\n\r\n- Isn\'t it time to take full control?\r\n\r\n- Start promoting yourself, your business, YOUR system using my DFY Funnel \r\n\r\nStart building YOUR list and your income with our done for you system:\r\n\r\n\r\nTo your prosperity,\r\n\r\nRick Laws','https://www.prosperitymarketingsystem.com/go/index.php?s=211760&pageid=NTQ3Ng=='),(78,1670075664,212,'Our SECRET underground traffic source','NEVER BEFORE REVEALED FAST METHOD\r\nGet  FREE Traffic To ANY URLâ€‹\r\nJust submit your link - JOB DONE!\r\nPermanent source that never runs dry\r\nNo Tech Skills Required\r\nWorks In ANY niche\r\nURL will get traffic EVERY SINGLE DAY\r\nFast Movers will get BEST results...\r\n\r\nClick the link below and check it out','https://warriorplus.com/o2/a/bnhnch/0'),(79,1670115302,38,'Passive Income At Its Best','Do you know the truly great thing about passive income?\r\n\r\nIt let\'s you focus on new income lines without sacrificing exisitng ones.\r\n\r\nIf you think passive income is a pipe dream, you need to check this out:\r\n                                           	 \r\nOh, and did I mention you can start free?\r\n\r\nRegards\r\nAnthony Smith\r\nP.S. If you join under me I will promote for you!','https://llclickpro.com/64j78tyb/soloswaps'),(81,1670712296,180,'Start your own online business, today!','Getting your own Online business is possible from now, but you need a place where you can Build that. \r\nThis is a free platform where you can Build it','https://llclickpro.com/EduartTroci/'),(82,1670732947,78,'Sick And Tired Of Making Your Boss Rich','#FIRSTNAME#\r\n\r\nIf You Can Copy and Paste A 3-line Email...\r\n\r\nThen You Can Make $300 (or More Per Day).\r\n\r\nThis Little-Known Money-Getting Method Has Worked, and It Couldn\'t Be Easier.\r\n\r\nWork at Home on Your Schedule.\r\nReport to Nobody But You\r\n\r\nMake a Massive Full-Time Income For Just an Hour of Work Per Day\r\n\r\nNo Experience or Skills Required\r\nCopy and Paste Simple! \r\n\r\nIf You\'re Tired of Working Hard and Want to Make $300 or More Per Day From Home, then THIS is What You Need Right Now:\r\n\r\nClick the Link to Get Started\r\n\r\nThank me Later,\r\n\r\nLaToya Rogers','https://clicktrakr.biz/ManifestEveryVisionwithLaToya'),(83,1671213812,180,'Start your own online business, today!','Getting your own Online business is possible from now, but you need a place where you can Build that. \r\nThis is a free platform where you can Build it','https://llclickpro.com/EduartTroci/'),(84,1671416506,151,'Generate up to 150 Leads per day [ FREE SYSTEM ]','Hello, \r\nCopy this 100% FREE system and generate:\r\n\r\n  - Up to 150 Leads Per Day!\r\n  - 1000â€™s of visitors to your primary business for free!\r\n  - And multiple income streams on autopilot!\r\n\r\nWishing you success,\r\n\r\n     - David','https://lllpg.com/jwv67cpn/solo'),(238,1755450959,448,'Become An Independent Rep Free And Earn Big','Free For You.com Will Never Cost One Penny For You Or Your Client.\r\n\r\nThis Is Brand New So Get On Board While This Is HOT !  The Money You Can Earn\r\n\r\nIs Staggering ! \r\n\r\n Remember, This Is 100% FREE With No Catches Or Gimmicks !\r\n\r\n\r\n\r\n  Free signup link for independent rep :     https://app.freeforyou.com/ir/2xi4','https://app.freeforyou.com/ir/2xi4'),(86,1671788267,151,'Get 150 Leads Per Day For FREE','Copy this 100% FREE system and generate:\r\n\r\n  - Up to 150 Leads Per Day!\r\n  - 1000â€™s of visitors to your primary business for free!\r\n  - And multiple income streams on autopilot!\r\n\r\nWishing you success,\r\n\r\n     - David','https://lllpg.com/xsdzpwdk/'),(87,1671947204,78,'Need More Money for Christmas and New Year','#FIRSTNAME#\r\n\r\nYou Are Missing Out On The Chance to Earn Serious Money For Only\r\n\r\nWorking 10-15 Minutes A Day! You Will Get Trained and Can Start Earning ASAP!\r\n\r\nThis Can Lead to Full Time Pay. I\'m Not Sure What You Are Waiting For.\r\n\r\nClick the Link to Get Started\r\n\r\nThank me Later,\r\n\r\nLaToya Rogers','https://clicktrakr.biz/ManifestWealthwithLaToya'),(88,1671956479,57,'Get a Free Solo Ad to 1,000 New Subscribers','Hi,\r\n\r\nAre you tired of struggling to get signups and sales for your affiliate and network marketing offers? I have a solution for you.\r\n\r\nIntroducing Safelist Mastery, the ultimate resource for boosting your traffic and increasing your sales. \r\n\r\nFor a limited time, we\'re offering a special bonus to new members: a FREE Solo Ad to 1,000 new subscribers.\r\n\r\nSign up for a free account today and get instant access to our system which will deliver fast traffic, build your email list, and show you the best way to use safelists for maximum success. Plus, you\'ll get a Solo Ad to 1,000 hot prospects, absolutely free.\r\n\r\nDon\'t miss out on this amazing opportunity to boost your traffic and grow your business. \r\n\r\nSign up for a free account now at Safelist Mastery and claim your free solo ad.\r\n\r\nBest regards,\r\n\r\nHugh Evans','https://www.SafelistMastery.com/home.asp?rid=225&p=11'),(89,1672038249,35,'#LASTNAME# Here\'s The Flow To Infinite Wealth','LEARN HOW BEYOND INFINITY IS THE PERFECT FLOW TO INFINITE WEALTH WITH OUR NEW AUTOMATIC INCOME STREAM CALLED THE','https://beyondinfinity.club/?u=devildog10'),(90,1672180027,78,'Need More Money for New Year','#FIRSTNAME# \r\n\r\nTired of Working 40 hrs A Week and Not Having Time For Your Family?\r\n\r\nWorried About Money?\r\n\r\nChange Your Life Today:\r\n\r\nClick the Link to Get Started\r\n\r\nThank me Later,\r\n\r\nLaToya Rogers','https://clicktrakr.biz/ManifestWealthwithLaToya'),(91,1672274867,180,'This is my new Year Gift 500 Email Leads per Month','#FIRSTNAME#\r\n \r\nThe free Gifts are Appreciated all the time, this is your time and hope you will appreciate it. This is a Package of 500 Email Leads per Month, all for free! Now you don\'t know me but I promise we will be connected soon if you will accept my Gift.\r\n\r\nRegards \r\nEduart Troci \r\ntrafficbuilder(.)pro','https://lllpg.com/804d2s3t'),(92,1672371536,78,'Need More Money for New Year','#FIRSTNAME#\r\n\r\nTired of Working 40 hrs A Week and Not Having \r\nTime For Your Family?\r\n\r\nWorried About Money?\r\n\r\nChange Your Life Today:\r\n\r\nClick the Link to Get Started\r\n\r\nThank me Later,\r\n\r\nLaToya Rogers','https://clicktrakr.biz/ManifestWealthwithLaToya'),(94,1672930580,78,'We Need To Talk','#FIRSTNAME#\r\n\r\nYou Are Missing Out On The Chance to Earn Serious Money For Only\r\n\r\nWorking 10-15 Minutes A Day! You Will Get Trained and Can Start Earning ASAP!\r\n\r\nThis Can Lead to Full-Time Pay. I\'m Not Sure What You Are Waiting For. \r\n\r\nClick the Link to Get Started\r\n\r\nThank me Later,\r\n\r\nLaToya Rogers','https://clicktrakr.biz/ManifestWealthwithLaToya'),(95,1673226785,22,'Ad Panel Generator by Mary Ann Myers','Robo Cash Machine\r\nJust Launched\r\nby Mary Ann Myers','https://robocashmachine.com/i/jeffdionne'),(96,1673411236,111,'Attention: TOP POSITIONS AVAILABLE ON MY TEAM...','Hi,\r\n\r\nFailed to make money online in the past? Having a hard time driving traffic to your offer? Struggling to find a way to make money online without all the stress?\r\n\r\nThen you are the one I\'m looking for!\r\n\r\nI found a brand new marketing system that eliminates all the advertising and stress that comes to making money online! \r\n\r\nThe system will automatically place new members below you! 139 signed up last week below me! \r\n\r\nFantastic! \r\n\r\nAttention: TOP POSITIONS AVAILABLE ON MY TEAM... but you have to act fast.\r\n\r\nTo find out more click the link below!\r\n\r\nGood luck!\r\n\r\nYours,\r\n\r\nJoshua Fincham','https://llpgpro.com/jmg7vhsv/'),(97,1673412425,233,'3n1Ads Adboard Post Daily For Free!','3n1Ads Adboard Post Daily For Free!\r\n\r\nHello #FIRSTNAME#,\r\n\r\nPost your ads Free at 3n1Ads get 100\'s of views daily! High Traffic Site! We constantly promote the site to get your advertisements maximum exposure.\r\n\r\nWe also offer Banner and Text Ads rotation on networked sites. Click Tracker url shorty with detailed stats use for all of your promotions. See exactly where the clicks come from! 100+ Click Solo Ads Available! Special Ad Sites Promo Code Page with 1000\'s in free advertising!\r\n\r\nFree Members post every 3 days. Pro members twice daily! Easy commissions with payout when you reach only $5.00. Everything you need is provided!\r\n\r\nWhat are you waiting for? Start posting and earning commissions today!\r\n#CREDITLINK#\r\n\r\nBest Regards\r\nSite Manager','https://3n1ads.com/a03'),(98,1673446260,78,'Tired of Working for Someone Else','#FIRSTNAME#\r\n\r\nYou Are Missing Out On The Chance to Earn Serious Money For Only\r\n\r\nWorking 10-15 Minutes A Day! You Will Get Trained and Can Start Earning ASAP!\r\n\r\nThis Can Lead to Full-Time Pay. I\'m Not Sure What You Are Waiting For.\r\n\r\nClick the Link to Get Started\r\n\r\nThank me Later,\r\n\r\nLaToya Rogers','https://clicktrakr.biz/ManifestWealthwithLaToya'),(99,1673603393,78,'Tired of Working for Someone Else','#FIRSTNAME#\r\n\r\nYou Are Missing Out On The Chance to Earn Serious Money For Only\r\n\r\nWorking 10-15 Minutes A Day! You Will Get Trained and Can Start Earning ASAP!\r\n\r\nThis Can Lead to Full-Time Pay. I\'m Not Sure What You Are Waiting For. Start Right Here...\r\n\r\nClick the Link to Get Started\r\n\r\nThank me Later,\r\n\r\nLaToya Rogers','https://clicktrakr.biz/ManifestWealthwithLaToya'),(100,1673780279,151,'Get 150 Leads Per Day For FREE','Copy this 100% FREE system and generate:\r\n\r\n  - Up to 150 Leads Per Day!\r\n  - 1000â€™s of visitors to your primary business for free!\r\n  - And multiple income streams on autopilot!\r\n\r\nWishing you success,\r\n\r\n     - David','https://lllpg.com/jwv67cpn/solo'),(101,1673856141,78,'We Need To Talk','#FIRSTNAME#\r\n\r\nYou Are Missing Out On The Chance to Earn Serious Money For Only\r\n\r\nWorking 10-15 Minutes A Day! You Will Get Trained and Can Start Earning ASAP!\r\n\r\nThis Can Lead to Full-Time Pay. I\'m Not Sure What You Are Waiting For. \r\n\r\nClick the Link to Get Started\r\n\r\nThank me Later,\r\n\r\nLaToya Rogers','https://clicktrakr.biz/ManifestWealthwithLaToya'),(102,1673896934,233,'Worldâ€™s Most Accurate Lottery System!','Worldâ€™s Most Accurate Lottery System\r\n\r\n#FIRSTNAME#,\r\n\r\nAttention: If you\'re a player of your states official Pick 3 or Pick 4 Lottery Games and not winning on average of 3 to 7 times per week, then you need to learn how to play The Law of Averages and Start Winning Today!\r\n\r\nThe Worldâ€™s Most Accurate Lottery System For Tracking And Winning!\r\n\r\n-GET YOUR SITE MEMBERSHIP OR LOTTERY BOOK TODAY!\r\n-WORKS FOR ALL STATES PICK 3, PICK 4, & PICK 5 GAMES!\r\n-PROOF OF FINDING PATTERNS IN LOTTERY GAMES ARE REAL \r\n AND IS WHAT WE DO FOR PICK 3, 4, AND PICK 5 TO WIN!\r\n-WE TEACH AND EDUCATE OUR MEMBERS!\r\n\r\nUse this Automated System to increase your chances of winning by 70%! \r\n#CREDITLINK#\r\n\r\nHappy Winnings :-)\r\nrrp3','https://3n1ads.com/a33'),(103,1674184484,111,'Lock-in Now For Instant Paying Referrals!','Hey #FIRSTNAME#\r\n\r\nAre you earning money online like you ever wanted?\r\n\r\nDo you want to be able to pay off all your bills and\r\nchange your life forever?\r\n\r\nMy name is Joshua and I want to show you a video about a FREE-to-join program that makes at least $2000 a month online, without even having to refer a single person! \r\n\r\nClick here to watch: #CREDITLINK#\r\n\r\nYou have probably tried many things and ended up \r\nspending a lot of money on plans or programs that\r\nyou just couldn\'t figure out or just plain don\'t \r\nwork for most people.\r\n\r\nThat\'s about to change. I am going to hand YOU an \r\ninstant done for you online business that can earn you hundreds of dollars per week, on auto-pilot!\r\n\r\nAre you ready to get started?\r\n\r\nClick the link below to watch the video. \r\n\r\nYours,\r\n\r\nJoshua','https://llpgpro.com/jmg7vhsv/soloswaps'),(104,1674204999,57,'NEW LAUNCH: Get Your Free Solo Ads','Hi, \r\n\r\nDo you need more signups and sales for your online business, network marketing opportunity, or lead capture page?\r\n\r\nOf course ... we all want more signups and sales!\r\nTo increase your results you need MORE TRAFFIC and BETTER TRAFFIC.\r\n\r\nSide Hustle Traffic just launched today and can give you plenty of high quality traffic for whatever you promote.\r\n\r\nI will prove it with a FREE Solo Ad to 1,000 new subscribers!\r\n\r\nSign up for a free account today and get instant access to our system which will deliver fast traffic and build your email list.\r\n\r\nDon\'t miss out on this amazing opportunity to boost your traffic and grow your business. \r\n\r\nSign up for a free account now at Side Hustle Traffic and claim your free solo ad. \r\n\r\nThanks,\r\nHugh Evans','https://www.sidehustletraffic.com/home.asp?rid=90&p=11'),(105,1674351644,78,'Can You Start Today or Maybe Tomorrow','#FIRSTNAME#\r\n\r\nWill You Be Able to Start Getting Paid in Cash Today or Maybe Tomorrow?\r\n\r\nClick here for Yes\r\n\r\nOr here for No\r\n\r\nYou Don\'t Need to Have Any Qualifications For This Position As Long As You Have the Internet and Are Motivated.\r\n\r\nPay is up to $600 Per Hour.\r\n\r\nSpace is Limited, So If You\'re Serious You Need to Reserve A Spot Now. Click the Link to Lock in Your Spot:\r\n\r\nThis Offer Expires in 24 hrs.\r\n\r\nClick the Link to Get Started\r\n\r\nThank me Later,\r\n\r\nLaToya Rogers','https://clicktrakr.biz/ManifestWealthwithLaToya'),(106,1674442012,78,'Are You Ready To Make Life Give You What You Want','#FIRSTNAME#\r\n\r\nSorry, to Be So Blunt but you Must Start This Fast!  The Last Time This was Opened it Literally Closed in\r\n\r\nLess Than 24 hours. People are Serious about Learning How to Start Having $600 + Days Online.  It\'s No Joke, this Closed up Fast!\r\n\r\nCongrats if you Do This, Your Life is Going to Change. Start Right Here!\r\n\r\nClick the Link to Get Started\r\n\r\nSuper Excited for You\r\n\r\nThank me Later,\r\n\r\nLaToya Rogers','https://clicktrakr.biz/ManifestWealthwithLaToya'),(107,1674477954,151,'Get 150 Leads Per Day For FREE','Copy this 100% FREE system and generate:\r\n\r\n  - Up to 150 Leads Per Day!\r\n  - 1000â€™s of visitors to your primary business for free!\r\n  - And multiple income streams on autopilot!\r\n\r\nWishing you success,\r\n\r\n     - David','https://lllpg.com/jwv67cpn/solo'),(108,1674593685,5,'#FIRSTNAME#, 2.6 Million Dollar Giveaway!','Hello #FIRSTNAME#!\r\n\r\nClaim Your Share of 2.6 Million Dollars \r\nin Marketing Tools For F.R.E.E!\r\n\r\nhttp://llclickpro.com/milliondollargiveaway/02soloswaps\r\n\r\nSpread the Word about this through our\r\nMassive Traffic Network and get Thousands\r\nof F.R.E.E Visitors to Your Website!\r\n\r\nThank you!\r\n\r\nHerb Ratsch\r\nherb@herbratsch.com\r\nhttps://www.im-club.com/?pmapower','https://llclickpro.com/milliondollargiveaway/02soloswaps'),(109,1674661440,233,'3n1Ads Free High Traffic Adboard','3n1Ads Free High Traffic Adboard \r\n\r\nHello #FIRSTNAME#,\r\n\r\nPost your ads for free at 3n1Ads Adboard\r\n\r\n-High Traffic Site\r\n-Free URL Cloaker Tracker\r\n-Banner & Text Ads Rotator\r\n-100 Click Solo Ads Available\r\n-1000\'s Of Free Promo Codes Page\r\n-Upgrade To Pro And Post 2X Daily\r\n\r\nWe are constantly promoting this site so \r\nthat your ads will be seen. Join Us Today!\r\n#CREDITLINK#\r\n\r\nBest Regards\r\nSite Manager','https://3n1ads.com/a03'),(110,1674946084,5,'#FIRSTNAME#, 2.6 Million Dollar Giveaway!','Hello #FIRSTNAME#!\r\n\r\nClaim Your Share of 2.6 Million Dollars \r\nin Marketing Tools For F.R.E.E!\r\n\r\nhttp://llclickpro.com/milliondollargiveaway/02soloswaps\r\n\r\nSpread the Word about this through our\r\nMassive Traffic Network and get Thousands\r\nof F.R.E.E Visitors to Your Website!\r\n\r\nThank you!\r\n\r\nHerb Ratsch\r\nherb@herbratsch.com\r\nhttps://www.im-club.com/?pmapower','https://llclickpro.com/milliondollargiveaway/02soloswaps'),(111,1674953671,22,'System IO Watch Video','System IO\r\n100% Free Forever\r\nno credit card required\r\nsign up\r\nbefore they change there mind\r\n\r\n300000 members use them\r\nthis saves $320 a month\r\ncompared to other platforms\r\nalso get an 8 class video course\r\nas a bonus for signing up\r\nor watch 1st before deciding to join\r\nClick Credit Link Below\r\nScroll down half way down to\r\nwatch video video\r\nand very bottom on instructions\r\nto claim the course\r\nJeff Dionne','https://mymarketingschool.com/content.php?page=siopub'),(112,1675045957,5,'#FIRSTNAME#, 2.6 Million Dollar Giveaway!','Hello #FIRSTNAME#!\r\n\r\nClaim Your Share of 2.6 Million Dollars \r\nin Marketing Tools For F.R.E.E!\r\n\r\nhttp://llclickpro.com/milliondollargiveaway/02soloswaps\r\n\r\nSpread the Word about this through our\r\nMassive Traffic Network and get Thousands\r\nof F.R.E.E Visitors to Your Website!\r\n\r\nThank you!\r\n\r\nHerb Ratsch\r\nherb@herbratsch.com\r\nhttps://www.im-club.com/?pmapower','https://llclickpro.com/milliondollargiveaway/02soloswaps'),(113,1675050136,50,'Real Live Experts Closing Sales For YOU!!','Here\'s Your Chance To Learn How To Start Earning Commissions For Free With This 100% Done For You System','https://llclick.com/hnrb7wf9/'),(114,1675067173,57,'Did you miss this?','Hi, \r\nDo you need more signups and sales for your online business, network marketing opportunity, or lead capture page?\r\n\r\nSide Hustle Traffic just launched today and can give you plenty of high quality traffic for whatever you promote.\r\n\r\nI will prove it with a FREE Solo Ad to 1,000 new subscribers!Sign up for a free account today and get instant access to our system which will deliver fast traffic and build your email list.Don\'t miss out on this amazing opportunity to boost your traffic and grow your business. \r\n\r\nSign up for a free account now at Side Hustle Traffic and claim your free solo ad. \r\n\r\nThanks,\r\nHugh Evans','https://www.sidehustletraffic.com/home.asp?rid=90&p=11'),(115,1675162443,35,'Missed the startup of Bitcoin, Apple, or Tesla?','Introducing The Future of Electric Vehicle Charge Platforms!\r\nBecome an EV Ambassador (Part Owner) Today!!\r\nBe Part Of Deploying 500,000 EV Charging Stations!!!\r\n\r\nGet in FRONT of the next Trillion Dollar Industry\r\nWatch this short video and find out how to be a trailblazer in this next fiscal phenomenon.\r\n\r\nLimited Founder Positions are still available but, won\'t last long.','https://zerocatch.club/gregsgifts/evcharging/'),(116,1675211745,226,'Non-Native Speakers Only by M. Gaspary','Non-Native Speakers Only: The Best Way to Start Writing as a Non-Native Speaker & Make a Living from Web Content Writing as Modern Storytellers\r\n\r\nINTRIGUED? BUY THE BOOK NOW\r\n\r\nThis book will be available April 28, 2023.\r\nPreorder Cost - $0.99','https://lynxtrax.com/eIuck'),(117,1675232881,5,'#FIRSTNAME#, 2.6 Million Dollar Giveaway!','Hello #FIRSTNAME#!\r\n\r\nClaim Your Share of 2.6 Million Dollars \r\nin Marketing Tools For F.R.E.E!\r\n\r\nhttp://llclickpro.com/milliondollargiveaway/02soloswaps\r\n\r\nSpread the Word about this through our\r\nMassive Traffic Network and get Thousands\r\nof F.R.E.E Visitors to Your Website!\r\n\r\nThank you!\r\n\r\nHerb Ratsch\r\nherb@herbratsch.com\r\nhttps://www.im-club.com/?pmapower','https://llclickpro.com/milliondollargiveaway/02soloswaps'),(118,1675399531,233,'3n1Ads High Traffic Adboard Post Daily','3n1Ads High Traffic Adboard Post Daily\r\n\r\nHello #FIRSTNAME#,\r\n\r\nPost your ads for free at 3n1Ads Adboard\r\n\r\n-Very High Traffic Site\r\n-Free URL Cloaker/Tracker\r\n-100 Click Solo Ads Available\r\n-Banner/Text Network Ads Rotator\r\n-1000\'s Of Free Promo Codes Page\r\n-Upgrade To Pro And Post 2X Daily\r\n\r\nWe are constantly promoting this site so \r\nthat your ads will be seen. Join Us Today!\r\n#CREDITLINK#\r\n\r\nBest Regards\r\n3n1Ads Manager','https://3n1ads.com/a34'),(119,1675559215,5,'#FIRSTNAME#, 2.6 Million Dollar Giveaway!','Hello #FIRSTNAME#!\r\n\r\nClaim Your Share of 2.6 Million Dollars \r\nin Marketing Tools For F.R.E.E!\r\n\r\nhttp://llclickpro.com/milliondollargiveaway/02soloswaps\r\n\r\nSpread the Word about this through our\r\nMassive Traffic Network and get Thousands\r\nof F.R.E.E Visitors to Your Website!\r\n\r\nThank you!\r\n\r\nHerb Ratsch\r\nherb@herbratsch.com\r\nhttps://www.im-club.com/?pmapower','https://llclickpro.com/milliondollargiveaway/02soloswaps'),(120,1675650603,5,'#FIRSTNAME#, 2.6 Million Dollar Giveaway!','Hello #FIRSTNAME#!\r\n\r\nClaim Your Share of 2.6 Million Dollars \r\nin Marketing Tools For F.R.E.E!\r\n\r\nhttp://llclickpro.com/milliondollargiveaway/02soloswaps\r\n\r\nSpread the Word about this through our\r\nMassive Traffic Network and get Thousands\r\nof F.R.E.E Visitors to Your Website!\r\n\r\nThank you!\r\n\r\nHerb Ratsch\r\nherb@herbratsch.com\r\nhttps://www.im-club.com/?pmapower','https://llclickpro.com/milliondollargiveaway/02soloswaps'),(121,1675752197,5,'#FIRSTNAME#, 2.6 Million Dollar Giveaway!','Hello #FIRSTNAME#!\r\n\r\nClaim Your Share of 2.6 Million Dollars \r\nin Marketing Tools For F.R.E.E!\r\n\r\nhttp://llclickpro.com/milliondollargiveaway/02soloswaps\r\n\r\nSpread the Word about this through our\r\nMassive Traffic Network and get Thousands\r\nof F.R.E.E Visitors to Your Website!\r\n\r\nThank you!\r\n\r\nHerb Ratsch\r\nherb@herbratsch.com\r\nhttps://www.im-club.com/?pmapower','https://llclickpro.com/milliondollargiveaway/02soloswaps'),(122,1675787475,233,'100+ Real Click Solo\'s By 3n1Ads','Attention Marketers,\r\n\r\nNeed Real Clicks for Sign Ups and Sales? \r\nWe have them at 3n1Ads!\r\n\r\nWe submit your Solo Ad to 20 ad sites with\r\nover 50K members with 100 Click Guarantee\r\nbut you usually get way more than 100!\r\n\r\nPlus, all solo ad orders include a text ad\r\n& banner ad rotated on our network for 30\r\ndays with unlimited views and clicks!\r\n\r\nHow Much? Just 12.00 for a limited time.\r\nFirst come first served. Get yours now!\r\n#CREDITLINK#\r\n\r\nBest Regards\r\n3n1Ads Manager','https://3n1ads.com/a10'),(123,1675840963,5,'#FIRSTNAME#, 2.6 Million Dollar Giveaway!','Hello #FIRSTNAME#!\r\n\r\nClaim Your Share of 2.6 Million Dollars \r\nin Marketing Tools For F.R.E.E!\r\n\r\nhttp://llclickpro.com/milliondollargiveaway/02soloswaps\r\n\r\nSpread the Word about this through our\r\nMassive Traffic Network and get Thousands\r\nof F.R.E.E Visitors to Your Website!\r\n\r\nThank you!\r\n\r\nHerb Ratsch\r\nherb@herbratsch.com\r\nhttps://www.im-club.com/?pmapower','https://llclickpro.com/milliondollargiveaway/02soloswaps'),(124,1675846044,57,'Get 2 Free Solo Ads With Over 100 Clicks Each','Hi,\r\n\r\nIf you want more signups and sales, then you need MORE TRAFFIC and BETTER TRAFFIC.\r\n\r\nSide Hustle Traffic just launched a couple of weeks ago.  It has already climbed to the #2 traffic site with best conversions according to the Traffic Wise rankings.  That is #2 out of over 600 sites tested!\r\n\r\nIf you join Side Hustle Traffic and try it for yourself, I will give you 2 big bonuses.\r\n\r\n1. 1,000 Free Mailing Credits at Side Hustle Traffic, and\r\n2. Two Free Solo Ads from 100 Click Solos.\r\n\r\nThose solo ads from 100 Click Solos will generate 100 to 40o clicks EACH for whatever you promote.  The 1,000 mailing credits will let you send you ad to 1,000 members at Side Hustle Traffic without clicking to earn credits.\r\n\r\nTons of quality free traffic to join a site you NEED to be a part of.\r\n\r\nDon\'t miss out on this amazing opportunity to boost your traffic and grow your business.\r\n\r\nSign up for a free account now at Side Hustle Traffic.\r\n\r\nThanks,\r\nHugh Evans','https://www.SideHustleTraffic.com/home.asp?rid=90&p=19'),(125,1675898762,140,'JUST LAUNCHED - JOIN THE POWERLINE! JOIN NOW!','JUST LAUNCHED - JOIN THE POWERLINE!\r\n\r\nHey there [[NAME]],\r\n\r\nBecome a MEMBER for ONLY 9.95/month\r\nTOP QUALITY HEALTH PRODUCTS\r\nUp to 75 % OFF Retail!\r\nMore Products Coming!\r\n\r\nBecome an AFFILIATE for a One Time Payment of ONLY $40 and Get Paid Six Ways\r\n\r\nGet pay from $2,047 to $40,000 monthly residual income !\r\n* WEEKLY FAST START COMMISSIONS\r\n* 2 X 15 FORCED MATRIX COMMISSIONS\r\n* MATCHING BONUSES\r\n* RETAIL COMMISSIONS\r\n* INFLUENCER BONUSES\r\n* DIAMOND BONUS POOL\r\n\r\nWATCH THE VIDEO, TAKE THE FREE TOUR, GRAB YOUR TOP SPOT NOW!\r\n\r\nTo Your Success,\r\nBobbi Jo Nichols','https://www.bjsetc.com/?rd=jz4sXYmn'),(126,1675932862,5,'#FIRSTNAME#, 2.6 Million Dollar Giveaway!','Hello #FIRSTNAME#!\r\n\r\nClaim Your Share of 2.6 Million Dollars \r\nin Marketing Tools For F.R.E.E!\r\n\r\nhttp://llclickpro.com/milliondollargiveaway/02soloswaps\r\n\r\nSpread the Word about this through our\r\nMassive Traffic Network and get Thousands\r\nof F.R.E.E Visitors to Your Website!\r\n\r\nThank you!\r\n\r\nHerb Ratsch\r\nherb@herbratsch.com\r\nhttps://www.im-club.com/?pmapower','https://llclickpro.com/milliondollargiveaway/02soloswaps'),(127,1676063252,5,'#FIRSTNAME#, 2.6 Million Dollar Giveaway!','Hello #FIRSTNAME#!\r\n\r\nClaim Your Share of 2.6 Million Dollars \r\nin Marketing Tools For F.R.E.E!\r\n\r\nhttp://llclickpro.com/milliondollargiveaway/02soloswaps\r\n\r\nSpread the Word about this through our\r\nMassive Traffic Network and get Thousands\r\nof F.R.E.E Visitors to Your Website!\r\n\r\nThank you!\r\n\r\nHerb Ratsch\r\nherb@herbratsch.com\r\nhttps://www.im-club.com/?pmapower','https://llclickpro.com/milliondollargiveaway/02soloswaps'),(128,1676105876,151,'Get Your Access To This Lead Generation System','Hello,\r\n\r\nNot many traffic systems excite me these days. This one does.\r\n\r\nHere are the reasons:\r\n\r\n1) It offers a free list management system for all members.\r\n\r\n2) I can build my list, create an autoresponder and send broadcast free.\r\n\r\n3) It has a unique ad tracking system that ensures that my ads are really watched, not just getting clicks.\r\n\r\n4) Its link-tracking system is top-notch. It can tell me if I\'m getting real visitors or just bot clicks.\r\n\r\n5) I can get SEO traffic from its Social Review system.\r\n\r\n6) I can get traffic from hundreds of other networks without joining each.\r\n\r\nThis is a system with lots of potential. Check it out.\r\n\r\nWishing you success,\r\n\r\nDavid','https://llclick.com/cr24bkjh/soloswaps'),(129,1676149624,242,'Best Deal Ever on Video Marketing Tools','This weekend only - Best Deal Ever on Video Marketing Tools.\r\n\r\nhttps://mb101.net/viddoubleplay\r\n\r\nLarry Roach\r\nMarketing Basics 101\r\n\r\nLink to click for credits: #CREDITLINK#','https://mb101.net/viddoubleplay'),(130,1677377142,180,'All is done in just 10 minutes a day','The Easy Way to start a business ever and getting results in 24 hours. Check out to believe it!','https://lllpg.com/5znvm5n9/'),(131,1677438467,51,'The WE GOT FRIENDS PRE-LAUNCH! It is blowing up, d','Hi#FIRSTNAME#  \r\nThe We Have Friends pre-launched is off to a great start.\r\n\r\nIf yo have not yet registered go here and register ASAP - \r\n\r\nThey are expecting 100,000+ to register before the business \r\nlaunches in 30 days.\r\n\r\nLots more information will be added to the website and back office\r\nover the coming days and weeks as the get closer to the actual \r\nlaunch.  Don\'t worry about all of the details right now, the \r\nimportant thing right now is that you get registered and lock \r\nin your position in the NitroLine ASAP! \r\n\r\nThis is a 30-day free pre-launch so the position you secure \r\nnow will be your spot when We Got Friends launches in mid-March \r\nif you decide to upgrade. If you decide to not upgrade then \r\nyou do nothing. \r\n\r\nThe core product will be something we all need, 100 USA Leads \r\nwith names, email addresses, and phone numbers every month. \r\n\r\nNow go lock in your spot and let\'s see how large we can build \r\nthis in the next 30 days\r\nThanks\r\nSamantha','https://wewillshowyou.info/UKivq'),(132,1677691249,242,'Get a ton of free PLR and MRR here...','I just learned that my buddy Ryan has set up a special page where he\'s offering my subscribers complimentary access to his site with thousands (yes... literally 1000â€™s) of Private Label Rights and Master Resell Rights products with more added multiple times per week.\r\n\r\nCheck it out here:\r\n\r\nhttps://mb101.net/monthlycontent0\r\n\r\n(This same site is 47 bucks per month if you order through the main page)\r\n\r\nYou even get complimentary hosting (with full cPanel access, etc.), premium software plus a ton more...\r\n\r\nAnd the really awesome part is you can actually request products YOU find and have them purchased for so you donâ€™t have to buy them yourself!\r\n\r\nAnyway - I have no clue how long this will be up so check it out and decide if this is something for you.\r\n\r\nBest part? \r\n\r\nIt doesn\'t cost a cent to check out everything (you could literally download everything in the member\'s area if you want)...\r\n\r\nGet it all here free:\r\n\r\nhttps://mb101.net/monthlycontent0\r\n \r\nTo Your Success,\r\nLarry Roach','https://mb101.net/monthlycontent0'),(133,1678065531,51,'Are You Passing on Zero Cost M0ney?','Hi #FIRSTNAME#,\r\nIt\'s this simple, you will lose money by not watching this video! \r\n\r\nYou\'re going to kick yourself in the butt for not watching \r\nthis video sooner.\r\n\r\nA year from now you will say','https://wewillshowyou.info/UKivH'),(134,1678562078,242,'Free AI Content Creator','There good and bad news regarding using AI (ChatGPT, etc.) in our businesses.\r\n\r\nAI can help us tremendously in our businesses and, at the moment, it is still free to use.\r\n\r\nHowever, the window of opportunity is closing fast.\r\n\r\nIt is very unlikely that AI will continue to be free for very long. The tools that make it easier to use are already becoming more and more expensive.\r\n\r\nThat\'s why I wanted to let you know about this weekend\'s mega deal.\r\n\r\nRight now, you can lock in FREE access to Creator AI, one of the best tools for automating your content creation with cutting-edge AI.\r\n\r\nhttps://mb101.net/aiprofits\r\n\r\nCheck it out now, because it goes away tomorrow night.\r\n\r\nFor your success,\r\n\r\nLarry Roach\r\n\r\nP.S. - There are other options in addition to the free one. They all are very inexpensive during this mega deal. And they are so good that I personally purchased all of them. Choose the one that makes the most sense for your business and your budget. https://mb101.net/aiprofits','https://mb101.net/aiprofits'),(135,1679886591,51,'Simple One Page Funnel Hack Generates Newbie Aweso','Hi \r\n#FIRSTNAME# ,\r\nThis AMAZINGLY simple One Page Funnel highly converts and is a \r\nfantastic way to earn as an affiliate and build a list.Â  \r\n\r\nIt is a true 360 degree system that pays lifetime commissions \r\nin a variety of ways.\r\nOnly $7 one-time to get yours.Â  You can be up and running in \r\nminutes and it is totally newbie friendly.\r\n\r\nSimple One Page Funnel Hack Generates Newbie Awesome Commissions.\r\nGet Started Today.\r\nThanks\r\nSamantha','https://wewillshowyou.info/UKBh8'),(136,1679912923,256,'Get Rich Slow OR Get Rich Lambo Quick?','It Took People 10 Years to Reach \r\nDiamond Rank in Amway!\r\n\r\nIn This NEW Company it\'s Been \r\nDone in Under 90 Days!\r\n\r\nGet Rich Lambo Quick #FIRSTNAME#:\r\n#CREDITLINK#','https://bit.ly/lambobuyer'),(137,1680019363,260,'Freebies','Hello, I\'m Scholarv23\r\n\r\nUnlock ðŸ”“ a World ðŸŒ of Irresistible Freebies ðŸŽ and Exclusive Giveaways ðŸŽ‰ Now! Instantly satisfy your desires ðŸ¤© with just one click âœ…. Don\'t miss out on the best things in life, all for FREE! ðŸ’¸ Tap on my link and indulge in endless rewards ðŸ† - this is your chance to WIN BIG! ðŸ¤‘\r\n\r\nhttps://linktr.ee/scholarv23','https://linktr.ee/scholarv23'),(141,1680986799,242,'Lead Generation On Steroids','Tired Of Failing Miserably At Generating Leads?\r\n\r\nPut Lead Generation On Steroids\r\n\r\nEffortlessly Generate Thousands Of Fresh, Highly Targeted Leads Every Dayâ€¦\r\n\r\n#CREDITLINK#','https://mb101.net/megadeal'),(142,1681174399,140,'25 Places to Post Your Affiliate Links','We have 25 places that you can post to at NO cost ever...!\r\n\r\nHere is our ultimate credit giveaway area. You have gotta DO this!!\r\n\r\n- Classified Ads: Post Ads to OVER 5,000 Sites, Earn Credits with NO Limits!\r\n- 50,000 Guaranteed Visitors Account\r\n- Multi-Commission System: 18 Worldprofit Sites that are FREE to join with Bonus Credits and more\r\n- 500,000 Credits ... FREE AND EASY ...\r\n- Social Network & Mini Blog Package: Generate Organic Search Traffic to your ads\r\n- Massive Affiliate Marketplace: Get Your Affiliate LINK In Front Of Thousands In Minutes!\r\n- Ad Stream: Get your link on our WP AdStream! NO Limits for ONE Year!\r\n- Worldprofit\'s Solo Email Blaster - Post to 3,000 EVERY 3 Days FREE\r\n\r\nPLUS Premium Advertising Services: GET our HIGH End packages for rock bottom prices!\r\n\r\nGet details below on how this all works...\r\n\r\nBobbi Nichols \r\nhttps://www.livegoodtour.com/Kr8zzy?SOURCE=WP','https://www.bjsetc.com/?rd=om5gFluN'),(143,1684137239,57,'Free 45k+ Solo Ad Just For You','Hi,\r\n\r\nTired of costly ads? Try Surefire Ads! Free platform to promote your business. Get a free Supercharged Solo Ad with 45,000 leads.\r\n\r\nJoin now and start promoting today!\r\n\r\nThanks,\r\nHugh Evans','https://www.SurefireAds.com/home.asp?rid=82&p=20'),(144,1684914886,57,'One Hour Can Change Your Traffic Game Forever','Hi,\r\nStop wasting precious hours clicking like crazy when you can achieve the same results in only minutes\r\nGet ready to uncover the secrets of driving a 500 to 1,000 top-notch visitors to your website every day, without spending a dime.\r\n\r\nAnd guess what?\r\n\r\nIt only takes one measly hour of your time.\r\nIntroducing the Power Hour Traffic System, your gateway to the easy, high-quality traffic.\r\n\r\nThe key to success lies in our 3-step Power Hour Traffic System. It brings in a flood of responsive visitors but also amps up your conversion rates like never before.\r\n\r\nClick now and discover skyrocketing traffic while saving your valuable time.\r\n\r\nTo your success,\r\nHugh Evans','https://www.PowerHourTraffic.com/home.asp?rid=79&p=11'),(145,1685174536,57,'Ultimate Shortcut to 1,000 High-Quality Visitors a','Hi,\r\nStop wasting precious hours clicking like crazy when you can achieve the same results in only minutes\r\nGet ready to uncover the secrets of driving a 500 to 1,000 top-notch visitors to your website every day, without spending a dime\r\n\r\nIntroducing the Power Hour Traffic System, your gateway to the easy, high-quality traffic.\r\n\r\nThe key to success lies in our 3-step Power Hour Traffic System. It brings in a flood of responsive visitors but also amps up your conversion rates like never before.\r\n\r\nClick now and discover skyrocketing traffic while saving your valuable time.\r\n\r\nTo your success,\r\nHugh Evans','https://www.PowerHourTraffic.com/home.asp?rid=79&p=11'),(146,1686323758,40,'Join Easy Commission Funnel','Hello\r\nIf you have been struggling to make money online for along time, I invite you to take a look at Easy Commission Funnel.  It is used with Leads Leap, and very easy to set up.  \r\nWatch the video\r\nThanks\r\nScott Bos','https://llpgpro.com/zgmfm92n/'),(148,1687033770,283,'Will you join our Money Power Wealth Club?','Hey Dear Partner,\r\n\r\nDoes your current plastic bank card earn you money when you use it?\r\n\r\nWell, if not it is time to upgrade to our metal card which can earns you more money.\r\n\r\nCheck out the link below for more details','https://llclickpro.com/d2vmymhv/'),(149,1687416670,288,'Want an easy job of just sending emails?','Hi,  How\'s it going??\r\n\r\nI am truly blown away with this FREE system that actually\r\npays you to build your email list! Takes under 10 min /day.\r\n\r\nYes, I was paid in my first 24 hours, and I haven\'t spent 1 cent.\r\n\r\nAnd, getting paid every day since. ðŸ˜Ž\r\n\r\nThey actually give you 5,000 subscribers for FREE once you\r\ncreate an account and then pay you to use their mailing platform.\r\n\r\nThey will even pay you per click that is generated\r\nfrom your mailings!\r\n\r\nThis is unlike ANYTHING I have ever experienced online  ever!\r\n\r\nI urge you to check it out, as there is NO sign-up fee of any kind,\r\nNO monthly fee and NO annual fee either.\r\n\r\nNO risk to check out this incredible opportunity to earn by\r\nsimply sending emails! ðŸ‘   Check it out\r\n\r\nThanks,  Alfred Cwothum','https://createsplashpages.com/splash.php?id=7672'),(150,1687964727,290,'Guaranteed Income!','#FIRSTNAME#\r\nCan you believe this  FREE TRIAL?\r\nDon\'t forget to send out your emails today.\r\nYou will be missing out on money if you don\'t.Â \r\nThis will only take you about 5 minutes to send to 100,000 people today.\r\nYou will need to get in the habit of doing this every day.Â **5 minutes per day.**Â \r\nRemember, you will earn $.10 for each person that clicks on your emails.Â  ( Thats 100,000 people seeing your emails today.)\r\nLogin to your account and watch the short video for all you need to know.\r\nIF YOU HAVE NOT JOINED YET,Â Click the link below to get started.Â \r\n\r\nEnjoy your day,\r\nRickyÂ ','https://system.cliqly.com/track.chm.php?affid=36868&subid=&url=https://system.cliqly.com/signup.trial'),(151,1688664173,60,'Three steps to Big Profits','Are you looking for a hassle free way to make money?\r\n\r\nHere\'s how it works:\r\n\r\n1- Sign in\r\n\r\n2- Send pre-written emails to the existing 2 lists\r\n\r\n3- Next day, check your earnings.\r\n\r\nThat\'s it.\r\n\r\nIt\'s free, and it\'s amazing. No credit card required.\r\n\r\nStart earning nowðŸ’°\r\n\r\nDorothea Glenn','https://llpgpro.com/c742cbfh/'),(152,1688681249,57,'Get 3 Free Solo Ads and 1,000 Mailing Credits','Hi,\r\nLast weekend was a big holiday weekend in both Canada and the United States. I hope you enjoyed it.\r\nHowever, if you want results from your online business, then it is time to get back to work.\r\n\r\nThat is why you need to keep consistently driving traffic to whatever you are promoting. More visitors equals more attention.\r\n\r\nThere are now three big FREE bonuses for joining:\r\n- 1,000 Free Mailing Credits at Simple Traffic Secrets\r\n- 2 Free Solo Ads from 100 Click Solos\r\n- Free Solo Ad to 45,000+ Subscribers from Supercharged Solo Ads\r\n\r\nWe are passing 2,000 signups at Simple Traffic Secrets because the bonuses and quality traffic are unbeatable.\r\n\r\nJoin us now and claim your bonuses right in the member\'s area.\r\n\r\nThanks,\r\nHugh Evans','https://www.SimpleTrafficSecrets.com/home.asp?rid=65&p=20'),(154,1689887973,298,'You Have Only One Job','Earn Cash While Youâ€™re Sleeping?\r\n\r\nYes, I know it sounds kinda crazy rightâ€¦\r\n\r\nBut guess what?\r\n\r\nIt is VERY possible to earn money while you are sleeping. And itâ€™s even easier than you might think.\r\n\r\nClick The Link To Make Money While Sleeping\r\n\r\nYouâ€™re about to discover the secrets to making money in your dreams!\r\n\r\nThis guy will show you exactly how he is earning thousands in his sleep. And you can just follow along.\r\n\r\nClick The Link To Duplicate This System\r\n\r\nHope you like it.\r\n\r\nIn your service,\r\n\r\nSteven Alexandrov','https://atripleinstant.com'),(155,1689962430,300,'I\'m Authorized to Giveaway a Limited Number','Hi #FIRSTNAME# I have access to a limited number of giveaway licenses for the Dashnex Builder. With this online software you can build landing pages, full websites with blogs, eCommerce sites, and more.\r\n\r\nThe software has a verified $497.00 per year value. You can now claim your license. \r\n\r\nNO BS! Peter (the product owner) gave me only a limited number of giveaway licenses because I am an early adopter.\r\n\r\nThe software is continuing to develop, so even if you already have a landing page builder or you use WordPress, you should probably claim your license for future use.\r\n\r\nDid I mention it comes with hosting, which is a nice plus.ðŸ˜‰\r\n\r\n#CREDITLINK#','https://clicktrakr.biz/soloswapsmailer'),(157,1691091715,57,'NEW - Free Site Gives You 200 Hot Visitors','Hi,\r\n\r\nIt is time for an advertising revolution.\r\n\r\nMost sites generate too little traffic and require too much work. On top of that, there are dozens of different ways to advertise at every site, which means you are missing out on most of traffic due to being overwhelmed.\r\n\r\nFour In One Ads is a new site that just launches which fixes those problems.\r\n\r\nYou put in your ad once and it is sent out 4 different ways until it hits 200 clicks.\r\n\r\nThat\'s right. 200 GUARANTEED CLICKS from a FREE ad.\r\nIt makes advertising simple and you never need to worry about having to put in text links, banners, solo ads, and safelist mails. You put your ad in once and it is instantly turned into all four of those kinds of advertising across 60 different sites.\r\n\r\nRight now, you can join and get 5,000 free credits, which is enough to send your ad and get 200 guaranteed clicks.\r\n\r\nWhat are you waiting for.\r\n\r\nTake action today!\r\n\r\nThanks,\r\nHugh Evans','https://www.FourInOneAds.com/home.asp?rid=73&p=11'),(159,1692225009,301,'2,047/Month With ZERO Sales!','#FIRSTNAME#,\r\n\r\nIn one month Jeff earned 20,241 with this $10 affiliate program.\r\n\r\nThis funnel is going to go on and make over 6 figures this year!\r\n\r\nRight now Jeff is giving away the exact funnel that he is using for FREE.\r\n\r\nChances like this come around VERY rarely.\r\n\r\nYou want free access to our marketing system?\r\n\r\nYou should JUMP at this! \r\n\r\nPassive Income for You! \r\n\r\nClick below and check out this done for you 6 figure funnel yourself.\r\n\r\nJeff & Jim','https://llpgpro.com/tv93w6h6/'),(160,1694812679,2,'test','sdfkdfk','https://trafficbuildr.com'),(162,1695677834,22,'MaryAnn Myers Traffic Coop','MaryAnn Myers Traffic Coop','https://geniecoop.com/jeffdionne'),(163,1695794583,311,'Fundraiser for Robin - V.A. Nurse','Hello #FIRSTNAME#,\r\n\r\nAssistance needed with medical bills after Surviving Covid-19, a Stroke and Cancer in 2022. \r\nNurse P.V.A.M.C. - CLC Hospice Unit for 14 years.\r\n\r\nâ€œYou have not lived today until you have done something for someone who can never repay you','https://gofund.me/094061b6'),(166,1696275648,311,'Great Opportunity for the Serious Marketer','Hello #FIRSTNAME#,\r\n\r\nFive Star Service puts out the best submitters online. Matt invented the first submitter back in 1999, it submitted to 500 safelists, back then that was awesome. Since then, he has improved on that and created lots of features, like the \'Float Up Ads\' they place your ad at the top of the recipient\'s inbox even if you sent to them days or weeks before.\r\n\r\nMatt also created the \'Ad Chain\' and it lets you send out a series of ads and schedule when they land. The list goes on and on but what most people are interested in is the massive number of leads they can reach when they send an ad. There are several databases loaded with leads and that ensures the client reaches the maximum number of people, smaller submitters have 9 million leads and larger ones can go over 100 million.\r\n\r\nThis is a great opportunity for the serious marketer, you get full use of all the submitters on this page, these are all of the Five Star Submitters and when Matt build new ones he adds them to the Elite Package as well and they will be included in this price, if he ever decides to increase the price, your price will be locked in and never change. I\'ve shown the price of each membership.\r\n\r\nI\'m also giving you a 100% reseller site when you buy the lifetime membership; you get a domain name and I\'ll set up a site just like this one where you can sell the monthly memberships and build a massive recurring revenue stream and I\'ll sell the lifetime memberships so there\'s always money to fill the databases with leads. \r\n\r\nMatt will set-up your reseller site to accept PayPalÂ®. He handle building it, maintaining it, hosting it, and updating it, you just make the sales and collect your money.\r\n\r\n#http://supersubmitters.biz#\r\n\r\nFrom the owner and creator of these fantastic tools:\r\nThe submitters are all different and you may find that some work better for you than others, you don\'t have to use them all if you don\'t want to, when I come in to do my submissions I have my 14 favorites and I only use those. Just use what does the best for you.   -Matt-\r\n\r\nI use them daily and it has turned my online experience around.\r\n\r\nEnjoy - John P','https://supersubmitters.biz'),(167,1696304053,316,'Stop Struggling To Build A Downline','Exploding Top Team Funnel, Ongoing Training with Team Advertising Rotator!','https://www.teamofwealth.com/'),(168,1696738751,311,'Great Opportunity for the Serious Marketer','Hello #FIRSTNAME#,\r\n\r\nFive Star Service puts out the best submitters online. Matt invented the first submitter back in 1999, it submitted to 500 safelists, back then that was awesome. Since then, he has improved on that and created lots of features, like the \'Float Up Ads\' they place your ad at the top of the recipient\'s inbox even if you sent to them days or weeks before.\r\n\r\nMatt also created the \'Ad Chain\' and it lets you send out a series of ads and schedule when they land. The list goes on and on but what most people are interested in is the massive number of leads they can reach when they send an ad. There are several databases loaded with leads and that ensures the client reaches the maximum number of people, smaller submitters have 9 million leads and larger ones can go over 100 million.\r\n\r\nThis is a great opportunity for the serious marketer, you get full use of all the submitters on this page, these are all of the Five Star Submitters and when Matt build new ones he adds them to the Elite Package as well and they will be included in this price, if he ever decides to increase the price, your price will be locked in and never change. I\'ve shown the price of each membership.\r\n\r\nI\'m also giving you a 100% reseller site when you buy the lifetime membership; you get a domain name and I\'ll set up a site just like this one where you can sell the monthly memberships and build a massive recurring revenue stream and I\'ll sell the lifetime memberships so there\'s always money to fill the databases with leads. \r\n\r\nMatt will set-up your reseller site to accept PayPalÂ®. He handle building it, maintaining it, hosting it, and updating it, you just make the sales and collect your money.\r\n\r\n#http://supersubmitters.biz#\r\n\r\nFrom the owner and creator of these fantastic tools:\r\nThe submitters are all different and you may find that some work better for you than others, you don\'t have to use them all if you don\'t want to, when I come in to do my submissions I have my 14 favorites and I only use those. Just use what does the best for you.   -Matt-\r\n\r\nI use them daily and it has turned my online experience around.\r\n\r\nEnjoy - John P','https://supersubmitters.biz'),(169,1697035775,111,'FREE Viral Rebrandable Lead Magnets','Hey there!\r\n\r\nAre you struggling to generate leads and signups? Look no further!\r\n\r\nIntroducing Viral Rebrandable Lead Magnets. With just a single click, you can start seeing a huge flood of leads coming your way every day. How? By sharing free viral reports that 100% brand to you!\r\n\r\nImagine having a constant stream of leads flowing into your business effortlessly. \r\n\r\nIn the next 10 minutes, you can set up this incredible viral lead system that has the potential to generate hundreds of viral leads for you. It can also generate commissions on autopilot!\r\n\r\nWarm regards,\r\n\r\nJoshua','https://llpgpro.com/viral-lead-magnets/'),(170,1697038640,22,'My Marketing School Claim a Course','My Marketing School\r\ngiving you a free video course\r\nno purchase needed\r\nSign Up\r\nconfirm email\r\nLog In\r\nvisit menu tab: Free Courses\r\n\r\nJeff Dionne','https://highclasshits.com/r/mms'),(171,1697387880,22,'Build It 10 Days Early','This is one pre-launch you don\'t want to miss...\r\n\r\nOver 15 years in the making.\r\n\r\nOver 1 year for a team to build it.\r\n\r\nEvery online marketer needs this.\r\n\r\nAnd believe me, when they hear about it, they will all come running.\r\n\r\nThe servers will crash from the load increasing faster than they can be upgraded.\r\n\r\nThat\'s a measure of success that\'s rarely seen in this industry.\r\n\r\nBecause you have to be in the know...\r\n\r\nOr in the right place at the right time.\r\n\r\nAnd you my friend now have both.\r\n\r\nYou have a short 10 Day Pre-Launch window to lock in your spot (for free), learn how it all works, get prepared to maximize your early placement rewards, and pre-build your team.\r\n\r\nJeff Dionne','https://earn.sentext.jeffdionne.com/splashpage.php?splashid=41'),(172,1697641037,111,'Oppertunity of a LIFETIME! Don\'t miss out!','Hey there,\r\n\r\nTime is running out! Tomorrow marks the official launch of a groundbreaking opportunity that could change your life. You don\'t want to miss this!\r\n\r\nImagine having access to UNPUBLISHED, never-before-seen works and manuscripts from the legendary Napoleon Hill himself. These hidden gems hold the secrets to unlocking the path to success.\r\n\r\nBut here\'s the best part - by joining our exclusive community, you not only gain invaluable knowledge and wisdom, but you also secure a spot in our two-tier program. This means you\'ll enjoy a whopping 40% residual income on two levels!\r\n\r\nDon\'t let this chance slip away. Tomorrow is the day when everything changes. Seize the moment and secure your place in this life-altering opportunity.\r\n\r\nRemember, time is of the essence. Act now or regret it later!\r\n\r\nTo your success,\r\n\r\nJoshua Fincham','https://llpgpro.com/SOS-Exclusive-Invite/'),(199,1720987050,89,'Put More Money In Your Pocket With This','Let me ask you ... are you making money online yet?\r\n\r\nClick through our secret system and discover how to get advertising done for you and let\'s put some money in your pocket!\r\n\r\nDO IT NOW! Click below and let\'s go!\r\n\r\nBest regards,\r\n\r\nMichael Camire\r\nCoach / Entrepreneur\r\nWOW App: MichaelCamire','https://llclickpro.com/r/68xwwmsd/bizventures'),(174,1698244471,140,'25 Places to Post Your Affiliate Links','We have 25 places that you can post to at NO cost ever...!\r\n\r\nHere is our ultimate credit giveaway area. You have gotta DO this!!\r\n\r\nClassified Ads: Post Ads to OVER 5,000 Sites, Earn Credits with NO Limits!\r\n\r\n50,000 Guaranteed Visitors Account\r\n\r\nMulti-Commission System: 18 Worldprofit Sites that are FREE to join with Bonus Credits and more\r\n\r\n500,000 Credits ... FREE AND EASY ...\r\n\r\nSocial Network & Mini Blog Package: Generate Organic Search Traffic to your ads\r\n\r\nMassive Affiliate Marketplace: Get Your Affiliate LINK In Front Of Thousands In Minutes!\r\n\r\nAd Stream: Get your link on our WP AdStream! NO Limits for ONE Year!\r\n\r\nWorldprofit\'s Solo Email Blaster - Post to 3,000 EVERY 3 Days FREE\r\n\r\nPLUS Premium Advertising Services: GET our HIGH-End packages for rock-bottom prices!\r\n\r\nGet details below on how this all works...','https://www.bjsetc.com/?rd=om5gFluN'),(239,1772582140,448,'I Have Cashed Out Twice Already with This Freebie','What if you could earn extra money just by sharing your opinion?\r\n\r\nThatâ€™s exactly what PaidViewpoint lets you do. Companies are constantly looking for real feedback â€” and theyâ€™ll actually pay you for it.\r\n\r\nâœ” 100% free to join\r\nâœ” Short, easy surveys\r\nâœ” No selling or referrals required\r\nâœ” Get paid directly for your time\r\n\r\nYou wonâ€™t get rich overnight, but itâ€™s a simple, legitimate way to make extra cash during your spare time â€” from your phone or laptop.\r\n\r\nIf youâ€™d like to start earning, hereâ€™s your free sign-up\r\n\r\n\r\nhttps://paidviewpoint.com/landing/?r=whq21w','https://paidviewpoint.com/landing/?r=whq21w'),(228,1733901559,420,'18 Streams of Incomeâ€”No Magic Wand Required!','Hey #FIRSTNAME#\r\n\r\nQuick question: If I told you 18 streams of income were just a few clicks away, would you A) jump for joy, B) think Iâ€™m joking, or C) immediately ask, â€œWhatâ€™s the catch?â€\r\n\r\nWell, guess what? No catch. No fine print. Not even an annoying upsell to a course titled â€œHow to Get 19 Streams of Income.â€\r\n\r\nHereâ€™s the deal:\r\n\r\nðŸ‘‰ What do affiliate marketers crave (besides caffeine)?\r\nTrusted, effective, and targeted advertising.\r\n\r\nNow YOU can deliver exactly what they need AND cash in on the commissions like a pro.\r\n\r\nHow?\r\n\r\nSign up as a Worldprofit Reseller (itâ€™s FREE, btw).\r\nPromote our top-tier advertising services.\r\nStart earning commissions from 18 high-traffic websites and dozens of unique web tools.\r\nSeriously, itâ€™s so easy youâ€™ll feel like a wizard, but instead of casting spells, youâ€™re casting profits. ðŸª„\r\n\r\nðŸ”— Hereâ€™s where the magic happens: Click the link to Start Earning in 1 Minute! #CREDITLINK#\r\n\r\nCheers to making that money,\r\nTyler Carr','https://www.50000FreeVisitors.com/?id=6290074'),(202,1723792089,311,'1,000 Free Emails â€“ No Catch, Big Time Mailer!','Hi #FIRSTNAME#,\r\nAre you ready to take your website or business opportunity to the BIG TIME? Iâ€™ve got exciting news for you!\r\n\r\nImagine a powerful new mailer program that lets you send your email ads to 1,000 eager subscribers â€“ FOR FREE. \r\n\r\nYes, zero cost. Just pure, targeted traffic ready to flood your website or business opportunity.\r\n\r\nIntroducing Big Time Mailer â€“ the ultimate solution for entrepreneurs and marketers tired of paying high fees for email marketing campaigns.\r\n\r\nWith Big Time Mailer, you get the exposure you need without breaking the bank.\r\n1. Reach 1,000 Subscribers Instantly\r\n2. Easy to Use\r\n3. Boost Sales and Conversions\r\n4. Absolutely Free â€“ No Catch!\r\n5. Perfect for Any Niche\r\n\r\nClaim your FREE 1,000 subscriber email campaign today!\r\n\r\nDonâ€™t miss this incredible opportunity to drive traffic, increase sales, and grow your business.\r\n\r\nGet Started with Big Time Mailer Now!\r\n\r\nhttps://llclickpro.com/4smjg9np/\r\n\r\n\r\nTo Your Success, \r\nJohn Penwarden\r\nâœ¨Marketing and Software Solutions âœ¨ https://supersource.org/freebies/\r\nâœ¨A Package for Success ! âœ¨ https://llclickpro.com/thj2k8th/\r\nâœ¨Don\'t Let Anyone Steal YOUR Dreams!âœ¨ https://llclickpro.com/zr836vdj/','https://llclickpro.com/4smjg9np/'),(177,1699058591,22,'My Marketing School','My Marketing School\r\ngiving you a free video course\r\nno purchase needed\r\nSign Up\r\nconfirm email\r\nLog In\r\nvisit menu tab: Free Courses\r\n\r\nJeff Dionne','https://mymarketingschool.com'),(178,1699897924,22,'Share The Winnings','Take a Tour\r\nInput your best info to be placed\r\nthen watch video\r\nJeff Dionne','https://sharethewinnings.com/lc2.php?id=jeffdionne'),(237,1748742272,9,'Fr.ee Lifetime Banner Ad','You found a Promo Code for\r\n1 Lifetime Banner Ad!\r\n(25 USD Value)\r\nPromo Code:\r\n1LFTBNR\r\nClaim it now!','https://www.trker.com/go/131363'),(190,1714532949,314,'Have you tried Faceless IG?','I know what itâ€™s like to struggle with building a presence on Instagram. Iâ€™ve been there, done that, and constantly wondered why my content wasnâ€™t clicking with audiences.\r\n\r\nIt gets frustrating when you spend hours planning and creating posts, only to see minimal engagement. It makes you want to tear your hair out. Sometimes, you want to just throw your hands in the air and give up.\r\n\r\nBut then, you see those thriving faceless Instagram accounts, racking up likes, shares, and follows effortlessly. You think, if they can do it, why canâ€™t I? If only you knew the secrets to their success, then you too could enjoy the spotlight.\r\n\r\nGood news â€“ now you CAN learn these secrets! Thatâ€™s because Iâ€™ve created a collection of the best Instagram growth hacks, tips, and strategies inside my new guide, â€œFaceless Reels Starter Kit.â€ Check it out here https://22matrixpro.com/instaprof\r\n\r\nIn just moments youâ€™ll discover:\r\n\r\n- A surprisingly simple way to create captivating faceless content\r\n- A neat trick that virtually guarantees higher engagement\r\n- My quick and dirty method for crafting powerful reel hooks that grab attention instantly\r\n- A little-known way to plan a whole monthâ€™s content effortlessly â€“ even if youâ€™ve never been good at consistency\r\n- A quick and easy 5-step method for building a visually stunning brand â€“ youâ€™ll be amazed at the transformation!\r\n\r\nAnd much, much more. By the time you finish reading','https://22matrixpro.com/instaprof'),(207,1724587222,9,'No Cost Social Media Course','Join Our Free Video Course and Become A Social Media Wizard!\r\n\r\nSimple, comprehensive lessons to elevate your skills\r\nLearn To....\r\n\r\n- Boost Income with Social Media\r\nDrive revenue growth in extremely\r\ncompetitive digital landscape.\r\n\r\n- Target Your Audience\r\nFocus your efforts on the group of people who are likely to be\r\ninterested in your offer.\r\n\r\n- Launch Your Sales to New Heights\r\nImplement strategies that propel your sales figures to another\r\nlevel.\r\n\r\n- Becoming an expert in SOCIAL MEDIA is NOT TYPICAL But\r\nAchievable\r\n\r\nStart Today!..','https://gohere247.com/smw'),(236,1737860573,9,'Win Advertising & Cash','Win Traffic Daily: A Refreshing Approach to Advertising\r\n\r\n- Simplicity at Its Best:\r\nNavigate our user-friendly platform with ease and choose from\r\nBanner Ads, Text Ads, Login Ads, and even Solo Ads. No headaches,\r\njust streamlined advertising success.\r\n\r\n- Win Big Every Day:\r\nMembers can win generous ad packages and even cash prizes daily!\r\nIt\'s not just advertising - it\'s your chance to win\r\nwhile promoting your business.\r\n\r\n- Strategic Trading:\r\nTrade your advertising credits effortlessly to boost your\r\ncampaigns strategically. With Win Traffic Daily, every credit\r\nworks harder for you.\r\n\r\n- Start Strong:\r\nJoin for free and receive bonus advertising credits as our\r\nwelcome gift. It\'s the perfect way to kick off your\r\nadvertising journey with zero upfront costs.\r\n\r\n- Weekly Commissions:\r\nReap the rewards of your efforts with weekly commissions\r\npaid worldwide. Your success is our success, and we are here\r\nto reward you consistently.\r\n\r\nJoin now and start winning today!','https://www.trker.com/go/129648'),(216,1729279890,301,'FREE eBook - Make 1K with AI Affiliate Marketing','#FIRSTNAME#, FREE gift today â€” my brand-new eBook! \r\n\r\nItâ€™s packed with valuable insights that will help you Make Your First 1K with AI Affiliate Marketing.\r\n\r\nHereâ€™s what youâ€™ll get inside:\r\n\r\nThe best Affiliate Marketing platform to work with.\r\nHow to maximize your affiliate earnings.\r\nTop AI Tools and Platforms for Affiliate Marketing promotion.\r\nChoosing the Perfect Niche for Affiliate Marketing Success\r\n\r\nAI affiliate marketing is among the easiest ways to earn money online.\r\n\r\nReady to dive in? \r\n\r\nDownload Your Free eBook Now\r\nhttps://dderr5.systeme.io/first1kai\r\n\r\nNow, letâ€™s make that first $1,000 a reality and kick off your journey to becoming a Mega Affiliate!\r\n\r\nBest,\r\nJim Derr','https://dderr5.systeme.io/first1kai'),(220,1730407331,161,'You must be an idiot..','Hi %firstname%,\r\n\r\nThe first though that passed through my mind when I had my first look at FreeListMonster was:\r\n\r\nPam, you must be a total moron not to join. \r\n\r\n... and, because I am definately NOT a moron, I joined. Here\'s why.\r\n\r\nFreeListMonster will pay you $550 to build your list!\r\n\r\nDid you get that? They pay you, not the other way around.\r\n\r\nThe system is 100% free to join with no hidden upsells or upgrades.\r\n\r\nAnd did I mention they pay you to use the service ðŸ™‚\r\n\r\nTo grab your share of the rewards, simply follow my link below to grab your free account.\r\n\r\nhttps://www.freelistmonster.com/?u=320&js=email1\r\n\r\nPam megquier','https://www.freelistmonster.com/?u=320&js=video&js=soloswaps'),(205,1724195767,401,'ðŸ’µðŸ’µðŸ’µ EARN  4 FIGURES A WEEK NO BS! ðŸ’µðŸ’µðŸ’µ','Greetings Fellow Net Marketer,\r\n\r\nDo you want to earn 4 Figures a week?Â \r\n\r\nDo you want to have more money to spend on yourself?\r\n\r\nSick of paying bills all the time with no cash left to enjoy?\r\n\r\nIâ€™m here to tell you that this time in your life is over.\r\n\r\nYou can make the change TODAY.\r\n\r\nWith just 3 simple clicks, you can earn money from home in your spare time.\r\n\r\nBest of all, you don\'t need any experience in making-money online.\r\n\r\nClick Link If you want to get started today!\r\n\r\nTo your money - making success,\r\n\r\nEdward','https://lllpg.com/mdjdnwnf/soloswaps/'),(206,1724280715,301,'#FIRSTNAME# Grab Your Free Membership Today!','#FIRSTNAME#, Struggling To Get Traffic, Leads, and Sales For Your Business?\r\n\r\nAre you looking to improve your email marketing, build your list, and sharpen your marketing skills? \r\n\r\nIn Addition Get Access to Over Ten Million Images and Videos, that Every Marketer Needs in Their Own Business.\r\n\r\nWell, Iâ€™m excited to share that I am giving away FREE memberships to a fantastic resource that offers all the tools and tips you need!\r\n\r\nPlus, it even includes a commission structure, so you can start earning while you learn.\r\n\r\nGrab your free membership today by clicking the link below. \r\n\r\nItâ€™s completely free, and it could be a game-changer for your marketing efforts.\r\n\r\nCheck it out now!\r\n\r\nBest regards,\r\n\r\nJim','https://www.im-club.com/twpage01.php?r=onesuccess'),(208,1724636805,301,'#FIRSTNAME# Grab Your Free Membership Today!','#FIRSTNAME#, Struggling To Get Traffic, Leads, and Sales For Your Business?\r\n\r\nAre you looking to improve your email marketing, build your list, and sharpen your marketing skills? \r\n\r\nIn Addition Get Access to Over Ten Million Images and Videos, that Every Marketer Needs in Their Own Business.\r\n\r\nWell, Iâ€™m excited to share that I am giving away FREE memberships to a fantastic resource that offers all the tools and tips you need!\r\n\r\nPlus, it even includes a commission structure, so you can start earning while you learn.\r\n\r\nGrab your free membership today by clicking the link below. \r\n\r\nItâ€™s completely free, and it could be a game-changer for your marketing efforts.\r\n\r\nCheck it out now!\r\n\r\nBest regards,\r\n\r\nJim','https://www.im-club.com/twpage01.php?r=onesuccess');
/*!40000 ALTER TABLE `oto_savedtemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_schedmessages`
--

DROP TABLE IF EXISTS `oto_schedmessages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_schedmessages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `timesched` int(11) NOT NULL DEFAULT 0,
  `senddate` date NOT NULL,
  `sendhour` int(2) NOT NULL DEFAULT 0,
  `sendminute` int(1) NOT NULL DEFAULT 1,
  `senderid` int(11) NOT NULL DEFAULT 0,
  `templateid` int(11) NOT NULL DEFAULT 0,
  `credits` int(11) NOT NULL DEFAULT 0,
  `todownline` tinyint(1) NOT NULL DEFAULT 0,
  `subjecttext` varchar(200) NOT NULL DEFAULT 'No Subject',
  `bodytext` text NOT NULL,
  `linkurl` varchar(200) NOT NULL DEFAULT 'about:blank',
  `slastclick` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `timesched` (`timesched`),
  KEY `senddate` (`senddate`),
  KEY `sendhour` (`sendhour`),
  KEY `sendminute` (`sendminute`),
  KEY `senderid` (`senderid`),
  KEY `templateid` (`templateid`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_schedmessages`
--

LOCK TABLES `oto_schedmessages` WRITE;
/*!40000 ALTER TABLE `oto_schedmessages` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_schedmessages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_senthistory`
--

DROP TABLE IF EXISTS `oto_senthistory`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_senthistory` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `messageid` int(11) NOT NULL DEFAULT 0,
  `timesent` int(11) NOT NULL DEFAULT 0,
  `senderid` int(11) NOT NULL DEFAULT 0,
  `templateid` int(11) NOT NULL DEFAULT 0,
  `subjecttext` varchar(200) NOT NULL DEFAULT 'No Subject',
  `sentto` int(11) NOT NULL DEFAULT 0,
  `numclicks` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `timesent` (`timesent`),
  KEY `messageid` (`messageid`),
  KEY `senderid` (`senderid`),
  KEY `templateid` (`templateid`)
) ENGINE=MyISAM AUTO_INCREMENT=871 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_senthistory`
--

LOCK TABLES `oto_senthistory` WRITE;
/*!40000 ALTER TABLE `oto_senthistory` DISABLE KEYS */;
INSERT INTO `oto_senthistory` (`id`, `messageid`, `timesent`, `senderid`, `templateid`, `subjecttext`, `sentto`, `numclicks`) VALUES (869,867,1775391084,91,0,'Revolutionize Lifetime Earning Experience!',269,2),(870,868,1775971091,176,0,'BOOM. FREE Ad Credits Just Landed in Your Account',269,3),(827,825,1755450959,448,238,'Become An Independent Rep Free And Earn Big',80,2),(828,826,1755540219,388,0,'Donâ€™t miss this window',1,0),(833,831,1757095446,388,0,'No monthly cost. Big potential.',1,0),(824,822,1753614321,75,0,'ðŸ”¥ STEAL MY  BONUS! ðŸ”¥',342,6),(825,823,1753725861,388,0,'The club everyoneâ€™s joining',2,0),(821,819,1753375615,327,0,'Review My Website?',255,4),(819,817,1752842852,91,0,'Reducing Everyday Bills is A MUST And Earn As Well',255,5),(816,814,1751549521,91,0,'Earn Bitcoin on AutoPilot? Must See!',254,1),(817,815,1751652296,388,0,'No selling. Just saving.',1,0),(818,816,1752159114,53,0,'ðŸ’£#FIRSTNAME#...BOOM! BOOM! BOOM!',345,4),(822,820,1753466573,388,0,'Why wait? Jump in!',1,0),(826,824,1754592256,327,0,'Scroll, Click, Earn, Repeat...',255,0),(820,818,1752948308,388,0,'Your invite is ready',1,0),(823,821,1753582202,53,0,'#FIRSTNAME#, Stop...just stop!',345,8),(829,827,1756156082,53,0,'#FIRSTNAME#, the world is sick of your shit!',346,1),(834,832,1757535844,38,0,'4-tier payouts? Hereâ€™s a beastly way to earn',346,2),(844,842,1760921706,91,0,'AI Software That Creates and Monetizes Your eBooks',256,6),(835,833,1757985287,91,0,'Your',256,0),(838,836,1759432725,327,0,'New affiliate opportunity w/ Russell Brunson (vide',256,1),(839,837,1759933391,176,0,'5 signups and 2 Upgrades from 55 views!',245,3),(840,838,1760047374,388,0,'No more guessing',1,0),(841,839,1760091187,91,0,'Your Promotion SideKick is Here!',256,3),(846,844,1761438359,91,0,'AI Software That Creates and Monetizes Your eBooks',256,5),(847,845,1761516218,388,0,'Simple safelist fix',1,0),(849,847,1763147031,388,0,'Real results from safelist ads',1,0),(848,846,1763040700,91,0,'Turn Favorite Photos into Ready-to-Make Art Kits!',258,5),(852,850,1766088981,327,0,'Anyone Here?',259,2),(853,851,1766489971,75,0,'12 Days Of Christmas Free Gift Event-Starts 25th',346,1),(854,852,1766602948,388,0,'Read Carefully',1,0),(855,853,1767268942,327,0,'Happy New Year',259,0),(856,854,1768675197,327,0,'Still on the Fence?',259,1),(857,855,1768737117,388,0,'Full Access Plan Inside',1,0),(858,856,1770322057,327,0,'Get Paid For Doing Nothing?',266,1),(859,857,1770821225,91,0,'Reducing Everyday Bills is A MUST And Earn As Well',266,1),(860,858,1770895302,388,0,'System That Works Ready',1,0),(861,859,1771426980,91,0,'A Unique Bitcoin earning Opportunity. A Must see!',267,0),(862,860,1772111417,91,0,'Elevate Your Business with Daily Ads!',267,3),(865,863,1772630780,388,0,'System That Works Ready',1,0),(864,862,1772582140,448,239,'I Have Cashed Out Twice Already with This Freebie',267,4),(863,861,1772564499,327,0,'Traffic Success',267,2),(866,864,1773188685,91,0,'Elevate Your Business with Daily Ads!',268,0),(867,865,1773494789,91,0,'The',268,2),(868,866,1773511453,327,0,'Welcome To EC4A',268,0),(832,830,1757000873,53,0,'YAY! You\'ve earned a commission #FIRSTNAME#',346,9),(830,828,1756649972,327,0,'#FIRSTNAME# You Have Somthing To Sell?',256,3),(831,829,1756861479,91,0,'Thousands Use This $7 AI Shortcut That Pays Daily',256,0),(845,843,1760983450,388,0,'Safelist done right',1,1),(843,841,1760531712,91,0,'AI Software That Creates and Monetizes Your eBooks',256,1),(842,840,1760378465,388,0,'Simple safelist fix',1,0),(836,834,1758587581,91,0,'Your Promotion SideKick is Here!',256,4),(837,835,1758664920,388,0,'Simple safelist fix',1,0),(851,849,1764702054,388,0,'Real results from safelist ads',1,0),(850,848,1764614689,91,0,'Unlock Your Reward with MR. CB!',259,5);
/*!40000 ALTER TABLE `oto_senthistory` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_sentmessages`
--

DROP TABLE IF EXISTS `oto_sentmessages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_sentmessages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `timesent` int(11) NOT NULL DEFAULT 0,
  `updatedtime` int(11) NOT NULL DEFAULT 0,
  `senderid` int(11) NOT NULL DEFAULT 0,
  `templateid` int(11) NOT NULL DEFAULT 0,
  `credits` int(11) NOT NULL DEFAULT 0,
  `todownline` tinyint(1) NOT NULL DEFAULT 0,
  `subjecttext` varchar(200) NOT NULL DEFAULT 'No Subject',
  `bodytext` text NOT NULL,
  `linkurl` varchar(200) NOT NULL DEFAULT 'about:blank',
  `openkey` varchar(200) NOT NULL DEFAULT 'none',
  `mailstatus` varchar(200) NOT NULL DEFAULT 'none',
  `sendto` int(11) NOT NULL DEFAULT 0,
  `sentto` int(11) NOT NULL DEFAULT 0,
  `numclicks` int(11) NOT NULL DEFAULT 0,
  `expireprocessed` tinyint(1) NOT NULL DEFAULT 0,
  `slastclick` int(11) NOT NULL DEFAULT 0,
  `is_solo` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `timesent` (`timesent`),
  KEY `updatedtime` (`updatedtime`),
  KEY `senderid` (`senderid`),
  KEY `templateid` (`templateid`),
  KEY `openkey` (`openkey`),
  KEY `mailstatus` (`mailstatus`),
  KEY `expireprocessed` (`expireprocessed`)
) ENGINE=MyISAM AUTO_INCREMENT=869 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_sentmessages`
--

LOCK TABLES `oto_sentmessages` WRITE;
/*!40000 ALTER TABLE `oto_sentmessages` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_sentmessages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_sentrcpt`
--

DROP TABLE IF EXISTS `oto_sentrcpt`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_sentrcpt` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sentto` int(11) NOT NULL,
  `messageid` int(11) NOT NULL,
  `time` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=200248 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_sentrcpt`
--

LOCK TABLES `oto_sentrcpt` WRITE;
/*!40000 ALTER TABLE `oto_sentrcpt` DISABLE KEYS */;
INSERT INTO `oto_sentrcpt` (`id`, `sentto`, `messageid`, `time`) VALUES (200028,327,868,1775971151),(200027,295,868,1775971151),(200026,238,868,1775971151),(200025,438,868,1775971151),(200024,183,868,1775971151),(200023,296,868,1775971151),(200022,232,868,1775971151),(200021,257,868,1775971151),(200020,247,868,1775971151),(200019,258,868,1775971151),(200018,141,868,1775971151),(200017,261,868,1775971151),(200016,90,868,1775971151),(200015,209,868,1775971151),(200014,170,868,1775971151),(200013,65,868,1775971151),(200012,420,868,1775971151),(200011,110,868,1775971151),(200010,158,868,1775971151),(200009,328,868,1775971151),(200008,58,868,1775971151),(200007,143,868,1775971151),(200006,275,868,1775971151),(200005,10,868,1775971151),(200004,54,868,1775971151),(200003,273,868,1775971151),(200002,335,868,1775971151),(200001,621,868,1775971151),(200000,456,868,1775971151),(199999,98,868,1775971151),(199998,224,868,1775971151),(199997,269,868,1775971151),(199996,303,868,1775971151),(199995,537,868,1775971151),(199994,375,868,1775971151),(199993,114,868,1775971151),(199992,339,868,1775971150),(199991,266,868,1775971150),(199990,126,868,1775971150),(199989,188,868,1775971150),(199988,157,868,1775971150),(199987,144,868,1775971150),(199986,353,868,1775971150),(199985,164,868,1775971150),(199984,396,868,1775971150),(199983,180,868,1775971150),(199982,426,868,1775971150),(199981,539,868,1775971150),(199980,243,868,1775971150),(199979,151,868,1775971150),(199978,337,867,1775391139),(199977,319,867,1775391139),(199976,330,867,1775391139),(199975,357,867,1775391139),(199974,385,867,1775391139),(199973,291,867,1775391139),(199972,234,867,1775391139),(199971,360,867,1775391139),(199970,372,867,1775391139),(199969,376,867,1775391139),(199968,670,867,1775391139),(199967,182,867,1775391139),(199966,336,867,1775391139),(199965,288,867,1775391139),(199964,210,867,1775391139),(199963,300,867,1775391139),(199962,246,867,1775391139),(199961,175,867,1775391139),(199960,353,867,1775391139),(199959,560,867,1775391139),(199958,103,867,1775391139),(199957,228,867,1775391139),(199956,256,867,1775391139),(199955,413,867,1775391138),(199954,335,867,1775391138),(199953,400,867,1775391138),(199952,170,867,1775391138),(199951,148,867,1775391138),(199950,445,867,1775391138),(199949,329,867,1775391138),(199948,160,867,1775391138),(199947,352,867,1775391138),(199946,443,867,1775391138),(199945,126,867,1775391138),(199944,334,867,1775391138),(199943,316,867,1775391138),(199942,195,867,1775391138),(199941,260,867,1775391138),(199940,393,867,1775391138),(199939,407,867,1775391138),(199938,327,867,1775391138),(199937,320,867,1775391138),(199936,441,867,1775391138),(199935,181,867,1775391138),(199934,351,867,1775391138),(199933,190,867,1775391138),(199932,420,867,1775391138),(199931,68,867,1775391138),(199930,301,867,1775391138),(199929,298,867,1775391138),(199928,294,867,1775391138),(199927,446,867,1775391138),(199926,238,867,1775391138),(199925,243,867,1775391138),(199924,414,867,1775391138),(199923,431,867,1775391138),(199922,13,867,1775391138),(199921,61,867,1775391138),(199920,167,867,1775391138),(199919,158,867,1775391137),(199918,290,867,1775391137),(199917,310,867,1775391137),(199916,281,867,1775391137),(199915,145,867,1775391137),(199914,143,867,1775391137),(199913,440,867,1775391137),(199912,339,867,1775391137),(199911,348,867,1775391137),(199910,432,867,1775391137),(199909,172,867,1775391137),(199908,201,867,1775391137),(199907,258,867,1775391137),(199906,430,867,1775391137),(199905,147,867,1775391137),(199904,212,867,1775391137),(199903,309,867,1775391137),(199902,269,867,1775391137),(199901,63,867,1775391137),(199900,382,867,1775391137),(199899,317,867,1775391137),(199898,66,867,1775391137),(199897,32,867,1775391137),(199896,313,867,1775391137),(199895,304,867,1775391137),(199894,673,867,1775391137),(199893,220,867,1775391137),(199892,214,867,1775391137),(199891,186,867,1775391137),(199890,194,867,1775391137),(199889,628,867,1775391137),(199888,163,867,1775391137),(199887,192,867,1775391137),(199886,675,867,1775391137),(199885,112,867,1775391137),(199884,161,867,1775391137),(199883,24,867,1775391137),(199882,392,867,1775391136),(199881,42,867,1775391136),(199880,378,867,1775391136),(199879,227,867,1775391136),(199878,347,867,1775391136),(199877,363,867,1775391136),(199876,242,867,1775391136),(199875,140,867,1775391136),(199874,308,867,1775391136),(199873,52,867,1775391136),(199872,231,867,1775391136),(199871,204,867,1775391136),(199870,384,867,1775391136),(199869,191,867,1775391136),(199868,434,867,1775391136),(199867,90,867,1775391136),(199866,185,867,1775391136),(199865,187,867,1775391136),(199864,332,867,1775391136),(199863,207,867,1775391136),(199862,345,867,1775391136),(199861,146,867,1775391136),(199860,296,867,1775391136),(199859,367,867,1775391136),(199858,426,867,1775391136),(199857,123,867,1775391136),(199856,67,867,1775391136),(199855,176,867,1775391136),(199854,239,867,1775391136),(199853,536,867,1775391136),(199852,273,867,1775391136),(199851,157,867,1775391136),(199850,456,867,1775391136),(199849,326,867,1775391136),(199848,423,867,1775391136),(199847,37,867,1775391136),(199846,271,867,1775391136),(199845,371,867,1775391136),(199844,193,867,1775391136),(199843,292,867,1775391136),(199842,114,867,1775391136),(199841,225,867,1775391136),(199840,265,867,1775391135),(199839,254,867,1775391135),(199838,451,867,1775391135),(199837,113,867,1775391134),(199836,396,867,1775391134),(199835,249,867,1775391134),(199834,346,867,1775391134),(199833,391,867,1775391134),(199832,365,867,1775391134),(199831,184,867,1775391134),(199830,328,867,1775391134),(199829,241,867,1775391134),(199828,164,867,1775391134),(199827,285,867,1775391134),(199826,262,867,1775391134),(199825,247,867,1775391134),(199824,200,867,1775391134),(199823,221,867,1775391134),(199822,226,867,1775391134),(199821,341,867,1775391134),(199820,94,867,1775391134),(199819,232,867,1775391134),(199818,452,867,1775391134),(199817,403,867,1775391134),(199816,144,867,1775391134),(199815,295,867,1775391134),(199814,422,867,1775391134),(199813,152,867,1775391134),(199812,224,867,1775391134),(199811,266,867,1775391134),(199810,584,867,1775391134),(199809,448,867,1775391134),(199808,213,867,1775391134),(199807,268,867,1775391134),(199806,433,867,1775391134),(199805,127,867,1775391134),(199804,203,867,1775391134),(199803,323,867,1775391134),(199802,217,867,1775391134),(199801,206,867,1775391134),(199800,154,867,1775391134),(199799,69,867,1775391133),(199798,340,867,1775391133),(199797,381,867,1775391133),(199796,324,867,1775391133),(199795,278,867,1775391133),(199794,124,867,1775391133),(199793,65,867,1775391133),(199792,439,867,1775391133),(199791,331,867,1775391133),(199790,289,867,1775391133),(199789,302,867,1775391133),(199788,361,867,1775391133),(199787,377,867,1775391133),(199786,428,867,1775391133),(199785,64,867,1775391133),(199784,96,867,1775391133),(199783,257,867,1775391133),(199782,263,867,1775391133),(199781,438,867,1775391133),(199780,110,867,1775391133),(199779,364,867,1775391132),(199778,388,867,1775391132),(199777,299,867,1775391132),(199776,390,867,1775391132),(199775,183,867,1775391132),(199774,412,867,1775391132),(199773,128,867,1775391132),(199772,233,867,1775391132),(199771,168,867,1775391132),(199770,10,867,1775391132),(200247,253,868,1775971160),(200246,251,868,1775971160),(200245,246,868,1775971160),(200244,241,868,1775971160),(200243,231,868,1775971160),(200242,228,868,1775971160),(200241,221,868,1775971160),(200240,213,868,1775971160),(200239,206,868,1775971160),(200238,201,868,1775971160),(200237,200,868,1775971160),(200236,321,868,1775971160),(200235,175,868,1775971160),(200234,79,868,1775971160),(200233,329,868,1775971160),(200232,393,868,1775971160),(200231,314,868,1775971160),(200230,233,868,1775971160),(200229,195,868,1775971160),(200228,417,868,1775971160),(200227,294,868,1775971160),(200226,390,868,1775971160),(200225,193,868,1775971160),(200224,24,868,1775971160),(200223,214,868,1775971160),(200222,256,868,1775971160),(200221,387,868,1775971160),(200220,113,868,1775971159),(200219,352,868,1775971159),(200218,348,868,1775971159),(200217,181,868,1775971159),(200216,423,868,1775971159),(200215,431,868,1775971159),(200214,278,868,1775971159),(200213,365,868,1775971159),(200212,148,868,1775971159),(200211,359,868,1775971159),(200210,408,868,1775971159),(200209,291,868,1775971159),(200208,161,868,1775971159),(200207,432,868,1775971159),(200206,262,868,1775971159),(200205,584,868,1775971158),(200204,361,868,1775971158),(200203,274,868,1775971158),(200202,189,868,1775971158),(200201,422,868,1775971158),(200200,145,868,1775971158),(200199,112,868,1775971158),(200198,239,868,1775971158),(200197,271,868,1775971158),(200196,263,868,1775971158),(200195,443,868,1775971158),(200194,32,868,1775971158),(200193,341,868,1775971158),(200192,268,868,1775971158),(200191,174,868,1775971158),(200190,309,868,1775971158),(200189,338,868,1775971158),(200188,128,868,1775971158),(200187,255,868,1775971158),(200186,212,868,1775971158),(200185,344,868,1775971158),(200184,245,868,1775971158),(200183,132,868,1775971158),(200182,87,868,1775971157),(200181,265,868,1775971157),(200180,340,868,1775971157),(200179,187,868,1775971157),(200178,628,868,1775971157),(200177,127,868,1775971157),(200176,675,868,1775971157),(200175,324,868,1775971157),(200174,395,868,1775971157),(200173,52,868,1775971157),(200172,197,868,1775971157),(200171,333,868,1775971157),(200170,289,868,1775971157),(200169,560,868,1775971157),(200168,384,868,1775971157),(200167,331,868,1775971157),(200166,670,868,1775971157),(200165,250,868,1775971157),(200164,194,868,1775971157),(200163,400,868,1775971157),(200162,405,868,1775971157),(200161,173,868,1775971157),(200160,211,868,1775971157),(200159,225,868,1775971157),(200158,388,868,1775971157),(200157,288,868,1775971157),(200156,313,868,1775971157),(200155,381,868,1775971157),(200154,401,868,1775971157),(200153,337,868,1775971157),(200152,242,868,1775971156),(200151,392,868,1775971156),(200150,70,868,1775971156),(200149,300,868,1775971156),(200148,264,868,1775971156),(200147,192,868,1775971156),(200146,452,868,1775971156),(200145,433,868,1775971156),(200144,364,868,1775971156),(200143,346,868,1775971156),(200142,205,868,1775971156),(200141,210,868,1775971156),(200140,172,868,1775971155),(200139,385,868,1775971155),(200138,290,868,1775971155),(200137,316,868,1775971155),(200136,121,868,1775971155),(200135,434,868,1775971155),(200134,446,868,1775971155),(200133,407,868,1775971155),(200132,345,868,1775971155),(200131,281,868,1775971155),(200130,67,868,1775971155),(200129,96,868,1775971155),(200128,66,868,1775971155),(200127,136,868,1775971155),(200126,42,868,1775971155),(200125,302,868,1775971155),(200124,185,868,1775971155),(200123,307,868,1775971155),(200122,140,868,1775971155),(200121,182,868,1775971155),(200120,336,868,1775971154),(200119,167,868,1775971154),(200118,367,868,1775971154),(200117,410,868,1775971154),(200116,430,868,1775971154),(200115,94,868,1775971154),(200114,115,868,1775971154),(200113,304,868,1775971154),(200112,222,868,1775971154),(200111,323,868,1775971154),(200110,351,868,1775971154),(200109,330,868,1775971154),(200108,159,868,1775971154),(200107,163,868,1775971154),(200106,166,868,1775971154),(200105,196,868,1775971154),(200104,292,868,1775971154),(200103,226,868,1775971154),(200102,13,868,1775971154),(200101,147,868,1775971154),(200100,391,868,1775971154),(200099,69,868,1775971154),(200098,124,868,1775971154),(200097,377,868,1775971154),(200096,123,868,1775971154),(200095,320,868,1775971154),(200094,249,868,1775971154),(200093,536,868,1775971154),(200092,191,868,1775971154),(200091,448,868,1775971154),(200090,363,868,1775971154),(200089,319,868,1775971154),(200088,378,868,1775971154),(200087,37,868,1775971154),(200086,254,868,1775971154),(200085,91,868,1775971153),(200084,673,868,1775971153),(200083,451,868,1775971153),(200082,357,868,1775971153),(200081,236,868,1775971153),(200080,382,868,1775971153),(200079,298,868,1775971153),(200078,179,868,1775971153),(200077,64,868,1775971153),(200076,208,868,1775971152),(200075,403,868,1775971152),(200074,168,868,1775971152),(200073,97,868,1775971152),(200072,439,868,1775971152),(200071,347,868,1775971152),(200070,299,868,1775971152),(200069,413,868,1775971152),(200068,154,868,1775971152),(200067,227,868,1775971152),(200066,260,868,1775971152),(200065,441,868,1775971152),(200064,372,868,1775971152),(200063,376,868,1775971152),(200062,301,868,1775971152),(200061,203,868,1775971152),(200060,308,868,1775971152),(200059,204,868,1775971152),(200058,186,868,1775971152),(200057,285,868,1775971152),(200056,61,868,1775971152),(200055,428,868,1775971152),(200054,326,868,1775971152),(200053,360,868,1775971152),(200052,160,868,1775971152),(200051,19,868,1775971152),(200050,440,868,1775971152),(200049,334,868,1775971152),(200048,103,868,1775971152),(200047,280,868,1775971152),(200046,68,868,1775971152),(200045,317,868,1775971152),(200044,63,868,1775971152),(200043,152,868,1775971152),(200042,207,868,1775971152),(200041,234,868,1775971152),(200040,310,868,1775971152),(200039,184,868,1775971152),(200038,445,868,1775971152),(200037,220,868,1775971152),(200036,146,868,1775971152),(200035,435,868,1775971152),(200034,412,868,1775971152),(200033,371,868,1775971152),(200032,190,868,1775971152),(200031,332,868,1775971152),(200030,414,868,1775971152),(200029,217,868,1775971151),(199171,324,864,1773188722),(199170,87,864,1773188721),(199169,64,864,1773188721),(199168,144,864,1773188721),(199167,261,864,1773188721),(199166,158,864,1773188721),(199165,441,864,1773188721),(199164,174,864,1773188721),(199163,440,864,1773188721),(199162,124,864,1773188721),(199161,443,864,1773188721),(199160,451,864,1773188720),(199159,32,864,1773188720),(199158,249,864,1773188720),(199157,327,864,1773188720),(199156,375,864,1773188720),(199155,388,864,1773188720),(199154,401,864,1773188720),(199153,344,864,1773188720),(199152,209,864,1773188720),(199151,241,864,1773188720),(199150,221,864,1773188720),(199149,330,864,1773188720),(199148,445,864,1773188720),(199147,211,864,1773188720),(199146,414,864,1773188720),(199145,121,864,1773188720),(199144,296,864,1773188720),(199143,307,864,1773188720),(199142,148,864,1773188720),(199141,269,864,1773188720),(199140,371,864,1773188720),(199139,204,864,1773188720),(199138,256,864,1773188720),(199137,254,864,1773188720),(199136,628,864,1773188720),(199135,54,864,1773188720),(199134,365,864,1773188720),(199133,309,864,1773188720),(199132,110,864,1773188720),(199131,335,864,1773188720),(199130,189,864,1773188719),(199129,333,864,1773188719),(199128,332,864,1773188719),(199127,346,864,1773188719),(199126,435,864,1773188719),(199125,433,864,1773188719),(199124,196,864,1773188719),(199123,175,864,1773188719),(199122,298,864,1773188719),(199121,143,864,1773188719),(199120,338,864,1773188719),(199119,430,864,1773188719),(199118,353,864,1773188719),(199117,417,864,1773188719),(199116,314,864,1773188719),(199115,217,864,1773188719),(199114,357,864,1773188719),(199113,222,864,1773188719),(199112,234,864,1773188719),(199111,258,864,1773188719),(199110,180,864,1773188719),(199109,96,864,1773188719),(199108,115,864,1773188719),(199107,391,864,1773188719),(199106,42,864,1773188719),(199105,67,864,1773188719),(199104,207,864,1773188719),(199103,226,864,1773188719),(199102,310,864,1773188719),(199101,456,864,1773188718),(199100,227,864,1773188718),(199099,239,864,1773188718),(199098,210,864,1773188718),(199097,79,864,1773188718),(199096,452,864,1773188718),(199095,191,864,1773188718),(199094,363,864,1773188718),(199093,206,864,1773188718),(199092,188,864,1773188718),(199091,200,864,1773188718),(199090,90,864,1773188718),(199089,539,864,1773188718),(199088,141,864,1773188718),(199087,195,864,1773188718),(199086,382,864,1773188718),(199085,408,864,1773188718),(199084,136,864,1773188718),(199083,213,864,1773188718),(199082,225,864,1773188718),(199081,319,864,1773188718),(199080,301,864,1773188718),(199079,334,864,1773188718),(199078,426,864,1773188718),(199077,434,864,1773188718),(199076,10,864,1773188718),(199075,250,864,1773188718),(199074,208,864,1773188718),(199073,304,864,1773188718),(199072,412,864,1773188718),(199071,321,864,1773188718),(199070,407,864,1773188718),(199069,302,864,1773188718),(199068,232,864,1773188718),(199067,103,864,1773188718),(199066,446,864,1773188718),(199065,288,864,1773188718),(199064,58,864,1773188717),(199063,294,864,1773188717),(199062,13,864,1773188717),(199061,328,864,1773188717),(199060,423,864,1773188717),(199059,159,864,1773188717),(199058,164,864,1773188717),(199057,152,864,1773188717),(199056,94,864,1773188717),(199055,300,864,1773188717),(199054,172,864,1773188717),(199053,339,864,1773188717),(199052,214,864,1773188717),(199051,428,864,1773188717),(199050,413,864,1773188717),(199049,359,864,1773188717),(199048,140,864,1773188717),(199047,295,864,1773188717),(199046,536,864,1773188717),(199045,410,864,1773188717),(199044,37,864,1773188717),(199043,263,864,1773188716),(199042,236,864,1773188716),(199041,390,864,1773188716),(199040,163,864,1773188716),(199039,308,864,1773188716),(199038,292,864,1773188716),(199037,186,864,1773188716),(199036,280,864,1773188716),(199035,181,864,1773188716),(199034,262,864,1773188716),(199033,68,864,1773188716),(199032,337,864,1773188716),(199031,405,864,1773188716),(199030,396,864,1773188716),(199029,257,864,1773188716),(199028,400,864,1773188716),(199027,65,864,1773188716),(199026,63,864,1773188716),(199025,179,864,1773188716),(199024,260,864,1773188716),(199023,537,864,1773188716),(199022,61,864,1773188716),(199021,145,864,1773188716),(199020,192,864,1773188716),(199019,341,864,1773188716),(199018,228,864,1773188716),(199017,126,864,1773188716),(199016,168,864,1773188716),(199015,66,864,1773188716),(199014,673,864,1773188716),(199013,201,864,1773188716),(199012,340,864,1773188716),(199011,289,864,1773188716),(199010,166,864,1773188716),(199009,24,864,1773188716),(199008,98,864,1773188716),(199007,360,864,1773188716),(199006,246,864,1773188716),(199005,268,864,1773188715),(199004,299,864,1773188715),(199003,381,864,1773188715),(199002,364,864,1773188715),(199001,352,864,1773188714),(199000,251,864,1773188714),(198999,387,864,1773188714),(198998,361,864,1773188714),(198997,147,864,1773188714),(198996,266,864,1773188714),(198995,326,864,1773188714),(198994,376,864,1773188714),(198993,242,864,1773188714),(198992,621,864,1773188714),(198991,112,864,1773188714),(198990,448,864,1773188714),(198989,146,864,1773188714),(198988,316,864,1773188714),(198987,317,864,1773188714),(198986,167,864,1773188714),(198985,173,864,1773188714),(198984,245,864,1773188714),(198983,320,864,1773188714),(198982,345,864,1773188714),(198981,114,864,1773188714),(198980,584,864,1773188713),(198979,290,864,1773188713),(198978,127,864,1773188713),(198977,273,864,1773188713),(198976,161,864,1773188713),(198975,431,864,1773188713),(198974,348,864,1773188713),(198973,395,864,1773188713),(198972,420,864,1773188713),(198971,184,864,1773188713),(198970,255,864,1773188713),(198969,291,864,1773188713),(198968,439,864,1773188713),(198967,132,864,1773188713),(198966,113,864,1773188713),(198965,212,864,1773188713),(198964,205,864,1773188713),(198963,238,864,1773188713),(198962,392,864,1773188713),(198961,403,864,1773188713),(198960,220,864,1773188713),(198959,151,864,1773188713),(198958,128,864,1773188713),(198957,187,864,1773188713),(198956,52,864,1773188713),(198955,70,864,1773188713),(198954,384,864,1773188713),(198953,313,864,1773188713),(198952,224,864,1773188713),(198951,194,864,1773188713),(198950,285,864,1773188713),(198949,670,864,1773188712),(198948,336,864,1773188712),(198947,271,864,1773188712),(198946,176,864,1773188712),(198945,170,864,1773188712),(198944,323,864,1773188712),(198943,154,864,1773188712),(198942,265,864,1773188712),(198941,347,864,1773188712),(198940,438,864,1773188712),(198939,432,864,1773188712),(198938,97,864,1773188712),(198937,264,864,1773188712),(198936,329,864,1773188712),(198935,281,864,1773188712),(198934,69,864,1773188712),(198933,183,864,1773188712),(198932,233,864,1773188712),(198931,123,864,1773188712),(198930,182,864,1773188712),(198929,372,864,1773188712),(198928,193,864,1773188712),(198927,331,864,1773188712),(198926,378,864,1773188712),(198925,278,864,1773188712),(198924,303,864,1773188712),(198923,422,864,1773188711),(198922,157,864,1773188711),(198921,367,864,1773188711),(198920,243,864,1773188711),(198919,560,864,1773188711),(198918,185,864,1773188711),(198917,351,864,1773188711),(198916,377,864,1773188711),(198915,190,864,1773188711),(198914,19,864,1773188711),(198913,247,864,1773188711),(198912,203,864,1773188711),(198911,197,864,1773188711),(198910,393,864,1773188711),(198909,275,864,1773188711),(198908,160,864,1773188711),(198907,253,864,1773188711),(198906,385,864,1773188711),(198905,176,863,1772630829),(199769,159,867,1775391132),(199768,70,867,1775391132),(199767,87,867,1775391132),(199766,417,867,1775391132),(199765,166,867,1775391132),(199764,121,867,1775391131),(199763,151,867,1775391131),(199762,19,867,1775391131),(199761,97,867,1775391131),(199760,395,867,1775391131),(199759,314,867,1775391131),(199758,54,867,1775391131),(199757,79,867,1775391131),(199756,359,867,1775391131),(199755,209,867,1775391131),(199754,344,867,1775391131),(199753,197,867,1775391131),(199752,274,867,1775391131),(199751,375,867,1775391131),(199750,321,867,1775391131),(199749,621,867,1775391131),(199748,275,867,1775391131),(199747,189,867,1775391131),(199746,115,867,1775391131),(199745,179,867,1775391131),(199744,253,867,1775391131),(199743,537,867,1775391131),(199742,132,867,1775391131),(199741,280,867,1775391131),(199740,307,867,1775391131),(199739,222,867,1775391131),(199738,236,867,1775391131),(199737,338,867,1775391131),(199736,333,867,1775391131),(199735,196,867,1775391131),(199734,141,867,1775391131),(199733,303,867,1775391131),(199732,410,867,1775391131),(199731,408,867,1775391131),(199730,250,867,1775391131),(199729,211,867,1775391131),(199728,98,867,1775391131),(199727,251,867,1775391131),(199726,255,867,1775391131),(199725,539,867,1775391130),(199724,264,867,1775391130),(199723,58,867,1775391130),(199722,180,867,1775391130),(199721,245,867,1775391130),(199720,173,867,1775391130),(199719,205,867,1775391130),(199718,387,867,1775391130),(199717,435,867,1775391130),(199716,401,867,1775391130),(199715,136,867,1775391130),(199714,405,867,1775391130),(199713,174,867,1775391130),(199712,188,867,1775391130),(199711,208,867,1775391130),(199710,261,867,1775391130),(199709,414,866,1773511521),(199708,266,866,1773511521),(199707,228,866,1773511521),(199706,670,866,1773511521),(199705,114,866,1773511521),(199704,126,866,1773511521),(199703,268,866,1773511521),(199702,376,866,1773511521),(199701,184,866,1773511521),(199700,200,866,1773511521),(199699,584,866,1773511520),(199698,339,866,1773511520),(199697,61,866,1773511520),(199696,361,866,1773511520),(199695,289,866,1773511520),(199694,375,866,1773511520),(199693,443,866,1773511520),(199692,173,866,1773511520),(199691,367,866,1773511520),(199690,261,866,1773511520),(199689,422,866,1773511519),(199688,428,866,1773511519),(199687,413,866,1773511519),(199686,145,866,1773511519),(199685,19,866,1773511519),(199684,628,866,1773511519),(199683,186,866,1773511519),(199682,439,866,1773511519),(199681,226,866,1773511519),(199680,197,866,1773511519),(199679,432,866,1773511519),(199678,396,866,1773511519),(199677,269,866,1773511519),(199676,560,866,1773511519),(199675,280,866,1773511519),(199674,401,866,1773511519),(199673,245,866,1773511519),(199672,412,866,1773511519),(199671,203,866,1773511519),(199670,136,866,1773511519),(199669,239,866,1773511519),(199668,97,866,1773511519),(199667,407,866,1773511519),(199666,360,866,1773511519),(199665,456,866,1773511519),(199664,212,866,1773511519),(199663,334,866,1773511519),(199662,190,866,1773511519),(199661,146,866,1773511519),(199660,403,866,1773511519),(199659,123,866,1773511518),(199658,127,866,1773511518),(199657,333,866,1773511518),(199656,408,866,1773511518),(199655,204,866,1773511518),(199654,159,866,1773511518),(199653,194,866,1773511518),(199652,300,866,1773511518),(199651,299,866,1773511518),(199650,58,866,1773511518),(199649,381,866,1773511518),(199648,448,866,1773511518),(199647,258,866,1773511518),(199646,275,866,1773511518),(199645,308,866,1773511518),(199644,185,866,1773511518),(199643,224,866,1773511518),(199642,157,866,1773511518),(199641,151,866,1773511518),(199640,220,866,1773511518),(199639,320,866,1773511518),(199638,167,866,1773511518),(199637,330,866,1773511518),(199636,273,866,1773511518),(199635,170,866,1773511518),(199634,331,866,1773511518),(199633,213,866,1773511518),(199632,335,866,1773511518),(199631,243,866,1773511518),(199630,208,866,1773511518),(199629,154,866,1773511518),(199628,338,866,1773511518),(199627,68,866,1773511518),(199626,192,866,1773511518),(199625,298,866,1773511518),(199624,233,866,1773511518),(199623,207,866,1773511518),(199622,124,866,1773511518),(199621,183,866,1773511518),(199620,285,866,1773511518),(199619,103,866,1773511518),(199618,340,866,1773511518),(199617,67,866,1773511518),(199616,324,866,1773511517),(199615,90,866,1773511517),(199614,345,866,1773511517),(199613,281,866,1773511517),(199612,326,866,1773511517),(199611,232,866,1773511517),(199610,143,866,1773511517),(199609,110,866,1773511517),(199608,265,866,1773511517),(199607,262,866,1773511517),(199606,316,866,1773511517),(199605,260,866,1773511517),(199604,24,866,1773511517),(199603,37,866,1773511517),(199602,191,866,1773511517),(199601,42,866,1773511517),(199600,395,866,1773511517),(199599,430,866,1773511517),(199598,536,866,1773511517),(199597,13,866,1773511517),(199596,158,866,1773511517),(199595,87,866,1773511517),(199594,537,866,1773511517),(199593,152,866,1773511517),(199592,353,866,1773511517),(199591,193,866,1773511516),(199590,144,866,1773511516),(199589,94,866,1773511516),(199588,206,866,1773511516),(199587,253,866,1773511516),(199586,296,866,1773511516),(199585,174,866,1773511516),(199584,451,866,1773511516),(199583,387,866,1773511516),(199582,163,866,1773511516),(199581,242,866,1773511515),(199580,294,866,1773511515),(199579,301,866,1773511515),(199578,388,866,1773511515),(199577,291,866,1773511515),(199576,231,866,1773511515),(199575,91,866,1773511515),(199574,180,866,1773511515),(199573,32,866,1773511515),(199572,176,866,1773511515),(199571,250,866,1773511515),(199570,384,866,1773511515),(199569,452,866,1773511515),(199568,400,866,1773511515),(199567,234,866,1773511515),(199566,341,866,1773511515),(199565,189,866,1773511515),(199564,166,866,1773511515),(199563,321,866,1773511515),(199562,69,866,1773511515),(199561,196,866,1773511515),(199560,115,866,1773511515),(199559,263,866,1773511515),(199558,271,866,1773511515),(199557,211,866,1773511515),(199556,290,866,1773511515),(199555,65,866,1773511515),(199554,209,866,1773511515),(199553,405,866,1773511514),(199552,121,866,1773511514),(199551,63,866,1773511514),(199550,410,866,1773511514),(199549,445,866,1773511514),(199548,304,866,1773511514),(199547,391,866,1773511514),(199546,222,866,1773511514),(199545,344,866,1773511514),(199544,225,866,1773511514),(199543,446,866,1773511514),(199542,385,866,1773511514),(199541,393,866,1773511514),(199540,264,866,1773511514),(199539,179,866,1773511514),(199538,371,866,1773511514),(199537,238,866,1773511514),(199536,441,866,1773511514),(199535,302,866,1773511514),(199534,288,866,1773511514),(199533,256,866,1773511514),(199532,257,866,1773511514),(199531,332,866,1773511514),(199530,205,866,1773511514),(199529,319,866,1773511514),(199528,236,866,1773511514),(199527,148,866,1773511514),(199526,147,866,1773511514),(199525,382,866,1773511514),(199524,64,866,1773511514),(199523,431,866,1773511514),(199522,433,866,1773511514),(199521,181,866,1773511514),(199520,247,866,1773511514),(199519,303,866,1773511514),(199518,70,866,1773511514),(199517,96,866,1773511514),(199516,310,866,1773511514),(199515,426,866,1773511514),(199514,54,866,1773511514),(199513,329,866,1773511514),(199512,348,866,1773511514),(199511,435,866,1773511514),(199510,352,866,1773511513),(199509,328,866,1773511513),(199508,52,866,1773511513),(199507,98,866,1773511513),(199506,278,866,1773511513),(199505,164,866,1773511513),(199504,673,866,1773511513),(199503,323,866,1773511513),(199502,292,866,1773511513),(199501,372,866,1773511513),(199500,141,866,1773511513),(199499,351,866,1773511513),(199498,417,866,1773511513),(199497,251,866,1773511513),(199496,307,866,1773511513),(199495,112,866,1773511513),(199494,423,866,1773511513),(199493,66,866,1773511513),(199492,188,866,1773511513),(199491,313,866,1773511513),(199490,363,866,1773511512),(199489,255,866,1773511512),(199488,217,866,1773511512),(199487,274,866,1773511512),(199486,246,866,1773511512),(199485,168,866,1773511512),(199484,254,866,1773511512),(199483,337,866,1773511512),(199482,161,866,1773511512),(199481,187,866,1773511512),(199480,210,866,1773511512),(199479,357,866,1773511512),(199478,195,866,1773511512),(199477,378,866,1773511512),(199476,621,866,1773511512),(199475,140,866,1773511512),(199474,392,866,1773511512),(199473,201,866,1773511512),(199472,182,866,1773511512),(199471,438,866,1773511512),(199470,539,866,1773511512),(199469,221,866,1773511512),(199468,364,866,1773511511),(199467,227,866,1773511511),(199466,113,866,1773511511),(199465,309,866,1773511511),(199464,420,866,1773511511),(199463,79,866,1773511510),(199462,160,866,1773511510),(199461,249,866,1773511510),(199460,128,866,1773511510),(199459,359,866,1773511510),(199458,317,866,1773511510),(199457,347,866,1773511510),(199456,214,866,1773511510),(199455,336,866,1773511510),(199454,365,866,1773511510),(199453,434,866,1773511510),(199452,314,866,1773511510),(199451,10,866,1773511510),(199450,295,866,1773511510),(199449,175,866,1773511510),(199448,132,866,1773511510),(199447,241,866,1773511510),(199446,172,866,1773511510),(199445,390,866,1773511510),(199444,440,866,1773511510),(199443,346,866,1773511510),(199442,377,866,1773511510),(199441,405,865,1773494838),(199440,536,865,1773494838),(199439,384,865,1773494838),(199438,377,865,1773494838),(199437,440,865,1773494838),(199436,439,865,1773494838),(199435,96,865,1773494838),(199434,438,865,1773494838),(199433,441,865,1773494838),(199432,375,865,1773494837),(199431,194,865,1773494837),(199430,181,865,1773494837),(199429,136,865,1773494837),(199428,435,865,1773494837),(199427,263,865,1773494837),(199426,407,865,1773494837),(199425,115,865,1773494837),(199424,159,865,1773494837),(199423,123,865,1773494837),(199422,158,865,1773494837),(199421,141,865,1773494837),(199420,206,865,1773494837),(199419,213,865,1773494837),(199418,291,865,1773494837),(199417,410,865,1773494837),(199416,324,865,1773494837),(199415,160,865,1773494837),(199414,190,865,1773494837),(199413,179,865,1773494837),(199412,241,865,1773494837),(199411,32,865,1773494837),(199410,332,865,1773494837),(199409,185,865,1773494837),(199408,328,865,1773494837),(199407,163,865,1773494837),(199406,443,865,1773494837),(199405,52,865,1773494837),(199404,353,865,1773494837),(199403,114,865,1773494837),(199402,168,865,1773494837),(199401,236,865,1773494837),(199400,413,865,1773494837),(199399,228,865,1773494837),(199398,269,865,1773494837),(199397,207,865,1773494837),(199396,400,865,1773494837),(199395,24,865,1773494837),(199394,621,865,1773494837),(199393,446,865,1773494837),(199392,146,865,1773494837),(199391,231,865,1773494836),(199390,251,865,1773494836),(199389,260,865,1773494836),(199388,200,865,1773494836),(199387,278,865,1773494836),(199386,265,865,1773494836),(199385,227,865,1773494836),(199384,396,865,1773494836),(199383,188,865,1773494836),(199382,113,865,1773494836),(199381,212,865,1773494836),(199380,201,865,1773494836),(199379,430,865,1773494836),(199378,316,865,1773494836),(199377,560,865,1773494836),(199376,307,865,1773494836),(199375,281,865,1773494836),(199374,140,865,1773494836),(199373,408,865,1773494836),(199372,180,865,1773494836),(199371,147,865,1773494836),(199370,330,865,1773494836),(199369,161,865,1773494836),(199368,432,865,1773494836),(199367,19,865,1773494836),(199366,395,865,1773494836),(199365,348,865,1773494836),(199364,401,865,1773494836),(199363,112,865,1773494836),(199362,385,865,1773494836),(199361,329,865,1773494836),(199360,326,865,1773494836),(199359,417,865,1773494836),(199358,365,865,1773494836),(199357,154,865,1773494836),(199356,256,865,1773494836),(199355,335,865,1773494836),(199354,167,865,1773494836),(199353,257,865,1773494836),(199352,331,865,1773494836),(199351,420,865,1773494836),(199350,42,865,1773494836),(199349,195,865,1773494835),(199348,63,865,1773494835),(199347,217,865,1773494835),(199346,434,865,1773494835),(199345,176,865,1773494835),(199344,294,865,1773494835),(199343,452,865,1773494835),(199342,13,865,1773494835),(199341,333,865,1773494835),(199340,361,865,1773494835),(199339,261,865,1773494835),(199338,157,865,1773494835),(199337,275,865,1773494835),(199336,182,865,1773494835),(199335,266,865,1773494835),(199334,271,865,1773494835),(199333,448,865,1773494835),(199332,327,865,1773494835),(199331,87,865,1773494835),(199330,376,865,1773494835),(199329,152,865,1773494835),(199328,314,865,1773494835),(199327,357,865,1773494835),(199326,363,865,1773494835),(199325,295,865,1773494835),(199324,345,865,1773494835),(199323,456,865,1773494835),(199322,173,865,1773494835),(199321,94,865,1773494835),(199320,262,865,1773494835),(199319,338,865,1773494835),(199318,79,865,1773494835),(199317,61,865,1773494835),(199316,539,865,1773494835),(199315,54,865,1773494835),(199314,268,865,1773494835),(199313,253,865,1773494835),(199312,423,865,1773494835),(199311,246,865,1773494835),(199310,232,865,1773494835),(199309,203,865,1773494835),(199308,341,865,1773494834),(199307,298,865,1773494834),(199306,187,865,1773494834),(199305,445,865,1773494834),(199304,351,865,1773494834),(199303,292,865,1773494834),(199302,371,865,1773494834),(199301,303,865,1773494834),(199300,451,865,1773494834),(199299,166,865,1773494834),(199298,670,865,1773494834),(199297,360,865,1773494834),(199296,301,865,1773494834),(199295,189,865,1773494834),(199294,387,865,1773494833),(199293,145,865,1773494833),(199292,336,865,1773494833),(199291,289,865,1773494833),(199290,340,865,1773494833),(199289,273,865,1773494833),(199288,64,865,1773494833),(199287,10,865,1773494833),(199286,431,865,1773494833),(199285,126,865,1773494833),(199284,174,865,1773494833),(199283,184,865,1773494833),(199282,68,865,1773494833),(199281,143,865,1773494833),(199280,628,865,1773494833),(199279,70,865,1773494833),(199278,226,865,1773494833),(199277,274,865,1773494833),(199276,302,865,1773494833),(199275,288,865,1773494833),(199274,175,865,1773494833),(199273,299,865,1773494833),(199272,225,865,1773494833),(199271,433,865,1773494833),(199270,242,865,1773494833),(199269,132,865,1773494833),(199268,426,865,1773494833),(199267,170,865,1773494833),(199266,249,865,1773494833),(199265,211,865,1773494833),(199264,319,865,1773494833),(199263,390,865,1773494833),(199262,412,865,1773494833),(199261,309,865,1773494833),(199260,300,865,1773494833),(199259,323,865,1773494833),(199258,537,865,1773494832),(199257,208,865,1773494832),(199256,127,865,1773494832),(199255,210,865,1773494832),(199254,334,865,1773494832),(199253,67,865,1773494832),(199252,205,865,1773494832),(199251,214,865,1773494832),(199250,352,865,1773494832),(199249,393,865,1773494832),(199248,90,865,1773494832),(199247,148,865,1773494832),(199246,124,865,1773494832),(199245,65,865,1773494832),(199244,128,865,1773494831),(199243,414,865,1773494831),(199242,304,865,1773494831),(199241,320,865,1773494831),(199240,359,865,1773494831),(199239,391,865,1773494831),(199238,280,865,1773494831),(199237,186,865,1773494831),(199236,378,865,1773494831),(199235,255,865,1773494831),(199234,110,865,1773494831),(199233,584,865,1773494831),(199232,164,865,1773494831),(199231,97,865,1773494831),(199230,339,865,1773494831),(199229,344,865,1773494831),(199228,321,865,1773494831),(199227,310,865,1773494831),(199226,392,865,1773494831),(199225,220,865,1773494831),(199224,196,865,1773494831),(199223,247,865,1773494831),(199222,191,865,1773494831),(199221,337,865,1773494831),(199220,673,865,1773494831),(199219,250,865,1773494831),(199218,121,865,1773494831),(199217,428,865,1773494831),(199216,98,865,1773494831),(199215,204,865,1773494831),(199214,381,865,1773494831),(199213,254,865,1773494831),(199212,103,865,1773494831),(199211,224,865,1773494831),(199210,346,865,1773494831),(199209,221,865,1773494831),(199208,258,865,1773494831),(199207,285,865,1773494830),(199206,264,865,1773494830),(199205,317,865,1773494830),(199204,388,865,1773494830),(199203,308,865,1773494830),(199202,245,865,1773494830),(199201,238,865,1773494830),(199200,144,865,1773494830),(199199,172,865,1773494830),(199198,192,865,1773494830),(199197,69,865,1773494830),(199196,222,865,1773494830),(199195,233,865,1773494830),(199194,367,865,1773494830),(199193,382,865,1773494830),(199192,372,865,1773494830),(199191,364,865,1773494829),(199190,422,865,1773494829),(199189,197,865,1773494829),(199188,151,865,1773494829),(199187,37,865,1773494829),(199186,193,865,1773494829),(199185,239,865,1773494829),(199184,290,865,1773494829),(199183,296,865,1773494829),(199182,209,865,1773494829),(199181,234,865,1773494829),(199180,243,865,1773494829),(199179,313,865,1773494829),(199178,183,865,1773494829),(199177,58,865,1773494829),(199176,347,865,1773494829),(199175,403,865,1773494829),(199174,66,865,1773494829),(199173,274,864,1773188722),(199172,231,864,1773188722),(198904,628,862,1772582199),(198903,124,862,1772582198),(198902,233,862,1772582198),(198901,245,862,1772582198),(198900,281,862,1772582198),(198899,392,862,1772582198),(198898,327,862,1772582198),(198897,180,862,1772582198),(198896,621,862,1772582198),(198895,280,862,1772582198),(198894,121,862,1772582198),(198893,186,862,1772582198),(198892,239,862,1772582198),(198891,584,862,1772582198),(198890,278,862,1772582198),(198889,381,862,1772582198),(198888,339,862,1772582198),(198887,445,862,1772582198),(198886,182,862,1772582198),(198885,338,862,1772582198),(198884,19,862,1772582198),(198883,170,862,1772582198),(198882,201,862,1772582198),(198881,164,862,1772582198),(198880,364,862,1772582197),(198879,126,862,1772582197),(198878,63,862,1772582197),(198877,324,862,1772582197),(198876,200,862,1772582197),(198875,98,862,1772582197),(198874,212,862,1772582197),(198873,307,862,1772582197),(198872,37,862,1772582197),(198871,414,862,1772582197),(198870,357,862,1772582197),(198869,316,862,1772582197),(198868,203,862,1772582197),(198867,258,862,1772582196),(198866,340,862,1772582196),(198865,440,862,1772582196),(198864,359,862,1772582196),(198863,176,862,1772582196),(198862,351,862,1772582196),(198861,232,862,1772582196),(198860,257,862,1772582196),(198859,371,862,1772582196),(198858,294,862,1772582196),(198857,377,862,1772582196),(198856,292,862,1772582196),(198855,438,862,1772582196),(198854,238,862,1772582196),(198853,210,862,1772582196),(198852,412,862,1772582196),(198851,435,862,1772582196),(198850,333,862,1772582196),(198849,347,862,1772582196),(198848,385,862,1772582196),(198847,390,862,1772582196),(198846,260,862,1772582196),(198845,96,862,1772582196),(198844,251,862,1772582196),(198843,206,862,1772582196),(198842,363,862,1772582196),(198841,264,862,1772582196),(198840,321,862,1772582196),(198839,67,862,1772582195),(198838,301,862,1772582195),(198837,159,862,1772582195),(198836,326,862,1772582195),(198835,304,862,1772582195),(198834,336,862,1772582195),(198833,161,862,1772582195),(198832,195,862,1772582195),(198831,146,862,1772582195),(198830,296,862,1772582195),(198829,173,862,1772582195),(198828,249,862,1772582195),(198827,192,862,1772582195),(198826,90,862,1772582195),(198825,344,862,1772582195),(198824,231,862,1772582195),(198823,236,862,1772582195),(198822,148,862,1772582195),(198821,194,862,1772582195),(198820,328,862,1772582195),(198819,208,862,1772582195),(198818,189,862,1772582195),(198817,168,862,1772582195),(198816,110,862,1772582195),(198815,439,862,1772582195),(198814,413,862,1772582195),(198813,87,862,1772582195),(198812,298,862,1772582195),(198811,289,862,1772582195),(198810,348,862,1772582195),(198809,295,862,1772582195),(198808,331,862,1772582194),(198807,70,862,1772582194),(198806,225,862,1772582194),(198805,537,862,1772582194),(198804,274,862,1772582194),(198803,268,862,1772582194),(198802,213,862,1772582194),(198801,407,862,1772582194),(198800,536,862,1772582194),(198799,184,862,1772582194),(198798,207,862,1772582194),(198797,375,862,1772582176),(198796,250,862,1772582176),(198795,209,862,1772582176),(198794,128,862,1772582176),(198793,143,862,1772582176),(198792,360,862,1772582176),(198791,560,862,1772582176),(198790,275,862,1772582176),(198789,193,862,1772582176),(198788,113,862,1772582175),(198787,185,862,1772582175),(198786,395,862,1772582175),(198785,136,862,1772582175),(198784,228,862,1772582175),(198783,234,862,1772582175),(198782,69,862,1772582175),(198781,332,862,1772582175),(198780,196,862,1772582175),(198779,204,862,1772582175),(198778,430,862,1772582175),(198777,255,862,1772582175),(198776,91,862,1772582175),(198775,443,862,1772582175),(198774,79,862,1772582175),(198773,393,862,1772582175),(198772,451,862,1772582174),(198771,197,862,1772582174),(198770,221,862,1772582174),(198769,265,862,1772582174),(198768,179,862,1772582174),(198767,353,862,1772582174),(198766,302,862,1772582174),(198765,172,862,1772582174),(198764,167,862,1772582174),(198763,183,862,1772582174),(198762,433,862,1772582174),(198761,391,862,1772582174),(198760,94,862,1772582174),(198759,127,862,1772582174),(198758,408,862,1772582174),(198757,132,862,1772582174),(198756,341,862,1772582174),(198755,329,862,1772582173),(198754,115,862,1772582173),(198753,97,862,1772582173),(198752,403,862,1772582173),(198751,410,862,1772582173),(198750,114,862,1772582173),(198749,158,862,1772582173),(198748,346,862,1772582173),(198747,144,862,1772582173),(198746,428,862,1772582173),(198745,163,862,1772582173),(198744,291,862,1772582173),(198743,382,862,1772582173),(198742,145,862,1772582173),(198741,32,862,1772582173),(198740,242,862,1772582173),(198739,400,862,1772582173),(198738,64,862,1772582173),(198737,300,862,1772582173),(198736,152,862,1772582173),(198735,214,862,1772582173),(198734,160,862,1772582173),(198733,269,862,1772582173),(198732,417,862,1772582173),(198731,288,862,1772582173),(198730,222,862,1772582173),(198729,181,862,1772582173),(198728,123,862,1772582173),(198727,147,862,1772582173),(198726,220,862,1772582173),(198725,54,862,1772582173),(198724,314,862,1772582173),(198723,188,862,1772582173),(198722,61,862,1772582173),(198721,140,862,1772582173),(198720,68,862,1772582173),(198719,224,862,1772582173),(198718,319,862,1772582173),(198717,227,862,1772582173),(198716,309,862,1772582173),(198715,431,862,1772582173),(198714,452,862,1772582173),(198713,401,862,1772582173),(198712,10,862,1772582173),(198711,376,862,1772582172),(198710,313,862,1772582172),(198709,261,862,1772582172),(198708,191,862,1772582172),(198707,247,862,1772582172),(198706,387,862,1772582172),(198705,334,862,1772582172),(198704,58,862,1772582172),(198703,361,862,1772582172),(198702,151,862,1772582172),(198701,539,862,1772582172),(198700,367,862,1772582172),(198699,420,862,1772582172),(198698,190,862,1772582172),(198697,246,862,1772582172),(198696,65,862,1772582172),(198695,211,862,1772582172),(198694,303,862,1772582172),(198693,241,862,1772582172),(198692,243,862,1772582172),(198691,166,862,1772582172),(198690,323,862,1772582172),(198689,266,862,1772582172),(198688,337,862,1772582172),(198687,372,862,1772582172),(198686,175,862,1772582172),(198685,396,862,1772582172),(198684,441,862,1772582172),(198683,262,862,1772582172),(198682,384,862,1772582172),(198681,330,862,1772582172),(198680,365,862,1772582172),(198679,352,862,1772582171),(198678,422,862,1772582171),(198677,308,862,1772582171),(198676,317,862,1772582171),(198675,405,862,1772582171),(198674,13,862,1772582171),(198673,426,862,1772582171),(198672,52,862,1772582171),(198671,273,862,1772582171),(198670,254,862,1772582171),(198669,42,862,1772582171),(198668,320,862,1772582171),(198667,423,862,1772582171),(198666,388,862,1772582171),(198665,141,862,1772582171),(198664,335,862,1772582171),(198663,157,862,1772582170),(198662,670,862,1772582170),(198661,456,862,1772582170),(198660,112,862,1772582170),(198659,217,862,1772582170),(198658,66,862,1772582170),(198657,345,862,1772582170),(198656,432,862,1772582170),(198655,253,862,1772582170),(198654,256,862,1772582170),(198653,378,862,1772582170),(198652,285,862,1772582170),(198651,263,862,1772582170),(198650,205,862,1772582170),(198649,174,862,1772582170),(198648,290,862,1772582170),(198647,299,862,1772582170),(198646,271,862,1772582170),(198645,310,862,1772582170),(198644,103,862,1772582170),(198643,154,862,1772582170),(198642,446,862,1772582170),(198641,226,862,1772582170),(198640,434,862,1772582170),(198639,187,862,1772582170),(198638,24,862,1772582170),(198637,333,861,1772564540),(198636,255,861,1772564540),(198635,112,861,1772564540),(198634,195,861,1772564540),(198633,54,861,1772564540),(198632,360,861,1772564540),(198631,242,861,1772564540),(198630,203,861,1772564540),(198629,144,861,1772564540),(198628,262,861,1772564540),(198627,443,861,1772564540),(198626,19,861,1772564539),(198625,152,861,1772564539),(198624,670,861,1772564539),(198623,621,861,1772564539),(198622,209,861,1772564539),(198621,335,861,1772564539),(198620,241,861,1772564539),(198619,388,861,1772564539),(198618,422,861,1772564539),(198617,339,861,1772564539),(198616,140,861,1772564539),(198615,319,861,1772564539),(198614,372,861,1772564539),(198613,273,861,1772564539),(198612,132,861,1772564539),(198611,317,861,1772564539),(198610,307,861,1772564539),(198609,274,861,1772564539),(198608,66,861,1772564539),(198607,126,861,1772564539),(198606,181,861,1772564539),(198605,217,861,1772564539),(198604,451,861,1772564538),(198603,245,861,1772564538),(198602,346,861,1772564538),(198601,271,861,1772564538),(198600,174,861,1772564538),(198599,98,861,1772564538),(198598,381,861,1772564538),(198597,316,861,1772564538),(198596,391,861,1772564538),(198595,536,861,1772564538),(198594,168,861,1772564538),(198593,407,861,1772564538),(198592,173,861,1772564538),(198591,246,861,1772564538),(198590,393,861,1772564538),(198589,320,861,1772564538),(198588,205,861,1772564538),(198587,303,861,1772564538),(198586,428,861,1772564538),(198585,91,861,1772564538),(198584,103,861,1772564537),(198583,584,861,1772564537),(198582,210,861,1772564537),(198581,196,861,1772564537),(198580,375,861,1772564537),(198579,160,861,1772564537),(198578,170,861,1772564537),(198577,423,861,1772564537),(198576,32,861,1772564537),(198575,357,861,1772564537),(198574,338,861,1772564537),(198573,175,861,1772564537),(198572,87,861,1772564537),(198571,275,861,1772564537),(198570,207,861,1772564537),(198569,37,861,1772564537),(198568,310,861,1772564537),(198567,323,861,1772564537),(198566,290,861,1772564537),(198565,24,861,1772564537),(198564,194,861,1772564537),(198563,261,861,1772564537),(198562,364,861,1772564535),(198561,326,861,1772564535),(198560,190,861,1772564535),(198559,161,861,1772564535),(198558,189,861,1772564535),(198557,384,861,1772564535),(198556,263,861,1772564535),(198555,64,861,1772564535),(198554,392,861,1772564535),(198553,417,861,1772564535),(198552,400,861,1772564535),(198551,401,861,1772564535),(198550,363,861,1772564534),(198549,226,861,1772564534),(198548,68,861,1772564534),(198547,435,861,1772564534),(198546,432,861,1772564534),(198545,337,861,1772564534),(198544,367,861,1772564534),(198543,96,861,1772564534),(198542,208,861,1772564534),(198541,308,861,1772564534),(198540,200,861,1772564534),(198539,329,861,1772564534),(198538,52,861,1772564534),(198537,121,861,1772564534),(198536,114,861,1772564534),(198535,302,861,1772564534),(198534,220,861,1772564534),(198533,254,861,1772564534),(198532,123,861,1772564534),(198531,214,861,1772564534),(198530,412,861,1772564534),(198529,79,861,1772564534),(198528,238,861,1772564534),(198527,345,861,1772564534),(198526,420,861,1772564534),(198525,300,861,1772564534),(198524,247,861,1772564534),(198523,228,861,1772564534),(198522,141,861,1772564534),(198521,157,861,1772564534),(198520,371,861,1772564534),(198519,331,861,1772564534),(198518,158,861,1772564534),(198517,285,861,1772564534),(198516,185,861,1772564534),(198515,408,861,1772564534),(198514,405,861,1772564534),(198513,347,861,1772564534),(198512,288,861,1772564534),(198511,365,861,1772564534),(198510,239,861,1772564534),(198509,224,861,1772564534),(198508,332,861,1772564534),(198507,309,861,1772564533),(198506,439,861,1772564533),(198505,361,861,1772564533),(198504,113,861,1772564533),(198503,390,861,1772564533),(198502,212,861,1772564533),(198501,295,861,1772564533),(198500,264,861,1772564533),(198499,187,861,1772564533),(198498,265,861,1772564533),(198497,166,861,1772564533),(198496,227,861,1772564533),(198495,268,861,1772564533),(198494,115,861,1772564533),(198493,336,861,1772564533),(198492,110,861,1772564533),(198491,291,861,1772564533),(198490,167,861,1772564533),(198489,69,861,1772564533),(198488,269,861,1772564533),(198487,359,861,1772564533),(198486,314,861,1772564533),(198485,61,861,1772564533),(198484,258,861,1772564533),(198483,145,861,1772564533),(198482,321,861,1772564533),(198481,172,861,1772564533),(198480,539,861,1772564533),(198479,191,861,1772564533),(198478,186,861,1772564533),(198477,148,861,1772564533),(198476,341,861,1772564533),(198475,294,861,1772564533),(198474,378,861,1772564533),(198473,180,861,1772564533),(198472,70,861,1772564533),(198471,249,861,1772564532),(198470,10,861,1772564532),(198469,537,861,1772564532),(198468,221,861,1772564532),(198467,324,861,1772564532),(198466,65,861,1772564532),(198465,334,861,1772564532),(198464,128,861,1772564532),(198463,42,861,1772564532),(198462,628,861,1772564532),(198461,296,861,1772564532),(198460,344,861,1772564532),(198459,440,861,1772564532),(198458,430,861,1772564532),(198457,164,861,1772564532),(198456,387,861,1772564532),(198455,204,861,1772564532),(198454,328,861,1772564532),(198453,231,861,1772564532),(198452,431,861,1772564532),(198451,183,861,1772564532),(198450,352,861,1772564532),(198449,146,861,1772564531),(198448,253,861,1772564531),(198447,136,861,1772564531),(198446,403,861,1772564531),(198445,376,861,1772564531),(198444,299,861,1772564531),(198443,280,861,1772564531),(198442,385,861,1772564531),(198441,147,861,1772564531),(198440,298,861,1772564531),(198439,456,861,1772564531),(198438,176,861,1772564531),(198437,304,861,1772564531),(198436,67,861,1772564531),(198435,414,861,1772564531),(198434,410,861,1772564531),(198433,225,861,1772564531),(198432,188,861,1772564531),(198431,151,861,1772564531),(198430,426,861,1772564531),(198429,250,861,1772564531),(198428,340,861,1772564531),(198427,396,861,1772564531),(198426,260,861,1772564531),(198425,193,861,1772564531),(198424,441,861,1772564531),(198423,413,861,1772564531),(198422,445,861,1772564531),(198421,256,861,1772564531),(198420,433,861,1772564531),(198419,182,861,1772564531),(198418,211,861,1772564531),(198417,201,861,1772564531),(198416,452,861,1772564531),(198415,292,861,1772564531),(198414,243,861,1772564530),(198413,351,861,1772564530),(198412,348,861,1772564530),(198411,97,861,1772564530),(198410,353,861,1772564530),(198409,395,861,1772564530),(198408,222,861,1772564530),(198407,236,861,1772564530),(198406,313,861,1772564530),(198405,143,861,1772564530),(198404,446,861,1772564530),(198403,124,861,1772564530),(198402,184,861,1772564530),(198401,278,861,1772564530),(198400,192,861,1772564530),(198399,159,861,1772564530),(198398,438,861,1772564530),(198397,154,861,1772564530),(198396,163,861,1772564530),(198395,330,861,1772564530),(198394,58,861,1772564530),(198393,281,861,1772564530),(198392,289,861,1772564530),(198391,301,861,1772564530),(198390,448,861,1772564530),(198389,377,861,1772564530),(198388,434,861,1772564530),(198387,382,861,1772564530),(198386,206,861,1772564530),(198385,179,861,1772564530),(198384,234,861,1772564530),(198383,13,861,1772564530),(198382,213,861,1772564530),(198381,560,861,1772564530),(198380,90,861,1772564530),(198379,94,861,1772564530),(198378,233,861,1772564530),(198377,232,861,1772564530),(198376,257,861,1772564530),(198375,251,861,1772564530),(198374,63,861,1772564530),(198373,197,861,1772564530),(198372,266,861,1772564529),(198371,127,861,1772564529);
/*!40000 ALTER TABLE `oto_sentrcpt` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_settings`
--

DROP TABLE IF EXISTS `oto_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_settings` (
  `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  `sitename` varchar(200) DEFAULT NULL,
  `sitedesc` varchar(40) NOT NULL,
  `ototype` int(11) unsigned NOT NULL DEFAULT 0,
  `meta_description` varchar(254) DEFAULT NULL,
  `meta_keywords` varchar(254) DEFAULT NULL,
  `paypal_email` varchar(100) NOT NULL DEFAULT 'youraddress@paypal.com',
  `item_id` varchar(20) NOT NULL DEFAULT 'None',
  `item_name` varchar(40) NOT NULL DEFAULT 'One Time Offer',
  `item_price` float(6,2) DEFAULT 0.00,
  `affcomm` float(5,2) NOT NULL DEFAULT 0.00,
  `php_path` varchar(255) DEFAULT NULL,
  `documentroot` varchar(255) DEFAULT NULL,
  `smtp_server` varchar(100) DEFAULT NULL,
  `smtp_user` varchar(100) NOT NULL,
  `smtp_pass` varchar(100) NOT NULL,
  `replyaddress` varchar(100) DEFAULT NULL,
  `bounceaddress` varchar(100) DEFAULT NULL,
  `affurl` varchar(255) DEFAULT NULL,
  `auto_email` varchar(100) DEFAULT NULL,
  `bgemail` int(11) unsigned NOT NULL DEFAULT 0,
  `pptestmode` int(11) NOT NULL DEFAULT 0,
  `pptestemail` varchar(100) DEFAULT NULL,
  `ver` float(3,2) NOT NULL DEFAULT 1.10,
  `_2co_id` varchar(20) DEFAULT NULL,
  `_2co_productid` varchar(20) DEFAULT NULL,
  `_2co_secret` varchar(16) DEFAULT NULL,
  `paypal_enable` tinyint(4) NOT NULL DEFAULT 1,
  `_2co_enable` tinyint(4) NOT NULL DEFAULT 0,
  `authnet_enable` tinyint(4) NOT NULL DEFAULT 0,
  `item2_id` varchar(20) DEFAULT NULL,
  `item3_id` varchar(20) DEFAULT NULL,
  `_2co_productid2` varchar(20) DEFAULT NULL,
  `_2co_productid3` varchar(20) DEFAULT NULL,
  `item2_name` varchar(40) DEFAULT 'None',
  `item3_name` varchar(40) DEFAULT 'None',
  `item2_price` float(6,2) DEFAULT NULL,
  `item3_price` float(6,2) DEFAULT NULL,
  `phpbb_path` varchar(255) DEFAULT NULL,
  `phpbb_host` varchar(150) DEFAULT NULL,
  `phpbb_db` varchar(50) DEFAULT NULL,
  `phpbb_dbuser` varchar(50) DEFAULT NULL,
  `phpbb_dbpass` varchar(50) DEFAULT NULL,
  `phpbb_prefix` varchar(32) DEFAULT NULL,
  `phpbb_group` varchar(50) DEFAULT NULL,
  `autoresponder` int(11) DEFAULT 0 COMMENT '0=None,1=Aweber,2=Other',
  `a_meta_web_id` varchar(100) DEFAULT NULL,
  `a_unit` varchar(50) DEFAULT NULL,
  `a_req_fields` varchar(100) DEFAULT NULL,
  `addtophpbb` int(11) NOT NULL DEFAULT 0,
  `authnet_login` varchar(40) DEFAULT NULL,
  `authnet_key` varchar(40) DEFAULT NULL,
  `firstcookie` tinyint(4) NOT NULL DEFAULT 0,
  `bannerurls` tinyint(4) NOT NULL DEFAULT 1,
  `flow` tinyint(4) NOT NULL DEFAULT 1,
  `filelibpath` varchar(255) DEFAULT '/1qaz2wsx/',
  `fileprot` int(11) NOT NULL DEFAULT 0,
  `pp_curr` char(3) NOT NULL DEFAULT 'USD',
  `offer1email` int(11) NOT NULL DEFAULT 0,
  `offer2email` int(11) NOT NULL DEFAULT 0,
  `offer3email` int(11) NOT NULL DEFAULT 0,
  `otoemailtxt1` mediumtext DEFAULT NULL,
  `otoemailtxt2` mediumtext DEFAULT NULL,
  `otoemailtxt3` mediumtext DEFAULT NULL,
  `otoemailsubj` varchar(255) DEFAULT NULL,
  `splittest` int(11) NOT NULL DEFAULT 1,
  `cb_enable` int(11) NOT NULL DEFAULT 0,
  `cb_hoplink` varchar(255) DEFAULT NULL,
  `cb_publisherid` varchar(100) DEFAULT NULL,
  `cb_secret` varchar(50) DEFAULT NULL,
  `phpbbver` int(11) NOT NULL DEFAULT 2,
  `verifyemail` int(11) NOT NULL DEFAULT 0,
  `notifysale` int(11) NOT NULL DEFAULT 0,
  `notifydownline` int(11) NOT NULL DEFAULT 0,
  `theme` varchar(50) NOT NULL,
  `surficontheme` varchar(50) NOT NULL DEFAULT 'surficon_themes/LFMVM_smart75',
  `tecron` date NOT NULL,
  `storeimps` int(11) NOT NULL DEFAULT 1,
  `defbanimg` varchar(200) NOT NULL DEFAULT 'http://intellibanners.com/banners/banner4.jpg',
  `defbantar` varchar(200) NOT NULL DEFAULT 'http://intellibanners.com',
  `deftextad` varchar(200) NOT NULL DEFAULT 'Track Your Hits',
  `deftexttar` varchar(200) NOT NULL DEFAULT 'http://hitsconnect.com',
  `reqemailver` int(11) NOT NULL DEFAULT 1,
  `reqrever` int(11) NOT NULL DEFAULT 1,
  `rotationtype` int(11) NOT NULL DEFAULT 0,
  `allowduplicates` int(11) NOT NULL DEFAULT 0,
  `surflogdays` int(11) NOT NULL DEFAULT 360,
  `showrefmail` int(11) NOT NULL DEFAULT 0,
  `showeditors` int(11) NOT NULL DEFAULT 1,
  `unverirem` int(11) NOT NULL DEFAULT 0,
  `unveridel` int(11) NOT NULL DEFAULT 0,
  `signup_checkbox_text` varchar(100) NOT NULL DEFAULT 'Check this box if you want to save 65% on our upgraded membership.',
  `min_comm` float(6,2) unsigned DEFAULT 0.00,
  `enablemenu_home` int(11) NOT NULL DEFAULT 1,
  `enablemenu_ref` int(11) NOT NULL DEFAULT 1,
  `enablemenu_profile` int(11) NOT NULL DEFAULT 1,
  `enablemenu_promote` int(11) NOT NULL DEFAULT 1,
  `enablemenu_makemoney` int(11) NOT NULL DEFAULT 1,
  `enablemenu_downloads` int(11) NOT NULL DEFAULT 1,
  `enablemenu_dlb` int(11) NOT NULL DEFAULT 1,
  `enablemenu_upgrade` int(11) NOT NULL DEFAULT 1,
  `enablemenu_forum` int(11) NOT NULL DEFAULT 0,
  `enablemenu_logout` int(11) NOT NULL DEFAULT 1,
  `arp_email` varchar(255) NOT NULL DEFAULT '',
  `gvo_affiliate_name` varchar(100) NOT NULL,
  `gvo_campaign` varchar(100) NOT NULL,
  `gvo_form_id` varchar(100) NOT NULL,
  `sstats` smallint(3) NOT NULL DEFAULT 14 COMMENT 'surf stats cron',
  `indextheme` int(1) NOT NULL DEFAULT 1,
  `senthistorydays` int(11) NOT NULL DEFAULT 360,
  `m_spon_did` int(11) NOT NULL DEFAULT 0,
  `trwvid` varchar(100) NOT NULL DEFAULT '',
  `trwvseries` varchar(100) NOT NULL DEFAULT '',
  `delsusp` int(11) NOT NULL DEFAULT 365,
  `nodelpaid` int(11) NOT NULL DEFAULT 1,
  `bouncetest1` int(11) NOT NULL DEFAULT 1,
  `bouncetest2` int(11) NOT NULL DEFAULT 5,
  `lastbouncecron` int(11) NOT NULL DEFAULT 0,
  `bouncelimit` int(11) NOT NULL DEFAULT 0,
  `delunsub` int(11) NOT NULL DEFAULT 0,
  `max_fail_name` int(11) NOT NULL DEFAULT 10,
  `max_fail_ip` int(11) NOT NULL DEFAULT 15,
  `signup_payment_text` varchar(100) NOT NULL DEFAULT 'Payment Address:',
  `ibcid` int(11) NOT NULL DEFAULT 0,
  `intellibid` int(11) NOT NULL DEFAULT 0,
  `ibcenable` int(11) NOT NULL DEFAULT 1,
  `intellibenable` int(11) NOT NULL DEFAULT 1,
  `captcha` int(11) NOT NULL DEFAULT 1,
  `lastruncron` int(11) NOT NULL DEFAULT 0,
  `menutext_home` varchar(50) NOT NULL DEFAULT 'Home',
  `menutext_ref` varchar(50) NOT NULL DEFAULT 'Referrals',
  `menutext_profile` varchar(50) NOT NULL DEFAULT 'Profile',
  `menutext_promote` varchar(50) NOT NULL DEFAULT 'Affiliate Toolbox',
  `menutext_makemoney` varchar(50) NOT NULL DEFAULT 'Commissions',
  `menutext_downloads` varchar(50) NOT NULL DEFAULT 'Downloads',
  `menutext_dlb` varchar(50) NOT NULL DEFAULT 'Downline Builder',
  `menutext_upgrade` varchar(50) NOT NULL DEFAULT 'Upgrade',
  `menutext_forum` varchar(50) NOT NULL DEFAULT 'Forum',
  `menutext_logout` varchar(50) NOT NULL DEFAULT 'Logout',
  `default_member_level` int(11) NOT NULL DEFAULT 1,
  `max_ipperacc` int(11) NOT NULL DEFAULT 3,
  `max_accperip` int(11) NOT NULL DEFAULT 3,
  `bouncemindays` int(11) NOT NULL DEFAULT 7,
  `bounceretrynum` int(11) NOT NULL DEFAULT 30,
  `retrybouncecron` int(11) NOT NULL DEFAULT 0,
  `jshttps` int(11) NOT NULL DEFAULT 1,
  `salesapikey` varchar(255) NOT NULL DEFAULT '',
  `lfmvmhttp` int(11) NOT NULL DEFAULT 1,
  `maintcron` date NOT NULL,
  `autopermdel` int(11) NOT NULL DEFAULT 180,
  `showloginlog` int(11) NOT NULL DEFAULT 1,
  `loginrequest` int(1) NOT NULL DEFAULT 1,
  `mdlb_links` tinyint(1) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_settings`
--

LOCK TABLES `oto_settings` WRITE;
/*!40000 ALTER TABLE `oto_settings` DISABLE KEYS */;
INSERT INTO `oto_settings` (`id`, `sitename`, `sitedesc`, `ototype`, `meta_description`, `meta_keywords`, `paypal_email`, `item_id`, `item_name`, `item_price`, `affcomm`, `php_path`, `documentroot`, `smtp_server`, `smtp_user`, `smtp_pass`, `replyaddress`, `bounceaddress`, `affurl`, `auto_email`, `bgemail`, `pptestmode`, `pptestemail`, `ver`, `_2co_id`, `_2co_productid`, `_2co_secret`, `paypal_enable`, `_2co_enable`, `authnet_enable`, `item2_id`, `item3_id`, `_2co_productid2`, `_2co_productid3`, `item2_name`, `item3_name`, `item2_price`, `item3_price`, `phpbb_path`, `phpbb_host`, `phpbb_db`, `phpbb_dbuser`, `phpbb_dbpass`, `phpbb_prefix`, `phpbb_group`, `autoresponder`, `a_meta_web_id`, `a_unit`, `a_req_fields`, `addtophpbb`, `authnet_login`, `authnet_key`, `firstcookie`, `bannerurls`, `flow`, `filelibpath`, `fileprot`, `pp_curr`, `offer1email`, `offer2email`, `offer3email`, `otoemailtxt1`, `otoemailtxt2`, `otoemailtxt3`, `otoemailsubj`, `splittest`, `cb_enable`, `cb_hoplink`, `cb_publisherid`, `cb_secret`, `phpbbver`, `verifyemail`, `notifysale`, `notifydownline`, `theme`, `surficontheme`, `tecron`, `storeimps`, `defbanimg`, `defbantar`, `deftextad`, `deftexttar`, `reqemailver`, `reqrever`, `rotationtype`, `allowduplicates`, `surflogdays`, `showrefmail`, `showeditors`, `unverirem`, `unveridel`, `signup_checkbox_text`, `min_comm`, `enablemenu_home`, `enablemenu_ref`, `enablemenu_profile`, `enablemenu_promote`, `enablemenu_makemoney`, `enablemenu_downloads`, `enablemenu_dlb`, `enablemenu_upgrade`, `enablemenu_forum`, `enablemenu_logout`, `arp_email`, `gvo_affiliate_name`, `gvo_campaign`, `gvo_form_id`, `sstats`, `indextheme`, `senthistorydays`, `m_spon_did`, `trwvid`, `trwvseries`, `delsusp`, `nodelpaid`, `bouncetest1`, `bouncetest2`, `lastbouncecron`, `bouncelimit`, `delunsub`, `max_fail_name`, `max_fail_ip`, `signup_payment_text`, `ibcid`, `intellibid`, `ibcenable`, `intellibenable`, `captcha`, `lastruncron`, `menutext_home`, `menutext_ref`, `menutext_profile`, `menutext_promote`, `menutext_makemoney`, `menutext_downloads`, `menutext_dlb`, `menutext_upgrade`, `menutext_forum`, `menutext_logout`, `default_member_level`, `max_ipperacc`, `max_accperip`, `bouncemindays`, `bounceretrynum`, `retrybouncecron`, `jshttps`, `salesapikey`, `lfmvmhttp`, `maintcron`, `autopermdel`, `showloginlog`, `loginrequest`, `mdlb_links`) VALUES (1,'soloswaps.com','',0,'Free Viral Mailer','viral,mailer,marketing','','None','One Time Offer',50.00,20.00,'/usr/bin/php','','localhost','','','support@soloswaps.com','support@soloswaps.com','https://soloswaps.com/','',0,1,'',1.28,'','','',0,0,0,'None','None','','','-','-',20.00,10.00,NULL,'','','','','','',0,'','','',0,'','',0,1,1,'/1qaz2wsx/',0,'USD',0,0,0,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,2,1,0,0,'themes/LFMVM_default','surficon_themes/LFMVM_smart75','2026-06-26',1,'http://intellibanners.com/banners/banner4.jpg','http://intellibanners.com','Track Your Hits','http://hitsconnect.com',1,1,0,0,360,0,1,0,0,'Check this box if you want to save 65% on our upgraded membership.',0.00,1,1,1,0,1,1,1,1,0,1,'','','','',14,0,360,0,'','',365,1,1,5,1782486012,0,0,10,15,'Payment Address:',0,0,1,1,1,1782487450,'Home','Referrals','Profile','Affiliate Toolbox','Commissions','Downloads','Downline Builder','Upgrade','Forum','Logout',1,3,5,7,30,1782410412,1,'',0,'2026-06-26',180,1,1,1);
/*!40000 ALTER TABLE `oto_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_signupform`
--

DROP TABLE IF EXISTS `oto_signupform`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_signupform` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `fieldname` varchar(50) NOT NULL DEFAULT '',
  `fieldsize` int(11) NOT NULL DEFAULT 0,
  `enable` tinyint(4) NOT NULL DEFAULT 0,
  `require` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_signupform`
--

LOCK TABLES `oto_signupform` WRITE;
/*!40000 ALTER TABLE `oto_signupform` DISABLE KEYS */;
INSERT INTO `oto_signupform` (`id`, `fieldname`, `fieldsize`, `enable`, `require`) VALUES (1,'firstname',20,1,0),(2,'lastname',20,1,0),(3,'address',32,0,0),(4,'city',20,0,0),(5,'state',20,0,0),(6,'zip',12,0,0),(7,'country',0,0,0),(8,'telephone',20,0,0),(9,'paypal',32,0,0),(10,'geo',0,0,0),(11,'checkbox',0,1,0);
/*!40000 ALTER TABLE `oto_signupform` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_signupmods`
--

DROP TABLE IF EXISTS `oto_signupmods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_signupmods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_signupmods`
--

LOCK TABLES `oto_signupmods` WRITE;
/*!40000 ALTER TABLE `oto_signupmods` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_signupmods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_solomails`
--

DROP TABLE IF EXISTS `oto_solomails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_solomails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` int(11) NOT NULL DEFAULT 0,
  `userid` int(11) NOT NULL DEFAULT 0,
  `subjecttext` varchar(200) NOT NULL DEFAULT 'None',
  `bodytext` text DEFAULT NULL,
  `linkurl` varchar(200) NOT NULL DEFAULT 'None',
  `senddate` date NOT NULL,
  `sent` tinyint(1) NOT NULL DEFAULT 0,
  `approved` tinyint(1) NOT NULL DEFAULT 0,
  `userset` tinyint(1) NOT NULL DEFAULT 0,
  `views` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_solomails`
--

LOCK TABLES `oto_solomails` WRITE;
/*!40000 ALTER TABLE `oto_solomails` DISABLE KEYS */;
INSERT INTO `oto_solomails` (`id`, `type`, `userid`, `subjecttext`, `bodytext`, `linkurl`, `senddate`, `sent`, `approved`, `userset`, `views`) VALUES (1,0,2,'spin and wheel test','<!DOCTYPE html>\r\n<html>\r\n  <head>\r\n    <meta content=\"text/html; charset=utf-8\" http-equiv=\"content-type\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n    <title>Ready Set Traffic - Spin To Win</title>\r\n    <style type=\"text/css\">\r\n      \r\n      /* Wheel Spin by Martin Chantler - https://reducethehype.com */\r\n\r\n      * {\r\n        box-sizing: border-box;\r\n      }\r\n      \r\n      html {\r\n        background-color: #102631;\r\n        background: linear-gradient(#102631,#1191ae) no-repeat center center fixed;\r\n        background-size: cover;\r\n      }\r\n      \r\n      #container {\r\n        margin: 0 auto;\r\n        padding-top: 20px;\r\n        padding-bottom: 20px;\r\n        font-family: Arial, \"Helvetica Neue\", Helvetica, sans-serif;\r\n        color: #fff;\r\n        text-align: center;\r\n      }\r\n      \r\n      #wheel-container, #form-wrapper {\r\n        display: inline-block;\r\n        vertical-align: middle;\r\n      }\r\n      \r\n      #wheel-container {\r\n        position: relative;\r\n        width: 500px;\r\n        height: 500px;\r\n        margin: 0 auto;\r\n        border: 0;\r\n        border-radius: 50%;\r\n        box-shadow: 5px 5px rgba(0,0,0,0.3);\r\n      }\r\n      \r\n      #wheel-container > div {\r\n        overflow: hidden;\r\n      }\r\n      \r\n      #wheel {\r\n        width: 500px;\r\n        height: 500px;\r\n        background-color: #01303f;\r\n        background-image: repeating-conic-gradient(from 15deg, #01303f 0deg 30deg, #02a9f7 30deg 60deg,#02577a 60deg 90deg, #89d6fb 90deg 120deg);\r\n        background-repeat: no-repeat;\r\n        background-size: 100%;\r\n        border: 0;\r\n        border-radius: 50%;\r\n        overflow: hidden;\r\n        box-shadow: 0 0 0 5px #fcd730 inset;\r\n        transition: transform 5s ease-out;\r\n      }\r\n      \r\n      #wheel div {\r\n        position: absolute;\r\n        top: calc(50% - 20px);\r\n        left: 50%;\r\n        width:  40%;\r\n        padding-left: 8%;\r\n        max-height: 40px;  /* Do NOT Change This Value! */\r\n        line-height: 40px; /* Do NOT Change This Value! */\r\n        font-size: 18px;\r\n        font-weight: bold;\r\n        color: white;\r\n        text-align: center;\r\n        overflow-x: hidden;\r\n        transform-origin: left center;\r\n        white-space: nowrap;\r\n        box-sizing: content-box;\r\n      }\r\n      \r\n      #pointer {\r\n        position: absolute;\r\n        width: 30px;\r\n        height: 30px;\r\n        top: calc(50% - 15px);\r\n        right: -10px;\r\n        z-index: 100;\r\n      }\r\n      \r\n      #wheel-center {\r\n        position: absolute;\r\n        width: 70px;\r\n        height: 70px;\r\n        top: 50%;\r\n        left: 50%;\r\n        transform: translate(-50%,-50%);\r\n        border: 1px solid black;\r\n        border-radius: 50%;\r\n        background: radial-gradient(#fcd730,#f15a25);\r\n        z-index: 100;\r\n      }\r\n      \r\n      #form-wrapper {\r\n        width: 480px;\r\n        margin-left: 20px;\r\n        font-family: Verdana, Geneva, sans-serif;\r\n      }\r\n      \r\n      .headline {\r\n        margin-bottom:20px;\r\n        font-size:68px;\r\n        font-weight:bold;\r\n        color:#f00;\r\n        text-shadow: -1px -1px #fff, -1px 1px #fff, 1px 1px #fff, 1px -1px #fff;\r\n      }\r\n      \r\n      .main-text {\r\n        margin: 10px;\r\n        font-size: 24px;\r\n        font-weight: bold;\r\n        text-shadow: 2px 2px rgba(0,0,0,0.7);\r\n        text-transform: capitalize;\r\n      }\r\n      \r\n      .sub-text {\r\n        margin: 10px;\r\n        font-size: 16px;\r\n        text-shadow: 1px 1px rgba(0,0,0,0.7);\r\n      }\r\n      \r\n      #prizeText {\r\n        font-weight: bold;\r\n        color: yellow;\r\n      }\r\n      \r\n      #prizeURL {\r\n        display: inline-block;\r\n        width: 80%;\r\n        max-width: 400px;\r\n        padding: 5px;\r\n        background-color: #fff;\r\n        border: 1px solid #000;\r\n        font-size: 18px;\r\n        font-weight: bold;\r\n        color: #000;\r\n        vertical-align: middle;\r\n      }\r\n      \r\n      #spinButton, .btn { \r\n        background: linear-gradient(to right,#f15a25,#fcd730,#f15a25);\r\n        display:inline-block;\r\n        border: none;\r\n        border-radius: 5px;       \r\n        color: #fff;\r\n        font-family: Verdana, Geneva, sans-serif;\r\n        font-size:20px;\r\n        font-weight: bold;\r\n        padding: 10px;\r\n        max-width: 360px;\r\n        width: 90%;\r\n        margin-top: 5px;\r\n        cursor: pointer;\r\n        text-transform: uppercase;\r\n        text-decoration: none;\r\n        text-shadow: -1px -1px #000,1px -1px #000,1px 1px #000,-1px 1px #000;\r\n        white-space: normal;\r\n        border: 2px solid #001530;\r\n        box-shadow: 0 3px #001530;\r\n      }\r\n      \r\n      #spinButton:hover {\r\n        background: linear-gradient(to right,#fcd730,#f15a25,#fcd730);\r\n      }\r\n      \r\n      button:hover, button:active, button:focus {\r\n        outline: none;\r\n      }\r\n      \r\n      .copyButton {\r\n        border: 2px solid #ccc;\r\n        border-radius: 4px;\r\n        padding: 1px 4px;\r\n        background-color: #eee;\r\n        cursor: pointer;\r\n        vertical-align: middle;\r\n      }\r\n      \r\n      .copyButton svg {\r\n        width: 24px;\r\n        height: 24px;\r\n      }\r\n      \r\n      @media(max-width: 1023px) {\r\n        #wheel-container, #form-wrapper {display: block;}\r\n      	#form-wrapper {width: auto; margin: auto;}\r\n      }\r\n      \r\n      @media(max-width: 740px) {\r\n        .headline {font-size: 38px;}\r\n      }\r\n      \r\n      @media(max-width: 500px) {\r\n        #wheel-container {width: 300px;height: 300px;}\r\n        #wheel {width: 300px; height: 300px;}\r\n        #wheel div {font-size: 14px;}\r\n        #wheel-center {width: 40px; height: 40px;}\r\n      }\r\n      \r\n    </style>\r\n  </head>\r\n  <body>\r\n    <div id=\"container\">\r\n      <div class=\"headline\">SPIN TO WIN A PRIZE!</div>\r\n      <div id=\"wheel-container\">\r\n        <div id=\"pointer\"><svg height=\"30\" width=\"30\"><polygon points=\"0,15 30,0 20,15 30,30\"\r\n\r\n              style=\"fill:white;stroke:black;stroke-width:2\"></polygon></svg></div>\r\n        <div id=\"wheel-center\">Â </div>\r\n        <div>\r\n          <div id=\"wheel\">\r\n            <div id=\"prize12\">1000 Ad Credits</div>\r\n            <div style=\"transform: rotate(30deg);\">Next Time</div>\r\n            <div id=\"prize10\" style=\"transform: rotate(60deg);font-size:16px\">Lead Manager / Task CRM</div>\r\n            <div style=\"transform: rotate(90deg);\">Unlucky</div>\r\n            <div id=\"prize8\" style=\"transform: rotate(120deg);\">SMS Software</div>\r\n            <div style=\"transform: rotate(150deg);\">Almost</div>\r\n            <div id=\"prize6\" style=\"transform: rotate(180deg);\">Page Builder</div>\r\n            <div style=\"transform: rotate(210deg);\">Next Time</div>\r\n            <div id=\"prize4\" style=\"transform: rotate(240deg);\">Email Blaster Software</div>\r\n            <div style=\"transform: rotate(270deg);\">Unlucky</div>\r\n            <div id=\"prize2\" style=\"transform: rotate(300deg);\">Link Tracker & Rotar</div>\r\n            <div style=\"transform: rotate(330deg);\">Almost</div>\r\n          </div>\r\n        </div>\r\n      </div>\r\n      <div id=\"form-wrapper\">\r\n        <!-- Site Banner -->\r\n        <div style=\"margin-top: 30px;margin-bottom:30px;text-align:center\">\r\n          <p><a href=\"#REFURL#\" target=\"_blank\" title=\"Click To Join For FREE!\"><img\r\n\r\n                src=\"https://i.imgur.com/gvDOR8N.jpg\" style=\"max-width:100%;height:auto;box-shadow: 0 0 0 3px #000\"\r\n\r\n                border=\"0\"></a></p>\r\n        </div>\r\n        <!-- Welcome Text Starts Here -->\r\n        <div id=\"welcome-text\">\r\n          <div class=\"main-text\">Welcome to the amazing Wheel Spin of <span\r\n\r\n              style=\"color:yellow;text-transform: uppercase\">Ready Set Traffic<br>\r\n            </span></div>\r\n          <div class=\"sub-text\">\r\n            <p>This is your lucky day!!!</p>\r\n            <p>Why?</p>\r\n            <p>You WILL win a FREE prize!</p>\r\n            <p>Just spin the wheel and see what you\'ve won.</p>\r\n            <p>Spin now - it\'s FREE :-)</p>\r\n          </div>\r\n          <div class=\"sub-text\">You have 3 spins left.</div>\r\n        </div>\r\n        <!-- Welcome Text Ends Here -->\r\n        <!-- Lost Text Starts Here -->\r\n        <div id=\"lost-text\" style=\"display:none;\">\r\n          <div class=\"main-text\">Sorry! Bad Luck.</div>\r\n          <div class=\"sub-text\">Why not see if you have better luck this time.</div>\r\n          <div id=\"spins-left\" class=\"sub-text\">You have 3 spins left.</div>\r\n        </div>\r\n        <!-- Lost Text Ends Here -->\r\n        <!-- Free Spin Text Starts Here -->\r\n        <div id=\"freeSpin-text\" style=\"display:none;\">\r\n          <div class=\"main-text\">Congratulations!</div>\r\n          <div class=\"sub-text\">You have won an extra spin.</div>\r\n        </div>\r\n        <!-- Free Spin Text Ends Here -->\r\n        <!-- No Spins Left Starts Here -->\r\n        <div id=\"noSpins-text\" style=\"display:none;\">\r\n          <div class=\"main-text\">Sorry! No Spins Left.</div>\r\n          <div class=\"sub-text\">Come back and play another time..</div>\r\n        </div>\r\n        <!-- No Spins Left Ends Here -->\r\n        <!-- Win Text Starts Here -->\r\n        <div id=\"win-text\" style=\"display:none;\">\r\n          <div class=\"main-text\">CONGRATULATIONS!</div>\r\n          <div class=\"sub-text\">You Have Won: <span id=\"prizeText\">Â </span></div>\r\n          <div id=\"prizeURL\">Promo Code Will Display Here!</div>\r\n          <button title=\"Copy\" onclick=\"copyToClipboard()\" class=\"copyButton\">\r\n            <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\r\n              <g>\r\n                <path fill=\"none\" d=\"M0 0h24v24H0z\"></path>\r\n                <path d=\"M7 6V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-3v3c0 .552-.45 1-1.007 1H4.007A1.001 1.001 0 0 1 3 21l.003-14c0-.552.45-1 1.007-1H7zM5.003 8L5 20h10V8H5.003zM9 6h8v10h2V4H9v2z\"></path> </g> </svg> </button>\r\n          <p style=\"font-weight:bold;\">1) Open a free account at Ready Set Traffic.</p>\r\n          <p><a class=\"btn\" href=\"#REFURL#\" target=\"_blank\">Click Here To Join FREE!</a></p>\r\n          <p style=\"font-weight:bold;\">2) Copy promo code above to your clipboard.</p>\r\n          <p style=\"font-weight:bold;\">3) Instructions on how to claim are on the members home page.</p>\r\n        </div>\r\n        <!-- Win Text Ends Here -->\r\n        <!-- Spin Button -->\r\n        <div><button id=\"spinButton\" type=\"button\" onclick=\"spinWheel();\">Try Your Luck</button></div>\r\n        <!-- Test Outputs Start -->\r\n        <p id=\"output1\" style=\"display:none;\">Â </p>\r\n        <p id=\"output2\" style=\"display:none;\">Â </p>\r\n        <p id=\"output3\" style=\"display:none;\">Â </p>\r\n        <!-- Test Outputs End --> </div>\r\n    </div>\r\n    <script>\r\n      \r\n      // Wheel Spin by Martin Chantler - https://reducethehype.com\r\n\r\n      var spinSound,cheerSound,loseSound,soundEnabled=!0,spinsLeft=3,pos=0,winningSegment=0;function spinWheel(){1==soundEnabled&&spinSound.play();var e=document.getElementById(\"wheel\"),n=document.getElementById(\"spinButton\"),t=winningSegment;winningSegment=Math.floor(12*Math.random())+1,1==spinsLeft&&(winningSegment=2*(Math.floor(6*Math.random())+1)),pos+=360+(30*winningSegment+30*(12-t)),e.style.transform=\"rotate(\"+pos+\"deg)\",n.innerHTML=\"Spinning...\",n.disabled=!0,n.style.cursor=\"not-allowed\",setTimeout(function(){checkWin()},5e3)}function checkWin(){spinsLeft--,document.getElementById(\"spins-left\").innerHTML=\"You have \"+spinsLeft+\" spins left.\",document.getElementById(\"welcome-text\").style.display=\"none\",document.getElementById(\"lost-text\").style.display=\"none\",document.getElementById(\"freeSpin-text\").style.display=\"none\",12==winningSegment||10==winningSegment||8==winningSegment||6==winningSegment||4==winningSegment||2==winningSegment?(document.getElementById(\"win-text\").style.display=\"block\",document.getElementById(\"spinButton\").style.display=\"none\",1==soundEnabled&&cheerSound.play(),\"undefined\"!=typeof Storage&&(localStorage.wheelspin=winningSegment),document.getElementById(\"prizeText\").innerHTML=document.getElementById(\"prize\"+winningSegment).innerHTML,document.getElementById(\"prizeURL\").innerHTML=generateCode(winningSegment)):0<spinsLeft?(1==soundEnabled&&loseSound.play(),document.getElementById(\"lost-text\").style.display=\"block\",document.getElementById(\"spinButton\").innerHTML=\"Try Again\",document.getElementById(\"spinButton\").disabled=!1,document.getElementById(\"spinButton\").style.cursor=\"pointer\"):(document.getElementById(\"noSpins-text\").style.display=\"block\",document.getElementById(\"spinButton\").style.display=\"none\")}function generateCode(e){return\"WheelSpin_\"+((7395+e)*e).toString(16)}1!=soundEnabled||(spinSound=document.createElement(\"AUDIO\")).canPlayType(\"audio/mpeg\")&&(cheerSound=document.createElement(\"AUDIO\"),loseSound=document.createElement(\"AUDIO\"),spinSound.setAttribute(\"src\",\"https://reducethehype.com/sounds/wheel-spin.mp3\"),spinSound.preload=\"auto\",cheerSound.setAttribute(\"src\",\"https://reducethehype.com/sounds/cheer.mp3\"),cheerSound.preload=\"auto\",loseSound.setAttribute(\"src\",\"https://reducethehype.com/sounds/lose.mp3\"),loseSound.preload=\"auto\"),\"undefined\"!=typeof Storage&&0<Number(localStorage.wheelspin)&&(document.getElementById(\"welcome-text\").style.display=\"none\",document.getElementById(\"win-text\").style.display=\"block\",document.getElementById(\"spinButton\").style.display=\"none\",winningSegment=Number(localStorage.wheelspin),document.getElementById(\"prizeText\").innerHTML=document.getElementById(\"prize\"+winningSegment).innerHTML,document.getElementById(\"prizeURL\").innerHTML=generateCode(winningSegment),wheel.style.transform=\"rotate(\"+30*winningSegment+\"deg)\");\r\n      \r\n      function copyToClipboard() {\r\n        var prizeCode = document.getElementById(\"prizeURL\");\r\n        var copyText = prizeCode.innerText;\r\n        navigator.clipboard.writeText(copyText);\r\n        prizeCode.innerText = \"Copied!\"\r\n        setTimeout(function(){prizeCode.innerText = copyText}, 2000);\r\n      }\r\n      \r\n    </script>\r\n  </body>\r\n</html>','http://trafficbuildr.com','2022-07-17',1,1,1,0),(2,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-20',1,1,1,12),(3,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-21',1,1,1,11),(4,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-22',1,1,1,14),(5,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-23',1,1,1,11),(6,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-24',1,1,1,11),(7,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-25',1,1,1,12),(8,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-26',1,1,1,5),(9,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-27',1,1,1,6),(10,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-28',1,1,1,12),(11,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-29',1,1,1,4),(12,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-30',1,1,1,6),(13,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2022-12-31',1,1,1,3),(14,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-01',1,1,1,15),(15,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-02',1,1,1,13),(16,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-03',1,1,1,14),(17,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-04',1,1,1,15),(18,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-05',1,1,1,16),(19,0,137,'None',NULL,'None','2023-01-06',0,0,0,0),(20,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-07',1,1,1,16),(21,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-08',1,1,1,17),(22,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-09',1,1,1,16),(23,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-10',1,1,1,15),(24,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-11',1,1,1,14),(25,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-12',1,1,1,13),(26,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-13',1,1,1,11),(27,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-14',1,1,1,2),(28,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-15',1,1,1,16),(29,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-16',1,1,1,13),(30,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-17',1,1,1,13),(31,0,137,'Get My Simple One Signup A Day Strategy','See how I get daily signups to the business I promote.','https://leadsleap.com/1signupaday/?r=oriharel','2023-01-18',1,1,1,14),(32,0,27,'We Got Friends is EVERYWHERE','#FIRSTNAME#,\r\n\r\nIn a SINGLE DAY We Got Friends is EVERYWHERE. \r\nAll over Facebook, In Every Solo Ad, and All Over Social. \r\n\r\nWe have COVERED THE NET. \r\n1st Day Numbers were INSANE. \r\nThese 1st 30 Days are about to be WILD. \r\nTo the MOON Baby. \r\n\r\nGrab a FREE Spot! \r\nThe NITROLINE is a Powerline KILLER. \r\nhttps://rebrand.ly/2ypaih8\r\nQuestions Feel Free To Call Me on My Cell Phone at 208.696.2152\r\n\r\n#CREDITLINK#\r\n\r\nSHARE YOUR SITE & GIVE AWAY FREE POSITIONS! \r\nIT\'S FREE FOR 30 DAYS, LOCK IN WITH ME TO BE RIGHT ON TOP.\r\nhttps://rebrand.ly/2ypaih8','https://rebrand.ly/2ypaih8','2023-02-21',1,1,1,9),(33,0,27,'Get in the Hottest program Now!','Hello #FIRSTNAME#,\r\n\r\nâ€œWe Got Friendsâ€ â€¦ One Of A Kind unique, global opportunity to empower people around the world thru a Free Enterprise! \r\n\r\nhttps://rebrand.ly/2ypaih8\r\n\r\nUsing our state-of-the-art software system ( Nitroline ) coupled with our lead gen academy system - we skillfully address the 2 major principle components that are missing for 90% of all entrepreneurs seeking success via online/offline ventures ( Customers & Closing ) \r\n\r\nhttps://rebrand.ly/2ypaih8\r\n\r\nThru â€œNext Generationâ€ technology and superior mentoring - be prepared to take your skillset and income to unfamiliar new levels -\r\n\r\nSo the choice is yours - NFL ( No Friends Left ) or explode your income well and beyond the 10K Club?\r\n\r\n\r\n#CREDITLINK#','https://rebrand.ly/2ypaih8','2023-02-28',1,1,1,14),(34,0,17,'I\'ve never made moolah more easily than this','Hi,\r\n\r\nThis once-in-a-generation affiliate program\r\ncoupled with our team marketing system is by \r\nfar the easiest money I\'ve ever made.\r\n\r\nDo you want free access to our marketing system?\r\n\r\nNo problem!\r\n\r\nCome see how easy it is to make big bucks with our \r\nsystem here.\r\n\r\nClick below for more\r\n\r\nTo your success,\r\nJohn Machuik\r\n\r\nPS Can\'t Make money without trying first','https://llclickpro.com/r/ecflgotp/safe','2023-04-10',1,1,1,8),(35,0,75,'29000 Free Website Visitors + Promo Codes','â€œThe Best Website Traffic For Beginners In 2023â€ \r\nðŸš€ New advertising sites launched by real Marketing guru Frank Andres.ðŸš€\r\n Frank Andres and the 29 traffic apps he has created for beginners and small businesses, Plus my gold star free gifts marketing tools/software/video courses,\r\n\r\nNo Email Is Needed For My Free Gits All I Ask In Return Is For You To Share My Website On Social Media At Least One Time To Like-Minded People It Would Be Very Much Appreciated, Regards Richard','https://jemi.so/freewebtraffic76','2023-05-26',1,1,1,9),(36,0,27,'Instant $10 Payments & Daily Email Blasts for Life','Hey Fellow Marketer, #FIRSTNAME# \r\n\r\nAre you ready to redefine your email advertising game?\r\n\r\nBrace yourself for Inbox Vortex - Your Pathway to Lifetime Advertising Triumph!\r\n\r\nIntroducing Inbox Vortex: Your Ultimate Win-Win!\r\n\r\n* Instant $10 Cash App Rewards: Say farewell to delayed payouts!\r\nExperience the thrill of $10 landing directly in your CashApp account\r\nfor every sale you clinch.\r\n\r\n* Daily Email Ad Blasts for Life: Launch your message to a staggering 399,716\r\nWork From Home Affiliate Marketers daily, for life! Your reach will skyrocket,\r\nfostering unparalleled engagement.\r\n\r\nAffiliate Magic: Lifetime Ad Blaster: Join forces with us and earn $10 for every sale,\r\neffortlessly sent to your CashApp account. It\'s an equation for seamless success!\r\n\r\nEmbrace Victory Now! Join Inbox Vortex Today!\r\nhttps://www.soloblastservices.com/inboxvortex\r\n\r\nYou are required to enter my ID# when Registering (if you don\'t enter my Affiliate ID#\r\nyou will not be able to join)! \r\nMy Affiliate ID# is:  MS103\r\n\r\nDon\'t let this monumental moment slip by. Enlist with Inbox Vortex today and watch\r\nyour earnings and influence surge beyond imagination!\r\n\r\nCheers to your triumph,\r\nRemember To Enter My ID #  or You Can not Get IN!\r\nMark S.\r\nReferral ID# MS103\r\n\r\n#CREDITLINK#','https://www.soloblastservices.com/inboxvortex','2023-08-28',1,1,1,11),(37,0,53,'None',NULL,'None','2023-09-27',0,0,0,0),(38,1,312,'Super Profitable for So Many People on Our Team','Hi #FIRSTNAME#,\r\nThis brand-new traffic powerline system has what we all\r\nneed as their product... 100 clicks each month or 1,500\r\nper year on any URL you want to receive traffic at!\r\n\r\nâ€¦ No sponsorship is required to earn in the matrix.\r\nYou can earn up to $4,915 per month with no personal\r\nreferrals.\r\n\r\nâ€¦ Monthly & annual options to join.\r\n\r\nTo Your Success,\r\nKerstin Frashier\r\n\r\nPS: I made $421 my 1st month. ðŸ˜Š','https://llpgpro.com/SignmeupMTP/','2023-10-05',1,1,1,10);
/*!40000 ALTER TABLE `oto_solomails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_soloset`
--

DROP TABLE IF EXISTS `oto_soloset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_soloset` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `autoapprove` tinyint(1) NOT NULL DEFAULT 0,
  `product_id` int(11) NOT NULL,
  `selldaily` int(11) NOT NULL,
  `subject_prefix` varchar(255) NOT NULL,
  `subject_suffix` varchar(255) NOT NULL,
  `creditrate` int(11) NOT NULL,
  `sellforcredits` tinyint(4) NOT NULL DEFAULT 0,
  `creditcost` float NOT NULL,
  `expiration` int(11) NOT NULL,
  `priority` int(11) NOT NULL,
  `fromtitle` varchar(255) NOT NULL,
  `fromemail` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_soloset`
--

LOCK TABLES `oto_soloset` WRITE;
/*!40000 ALTER TABLE `oto_soloset` DISABLE KEYS */;
INSERT INTO `oto_soloset` (`id`, `autoapprove`, `product_id`, `selldaily`, `subject_prefix`, `subject_suffix`, `creditrate`, `sellforcredits`, `creditcost`, `expiration`, `priority`, `fromtitle`, `fromemail`) VALUES (2,1,0,1,'[solo]','',25,1,5000,7,1,'soloswaps.com','instantresellerclib@gmail.com');
/*!40000 ALTER TABLE `oto_soloset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_solosettings`
--

DROP TABLE IF EXISTS `oto_solosettings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_solosettings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_solosettings`
--

LOCK TABLES `oto_solosettings` WRITE;
/*!40000 ALTER TABLE `oto_solosettings` DISABLE KEYS */;
INSERT INTO `oto_solosettings` (`id`, `field`, `value`) VALUES (1,'menuenabled','1'),(2,'menutitle','Solo Ads'),(3,'lastcron','2026-06-26');
/*!40000 ALTER TABLE `oto_solosettings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_spartners`
--

DROP TABLE IF EXISTS `oto_spartners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_spartners` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rank` int(11) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL DEFAULT '',
  `domain` varchar(255) NOT NULL DEFAULT '',
  `descr` text DEFAULT NULL,
  `referid` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_spartners`
--

LOCK TABLES `oto_spartners` WRITE;
/*!40000 ALTER TABLE `oto_spartners` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_spartners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_splithits`
--

DROP TABLE IF EXISTS `oto_splithits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_splithits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `remotehost` varchar(255) NOT NULL DEFAULT '',
  `salespage` varchar(16) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_splithits`
--

LOCK TABLES `oto_splithits` WRITE;
/*!40000 ALTER TABLE `oto_splithits` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_splithits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_splitresults`
--

DROP TABLE IF EXISTS `oto_splitresults`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_splitresults` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `memberid` int(11) NOT NULL DEFAULT 0,
  `salespage` varchar(16) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=669 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_splitresults`
--

LOCK TABLES `oto_splitresults` WRITE;
/*!40000 ALTER TABLE `oto_splitresults` DISABLE KEYS */;
INSERT INTO `oto_splitresults` (`id`, `memberid`, `salespage`) VALUES (1,3,'Sales Page'),(2,4,'Sales Page'),(3,5,'Sales Page'),(4,6,'Sales Page'),(5,7,'Sales Page'),(6,8,'Sales Page'),(7,9,'Sales Page'),(8,10,'Sales Page'),(9,11,'Sales Page'),(10,12,'Sales Page'),(11,13,'Sales Page'),(12,14,'Sales Page'),(13,15,'Sales Page'),(14,16,'Sales Page'),(15,17,'Sales Page'),(16,18,'Sales Page'),(17,19,'Sales Page'),(18,20,'Sales Page'),(19,21,'Sales Page'),(20,22,'Sales Page'),(21,23,'Sales Page'),(22,24,'Sales Page'),(23,25,'Sales Page'),(24,26,'Sales Page'),(25,27,'Sales Page'),(26,28,'Sales Page'),(27,29,'Sales Page'),(28,30,'Sales Page'),(29,31,'Sales Page'),(30,32,'Sales Page'),(31,33,'Sales Page'),(32,34,'Sales Page'),(33,35,'Sales Page'),(34,36,'Sales Page'),(35,37,'Sales Page'),(36,38,'Sales Page'),(37,39,'Sales Page'),(38,40,'Sales Page'),(39,41,'Sales Page'),(40,42,'Sales Page'),(41,43,'Sales Page'),(42,44,'Sales Page'),(43,45,'Sales Page'),(44,46,'Sales Page'),(45,47,'Sales Page'),(46,48,'Sales Page'),(47,49,'Sales Page'),(48,50,'Sales Page'),(49,51,'Sales Page'),(50,52,'Sales Page'),(51,53,'Sales Page'),(52,54,'Sales Page'),(53,55,'Sales Page'),(54,56,'Sales Page'),(55,57,'Sales Page'),(56,58,'Sales Page'),(57,59,'Sales Page'),(58,60,'Sales Page'),(59,61,'Sales Page'),(60,62,'Sales Page'),(61,63,'Sales Page'),(62,64,'Sales Page'),(63,65,'Sales Page'),(64,66,'Sales Page'),(65,67,'Sales Page'),(66,68,'Sales Page'),(67,69,'Sales Page'),(68,70,'Sales Page'),(69,71,'Sales Page'),(70,72,'Sales Page'),(71,73,'Sales Page'),(72,74,'Sales Page'),(73,75,'Sales Page'),(74,76,'Sales Page'),(75,77,'Sales Page'),(76,78,'Sales Page'),(77,79,'Sales Page'),(78,80,'Sales Page'),(79,81,'Sales Page'),(80,82,'Sales Page'),(81,83,'Sales Page'),(82,84,'Sales Page'),(83,85,'Sales Page'),(84,86,'Sales Page'),(85,87,'Sales Page'),(86,88,'Sales Page'),(87,89,'Sales Page'),(88,90,'Sales Page'),(89,91,'Sales Page'),(90,92,'Sales Page'),(91,93,'Sales Page'),(92,94,'Sales Page'),(93,95,'Sales Page'),(94,96,'Sales Page'),(95,97,'Sales Page'),(96,98,'Sales Page'),(97,99,'Sales Page'),(98,100,'Sales Page'),(99,101,'Sales Page'),(100,102,'Sales Page'),(101,103,'Sales Page'),(102,104,'Sales Page'),(103,105,'Sales Page'),(104,106,'Sales Page'),(105,107,'Sales Page'),(106,108,'Sales Page'),(107,109,'Sales Page'),(108,110,'Sales Page'),(109,111,'Sales Page'),(110,112,'Sales Page'),(111,113,'Sales Page'),(112,114,'Sales Page'),(113,115,'Sales Page'),(114,116,'Sales Page'),(115,117,'Sales Page'),(116,118,'Sales Page'),(117,119,'Sales Page'),(118,120,'Sales Page'),(119,121,'Sales Page'),(120,122,'Sales Page'),(121,123,'Sales Page'),(122,124,'Sales Page'),(123,125,'Sales Page'),(124,126,'Sales Page'),(125,127,'Sales Page'),(126,128,'Sales Page'),(127,129,'Sales Page'),(128,130,'Sales Page'),(129,131,'Sales Page'),(130,132,'Sales Page'),(131,133,'Sales Page'),(132,134,'Sales Page'),(133,135,'Sales Page'),(134,136,'Sales Page'),(135,137,'Sales Page'),(136,138,'Sales Page'),(137,139,'Sales Page'),(138,140,'Sales Page'),(139,141,'Sales Page'),(140,143,'Sales Page'),(141,144,'Sales Page'),(142,145,'Sales Page'),(143,146,'Sales Page'),(144,147,'Sales Page'),(145,148,'Sales Page'),(146,149,'Sales Page'),(147,150,'Sales Page'),(148,151,'Sales Page'),(149,152,'Sales Page'),(150,153,'Sales Page'),(151,154,'Sales Page'),(152,155,'Sales Page'),(153,156,'Sales Page'),(154,157,'Sales Page'),(155,158,'Sales Page'),(156,159,'Sales Page'),(157,160,'Sales Page'),(158,161,'Sales Page'),(159,162,'Sales Page'),(160,163,'Sales Page'),(161,164,'Sales Page'),(162,165,'Sales Page'),(163,166,'Sales Page'),(164,167,'Sales Page'),(165,168,'Sales Page'),(166,169,'Sales Page'),(167,170,'Sales Page'),(168,171,'Sales Page'),(169,172,'Sales Page'),(170,173,'Sales Page'),(171,174,'Sales Page'),(172,175,'Sales Page'),(173,176,'Sales Page'),(174,177,'Sales Page'),(175,178,'Sales Page'),(176,179,'Sales Page'),(177,180,'Sales Page'),(178,181,'Sales Page'),(179,182,'Sales Page'),(180,183,'Sales Page'),(181,184,'Sales Page'),(182,185,'Sales Page'),(183,186,'Sales Page'),(184,187,'Sales Page'),(185,188,'Sales Page'),(186,189,'Sales Page'),(187,190,'Sales Page'),(188,191,'Sales Page'),(189,192,'Sales Page'),(190,193,'Sales Page'),(191,194,'Sales Page'),(192,195,'Sales Page'),(193,196,'Sales Page'),(194,197,'Sales Page'),(195,198,'Sales Page'),(196,199,'Sales Page'),(197,200,'Sales Page'),(198,201,'Sales Page'),(199,202,'Sales Page'),(200,203,'Sales Page'),(201,204,'Sales Page'),(202,205,'Sales Page'),(203,206,'Sales Page'),(204,207,'Sales Page'),(205,208,'Sales Page'),(206,209,'Sales Page'),(207,210,'Sales Page'),(208,211,'Sales Page'),(209,212,'Sales Page'),(210,213,'Sales Page'),(211,214,'Sales Page'),(212,215,'Sales Page'),(213,216,'Sales Page'),(214,217,'Sales Page'),(215,218,'Sales Page'),(216,219,'Sales Page'),(217,220,'Sales Page'),(218,221,'Sales Page'),(219,222,'Sales Page'),(220,223,'Sales Page'),(221,224,'Sales Page'),(222,225,'Sales Page'),(223,226,'Sales Page'),(224,227,'Sales Page'),(225,228,'Sales Page'),(226,229,'Sales Page'),(227,230,'Sales Page'),(228,231,'Sales Page'),(229,232,'Sales Page'),(230,233,'Sales Page'),(231,234,'Sales Page'),(232,236,'Sales Page'),(233,237,'Sales Page'),(234,238,'Sales Page'),(235,239,'Sales Page'),(236,240,'Sales Page'),(237,241,'Sales Page'),(238,242,'Sales Page'),(239,243,'Sales Page'),(240,244,'Sales Page'),(241,245,'Sales Page'),(242,246,'Sales Page'),(243,247,'Sales Page'),(244,248,'Sales Page'),(245,249,'Sales Page'),(246,250,'Sales Page'),(247,251,'Sales Page'),(248,252,'Sales Page'),(249,253,'Sales Page'),(250,254,'Sales Page'),(251,255,'Sales Page'),(252,256,'Sales Page'),(253,257,'Sales Page'),(254,258,'Sales Page'),(255,259,'Sales Page'),(256,260,'Sales Page'),(257,261,'Sales Page'),(258,262,'Sales Page'),(259,263,'Sales Page'),(260,264,'Sales Page'),(261,265,'Sales Page'),(262,266,'Sales Page'),(263,267,'Sales Page'),(264,268,'Sales Page'),(265,269,'Sales Page'),(266,270,'Sales Page'),(267,271,'Sales Page'),(268,272,'Sales Page'),(269,273,'Sales Page'),(270,274,'Sales Page'),(271,275,'Sales Page'),(272,276,'Sales Page'),(273,278,'Sales Page'),(274,279,'Sales Page'),(275,280,'Sales Page'),(276,283,'Sales Page'),(277,284,'Sales Page'),(278,285,'Sales Page'),(279,286,'Sales Page'),(280,287,'Sales Page'),(281,288,'Sales Page'),(282,289,'Sales Page'),(283,290,'Sales Page'),(284,291,'Sales Page'),(285,292,'Sales Page'),(286,293,'Sales Page'),(287,294,'Sales Page'),(288,295,'Sales Page'),(289,296,'Sales Page'),(290,297,'Sales Page'),(291,298,'Sales Page'),(292,299,'Sales Page'),(293,300,'Sales Page'),(294,301,'Sales Page'),(295,302,'Sales Page'),(296,303,'Sales Page'),(297,304,'Sales Page'),(298,305,'Sales Page'),(299,306,'Sales Page'),(300,307,'Sales Page'),(301,308,'Sales Page'),(302,309,'Sales Page'),(303,310,'Sales Page'),(304,311,'Sales Page'),(305,312,'Sales Page'),(306,313,'Sales Page'),(307,314,'Sales Page'),(308,315,'Sales Page'),(309,316,'Sales Page'),(310,317,'Sales Page'),(311,319,'Sales Page'),(312,320,'Sales Page'),(313,321,'Sales Page'),(314,322,'Sales Page'),(315,323,'Sales Page'),(316,324,'Sales Page'),(317,325,'Sales Page'),(318,326,'Sales Page'),(319,327,'Sales Page'),(320,328,'Sales Page'),(321,329,'Sales Page'),(322,330,'Sales Page'),(323,331,'Sales Page'),(324,332,'Sales Page'),(325,333,'Sales Page'),(326,334,'Sales Page'),(327,335,'Sales Page'),(328,337,'Sales Page'),(329,338,'Sales Page'),(330,339,'Sales Page'),(331,340,'Sales Page'),(332,341,'Sales Page'),(333,342,'Sales Page'),(334,343,'Sales Page'),(335,344,'Sales Page'),(336,345,'Sales Page'),(337,346,'Sales Page'),(338,347,'Sales Page'),(339,348,'Sales Page'),(340,349,'Sales Page'),(341,350,'Sales Page'),(342,351,'Sales Page'),(343,352,'Sales Page'),(344,353,'Sales Page'),(345,354,'Sales Page'),(346,355,'Sales Page'),(347,356,'Sales Page'),(348,357,'Sales Page'),(349,358,'Sales Page'),(350,359,'Sales Page'),(351,360,'Sales Page'),(352,361,'Sales Page'),(353,362,'Sales Page'),(354,363,'Sales Page'),(355,364,'Sales Page'),(356,365,'Sales Page'),(357,366,'Sales Page'),(358,367,'Sales Page'),(359,368,'Sales Page'),(360,369,'Sales Page'),(361,370,'Sales Page'),(362,371,'Sales Page'),(363,372,'Sales Page'),(364,373,'Sales Page'),(365,374,'Sales Page'),(366,375,'Sales Page'),(367,376,'Sales Page'),(368,377,'Sales Page'),(369,378,'Sales Page'),(370,379,'Sales Page'),(371,380,'Sales Page'),(372,381,'Sales Page'),(373,382,'Sales Page'),(374,383,'Sales Page'),(375,384,'Sales Page'),(376,385,'Sales Page'),(377,386,'Sales Page'),(378,387,'Sales Page'),(379,388,'Sales Page'),(380,389,'Sales Page'),(381,390,'Sales Page'),(382,391,'Sales Page'),(383,392,'Sales Page'),(384,393,'Sales Page'),(385,394,'Sales Page'),(386,395,'Sales Page'),(387,396,'Sales Page'),(388,397,'Sales Page'),(389,398,'Sales Page'),(390,399,'Sales Page'),(391,400,'Sales Page'),(392,401,'Sales Page'),(393,402,'Sales Page'),(394,403,'Sales Page'),(395,404,'Sales Page'),(396,405,'Sales Page'),(397,406,'Sales Page'),(398,407,'Sales Page'),(399,408,'Sales Page'),(400,409,'Sales Page'),(401,410,'Sales Page'),(402,411,'Sales Page'),(403,412,'Sales Page'),(404,413,'Sales Page'),(405,414,'Sales Page'),(406,415,'Sales Page'),(407,416,'Sales Page'),(408,417,'Sales Page'),(409,418,'Sales Page'),(410,419,'Sales Page'),(411,420,'Sales Page'),(412,421,'Sales Page'),(413,422,'Sales Page'),(414,423,'Sales Page'),(415,424,'Sales Page'),(416,425,'Sales Page'),(417,426,'Sales Page'),(418,427,'Sales Page'),(419,428,'Sales Page'),(420,429,'Sales Page'),(421,430,'Sales Page'),(422,431,'Sales Page'),(423,432,'Sales Page'),(424,433,'Sales Page'),(425,434,'Sales Page'),(426,435,'Sales Page'),(427,436,'Sales Page'),(428,437,'Sales Page'),(429,438,'Sales Page'),(430,439,'Sales Page'),(431,440,'Sales Page'),(432,441,'Sales Page'),(433,442,'Sales Page'),(434,443,'Sales Page'),(435,444,'Sales Page'),(436,445,'Sales Page'),(437,446,'Sales Page'),(438,447,'Sales Page'),(439,448,'Sales Page'),(440,449,'Sales Page'),(441,450,'Sales Page'),(442,451,'Sales Page'),(443,452,'Sales Page'),(444,453,'Sales Page'),(445,454,'Sales Page'),(446,455,'Sales Page'),(447,456,'Sales Page'),(448,457,'Sales Page'),(449,458,'Sales Page'),(450,459,'Sales Page'),(451,460,'Sales Page'),(452,461,'Sales Page'),(453,462,'Sales Page'),(454,463,'Sales Page'),(455,464,'Sales Page'),(456,465,'Sales Page'),(457,466,'Sales Page'),(458,467,'Sales Page'),(459,468,'Sales Page'),(460,469,'Sales Page'),(461,470,'Sales Page'),(462,471,'Sales Page'),(463,472,'Sales Page'),(464,473,'Sales Page'),(465,474,'Sales Page'),(466,475,'Sales Page'),(467,476,'Sales Page'),(468,477,'Sales Page'),(469,478,'Sales Page'),(470,479,'Sales Page'),(471,480,'Sales Page'),(472,481,'Sales Page'),(473,482,'Sales Page'),(474,483,'Sales Page'),(475,484,'Sales Page'),(476,485,'Sales Page'),(477,486,'Sales Page'),(478,487,'Sales Page'),(479,488,'Sales Page'),(480,489,'Sales Page'),(481,490,'Sales Page'),(482,491,'Sales Page'),(483,492,'Sales Page'),(484,493,'Sales Page'),(485,494,'Sales Page'),(486,495,'Sales Page'),(487,496,'Sales Page'),(488,497,'Sales Page'),(489,498,'Sales Page'),(490,499,'Sales Page'),(491,500,'Sales Page'),(492,501,'Sales Page'),(493,502,'Sales Page'),(494,503,'Sales Page'),(495,504,'Sales Page'),(496,505,'Sales Page'),(497,506,'Sales Page'),(498,507,'Sales Page'),(499,508,'Sales Page'),(500,509,'Sales Page'),(501,510,'Sales Page'),(502,511,'Sales Page'),(503,512,'Sales Page'),(504,513,'Sales Page'),(505,514,'Sales Page'),(506,515,'Sales Page'),(507,516,'Sales Page'),(508,517,'Sales Page'),(509,518,'Sales Page'),(510,519,'Sales Page'),(511,520,'Sales Page'),(512,521,'Sales Page'),(513,522,'Sales Page'),(514,523,'Sales Page'),(515,524,'Sales Page'),(516,525,'Sales Page'),(517,526,'Sales Page'),(518,527,'Sales Page'),(519,528,'Sales Page'),(520,529,'Sales Page'),(521,530,'Sales Page'),(522,531,'Sales Page'),(523,532,'Sales Page'),(524,533,'Sales Page'),(525,534,'Sales Page'),(526,535,'Sales Page'),(527,536,'Sales Page'),(528,537,'Sales Page'),(529,538,'Sales Page'),(530,539,'Sales Page'),(531,540,'Sales Page'),(532,541,'Sales Page'),(533,542,'Sales Page'),(534,543,'Sales Page'),(535,544,'Sales Page'),(536,545,'Sales Page'),(537,546,'Sales Page'),(538,547,'Sales Page'),(539,548,'Sales Page'),(540,549,'Sales Page'),(541,550,'Sales Page'),(542,551,'Sales Page'),(543,552,'Sales Page'),(544,553,'Sales Page'),(545,554,'Sales Page'),(546,555,'Sales Page'),(547,556,'Sales Page'),(548,557,'Sales Page'),(549,558,'Sales Page'),(550,559,'Sales Page'),(551,560,'Sales Page'),(552,561,'Sales Page'),(553,562,'Sales Page'),(554,563,'Sales Page'),(555,564,'Sales Page'),(556,565,'Sales Page'),(557,566,'Sales Page'),(558,567,'Sales Page'),(559,568,'Sales Page'),(560,569,'Sales Page'),(561,570,'Sales Page'),(562,571,'Sales Page'),(563,572,'Sales Page'),(564,573,'Sales Page'),(565,574,'Sales Page'),(566,575,'Sales Page'),(567,576,'Sales Page'),(568,577,'Sales Page'),(569,578,'Sales Page'),(570,579,'Sales Page'),(571,580,'Sales Page'),(572,581,'Sales Page'),(573,582,'Sales Page'),(574,583,'Sales Page'),(575,584,'Sales Page'),(576,585,'Sales Page'),(577,586,'Sales Page'),(578,587,'Sales Page'),(579,588,'Sales Page'),(580,589,'Sales Page'),(581,590,'Sales Page'),(582,591,'Sales Page'),(583,592,'Sales Page'),(584,593,'Sales Page'),(585,594,'Sales Page'),(586,595,'Sales Page'),(587,596,'Sales Page'),(588,597,'Sales Page'),(589,598,'Sales Page'),(590,599,'Sales Page'),(591,600,'Sales Page'),(592,601,'Sales Page'),(593,602,'Sales Page'),(594,603,'Sales Page'),(595,604,'Sales Page'),(596,605,'Sales Page'),(597,606,'Sales Page'),(598,607,'Sales Page'),(599,608,'Sales Page'),(600,609,'Sales Page'),(601,610,'Sales Page'),(602,611,'Sales Page'),(603,612,'Sales Page'),(604,613,'Sales Page'),(605,614,'Sales Page'),(606,615,'Sales Page'),(607,616,'Sales Page'),(608,617,'Sales Page'),(609,618,'Sales Page'),(610,619,'Sales Page'),(611,620,'Sales Page'),(612,621,'Sales Page'),(613,622,'Sales Page'),(614,623,'Sales Page'),(615,624,'Sales Page'),(616,625,'Sales Page'),(617,626,'Sales Page'),(618,627,'Sales Page'),(619,628,'Sales Page'),(620,629,'Sales Page'),(621,630,'Sales Page'),(622,631,'Sales Page'),(623,632,'Sales Page'),(624,633,'Sales Page'),(625,634,'Sales Page'),(626,635,'Sales Page'),(627,636,'Sales Page'),(628,637,'Sales Page'),(629,638,'Sales Page'),(630,639,'Sales Page'),(631,640,'Sales Page'),(632,641,'Sales Page'),(633,642,'Sales Page'),(634,643,'Sales Page'),(635,644,'Sales Page'),(636,645,'Sales Page'),(637,646,'Sales Page'),(638,647,'Sales Page'),(639,648,'Sales Page'),(640,649,'Sales Page'),(641,650,'Sales Page'),(642,651,'Sales Page'),(643,652,'Sales Page'),(644,653,'Sales Page'),(645,654,'Sales Page'),(646,655,'Sales Page'),(647,656,'Sales Page'),(648,657,'Sales Page'),(649,658,'Sales Page'),(650,659,'Sales Page'),(651,660,'Sales Page'),(652,661,'Sales Page'),(653,662,'Sales Page'),(654,663,'Sales Page'),(655,664,'Sales Page'),(656,665,'Sales Page'),(657,666,'Sales Page'),(658,667,'Sales Page'),(659,668,'Sales Page'),(660,669,'Sales Page'),(661,670,'Sales Page'),(662,671,'Sales Page'),(663,672,'Sales Page'),(664,673,'Sales Page'),(665,674,'Sales Page'),(666,675,'Sales Page'),(667,676,'Sales Page'),(668,677,'Sales Page');
/*!40000 ALTER TABLE `oto_splitresults` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_spo`
--

DROP TABLE IF EXISTS `oto_spo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_spo` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `offername` varchar(50) NOT NULL DEFAULT '',
  `rank` int(11) DEFAULT NULL,
  `ipn` varchar(50) DEFAULT NULL,
  `acctype` int(11) DEFAULT 0,
  `memtype` int(11) DEFAULT 0,
  `reptype` int(11) DEFAULT 0,
  `mdays` int(11) DEFAULT 0,
  `paused` int(11) DEFAULT 0,
  `text` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_spo`
--

LOCK TABLES `oto_spo` WRITE;
/*!40000 ALTER TABLE `oto_spo` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_spo` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_spostats`
--

DROP TABLE IF EXISTS `oto_spostats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_spostats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `spoid` int(11) DEFAULT NULL,
  `userid` int(11) DEFAULT NULL,
  `lastshown` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_spostats`
--

LOCK TABLES `oto_spostats` WRITE;
/*!40000 ALTER TABLE `oto_spostats` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_spostats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_spotlight`
--

DROP TABLE IF EXISTS `oto_spotlight`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_spotlight` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `from` int(10) unsigned NOT NULL DEFAULT 0,
  `to` int(10) unsigned NOT NULL DEFAULT 0,
  `usrid` int(10) unsigned NOT NULL DEFAULT 0,
  `url` varchar(100) NOT NULL DEFAULT '',
  `purchased` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `cost` decimal(5,2) unsigned NOT NULL DEFAULT 0.00,
  `views` int(10) unsigned NOT NULL DEFAULT 0,
  `viewstoday` int(10) unsigned NOT NULL DEFAULT 0,
  `totalunique` int(10) unsigned NOT NULL DEFAULT 0,
  `uniquetoday` int(10) unsigned NOT NULL DEFAULT 0,
  `lastview` int(10) unsigned NOT NULL DEFAULT 0,
  `rates` int(10) unsigned NOT NULL DEFAULT 0,
  `lastusrid` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_spotlight`
--

LOCK TABLES `oto_spotlight` WRITE;
/*!40000 ALTER TABLE `oto_spotlight` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_spotlight` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_spotlight_rates`
--

DROP TABLE IF EXISTS `oto_spotlight_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_spotlight_rates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sid` int(11) NOT NULL DEFAULT 0,
  `abuseflag` int(11) NOT NULL DEFAULT 0,
  `usrid` int(10) unsigned NOT NULL DEFAULT 0,
  `rate` int(11) NOT NULL DEFAULT 0,
  `date` date DEFAULT NULL,
  `usersurfed` int(10) unsigned NOT NULL DEFAULT 0,
  `useracctype` int(10) unsigned NOT NULL DEFAULT 0,
  `usersales` decimal(7,2) unsigned NOT NULL DEFAULT 0.00,
  `comment` varchar(81) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `sid` (`sid`),
  KEY `abuseflag` (`abuseflag`),
  KEY `usrid` (`usrid`),
  KEY `rate` (`rate`),
  KEY `date` (`date`),
  KEY `usersurfed` (`usersurfed`),
  KEY `useracctype` (`useracctype`),
  KEY `usersales` (`usersales`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_spotlight_rates`
--

LOCK TABLES `oto_spotlight_rates` WRITE;
/*!40000 ALTER TABLE `oto_spotlight_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_spotlight_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_spotlight_settings`
--

DROP TABLE IF EXISTS `oto_spotlight_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_spotlight_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ipnid` int(11) NOT NULL DEFAULT 1,
  `enable` tinyint(1) unsigned NOT NULL DEFAULT 1,
  `type` char(1) NOT NULL DEFAULT '',
  `viewtimer` int(11) NOT NULL DEFAULT 15,
  `viewfreq` char(1) NOT NULL DEFAULT '1',
  `ratefreq` char(1) NOT NULL DEFAULT '1',
  `sendmail` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `mailsubject` varchar(100) NOT NULL DEFAULT 'Claim Your Login Spotlight Reward',
  `mailbody` text DEFAULT NULL,
  `lastmailsid` int(11) NOT NULL DEFAULT 0,
  `sortbyacc` tinyint(1) unsigned NOT NULL DEFAULT 1,
  `sortbysales` tinyint(1) unsigned NOT NULL DEFAULT 1,
  `notifyabuse` tinyint(1) unsigned NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_spotlight_settings`
--

LOCK TABLES `oto_spotlight_settings` WRITE;
/*!40000 ALTER TABLE `oto_spotlight_settings` DISABLE KEYS */;
INSERT INTO `oto_spotlight_settings` (`id`, `ipnid`, `enable`, `type`, `viewtimer`, `viewfreq`, `ratefreq`, `sendmail`, `mailsubject`, `mailbody`, `lastmailsid`, `sortbyacc`, `sortbysales`, `notifyabuse`) VALUES (1,11,1,'W',15,'1','1',0,'Claim Your Login Spotlight Reward','Hi #FIRSTNAME#,\n\nThere is a new login spotlight site this week, which means you can earn #VIEWREWARD# credits just for logging into your account.\n\nClaim your reward here:\n-> https://soloswaps.com/login.php\n\nRegards,\n#SITENAME#',0,1,1,1);
/*!40000 ALTER TABLE `oto_spotlight_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_spotlight_stats`
--

DROP TABLE IF EXISTS `oto_spotlight_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_spotlight_stats` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `sid` int(10) unsigned NOT NULL DEFAULT 0,
  `usrid` int(10) unsigned NOT NULL DEFAULT 0,
  `views` int(10) unsigned NOT NULL DEFAULT 0,
  `lastview` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_spotlight_stats`
--

LOCK TABLES `oto_spotlight_stats` WRITE;
/*!40000 ALTER TABLE `oto_spotlight_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_spotlight_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_spotlight_userviews`
--

DROP TABLE IF EXISTS `oto_spotlight_userviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_spotlight_userviews` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `usrid` int(10) unsigned NOT NULL DEFAULT 0,
  `lastid` int(10) unsigned NOT NULL DEFAULT 0,
  `lastview` int(11) unsigned NOT NULL DEFAULT 0,
  `lastrateid` int(10) unsigned NOT NULL DEFAULT 0,
  `lastrate` int(11) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_spotlight_userviews`
--

LOCK TABLES `oto_spotlight_userviews` WRITE;
/*!40000 ALTER TABLE `oto_spotlight_userviews` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_spotlight_userviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_sqban_iplog`
--

DROP TABLE IF EXISTS `oto_sqban_iplog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_sqban_iplog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ipaddress` varchar(25) DEFAULT '0',
  `imgid` int(11) DEFAULT 0,
  `lasttime` int(11) DEFAULT 0,
  `bannerid` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `ipaddress` (`ipaddress`),
  KEY `imgid` (`imgid`),
  KEY `lasttime` (`lasttime`)
) ENGINE=MyISAM AUTO_INCREMENT=7474 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_sqban_iplog`
--

LOCK TABLES `oto_sqban_iplog` WRITE;
/*!40000 ALTER TABLE `oto_sqban_iplog` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_sqban_iplog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_sqban_settings`
--

DROP TABLE IF EXISTS `oto_sqban_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_sqban_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(25) NOT NULL,
  `value` varchar(75) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_sqban_settings`
--

LOCK TABLES `oto_sqban_settings` WRITE;
/*!40000 ALTER TABLE `oto_sqban_settings` DISABLE KEYS */;
INSERT INTO `oto_sqban_settings` (`id`, `field`, `value`) VALUES (1,'sqban_enabled','0'),(2,'defsqbanimg','https://i.imgur.com/TLwQJ5p.jpeg'),(3,'defsqbantar','https://trafficbuildr.com/');
/*!40000 ALTER TABLE `oto_sqban_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_sstats`
--

DROP TABLE IF EXISTS `oto_sstats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_sstats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` varchar(32) NOT NULL DEFAULT '',
  `messageid` int(11) NOT NULL DEFAULT 0,
  `url` varchar(128) NOT NULL DEFAULT '',
  `adate` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6737 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_sstats`
--

LOCK TABLES `oto_sstats` WRITE;
/*!40000 ALTER TABLE `oto_sstats` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_sstats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_superlb`
--

DROP TABLE IF EXISTS `oto_superlb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_superlb` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `mtype` int(11) NOT NULL DEFAULT 0,
  `type` varchar(255) NOT NULL DEFAULT '',
  `shownum` int(11) NOT NULL DEFAULT 0,
  `awardnum` int(11) NOT NULL DEFAULT 0,
  `startdate` int(11) NOT NULL DEFAULT 0,
  `enddate` int(11) NOT NULL DEFAULT 0,
  `awarded` tinyint(1) NOT NULL DEFAULT 0,
  `lastupdate` int(11) NOT NULL DEFAULT 0,
  `tablebg1` varchar(6) NOT NULL DEFAULT '',
  `tablebg2` varchar(6) NOT NULL DEFAULT '',
  `bordercol` varchar(6) NOT NULL DEFAULT '',
  `textcol` varchar(6) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_superlb`
--

LOCK TABLES `oto_superlb` WRITE;
/*!40000 ALTER TABLE `oto_superlb` DISABLE KEYS */;
INSERT INTO `oto_superlb` (`id`, `name`, `description`, `mtype`, `type`, `shownum`, `awardnum`, `startdate`, `enddate`, `awarded`, `lastupdate`, `tablebg1`, `tablebg2`, `bordercol`, `textcol`) VALUES (1,'Top Referrer','Member who refers most new members',0,'referrer',20,10,1659916800,1660003199,1,0,'FFFFFF','F6F6F6','000000','000000'),(2,'Top Surfer','Top Surfing Members',0,'surfer',20,10,1659916800,1660003199,1,0,'FFFFFF','F6F6F6','000000','000000');
/*!40000 ALTER TABLE `oto_superlb` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_superlbprizes`
--

DROP TABLE IF EXISTS `oto_superlbprizes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_superlbprizes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `leaderboard` int(11) NOT NULL,
  `rank` int(11) NOT NULL,
  `credits` int(11) NOT NULL DEFAULT 0,
  `banners` int(11) NOT NULL DEFAULT 0,
  `textads` int(11) NOT NULL DEFAULT 0,
  `cash` float(6,2) NOT NULL DEFAULT 0.00,
  `peelads` int(11) NOT NULL DEFAULT 0,
  `sqbans` int(11) NOT NULL DEFAULT 0,
  `porkypoints` int(11) NOT NULL DEFAULT 0,
  `xppoints` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_superlbprizes`
--

LOCK TABLES `oto_superlbprizes` WRITE;
/*!40000 ALTER TABLE `oto_superlbprizes` DISABLE KEYS */;
INSERT INTO `oto_superlbprizes` (`id`, `leaderboard`, `rank`, `credits`, `banners`, `textads`, `cash`, `peelads`, `sqbans`, `porkypoints`, `xppoints`) VALUES (1,1,1,5000,5000,5000,0.00,0,5000,0,0),(2,1,2,4000,4000,4000,0.00,0,4000,0,0),(3,1,3,3000,3000,3000,0.00,0,3000,0,0),(4,1,4,2500,2500,2500,0.00,0,2500,0,0),(5,1,5,2000,2000,2000,0.00,0,2000,0,0),(6,1,6,1500,1500,1500,0.00,0,1500,0,0),(7,1,7,1250,1250,12500,0.00,0,1250,0,0),(8,1,8,1000,1000,1000,0.00,0,1000,0,0),(9,1,9,750,750,750,0.00,0,750,0,0),(10,1,10,500,500,500,0.00,0,500,0,0),(11,2,1,1000,1000,1000,0.00,0,1000,0,0),(12,2,2,900,900,900,0.00,0,900,0,0),(13,2,3,800,800,800,0.00,0,800,0,0),(14,2,4,700,700,700,0.00,0,700,0,0),(15,2,5,600,600,600,0.00,0,600,0,0),(16,2,6,500,500,500,0.00,0,500,0,0),(17,2,7,400,400,400,0.00,0,400,0,0),(18,2,8,300,300,300,0.00,0,300,0,0),(19,2,9,200,200,200,0.00,0,200,0,0),(20,2,10,100,100,100,0.00,0,100,0,0);
/*!40000 ALTER TABLE `oto_superlbprizes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_superlbresults`
--

DROP TABLE IF EXISTS `oto_superlbresults`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_superlbresults` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `leaderboard` int(11) NOT NULL,
  `user` int(11) NOT NULL,
  `date` date NOT NULL,
  `value` float NOT NULL,
  `st` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_superlbresults`
--

LOCK TABLES `oto_superlbresults` WRITE;
/*!40000 ALTER TABLE `oto_superlbresults` DISABLE KEYS */;
INSERT INTO `oto_superlbresults` (`id`, `leaderboard`, `user`, `date`, `value`, `st`) VALUES (4,1,131,'2022-08-08',1,1),(5,2,89,'2022-08-08',5,1),(6,2,44,'2022-08-08',1,1),(7,2,70,'2022-08-08',1,1);
/*!40000 ALTER TABLE `oto_superlbresults` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_superlbset`
--

DROP TABLE IF EXISTS `oto_superlbset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_superlbset` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_superlbset`
--

LOCK TABLES `oto_superlbset` WRITE;
/*!40000 ALTER TABLE `oto_superlbset` DISABLE KEYS */;
INSERT INTO `oto_superlbset` (`id`, `field`, `value`) VALUES (1,'menuenabled','1'),(2,'menutitle','Competitions');
/*!40000 ALTER TABLE `oto_superlbset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_surf_admin_prefs`
--

DROP TABLE IF EXISTS `oto_surf_admin_prefs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_surf_admin_prefs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(50) NOT NULL,
  `value` varchar(50) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_surf_admin_prefs`
--

LOCK TABLES `oto_surf_admin_prefs` WRITE;
/*!40000 ALTER TABLE `oto_surf_admin_prefs` DISABLE KEYS */;
INSERT INTO `oto_surf_admin_prefs` (`id`, `field`, `value`) VALUES (1,'surfbarstyle','2'),(2,'preloadsites','-1'),(3,'timertype','1'),(4,'timercolor','0000FF');
/*!40000 ALTER TABLE `oto_surf_admin_prefs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_surf_user_prefs`
--

DROP TABLE IF EXISTS `oto_surf_user_prefs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_surf_user_prefs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(50) NOT NULL,
  `userid` int(11) NOT NULL DEFAULT 0,
  `value` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `field` (`field`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_surf_user_prefs`
--

LOCK TABLES `oto_surf_user_prefs` WRITE;
/*!40000 ALTER TABLE `oto_surf_user_prefs` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_surf_user_prefs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_surflogs`
--

DROP TABLE IF EXISTS `oto_surflogs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_surflogs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL DEFAULT '0000-00-00',
  `userid` int(11) NOT NULL DEFAULT 0,
  `clicks` int(11) NOT NULL DEFAULT 0,
  `time` int(11) NOT NULL DEFAULT 0,
  `messsent` int(11) NOT NULL DEFAULT 0,
  `mailrec` int(11) NOT NULL DEFAULT 0,
  `bandeliver` int(11) NOT NULL DEFAULT 0,
  `textdeliver` int(11) NOT NULL DEFAULT 0,
  `sqbandeliver` int(11) NOT NULL DEFAULT 0,
  `mbranddeliver` int(11) NOT NULL DEFAULT 0,
  `peeldeliver` int(11) NOT NULL DEFAULT 0,
  `widgetdeliver` int(11) NOT NULL DEFAULT 0,
  `widgetcredit` int(11) NOT NULL DEFAULT 0,
  `newrefs` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM AUTO_INCREMENT=120117 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_surflogs`
--

LOCK TABLES `oto_surflogs` WRITE;
/*!40000 ALTER TABLE `oto_surflogs` DISABLE KEYS */;
INSERT INTO `oto_surflogs` (`id`, `date`, `userid`, `clicks`, `time`, `messsent`, `mailrec`, `bandeliver`, `textdeliver`, `sqbandeliver`, `mbranddeliver`, `peeldeliver`, `widgetdeliver`, `widgetcredit`, `newrefs`) VALUES (109643,'2025-07-03',410,0,0,0,1,0,0,0,0,0,0,0,0),(109642,'2025-07-03',408,0,0,0,1,0,0,0,0,0,0,0,0),(109641,'2025-07-03',407,0,0,0,1,0,0,0,0,0,0,0,0),(109640,'2025-07-03',405,0,0,0,1,0,0,0,0,0,0,0,0),(109639,'2025-07-03',403,0,0,0,1,0,0,0,0,0,0,0,0),(109638,'2025-07-03',401,0,0,0,1,0,0,0,0,0,0,0,0),(109637,'2025-07-03',400,0,0,0,1,0,0,0,0,0,0,0,0),(109636,'2025-07-03',396,0,0,0,1,0,0,0,0,0,0,0,0),(109635,'2025-07-03',395,0,0,0,1,0,0,0,0,0,0,0,0),(109634,'2025-07-03',393,0,0,0,1,0,0,0,0,0,0,0,0),(109633,'2025-07-03',392,0,0,0,1,0,0,0,0,0,0,0,0),(109632,'2025-07-03',391,0,0,0,1,0,0,0,0,0,0,0,0),(109631,'2025-07-03',390,0,0,0,1,0,0,0,0,0,0,0,0),(109630,'2025-07-03',388,0,0,0,1,0,0,0,0,0,0,0,0),(109629,'2025-07-03',387,0,0,0,1,0,0,0,0,0,0,0,0),(109628,'2025-07-03',385,0,0,0,1,0,0,0,0,0,0,0,0),(109627,'2025-07-03',384,0,0,0,1,0,0,0,0,0,0,0,0),(109626,'2025-07-03',382,0,0,0,1,0,0,0,0,0,0,0,0),(109625,'2025-07-03',381,0,0,0,1,0,0,0,0,0,0,0,0),(109624,'2025-07-03',378,0,0,0,1,0,0,0,0,0,0,0,0),(109623,'2025-07-03',377,0,0,0,1,0,0,0,0,0,0,0,0),(109622,'2025-07-03',376,0,0,0,1,0,0,0,0,0,0,0,0),(109621,'2025-07-03',375,0,0,0,1,0,0,0,0,0,0,0,0),(109620,'2025-07-03',372,0,0,0,1,0,0,0,0,0,0,0,0),(109619,'2025-07-03',371,0,0,0,1,0,0,0,0,0,0,0,0),(109618,'2025-07-03',367,0,0,0,1,0,0,0,0,0,0,0,0),(109617,'2025-07-03',365,0,0,0,1,0,0,0,0,0,0,0,0),(109616,'2025-07-03',364,0,0,0,1,0,0,0,0,0,0,0,0),(109615,'2025-07-03',363,0,0,0,1,0,0,0,0,0,0,0,0),(109614,'2025-07-03',361,0,0,0,1,0,0,0,0,0,0,0,0),(109613,'2025-07-03',360,0,0,0,1,0,0,0,0,0,0,0,0),(109612,'2025-07-03',359,0,0,0,1,0,0,0,0,0,0,0,0),(109611,'2025-07-03',357,0,0,0,1,0,0,0,0,0,0,0,0),(109610,'2025-07-03',353,0,0,0,1,0,0,0,0,0,0,0,0),(109609,'2025-07-03',352,0,0,0,1,0,0,0,0,0,0,0,0),(109608,'2025-07-03',351,0,0,0,1,0,0,0,0,0,0,0,0),(109607,'2025-07-03',348,0,0,0,1,0,0,0,0,0,0,0,0),(109606,'2025-07-03',347,0,0,0,1,0,0,0,0,0,0,0,0),(109605,'2025-07-03',346,0,0,0,1,0,0,0,0,0,0,0,0),(109604,'2025-07-03',345,0,0,0,1,0,0,0,0,0,0,0,0),(109603,'2025-07-03',344,0,0,0,1,0,0,0,0,0,0,0,0),(109602,'2025-07-03',341,0,0,0,1,0,0,0,0,0,0,0,0),(109601,'2025-07-03',340,0,0,0,1,0,0,0,0,0,0,0,0),(109600,'2025-07-03',339,0,0,0,1,0,0,0,0,0,0,0,0),(109599,'2025-07-03',338,0,0,0,1,0,0,0,0,0,0,0,0),(109598,'2025-07-03',337,0,0,0,1,0,0,0,0,0,0,0,0),(109597,'2025-07-03',336,0,0,0,1,0,0,0,0,0,0,0,0),(109596,'2025-07-03',335,0,0,0,1,0,0,0,0,0,0,0,0),(109595,'2025-07-03',334,0,0,0,1,0,0,0,0,0,0,0,0),(109594,'2025-07-03',333,0,0,0,1,0,0,0,0,0,0,0,0),(109593,'2025-07-03',332,0,0,0,1,0,0,0,0,0,0,0,0),(109592,'2025-07-03',331,0,0,0,1,0,0,0,0,0,0,0,0),(109591,'2025-07-03',330,0,0,0,1,0,0,0,0,0,0,0,0),(109590,'2025-07-03',329,0,0,0,1,0,0,0,0,0,0,0,0),(109589,'2025-07-03',328,0,0,0,1,0,0,0,0,0,0,0,0),(109588,'2025-07-03',327,0,0,0,1,0,0,0,0,0,0,0,0),(109587,'2025-07-03',326,0,0,0,1,0,0,0,0,0,0,0,0),(109586,'2025-07-03',324,0,0,0,1,0,0,0,0,0,0,0,0),(109585,'2025-07-03',323,0,0,0,1,0,0,0,0,0,0,0,0),(109584,'2025-07-03',321,0,0,0,1,0,0,0,0,0,0,0,0),(109583,'2025-07-03',320,0,0,0,1,0,0,0,0,0,0,0,0),(109582,'2025-07-03',319,0,0,0,1,0,0,0,0,0,0,0,0),(109581,'2025-07-03',317,0,0,0,1,0,0,0,0,0,0,0,0),(109580,'2025-07-03',316,0,0,0,1,0,0,0,0,0,0,0,0),(109579,'2025-07-03',314,0,0,0,1,0,0,0,0,0,0,0,0),(109578,'2025-07-03',313,0,0,0,1,0,0,0,0,0,0,0,0),(109577,'2025-07-03',310,0,0,0,1,0,0,0,0,0,0,0,0),(109576,'2025-07-03',309,0,0,0,1,0,0,0,0,0,0,0,0),(109575,'2025-07-03',308,0,0,0,1,0,0,0,0,0,0,0,0),(109574,'2025-07-03',307,0,0,0,1,0,0,0,0,0,0,0,0),(109573,'2025-07-03',304,0,0,0,1,0,0,0,0,0,0,0,0),(109572,'2025-07-03',303,0,0,0,1,0,0,0,0,0,0,0,0),(109571,'2025-07-03',302,0,0,0,1,0,0,0,0,0,0,0,0),(109570,'2025-07-03',301,0,0,0,1,0,0,0,0,0,0,0,0),(109925,'2025-07-10',289,0,0,0,1,0,0,0,0,0,0,0,0),(109924,'2025-07-10',288,0,0,0,1,0,0,0,0,0,0,0,0),(109923,'2025-07-10',285,0,0,0,1,0,0,0,0,0,0,0,0),(109922,'2025-07-10',281,0,0,0,1,0,0,0,0,0,0,0,0),(109921,'2025-07-10',280,0,0,0,1,0,0,0,0,0,0,0,0),(109920,'2025-07-10',278,0,0,0,1,0,0,0,0,0,0,0,0),(109919,'2025-07-10',275,0,0,0,1,0,0,0,0,0,0,0,0),(109918,'2025-07-10',274,0,0,0,1,0,0,0,0,0,0,0,0),(109917,'2025-07-10',273,0,0,0,1,0,0,0,0,0,0,0,0),(109916,'2025-07-10',271,0,0,0,1,0,0,0,0,0,0,0,0),(109915,'2025-07-10',269,0,0,0,1,0,0,0,0,0,0,0,0),(109914,'2025-07-10',268,0,0,0,1,0,0,0,0,0,0,0,0),(109913,'2025-07-10',267,0,0,0,1,0,0,0,0,0,0,0,0),(109912,'2025-07-10',266,0,0,0,1,0,0,0,0,0,0,0,0),(109911,'2025-07-10',265,0,0,0,1,0,0,0,0,0,0,0,0),(109910,'2025-07-10',264,0,0,0,1,0,0,0,0,0,0,0,0),(109909,'2025-07-10',263,0,0,0,1,0,0,0,0,0,0,0,0),(109908,'2025-07-10',262,0,0,0,1,0,0,0,0,0,0,0,0),(109907,'2025-07-10',261,0,0,0,1,0,0,0,0,0,0,0,0),(109906,'2025-07-10',260,0,0,0,1,0,0,0,0,0,0,0,0),(109905,'2025-07-10',258,0,0,0,1,0,0,0,0,0,0,0,0),(109904,'2025-07-10',257,0,0,0,1,0,0,0,0,0,0,0,0),(109903,'2025-07-10',256,0,0,0,1,0,0,0,0,0,0,0,0),(109902,'2025-07-10',255,0,0,0,1,0,0,0,0,0,0,0,0),(109901,'2025-07-10',254,0,0,0,1,0,0,0,0,0,0,0,0),(109900,'2025-07-10',253,0,0,0,1,0,0,0,0,0,0,0,0),(109899,'2025-07-10',251,0,0,0,1,0,0,0,0,0,0,0,0),(109898,'2025-07-10',250,0,0,0,1,0,0,0,0,0,0,0,0),(109897,'2025-07-10',249,0,0,0,1,0,0,0,0,0,0,0,0),(109896,'2025-07-10',247,0,0,0,1,0,0,0,0,0,0,0,0),(109895,'2025-07-10',246,0,0,0,1,0,0,0,0,0,0,0,0),(109894,'2025-07-10',245,0,0,0,1,0,0,0,0,0,0,0,0),(109893,'2025-07-10',243,0,0,0,1,0,0,0,0,0,0,0,0),(109892,'2025-07-10',242,0,0,0,1,0,0,0,0,0,0,0,0),(109891,'2025-07-10',241,0,0,0,1,0,0,0,0,0,0,0,0),(109890,'2025-07-10',239,0,0,0,1,0,0,0,0,0,0,0,0),(109889,'2025-07-10',238,0,0,0,1,0,0,0,0,0,0,0,0),(109888,'2025-07-10',236,0,0,0,1,0,0,0,0,0,0,0,0),(109887,'2025-07-10',234,0,0,0,1,0,0,0,0,0,0,0,0),(109886,'2025-07-10',233,0,0,0,1,0,0,0,0,0,0,0,0),(109885,'2025-07-10',232,0,0,0,1,0,0,0,0,0,0,0,0),(109884,'2025-07-10',231,0,0,0,1,0,0,0,0,0,0,0,0),(109883,'2025-07-10',228,0,0,0,1,0,0,0,0,0,0,0,0),(109882,'2025-07-10',227,0,0,0,1,0,0,0,0,0,0,0,0),(109881,'2025-07-10',226,0,0,0,1,0,0,0,0,0,0,0,0),(109880,'2025-07-10',225,0,0,0,1,0,0,0,0,0,0,0,0),(109879,'2025-07-10',224,0,0,0,1,0,0,0,0,0,0,0,0),(109878,'2025-07-10',222,0,0,0,1,0,0,0,0,0,0,0,0),(109877,'2025-07-10',221,0,0,0,1,0,0,0,0,0,0,0,0),(109876,'2025-07-10',220,0,0,0,1,0,0,0,0,0,0,0,0),(109875,'2025-07-10',218,0,0,0,0,0,0,1,0,0,0,0,0),(109874,'2025-07-10',217,0,0,0,1,0,0,0,0,0,0,0,0),(109873,'2025-07-10',214,0,0,0,1,0,0,0,0,0,0,0,0),(109872,'2025-07-10',213,0,0,0,1,0,0,0,0,0,0,0,0),(109871,'2025-07-10',212,0,0,0,1,0,0,0,0,0,0,0,0),(109870,'2025-07-10',211,0,0,0,1,0,0,0,0,0,0,0,0),(109869,'2025-07-10',210,0,0,0,1,0,0,0,0,0,0,0,0),(109868,'2025-07-10',209,0,0,0,1,0,0,0,0,0,0,0,0),(109867,'2025-07-10',208,0,0,0,1,0,0,0,0,0,0,0,0),(109866,'2025-07-10',207,0,0,0,1,0,0,0,0,0,0,0,0),(109865,'2025-07-10',206,0,0,0,1,0,0,0,0,0,0,0,0),(109864,'2025-07-10',205,0,0,0,1,0,0,0,0,0,0,0,0),(109863,'2025-07-10',204,0,0,0,1,0,0,0,0,0,0,0,0),(109862,'2025-07-10',203,0,0,0,1,0,0,0,0,0,0,0,0),(109861,'2025-07-10',201,0,0,0,1,0,0,0,0,0,0,0,0),(109860,'2025-07-10',200,0,0,0,1,0,0,0,0,0,0,0,0),(109859,'2025-07-10',197,0,0,0,1,0,0,0,0,0,0,0,0),(109858,'2025-07-10',196,0,0,0,1,0,0,0,0,0,0,0,0),(109857,'2025-07-10',195,0,0,0,1,0,0,0,0,0,0,0,0),(109856,'2025-07-10',194,0,0,0,1,0,0,0,0,0,0,0,0),(109855,'2025-07-10',193,0,0,0,1,0,0,0,0,0,0,0,0),(109854,'2025-07-10',192,0,0,0,1,0,0,0,0,0,0,0,0),(109853,'2025-07-10',191,0,0,0,1,0,0,0,0,0,0,0,0),(109852,'2025-07-10',190,0,0,0,1,0,0,0,0,0,0,0,0),(109851,'2025-07-10',189,0,0,0,1,0,0,0,0,0,0,0,0),(109850,'2025-07-10',188,0,0,0,1,0,0,0,0,0,0,0,0),(109849,'2025-07-10',187,0,0,0,1,0,0,0,0,0,0,0,0),(109848,'2025-07-10',186,0,0,0,1,0,0,0,0,0,0,0,0),(109847,'2025-07-10',185,0,0,0,1,0,0,0,0,0,0,0,0),(109846,'2025-07-10',184,0,0,0,1,0,0,0,0,0,0,0,0),(109845,'2025-07-10',183,0,0,0,1,0,0,0,0,0,0,0,0),(109844,'2025-07-10',182,0,0,0,1,0,0,0,0,0,0,0,0),(109843,'2025-07-10',181,0,0,0,1,0,0,0,0,0,0,0,0),(109842,'2025-07-10',180,0,0,0,1,0,0,0,0,0,0,0,0),(109841,'2025-07-10',179,0,0,0,1,0,0,0,0,0,0,0,0),(109840,'2025-07-10',178,0,0,0,1,0,0,0,0,0,0,0,0),(109839,'2025-07-10',176,0,0,0,1,0,0,0,0,0,0,0,0),(109838,'2025-07-10',175,0,0,0,1,0,0,0,0,0,0,0,0),(109837,'2025-07-10',174,0,0,0,1,0,0,0,0,0,0,0,0),(109836,'2025-07-10',173,0,0,0,1,0,0,0,0,0,0,0,0),(109835,'2025-07-10',172,0,0,0,1,0,0,0,0,0,0,0,0),(109834,'2025-07-10',171,0,0,0,1,0,0,0,0,0,0,0,0),(109833,'2025-07-10',170,0,0,0,1,0,0,0,0,0,0,0,0),(111310,'2025-07-27',443,0,0,0,1,0,0,0,0,0,0,0,0),(111309,'2025-07-27',441,0,0,0,1,0,0,0,0,0,0,0,0),(111308,'2025-07-27',440,0,0,0,1,0,0,0,0,0,0,0,0),(111307,'2025-07-27',439,0,0,0,1,0,0,0,0,0,0,0,0),(111306,'2025-07-27',438,0,0,0,1,0,0,0,0,0,0,0,0),(111305,'2025-07-27',435,0,0,0,1,0,0,0,0,0,0,0,0),(111304,'2025-07-27',434,0,0,0,1,0,0,0,0,0,0,0,0),(111303,'2025-07-27',433,0,0,0,1,0,0,0,0,0,0,0,0),(111302,'2025-07-27',432,0,0,0,1,0,0,0,0,0,0,0,0),(111301,'2025-07-27',431,0,0,0,1,0,0,0,0,0,0,0,0),(111300,'2025-07-27',430,0,0,0,1,0,0,0,0,0,0,0,0),(111299,'2025-07-27',428,0,0,0,1,0,0,0,0,0,0,0,0),(111298,'2025-07-27',426,0,0,0,1,0,0,0,0,0,0,0,0),(111297,'2025-07-27',423,0,0,0,1,0,0,0,0,0,0,0,0),(111296,'2025-07-27',422,0,0,0,1,0,0,0,0,0,0,0,0),(111295,'2025-07-27',420,0,0,0,1,0,0,0,0,0,0,0,0),(111294,'2025-07-27',417,0,0,0,1,0,0,0,0,0,0,0,0),(111293,'2025-07-27',414,0,0,0,1,0,0,0,0,0,0,0,0),(111292,'2025-07-27',413,0,0,0,0,1,0,0,0,0,0,0,0),(111291,'2025-07-27',412,0,0,0,1,0,0,0,0,0,0,0,0),(111290,'2025-07-27',410,0,0,0,1,0,0,0,0,0,0,0,0),(111289,'2025-07-27',408,0,0,0,1,0,0,0,0,0,0,0,0),(111288,'2025-07-27',407,0,0,0,1,0,0,0,0,0,0,0,0),(111287,'2025-07-27',405,0,0,0,1,1,0,0,0,0,0,0,0),(111286,'2025-07-27',403,0,0,0,1,0,0,0,0,0,0,0,0),(111285,'2025-07-27',401,0,0,0,1,0,1,0,0,0,0,0,0),(111284,'2025-07-27',400,0,0,0,1,0,0,0,0,0,0,0,0),(111283,'2025-07-27',396,0,0,0,1,0,0,0,0,0,0,0,0),(111282,'2025-07-27',395,0,0,0,1,0,0,0,0,0,0,0,0),(111281,'2025-07-27',393,0,0,0,1,0,0,0,0,0,0,0,0),(111280,'2025-07-27',392,0,0,0,1,0,0,0,0,0,0,0,0),(111279,'2025-07-27',391,0,0,0,1,0,0,0,0,0,0,0,0),(111278,'2025-07-27',390,0,0,0,1,0,0,0,0,0,0,0,0),(111277,'2025-07-27',388,1,0,0,1,0,0,0,0,0,0,0,0),(109832,'2025-07-10',169,0,0,0,1,0,0,0,0,0,0,0,0),(109831,'2025-07-10',168,0,0,0,1,0,0,0,0,0,0,0,0),(109830,'2025-07-10',167,0,0,0,1,0,0,0,0,0,0,0,0),(109829,'2025-07-10',166,0,0,0,1,0,0,0,0,0,0,0,0),(109828,'2025-07-10',164,0,0,0,1,0,0,0,0,0,0,0,0),(109827,'2025-07-10',163,0,0,0,1,0,0,0,0,0,0,0,0),(109826,'2025-07-10',162,0,0,0,1,0,0,0,0,0,0,0,0),(109825,'2025-07-10',161,0,0,0,1,0,0,0,0,0,0,0,0),(109824,'2025-07-10',160,0,0,0,1,0,0,0,0,0,0,0,0),(109823,'2025-07-10',159,0,0,0,1,0,0,0,0,0,0,0,0),(109822,'2025-07-10',158,0,0,0,1,0,0,0,0,0,0,0,0),(109821,'2025-07-10',157,0,0,0,1,0,0,0,0,0,0,0,0),(109820,'2025-07-10',155,0,0,0,1,0,0,0,0,0,0,0,0),(109819,'2025-07-10',154,0,0,0,1,0,0,0,0,0,0,0,0),(109818,'2025-07-10',152,0,0,0,1,0,0,0,0,0,0,0,0),(111276,'2025-07-27',387,0,0,0,1,0,0,0,0,0,0,0,0),(111275,'2025-07-27',385,0,0,0,1,0,0,0,0,0,0,0,0),(111274,'2025-07-27',384,0,0,0,1,0,0,0,0,0,0,0,0),(111273,'2025-07-27',382,0,0,0,1,0,0,0,0,0,0,0,0),(111272,'2025-07-27',381,0,0,0,1,0,0,0,0,0,0,0,0),(111271,'2025-07-27',378,0,0,0,1,0,0,0,0,0,0,0,0),(111270,'2025-07-27',377,0,0,0,1,0,0,0,0,0,0,0,0),(111269,'2025-07-27',376,0,0,0,1,0,0,0,0,0,0,0,0),(111268,'2025-07-27',375,0,0,0,1,0,0,0,0,0,0,0,0),(111267,'2025-07-27',372,0,0,0,1,0,0,0,0,0,0,0,0),(111266,'2025-07-27',371,0,0,0,1,0,0,0,0,0,0,0,0),(111265,'2025-07-27',367,0,0,0,1,0,0,0,0,0,0,0,0),(111264,'2025-07-27',365,0,0,0,1,0,0,0,0,0,0,0,0),(111263,'2025-07-27',364,0,0,0,1,0,0,0,0,0,0,0,0),(111262,'2025-07-27',363,0,0,0,1,0,0,0,0,0,0,0,0),(111261,'2025-07-27',361,0,0,0,1,0,0,0,0,0,0,0,0),(111260,'2025-07-27',360,0,0,0,1,0,0,0,0,0,0,0,0),(111259,'2025-07-27',359,0,0,0,1,0,0,0,0,0,0,0,0),(111258,'2025-07-27',357,0,0,0,1,0,0,0,0,0,0,0,0),(111257,'2025-07-27',353,0,0,0,1,0,0,0,0,0,0,0,0),(111256,'2025-07-27',352,0,0,0,1,0,0,0,0,0,0,0,0),(111255,'2025-07-27',351,0,0,0,1,0,0,0,0,0,0,0,0),(111254,'2025-07-27',348,0,0,0,1,0,0,0,0,0,0,0,0),(111253,'2025-07-27',347,0,0,0,1,0,0,0,0,0,0,0,0),(111252,'2025-07-27',346,0,0,0,1,0,0,0,0,0,0,0,0),(111251,'2025-07-27',345,0,0,0,1,0,0,0,0,0,0,0,0),(111250,'2025-07-27',344,0,0,0,1,0,0,0,0,0,0,0,0),(111249,'2025-07-27',341,0,0,0,1,0,0,0,0,0,0,0,0),(111248,'2025-07-27',340,0,0,0,1,0,0,0,0,0,0,0,0),(111247,'2025-07-27',339,0,0,0,1,0,0,0,0,0,0,0,0),(111246,'2025-07-27',338,0,0,0,1,0,0,0,0,0,0,0,0),(111245,'2025-07-27',337,0,0,0,1,0,0,0,0,0,0,0,0),(111244,'2025-07-27',336,0,0,0,1,0,0,0,0,0,0,0,0),(111243,'2025-07-27',335,0,0,0,1,0,0,0,0,0,0,0,0),(111242,'2025-07-27',333,0,0,0,1,0,0,0,0,0,0,0,0),(111241,'2025-07-27',332,0,0,0,1,0,0,0,0,0,0,0,0),(111240,'2025-07-27',331,0,0,0,1,0,0,0,0,0,0,0,0),(111239,'2025-07-27',330,0,0,0,1,0,0,0,0,0,0,0,0),(111238,'2025-07-27',329,0,0,0,1,0,0,0,0,0,0,0,0),(111237,'2025-07-27',328,0,0,0,1,0,0,0,0,0,0,0,0),(111236,'2025-07-27',327,1,0,0,1,0,0,0,0,0,0,0,0),(111235,'2025-07-27',326,0,0,0,1,0,0,0,0,0,0,0,0),(111234,'2025-07-27',324,0,0,0,1,0,0,0,0,0,0,0,0),(111233,'2025-07-27',323,0,0,0,1,0,0,0,0,0,0,0,0),(111232,'2025-07-27',322,0,0,0,0,0,1,0,0,0,0,0,0),(111231,'2025-07-27',321,0,0,0,1,0,0,0,0,0,0,0,0),(111230,'2025-07-27',320,0,0,0,1,1,0,0,0,0,0,0,0),(111229,'2025-07-27',319,0,0,0,1,0,0,0,0,0,0,0,0),(111228,'2025-07-27',317,0,0,0,1,0,0,0,0,0,0,0,0),(111227,'2025-07-27',316,0,0,0,1,0,1,0,0,0,0,0,0),(111226,'2025-07-27',314,0,0,0,1,0,0,0,0,0,0,0,0),(111225,'2025-07-27',313,0,0,0,1,0,0,0,0,0,0,0,0),(111224,'2025-07-27',311,0,0,0,1,1,0,0,0,0,0,0,0),(111223,'2025-07-27',310,0,0,0,1,1,0,0,0,0,0,0,0),(111222,'2025-07-27',309,0,0,0,1,0,0,0,0,0,0,0,0),(111221,'2025-07-27',308,0,0,0,1,1,0,0,0,0,0,0,0),(111220,'2025-07-27',307,0,0,0,1,0,0,0,0,0,0,0,0),(111219,'2025-07-27',304,0,0,0,1,0,0,0,0,0,0,0,0),(111218,'2025-07-27',303,0,0,0,1,0,0,0,0,0,0,0,0),(111217,'2025-07-27',302,0,0,0,1,0,0,0,0,0,0,0,0),(111216,'2025-07-27',301,0,0,0,1,1,0,0,0,0,0,0,0),(111215,'2025-07-27',300,0,0,0,1,0,0,0,0,0,0,0,0),(111214,'2025-07-27',299,0,0,0,1,0,0,0,0,0,0,0,0),(110965,'2025-07-26',446,0,0,0,1,0,0,0,0,0,0,0,0),(110964,'2025-07-26',445,0,0,0,1,0,0,0,0,0,0,0,0),(110963,'2025-07-26',443,0,0,0,1,0,0,0,0,0,0,0,0),(110962,'2025-07-26',441,0,0,0,1,0,0,0,0,0,0,0,0),(110961,'2025-07-26',440,0,0,0,1,0,0,0,0,0,0,0,0),(110960,'2025-07-26',439,0,0,0,1,0,0,0,0,0,0,0,0),(110959,'2025-07-26',438,0,0,0,1,0,0,0,0,0,0,0,0),(110958,'2025-07-26',435,0,0,0,1,0,0,0,0,0,0,0,0),(110957,'2025-07-26',434,0,0,0,1,0,0,0,0,0,0,0,0),(110956,'2025-07-26',433,0,0,0,1,0,0,0,0,0,0,0,0),(110955,'2025-07-26',432,0,0,0,1,0,0,0,0,0,0,0,0),(110954,'2025-07-26',431,0,0,0,1,0,0,0,0,0,0,0,0),(110953,'2025-07-26',430,0,0,0,1,0,0,0,0,0,0,0,0),(110952,'2025-07-26',428,0,0,0,1,0,0,0,0,0,0,0,0),(110951,'2025-07-26',426,0,0,0,1,0,0,0,0,0,0,0,0),(110950,'2025-07-26',423,0,0,0,1,0,0,0,0,0,0,0,0),(110949,'2025-07-26',422,0,0,0,1,0,0,0,0,0,0,0,0),(110948,'2025-07-26',420,0,0,0,1,0,0,0,0,0,0,0,0),(110947,'2025-07-26',417,0,0,0,1,0,0,0,0,0,0,0,0),(110946,'2025-07-26',414,0,0,0,1,0,0,0,0,0,0,0,0),(110945,'2025-07-26',413,0,0,0,1,0,0,0,0,0,0,0,0),(110944,'2025-07-26',412,0,0,0,1,0,0,0,0,0,0,0,0),(110943,'2025-07-26',410,0,0,0,1,0,0,0,0,0,0,0,0),(110942,'2025-07-26',408,0,0,0,1,0,0,0,0,0,0,0,0),(110941,'2025-07-26',407,0,0,0,1,0,0,0,0,0,0,0,0),(110940,'2025-07-26',405,0,0,0,1,0,0,0,0,0,0,0,0),(110939,'2025-07-26',403,0,0,0,1,0,0,0,0,0,0,0,0),(110938,'2025-07-26',401,0,0,0,1,0,0,0,0,0,0,0,0),(110937,'2025-07-26',400,0,0,0,1,0,0,0,0,0,0,0,0),(109569,'2025-07-03',300,0,0,0,1,0,0,0,0,0,0,0,0),(109568,'2025-07-03',299,0,0,0,1,0,0,0,0,0,0,0,0),(109567,'2025-07-03',298,0,0,0,1,0,0,0,0,0,0,0,0),(109566,'2025-07-03',296,0,0,0,1,0,0,0,0,0,0,0,0),(109565,'2025-07-03',295,0,0,0,1,0,0,0,0,0,0,0,0),(109564,'2025-07-03',294,0,0,0,1,0,0,0,0,0,0,0,0),(109563,'2025-07-03',292,0,0,0,1,0,0,0,0,0,0,0,0),(109562,'2025-07-03',291,0,0,0,1,0,0,0,0,0,0,0,0),(109561,'2025-07-03',290,0,0,0,1,0,0,0,0,0,0,0,0),(109560,'2025-07-03',289,0,0,0,1,0,0,0,0,0,0,0,0),(109559,'2025-07-03',288,0,0,0,1,0,0,0,0,0,0,0,0),(109558,'2025-07-03',285,0,0,0,1,0,0,0,0,0,0,0,0),(109557,'2025-07-03',281,0,0,0,1,0,0,0,0,0,0,0,0),(109556,'2025-07-03',280,0,0,0,1,0,0,0,0,0,0,0,0),(109555,'2025-07-03',278,0,0,0,1,0,0,0,0,0,0,0,0),(109554,'2025-07-03',275,0,0,0,1,0,0,0,0,0,0,0,0),(109553,'2025-07-03',274,0,0,0,1,0,0,0,0,0,0,0,0),(109552,'2025-07-03',273,0,0,0,1,0,0,0,0,0,0,0,0),(109551,'2025-07-03',271,0,0,0,1,0,0,0,0,0,0,0,0),(109550,'2025-07-03',269,0,0,0,1,0,0,0,0,0,0,0,0),(109549,'2025-07-03',268,0,0,0,1,0,0,0,0,0,0,0,0),(109548,'2025-07-03',266,0,0,0,1,0,0,0,0,0,0,0,0),(109547,'2025-07-03',265,0,0,0,1,0,0,0,0,0,0,0,0),(109546,'2025-07-03',264,0,0,0,1,0,0,0,0,0,0,0,0),(109545,'2025-07-03',263,0,0,0,1,0,0,0,0,0,0,0,0),(109544,'2025-07-03',262,0,0,0,1,0,0,0,0,0,0,0,0),(109543,'2025-07-03',261,0,0,0,1,0,0,0,0,0,0,0,0),(109542,'2025-07-03',260,0,0,0,1,0,0,0,0,0,0,0,0),(109541,'2025-07-03',258,0,0,0,1,0,0,0,0,0,0,0,0),(109540,'2025-07-03',257,0,0,0,1,0,0,0,0,0,0,0,0),(109539,'2025-07-03',256,0,0,0,1,0,0,0,0,0,0,0,0),(109538,'2025-07-03',255,0,0,0,1,0,0,0,0,0,0,0,0),(109537,'2025-07-03',254,0,0,0,1,0,0,0,0,0,0,0,0),(109536,'2025-07-03',253,0,0,0,1,0,0,0,0,0,0,0,0),(109535,'2025-07-03',251,0,0,0,1,0,0,0,0,0,0,0,0),(109534,'2025-07-03',250,0,0,0,1,0,0,0,0,0,0,0,0),(109533,'2025-07-03',249,0,0,0,1,0,0,0,0,0,0,0,0),(109532,'2025-07-03',247,0,0,0,1,0,0,0,0,0,0,0,0),(109531,'2025-07-03',246,0,0,0,1,0,0,0,0,0,0,0,0),(109530,'2025-07-03',245,0,0,0,1,0,0,0,0,0,0,0,0),(109529,'2025-07-03',243,0,0,0,1,0,0,0,0,0,0,0,0),(109528,'2025-07-03',242,0,0,0,1,0,0,0,0,0,0,0,0),(109527,'2025-07-03',241,0,0,0,1,0,0,0,0,0,0,0,0),(109526,'2025-07-03',239,0,0,0,1,0,0,0,0,0,0,0,0),(109525,'2025-07-03',238,0,0,0,1,0,0,0,0,0,0,0,0),(109524,'2025-07-03',236,0,0,0,1,0,0,0,0,0,0,0,0),(109523,'2025-07-03',234,0,0,0,1,0,0,0,0,0,0,0,0),(109522,'2025-07-03',233,0,0,0,1,0,0,0,0,0,0,0,0),(109521,'2025-07-03',232,0,0,0,1,0,0,0,0,0,0,0,0),(109520,'2025-07-03',231,0,0,0,1,0,0,0,0,0,0,0,0),(109519,'2025-07-03',228,0,0,0,1,0,0,0,0,0,0,0,0),(109518,'2025-07-03',227,0,0,0,1,0,0,0,0,0,0,0,0),(109517,'2025-07-03',226,0,0,0,1,0,0,0,0,0,0,0,0),(109516,'2025-07-03',225,0,0,0,1,0,0,0,0,0,0,0,0),(109515,'2025-07-03',224,0,0,0,1,0,0,0,0,0,0,0,0),(109514,'2025-07-03',222,0,0,0,1,0,0,0,0,0,0,0,0),(109513,'2025-07-03',221,0,0,0,1,0,0,0,0,0,0,0,0),(109512,'2025-07-03',220,0,0,0,1,0,0,0,0,0,0,0,0),(109511,'2025-07-03',217,0,0,0,1,0,0,0,0,0,0,0,0),(109510,'2025-07-03',214,0,0,0,1,0,0,0,0,0,0,0,0),(109509,'2025-07-03',213,0,0,0,1,0,0,0,0,0,0,0,0),(109508,'2025-07-03',212,0,0,0,1,0,0,0,0,0,0,0,0),(109507,'2025-07-03',211,0,0,0,1,0,0,0,0,0,0,0,0),(109506,'2025-07-03',210,0,0,0,1,0,0,0,0,0,0,0,0),(109505,'2025-07-03',209,0,0,0,1,0,0,0,0,0,0,0,0),(109504,'2025-07-03',208,0,0,0,1,0,0,0,0,0,0,0,0),(109503,'2025-07-03',207,0,0,0,1,0,0,0,0,0,0,0,0),(109502,'2025-07-03',206,0,0,0,1,0,0,0,0,0,0,0,0),(109501,'2025-07-03',205,0,0,0,1,0,0,0,0,0,0,0,0),(109500,'2025-07-03',204,0,0,0,1,0,0,0,0,0,0,0,0),(109499,'2025-07-03',203,0,0,0,1,0,0,0,0,0,0,0,0),(109498,'2025-07-03',201,0,0,0,1,0,0,0,0,0,0,0,0),(109497,'2025-07-03',200,0,0,0,1,0,0,0,0,0,0,0,0),(109496,'2025-07-03',197,0,0,0,1,0,0,0,0,0,0,0,0),(109495,'2025-07-03',196,0,0,0,1,0,0,0,0,0,0,0,0),(109494,'2025-07-03',195,0,0,0,1,0,0,0,0,0,0,0,0),(109493,'2025-07-03',194,0,0,0,1,0,0,0,0,0,0,0,0),(109492,'2025-07-03',193,0,0,0,1,0,0,0,0,0,0,0,0),(109491,'2025-07-03',192,0,0,0,1,0,0,0,0,0,0,0,0),(109490,'2025-07-03',191,0,0,0,1,0,0,0,0,0,0,0,0),(109489,'2025-07-03',190,0,0,0,1,0,0,0,0,0,0,0,0),(109488,'2025-07-03',189,0,0,0,1,0,0,0,0,0,0,0,0),(109487,'2025-07-03',188,0,0,0,1,0,0,0,0,0,0,0,0),(109486,'2025-07-03',187,0,0,0,1,0,0,0,0,0,0,0,0),(109485,'2025-07-03',186,0,0,0,1,0,0,0,0,0,0,0,0),(109484,'2025-07-03',185,0,0,0,1,0,0,0,0,0,0,0,0),(109483,'2025-07-03',184,0,0,0,1,0,0,0,0,0,0,0,0),(109482,'2025-07-03',183,0,0,0,1,0,0,0,0,0,0,0,0),(109481,'2025-07-03',182,0,0,0,1,0,0,0,0,0,0,0,0),(109480,'2025-07-03',181,0,0,0,1,0,0,0,0,0,0,0,0),(109479,'2025-07-03',180,0,0,0,1,0,0,0,0,0,0,0,0),(109478,'2025-07-03',179,0,0,0,1,0,0,0,0,0,0,0,0),(109477,'2025-07-03',176,0,0,0,1,0,0,0,0,0,0,0,0),(109476,'2025-07-03',175,0,0,0,1,0,0,0,0,0,0,0,0),(109475,'2025-07-03',174,0,0,0,1,0,0,0,0,0,0,0,0),(109474,'2025-07-03',173,0,0,0,1,0,0,0,0,0,0,0,0),(109473,'2025-07-03',172,0,0,0,1,0,0,0,0,0,0,0,0),(109472,'2025-07-03',170,0,0,0,1,0,0,0,0,0,0,0,0),(109471,'2025-07-03',168,0,0,0,1,0,0,0,0,0,0,0,0),(109470,'2025-07-03',167,0,0,0,1,0,0,0,0,0,0,0,0),(109469,'2025-07-03',166,0,0,0,1,0,0,0,0,0,0,0,0),(109468,'2025-07-03',164,0,0,0,1,0,0,0,0,0,0,0,0),(109467,'2025-07-03',163,0,0,0,1,0,0,0,0,0,0,0,0),(109466,'2025-07-03',161,0,0,0,1,0,0,0,0,0,0,0,0),(109465,'2025-07-03',160,0,0,0,1,0,0,0,0,0,0,0,0),(109464,'2025-07-03',159,0,0,0,1,0,0,0,0,0,0,0,0),(109463,'2025-07-03',158,0,0,0,1,0,0,0,0,0,0,0,0),(109462,'2025-07-03',157,0,0,0,1,0,0,0,0,0,0,0,0),(109461,'2025-07-03',154,0,0,0,1,0,0,0,0,0,0,0,0),(109460,'2025-07-03',152,0,0,0,1,0,0,0,0,0,0,0,0),(109459,'2025-07-03',151,0,0,0,1,0,0,0,0,0,0,0,0),(109458,'2025-07-03',148,0,0,0,1,0,0,0,0,0,0,0,0),(109457,'2025-07-03',147,0,0,0,1,0,0,0,0,0,0,0,0),(109456,'2025-07-03',146,0,0,0,1,0,0,0,0,0,0,0,0),(109455,'2025-07-03',145,0,0,0,1,0,0,0,0,0,0,0,0),(109454,'2025-07-03',144,0,0,0,1,0,0,0,0,0,0,0,0),(109453,'2025-07-03',143,0,0,0,1,0,0,0,0,0,0,0,0),(109452,'2025-07-03',141,0,0,0,1,0,0,0,0,0,0,0,0),(109451,'2025-07-03',140,0,0,0,1,0,0,0,0,0,0,0,0),(109450,'2025-07-03',136,0,0,0,1,0,0,0,0,0,0,0,0),(109449,'2025-07-03',132,0,0,0,1,0,0,0,0,0,0,0,0),(109448,'2025-07-03',128,0,0,0,1,0,0,0,0,0,0,0,0),(109447,'2025-07-03',127,0,0,0,1,0,0,0,0,0,0,0,0),(109446,'2025-07-03',126,0,0,0,1,0,0,0,0,0,0,0,0),(109445,'2025-07-03',124,0,0,0,1,0,0,0,0,0,0,0,0),(109444,'2025-07-03',123,0,0,0,1,0,0,0,0,0,0,0,0),(109443,'2025-07-03',121,0,0,0,1,0,0,0,0,0,0,0,0),(109442,'2025-07-03',115,0,0,0,1,0,0,0,0,0,0,0,0),(109441,'2025-07-03',114,0,0,0,1,0,0,0,0,0,0,0,0),(109440,'2025-07-03',113,0,0,0,1,0,0,0,0,0,0,0,0),(109439,'2025-07-03',112,0,0,0,1,0,0,0,0,0,0,0,0),(109438,'2025-07-03',110,0,0,0,1,0,0,0,0,0,0,0,0),(109437,'2025-07-03',103,0,0,0,1,0,0,0,0,0,0,0,0),(109436,'2025-07-03',98,0,0,0,1,0,0,0,0,0,0,0,0),(109435,'2025-07-03',97,0,0,0,1,0,0,0,0,0,0,0,0),(109434,'2025-07-03',96,0,0,0,1,0,0,0,0,0,0,0,0),(109433,'2025-07-03',94,0,0,0,1,0,0,0,0,0,0,0,0),(109432,'2025-07-03',91,0,0,1,0,0,0,0,0,0,0,0,0),(109431,'2025-07-03',90,0,0,0,1,0,0,1,0,0,0,0,0),(109430,'2025-07-03',87,0,0,0,1,0,0,0,0,0,0,0,0),(109429,'2025-07-03',79,0,0,0,1,0,0,0,0,0,0,0,0),(109428,'2025-07-03',70,0,0,0,1,0,0,0,0,0,0,0,0),(109427,'2025-07-03',69,0,0,0,1,0,0,0,0,0,0,0,0),(109426,'2025-07-03',68,0,0,0,1,0,0,0,0,0,0,0,0),(109425,'2025-07-03',67,0,0,0,1,0,0,0,0,0,0,0,0),(109424,'2025-07-03',66,0,0,0,1,0,0,0,0,0,0,0,0),(109664,'2025-07-03',445,0,0,0,1,0,0,0,0,0,0,0,0),(109663,'2025-07-03',443,0,0,0,1,0,0,0,0,0,0,0,0),(109662,'2025-07-03',441,0,0,0,1,0,0,0,0,0,0,0,0),(109661,'2025-07-03',440,0,0,0,1,0,0,0,0,0,0,0,0),(109660,'2025-07-03',439,0,0,0,1,0,0,0,0,0,0,0,0),(109659,'2025-07-03',438,0,0,0,1,0,0,0,0,0,0,0,0),(109658,'2025-07-03',435,0,0,0,1,0,0,0,0,0,0,0,0),(109657,'2025-07-03',434,0,0,0,1,0,0,0,0,0,0,0,0),(109656,'2025-07-03',433,0,0,0,1,0,0,0,0,0,0,0,0),(109655,'2025-07-03',432,0,0,0,1,0,0,0,0,0,0,0,0),(109654,'2025-07-03',431,0,0,0,1,0,0,0,0,0,0,0,0),(109653,'2025-07-03',430,0,0,0,1,0,0,0,0,0,0,0,0),(109652,'2025-07-03',428,0,0,0,1,0,0,0,0,0,0,0,0),(109651,'2025-07-03',426,0,0,0,1,0,0,0,0,0,0,0,0),(109650,'2025-07-03',423,0,0,0,1,0,0,0,0,0,0,0,0),(109649,'2025-07-03',422,0,0,0,1,0,0,0,0,0,0,0,0),(109648,'2025-07-03',420,0,0,0,1,0,0,0,0,0,0,0,0),(109647,'2025-07-03',417,0,0,0,1,0,0,0,0,0,0,0,0),(109646,'2025-07-03',414,0,0,0,1,0,0,0,0,0,0,0,0),(109645,'2025-07-03',413,0,0,0,1,0,0,0,0,0,0,0,0),(109644,'2025-07-03',412,0,0,0,1,0,0,0,0,0,0,0,0),(109407,'2025-07-02',218,0,0,0,0,0,0,1,0,0,0,0,0),(109406,'2025-07-02',89,0,0,0,0,0,0,1,0,0,0,0,0),(109402,'2025-07-01',233,0,0,0,0,0,0,1,0,0,0,0,0),(109401,'2025-07-01',188,0,0,0,0,0,0,1,0,0,0,0,0),(109400,'2025-07-01',137,0,0,0,0,0,0,1,0,0,0,0,0),(109399,'2025-07-01',123,0,0,0,0,0,0,1,0,0,0,0,0),(109398,'2025-07-01',81,0,0,0,0,0,0,1,0,0,0,0,0),(109397,'2025-07-01',75,0,0,0,0,0,0,1,0,0,0,0,0),(109396,'2025-07-01',51,0,0,0,0,0,0,1,0,0,0,0,0),(109395,'2025-07-01',49,0,0,0,0,0,0,1,0,0,0,0,0),(109394,'2025-07-01',2,0,0,0,0,0,0,1,0,0,0,0,0),(109393,'2025-07-01',1,0,0,0,0,0,0,1,0,0,0,0,0),(109423,'2025-07-03',65,0,0,0,1,0,0,0,0,0,0,0,0),(109422,'2025-07-03',64,0,0,0,1,0,0,0,0,0,0,0,0),(109421,'2025-07-03',63,0,0,0,1,0,0,0,0,0,0,0,0),(109817,'2025-07-10',151,0,0,0,1,0,0,0,0,0,0,0,0),(109816,'2025-07-10',150,0,0,0,1,0,0,0,0,0,0,0,0),(109815,'2025-07-10',148,0,0,0,1,0,0,0,0,0,0,0,0),(109814,'2025-07-10',147,0,0,0,1,0,0,0,0,0,0,0,0),(109813,'2025-07-10',146,0,0,0,1,0,0,0,0,0,0,0,0),(109812,'2025-07-10',145,0,0,0,1,0,0,0,0,0,0,0,0),(109811,'2025-07-10',144,0,0,0,1,0,0,0,0,0,0,0,0),(109810,'2025-07-10',143,0,0,0,1,0,0,0,0,0,0,0,0),(109809,'2025-07-10',142,0,0,0,1,0,0,0,0,0,0,0,0),(109808,'2025-07-10',141,0,0,0,1,0,0,0,0,0,0,0,0),(109807,'2025-07-10',140,0,0,0,1,0,0,0,0,0,0,0,0),(109806,'2025-07-10',139,0,0,0,1,0,0,0,0,0,0,0,0),(109805,'2025-07-10',137,0,0,0,0,1,0,0,0,0,0,0,0),(109804,'2025-07-10',136,0,0,0,1,0,0,0,0,0,0,0,0),(109803,'2025-07-10',134,0,0,0,1,0,0,0,0,0,0,0,0),(109802,'2025-07-10',133,0,0,0,1,0,0,0,0,0,0,0,0),(109801,'2025-07-10',132,0,0,0,1,0,0,0,0,0,0,0,0),(109800,'2025-07-10',129,0,0,0,1,0,0,0,0,0,0,0,0),(109799,'2025-07-10',128,0,0,0,1,0,0,0,0,0,0,0,0),(109798,'2025-07-10',127,0,0,0,1,0,0,0,0,0,0,0,0),(109797,'2025-07-10',126,0,0,0,1,0,0,0,0,0,0,0,0),(109796,'2025-07-10',125,0,0,0,1,0,0,0,0,0,0,0,0),(109795,'2025-07-10',124,0,0,0,1,0,0,0,0,0,0,0,0),(109794,'2025-07-10',123,0,0,0,1,0,0,0,0,0,0,0,0),(109793,'2025-07-10',122,0,0,0,1,0,0,0,0,0,0,0,0),(109792,'2025-07-10',121,0,0,0,1,0,0,0,0,0,0,0,0),(109791,'2025-07-10',120,0,0,0,1,0,0,0,0,0,0,0,0),(109790,'2025-07-10',119,0,0,0,1,0,0,0,0,0,0,0,0),(109789,'2025-07-10',118,0,0,0,1,0,0,0,0,0,0,0,0),(109788,'2025-07-10',117,0,0,0,1,0,0,0,0,0,0,0,0),(109787,'2025-07-10',116,0,0,0,1,0,0,0,0,0,0,0,0),(109786,'2025-07-10',115,0,0,0,1,0,0,0,0,0,0,0,0),(109785,'2025-07-10',114,0,0,0,1,0,0,0,0,0,0,0,0),(109784,'2025-07-10',113,0,0,0,1,0,0,0,0,0,0,0,0),(109783,'2025-07-10',112,0,0,0,1,0,0,0,0,0,0,0,0),(109782,'2025-07-10',111,0,0,0,1,0,0,0,0,0,0,0,0),(109781,'2025-07-10',110,0,0,0,1,0,0,0,0,0,0,0,0),(109780,'2025-07-10',109,0,0,0,1,1,0,0,0,0,0,0,0),(109779,'2025-07-10',106,0,0,0,1,0,0,0,0,0,0,0,0),(109778,'2025-07-10',105,0,0,0,1,0,0,0,0,0,0,0,0),(109777,'2025-07-10',104,0,0,0,1,0,1,0,0,0,0,0,0),(109776,'2025-07-10',103,0,0,0,1,0,0,0,0,0,0,0,0),(109775,'2025-07-10',102,0,0,0,1,0,0,0,0,0,0,0,0),(109774,'2025-07-10',101,0,0,0,1,0,0,0,0,0,0,0,0),(109773,'2025-07-10',100,0,0,0,1,0,0,0,0,0,0,0,0),(109772,'2025-07-10',98,0,0,0,1,0,0,0,0,0,0,0,0),(109771,'2025-07-10',97,0,0,0,1,0,0,0,0,0,0,0,0),(109420,'2025-07-03',61,0,0,0,1,0,0,0,0,0,0,0,0),(109419,'2025-07-03',58,0,0,0,1,0,0,0,0,0,0,0,0),(109418,'2025-07-03',54,0,0,0,1,0,0,0,0,0,0,0,0),(109417,'2025-07-03',52,0,0,0,1,0,0,0,0,0,0,0,0),(109416,'2025-07-03',42,0,0,0,1,0,0,0,0,0,0,0,0),(109415,'2025-07-03',37,0,0,0,1,0,0,0,0,0,0,0,0),(109414,'2025-07-03',32,0,0,0,1,0,0,0,0,0,0,0,0),(109413,'2025-07-03',24,0,0,0,1,0,0,0,0,0,0,0,0),(109412,'2025-07-03',22,0,0,0,0,0,0,3,0,0,0,0,0),(109405,'2025-07-02',78,0,0,0,0,0,0,1,0,0,0,0,0),(109404,'2025-07-02',9,0,0,0,0,0,0,1,0,0,0,0,0),(109403,'2025-07-02',5,0,0,0,0,0,0,1,0,0,0,0,0),(109770,'2025-07-10',96,0,0,0,1,0,0,0,0,0,0,0,0),(109769,'2025-07-10',95,0,0,0,1,0,0,0,0,0,0,0,0),(109768,'2025-07-10',94,0,0,0,1,0,0,0,0,0,0,0,0),(109767,'2025-07-10',93,0,0,0,1,0,0,0,0,0,0,0,0),(109766,'2025-07-10',91,1,0,0,1,0,0,0,0,0,0,0,0),(109765,'2025-07-10',90,0,0,0,1,0,0,0,0,0,0,0,0),(109764,'2025-07-10',89,0,0,0,1,0,0,1,0,0,0,0,0),(109763,'2025-07-10',87,0,0,0,1,0,0,0,0,0,0,0,0),(109762,'2025-07-10',86,0,0,0,1,0,0,0,0,0,0,0,0),(109761,'2025-07-10',85,0,0,0,1,0,0,0,0,0,0,0,0),(109760,'2025-07-10',84,0,0,0,1,0,0,0,0,0,0,0,0),(109759,'2025-07-10',83,0,0,0,1,0,0,0,0,0,0,0,0),(109758,'2025-07-10',82,0,0,0,1,0,0,0,0,0,0,0,0),(109757,'2025-07-10',81,0,0,0,1,0,1,0,0,0,0,0,0),(109756,'2025-07-10',80,0,0,0,1,0,0,0,0,0,0,0,0),(109755,'2025-07-10',79,0,0,0,1,0,0,0,0,0,0,0,0),(109754,'2025-07-10',78,0,0,0,1,0,1,1,0,0,0,0,0),(109753,'2025-07-10',77,0,0,0,1,0,0,0,0,0,0,0,0),(109752,'2025-07-10',75,0,0,0,1,1,1,0,0,0,0,0,0),(109751,'2025-07-10',74,0,0,0,1,0,0,0,0,0,0,0,0),(109750,'2025-07-10',73,0,0,0,1,0,0,0,0,0,0,0,0),(109749,'2025-07-10',71,0,0,0,1,0,0,0,0,0,0,0,0),(109748,'2025-07-10',70,0,0,0,1,0,0,0,0,0,0,0,0),(109747,'2025-07-10',69,0,0,0,1,0,0,0,0,0,0,0,0),(109746,'2025-07-10',68,0,0,0,1,0,0,0,0,0,0,0,0),(109745,'2025-07-10',67,0,0,0,1,0,0,0,0,0,0,0,0),(109744,'2025-07-10',66,0,0,0,1,0,0,0,0,0,0,0,0),(109411,'2025-07-03',19,0,0,0,1,0,0,0,0,0,0,0,0),(109410,'2025-07-03',17,0,0,0,0,0,0,1,0,0,0,0,0),(109409,'2025-07-03',13,0,0,0,1,0,0,0,0,0,0,0,0),(109408,'2025-07-03',10,0,0,0,1,0,0,0,0,0,0,0,0),(109675,'2025-07-05',123,0,0,0,0,0,0,1,0,0,0,0,0),(109674,'2025-07-05',109,0,0,0,0,0,0,1,0,0,0,0,0),(109670,'2025-07-04',423,0,0,0,1,0,0,0,0,0,0,0,0),(109669,'2025-07-04',388,1,0,1,0,0,0,0,0,0,0,0,0),(109668,'2025-07-04',316,0,0,0,0,0,1,0,0,0,0,0,0),(109667,'2025-07-04',161,0,0,0,0,1,0,0,0,0,0,0,0),(109666,'2025-07-04',54,0,0,0,0,1,0,0,0,0,0,0,0),(109665,'2025-07-04',28,0,0,0,0,0,1,0,0,0,0,0,0),(109673,'2025-07-05',81,0,0,0,0,0,0,1,0,0,0,0,0),(109672,'2025-07-05',51,0,0,0,0,0,0,1,0,0,0,0,0),(109671,'2025-07-05',49,0,0,0,0,0,0,1,0,0,0,0,0),(109743,'2025-07-10',65,0,0,0,1,0,0,0,0,0,0,0,0),(109742,'2025-07-10',64,0,0,0,1,0,0,0,0,0,0,0,0),(109741,'2025-07-10',63,0,0,0,1,0,0,0,0,0,0,0,0),(109740,'2025-07-10',61,0,0,0,1,0,0,0,0,0,0,0,0),(109739,'2025-07-10',60,0,0,0,1,0,0,0,0,0,0,0,0),(109738,'2025-07-10',59,0,0,0,1,0,0,0,0,0,0,0,0),(109737,'2025-07-10',58,0,0,0,1,0,0,0,0,0,0,0,0),(109736,'2025-07-10',57,0,0,0,1,0,0,0,0,0,0,0,0),(109735,'2025-07-10',56,0,0,0,1,0,0,0,0,0,0,0,0),(109734,'2025-07-10',55,0,0,0,1,0,0,0,0,0,0,0,0),(109733,'2025-07-10',54,1,0,0,1,0,0,0,0,0,0,0,0),(109732,'2025-07-10',53,0,0,1,0,0,0,0,0,0,0,0,0),(109731,'2025-07-10',52,0,0,0,1,0,0,0,0,0,0,0,0),(109730,'2025-07-10',51,0,0,0,1,0,0,0,0,0,0,0,0),(109729,'2025-07-10',50,0,0,0,1,0,0,0,0,0,0,0,0),(109728,'2025-07-10',49,0,0,0,1,0,0,0,0,0,0,0,0),(109727,'2025-07-10',48,0,0,0,1,0,0,0,0,0,0,0,0),(109726,'2025-07-10',47,0,0,0,1,0,0,0,0,0,0,0,0),(109725,'2025-07-10',46,0,0,0,1,0,0,0,0,0,0,0,0),(109724,'2025-07-10',45,0,0,0,1,0,0,0,0,0,0,0,0),(109723,'2025-07-10',44,0,0,0,1,0,0,0,0,0,0,0,0),(109722,'2025-07-10',43,1,0,0,1,0,0,0,0,0,0,0,0),(109721,'2025-07-10',42,0,0,0,1,0,0,0,0,0,0,0,0),(109720,'2025-07-10',41,0,0,0,1,0,0,0,0,0,0,0,0),(109719,'2025-07-10',40,0,0,0,1,0,1,0,0,0,0,0,0),(109718,'2025-07-10',38,0,0,0,1,0,0,0,0,0,0,0,0),(109717,'2025-07-10',37,0,0,0,1,0,0,0,0,0,0,0,0),(109716,'2025-07-10',36,0,0,0,1,0,1,0,0,0,0,0,0),(109715,'2025-07-10',35,0,0,0,1,0,0,0,0,0,0,0,0),(109714,'2025-07-10',34,0,0,0,1,0,0,0,0,0,0,0,0),(109713,'2025-07-10',33,0,0,0,1,0,1,0,0,0,0,0,0),(109712,'2025-07-10',32,0,0,0,1,0,0,0,0,0,0,0,0),(109711,'2025-07-10',31,0,0,0,1,0,0,0,0,0,0,0,0),(109710,'2025-07-10',30,0,0,0,1,0,0,0,0,0,0,0,0),(109709,'2025-07-10',29,0,0,0,1,0,0,0,0,0,0,0,0),(109708,'2025-07-10',28,0,0,0,1,0,0,0,0,0,0,0,0),(109707,'2025-07-10',27,0,0,0,1,0,1,0,0,0,0,0,0),(109706,'2025-07-10',26,0,0,0,1,0,0,0,0,0,0,0,0),(109705,'2025-07-10',25,0,0,0,1,0,0,0,0,0,0,0,0),(110936,'2025-07-26',396,0,0,0,1,0,0,0,0,0,0,0,0),(110935,'2025-07-26',395,0,0,0,1,0,0,0,0,0,0,0,0),(110934,'2025-07-26',393,0,0,0,1,1,0,0,0,0,0,0,0),(110933,'2025-07-26',392,0,0,0,1,0,0,0,0,0,0,0,0),(110932,'2025-07-26',391,0,0,0,1,0,0,0,0,0,0,0,0),(110931,'2025-07-26',390,0,0,0,1,0,0,0,0,0,0,0,0),(110930,'2025-07-26',388,0,0,0,1,0,0,0,0,0,0,0,0),(110929,'2025-07-26',387,0,0,0,1,0,0,0,0,0,0,0,0),(110928,'2025-07-26',385,0,0,0,1,0,0,0,0,0,0,0,0),(110927,'2025-07-26',384,0,0,0,1,0,0,0,0,0,0,0,0),(110926,'2025-07-26',382,0,0,0,1,0,0,0,0,0,0,0,0),(110925,'2025-07-26',381,0,0,0,1,0,0,0,0,0,0,0,0),(110924,'2025-07-26',378,0,0,0,1,0,0,0,0,0,0,0,0),(110923,'2025-07-26',377,0,0,0,1,0,0,0,0,0,0,0,0),(110922,'2025-07-26',376,0,0,0,1,0,0,0,0,0,0,0,0),(110921,'2025-07-26',375,0,0,0,1,0,0,0,0,0,0,0,0),(110920,'2025-07-26',372,0,0,0,1,0,0,0,0,0,0,0,0),(110919,'2025-07-26',371,0,0,0,1,0,0,0,0,0,0,0,0),(110918,'2025-07-26',367,0,0,0,1,0,0,0,0,0,0,0,0),(110917,'2025-07-26',365,0,0,0,1,0,0,0,0,0,0,0,0),(110916,'2025-07-26',364,0,0,0,1,0,0,0,0,0,0,0,0),(110915,'2025-07-26',363,0,0,0,1,0,0,0,0,0,0,0,0),(110914,'2025-07-26',361,0,0,0,1,0,0,0,0,0,0,0,0),(110913,'2025-07-26',360,0,0,0,1,0,0,0,0,0,0,0,0),(110912,'2025-07-26',359,0,0,0,1,0,0,0,0,0,0,0,0),(110911,'2025-07-26',357,0,0,0,1,0,0,0,0,0,0,0,0),(110910,'2025-07-26',353,0,0,0,1,0,0,0,0,0,0,0,0),(110909,'2025-07-26',352,0,0,0,1,0,0,0,0,0,0,0,0),(110908,'2025-07-26',351,0,0,0,1,0,0,0,0,0,0,0,0),(110907,'2025-07-26',348,0,0,0,1,0,0,0,0,0,0,0,0),(110906,'2025-07-26',347,0,0,0,1,0,0,0,0,0,0,0,0),(110905,'2025-07-26',346,0,0,0,1,0,0,0,0,0,0,0,0),(110904,'2025-07-26',345,0,0,0,1,0,0,0,0,0,0,0,0),(110903,'2025-07-26',344,0,0,0,1,0,0,0,0,0,0,0,0),(110902,'2025-07-26',341,0,0,0,1,0,0,0,0,0,0,0,0),(110901,'2025-07-26',340,0,0,0,1,0,0,0,0,0,0,0,0),(110900,'2025-07-26',339,0,0,0,1,0,0,0,0,0,0,0,0),(110899,'2025-07-26',338,0,0,0,1,0,0,0,0,0,0,0,0),(110898,'2025-07-26',337,0,0,0,1,0,0,0,0,0,0,0,0),(110897,'2025-07-26',336,0,0,0,1,0,0,0,0,0,0,0,0),(110896,'2025-07-26',335,0,0,0,1,0,0,0,0,0,0,0,0),(110895,'2025-07-26',334,0,0,0,1,0,0,0,0,0,0,0,0),(110894,'2025-07-26',333,0,0,0,1,0,0,0,0,0,0,0,0),(110893,'2025-07-26',332,0,0,0,1,0,0,0,0,0,0,0,0),(110892,'2025-07-26',331,0,0,0,1,0,0,0,0,0,0,0,0),(110891,'2025-07-26',330,0,0,0,1,0,0,0,0,0,0,0,0),(110890,'2025-07-26',329,0,0,0,1,0,0,0,0,0,0,0,0),(110889,'2025-07-26',328,0,0,0,1,0,0,0,0,0,0,0,0),(110888,'2025-07-26',327,0,0,0,1,0,0,0,0,0,0,0,0),(110887,'2025-07-26',326,0,0,0,1,0,0,0,0,0,0,0,0),(110886,'2025-07-26',324,0,0,0,1,0,0,0,0,0,0,0,0),(110885,'2025-07-26',323,0,0,0,1,0,0,0,0,0,0,0,0),(110884,'2025-07-26',321,0,0,0,1,0,0,0,0,0,0,0,0),(110883,'2025-07-26',320,0,0,0,1,0,0,0,0,0,0,0,0),(110882,'2025-07-26',319,0,0,0,1,0,0,0,0,0,0,0,0),(110881,'2025-07-26',317,0,0,0,1,0,0,0,0,0,0,0,0),(110880,'2025-07-26',316,0,0,0,1,0,0,0,0,0,0,0,0),(110879,'2025-07-26',314,0,0,0,1,0,0,0,0,0,0,0,0),(110878,'2025-07-26',313,0,0,0,1,0,0,0,0,0,0,0,0),(110877,'2025-07-26',311,0,0,0,1,0,0,0,0,0,0,0,0),(110876,'2025-07-26',310,0,0,0,1,0,0,0,0,0,0,0,0),(110875,'2025-07-26',309,0,0,0,1,0,0,0,0,0,0,0,0),(110874,'2025-07-26',308,0,0,0,1,0,0,0,0,0,0,0,0),(110873,'2025-07-26',307,0,0,0,1,0,0,0,0,0,0,0,0),(110872,'2025-07-26',304,0,0,0,1,0,0,0,0,0,0,0,0),(110871,'2025-07-26',303,0,0,0,1,0,0,0,0,0,0,0,0),(110870,'2025-07-26',302,0,0,0,1,0,0,0,0,0,0,0,0),(110869,'2025-07-26',301,0,0,0,1,0,0,0,0,0,0,0,0),(110868,'2025-07-26',300,0,0,0,1,0,0,0,0,0,0,0,0),(110867,'2025-07-26',299,0,0,0,1,0,0,0,0,0,0,0,0),(110866,'2025-07-26',298,0,0,0,1,0,0,0,0,0,0,0,0),(110865,'2025-07-26',297,0,0,0,1,0,0,0,0,0,0,0,0),(110864,'2025-07-26',296,0,0,0,1,0,0,0,0,0,0,0,0),(110863,'2025-07-26',295,0,0,0,1,0,0,0,0,0,0,0,0),(110862,'2025-07-26',294,0,0,0,1,0,0,0,0,0,0,0,0),(110861,'2025-07-26',292,0,0,0,1,0,0,0,0,0,0,0,0),(110860,'2025-07-26',291,0,0,0,1,0,0,0,0,0,0,0,0),(110859,'2025-07-26',290,0,0,0,1,0,0,0,0,0,0,0,0),(110858,'2025-07-26',289,0,0,0,1,0,0,0,0,0,0,0,0),(110857,'2025-07-26',288,0,0,0,1,0,0,0,0,0,0,0,0),(110856,'2025-07-26',285,0,0,0,1,0,0,0,0,0,0,0,0),(110032,'2025-07-10',446,0,0,0,1,0,0,0,0,0,0,0,0),(110031,'2025-07-10',445,0,0,0,1,0,0,0,0,0,0,0,0),(110030,'2025-07-10',443,0,0,0,1,0,0,0,0,0,0,0,0),(110029,'2025-07-10',441,0,0,0,1,0,0,0,0,0,0,0,0),(110028,'2025-07-10',440,0,0,0,1,0,0,0,0,0,0,0,0),(110027,'2025-07-10',439,0,0,0,1,0,0,0,0,0,0,0,0),(110026,'2025-07-10',438,0,0,0,1,0,0,0,0,0,0,0,0),(109676,'2025-07-07',137,0,0,0,0,0,0,5,0,0,0,0,0),(110025,'2025-07-10',435,0,0,0,1,0,0,0,0,0,0,0,0),(110024,'2025-07-10',434,0,0,0,1,0,0,0,0,0,0,0,0),(110023,'2025-07-10',433,0,0,0,1,0,0,0,0,0,0,0,0),(110022,'2025-07-10',432,0,0,0,1,0,0,0,0,0,0,0,0),(110021,'2025-07-10',431,0,0,0,1,0,0,0,0,0,0,0,0),(110020,'2025-07-10',430,0,0,0,1,0,0,0,0,0,0,0,0),(110019,'2025-07-10',428,0,0,0,1,0,0,0,0,0,0,0,0),(110018,'2025-07-10',426,0,0,0,1,0,0,0,0,0,0,0,0),(110017,'2025-07-10',423,0,0,0,1,0,0,0,0,0,0,0,0),(110016,'2025-07-10',422,0,0,0,1,0,0,0,0,0,0,0,0),(110015,'2025-07-10',420,0,0,0,1,0,0,0,0,0,0,0,0),(110014,'2025-07-10',417,0,0,0,1,0,0,0,0,0,0,0,0),(110013,'2025-07-10',414,0,0,0,1,0,0,0,0,0,0,0,0),(110012,'2025-07-10',413,0,0,0,1,0,0,0,0,0,0,0,0),(110011,'2025-07-10',412,0,0,0,1,0,0,0,0,0,0,0,0),(110010,'2025-07-10',410,0,0,0,1,0,0,0,0,0,0,0,0),(110009,'2025-07-10',408,0,0,0,1,0,0,0,0,0,0,0,0),(111334,'2025-07-29',137,0,0,0,0,0,0,2,0,0,0,0,0),(111331,'2025-07-28',441,0,0,0,0,0,1,0,0,0,0,0,0),(111330,'2025-07-28',401,0,0,0,0,1,0,0,0,0,0,0,0),(111329,'2025-07-28',388,1,0,1,0,0,0,0,0,0,0,0,0),(111328,'2025-07-28',317,0,0,0,0,0,1,0,0,0,0,0,0),(111327,'2025-07-28',300,2,16,0,0,0,0,0,0,0,0,0,0),(111312,'2025-07-27',446,0,0,0,1,0,0,0,0,0,0,0,0),(111311,'2025-07-27',445,0,0,0,1,0,0,0,0,0,0,0,0),(110008,'2025-07-10',407,0,0,0,1,0,0,0,0,0,0,0,0),(110007,'2025-07-10',405,0,0,0,1,0,0,0,0,0,0,0,0),(110006,'2025-07-10',403,0,0,0,1,0,0,0,0,0,0,0,0),(110005,'2025-07-10',401,0,0,0,1,0,0,0,0,0,0,0,0),(110004,'2025-07-10',400,0,0,0,1,0,0,0,0,0,0,0,0),(110003,'2025-07-10',396,0,0,0,1,0,0,0,0,0,0,0,0),(110002,'2025-07-10',395,0,0,0,1,0,0,0,0,0,0,0,0),(110001,'2025-07-10',393,0,0,0,1,0,0,0,0,0,0,0,0),(110000,'2025-07-10',392,0,0,0,1,0,0,0,0,0,0,0,0),(109999,'2025-07-10',391,0,0,0,1,0,0,0,0,0,0,0,0),(109998,'2025-07-10',390,0,0,0,1,0,0,0,0,0,0,0,0),(109997,'2025-07-10',388,0,0,0,1,0,0,0,0,0,0,0,0),(109996,'2025-07-10',387,0,0,0,1,0,0,0,0,0,0,0,0),(109995,'2025-07-10',385,0,0,0,1,0,0,0,0,0,0,0,0),(109994,'2025-07-10',384,0,0,0,1,0,0,0,0,0,0,0,0),(109993,'2025-07-10',382,0,0,0,1,0,0,0,0,0,0,0,0),(109992,'2025-07-10',381,0,0,0,1,0,0,0,0,0,0,0,0),(109991,'2025-07-10',378,0,0,0,1,0,0,0,0,0,0,0,0),(109990,'2025-07-10',377,0,0,0,1,0,0,0,0,0,0,0,0),(109989,'2025-07-10',376,0,0,0,1,0,0,0,0,0,0,0,0),(109988,'2025-07-10',375,0,0,0,1,0,0,0,0,0,0,0,0),(109987,'2025-07-10',372,0,0,0,1,0,0,0,0,0,0,0,0),(109986,'2025-07-10',371,0,0,0,1,0,0,0,0,0,0,0,0),(109985,'2025-07-10',367,0,0,0,1,0,0,0,0,0,0,0,0),(109984,'2025-07-10',365,0,0,0,1,0,0,0,0,0,0,0,0),(109983,'2025-07-10',364,0,0,0,1,0,0,0,0,0,0,0,0),(109982,'2025-07-10',363,0,0,0,1,0,0,0,0,0,0,0,0),(109981,'2025-07-10',361,0,0,0,1,0,0,0,0,0,0,0,0),(109980,'2025-07-10',360,0,0,0,1,0,0,0,0,0,0,0,0),(109979,'2025-07-10',359,0,0,0,1,0,0,0,0,0,0,0,0),(109978,'2025-07-10',357,0,0,0,1,0,0,0,0,0,0,0,0),(109977,'2025-07-10',353,0,0,0,1,0,0,0,0,0,0,0,0),(109976,'2025-07-10',352,0,0,0,1,0,0,0,0,0,0,0,0),(109975,'2025-07-10',351,0,0,0,1,0,0,0,0,0,0,0,0),(109974,'2025-07-10',348,0,0,0,1,0,0,0,0,0,0,0,0),(109973,'2025-07-10',347,0,0,0,1,0,0,0,0,0,0,0,0),(109972,'2025-07-10',346,0,0,0,1,0,0,0,0,0,0,0,0),(109971,'2025-07-10',345,0,0,0,1,0,0,0,0,0,0,0,0),(109970,'2025-07-10',344,0,0,0,1,0,0,0,0,0,0,0,0),(109969,'2025-07-10',341,0,0,0,1,0,0,0,0,0,0,0,0),(109968,'2025-07-10',340,0,0,0,1,0,0,0,0,0,0,0,0),(109967,'2025-07-10',339,0,0,0,1,0,0,0,0,0,0,0,0),(109966,'2025-07-10',338,0,0,0,1,0,0,0,0,0,0,0,0),(109965,'2025-07-10',337,0,0,0,1,0,0,0,0,0,0,0,0),(109964,'2025-07-10',336,0,0,0,1,0,0,0,0,0,0,0,0),(109963,'2025-07-10',335,0,0,0,1,0,0,0,0,0,0,0,0),(109962,'2025-07-10',334,0,0,0,1,0,0,0,0,0,0,0,0),(109961,'2025-07-10',333,0,0,0,1,0,0,0,0,0,0,0,0),(109960,'2025-07-10',332,0,0,0,1,0,0,0,0,0,0,0,0),(109959,'2025-07-10',331,0,0,0,1,0,0,0,0,0,0,0,0),(109958,'2025-07-10',330,0,0,0,1,0,0,0,0,0,0,0,0),(109957,'2025-07-10',329,0,0,0,1,0,0,0,0,0,0,0,0),(109956,'2025-07-10',328,0,0,0,1,0,0,0,0,0,0,0,0),(109955,'2025-07-10',327,0,0,0,1,0,0,0,0,0,0,0,0),(109954,'2025-07-10',326,0,0,0,1,0,0,0,0,0,0,0,0),(109953,'2025-07-10',324,0,0,0,1,0,0,0,0,0,0,0,0),(109952,'2025-07-10',323,0,0,0,1,0,0,0,0,0,0,0,0),(109951,'2025-07-10',321,0,0,0,1,0,0,0,0,0,0,0,0),(109950,'2025-07-10',320,0,0,0,1,0,0,0,0,0,0,0,0),(109949,'2025-07-10',319,0,0,0,1,0,0,0,0,0,0,0,0),(109948,'2025-07-10',317,0,0,0,1,0,1,0,0,0,0,0,0),(109947,'2025-07-10',316,0,0,0,1,0,0,0,0,0,0,0,0),(109946,'2025-07-10',314,0,0,0,1,0,0,0,0,0,0,0,0),(109945,'2025-07-10',313,0,0,0,1,0,0,0,0,0,0,0,0),(109944,'2025-07-10',311,0,0,0,1,1,0,0,0,0,0,0,0),(109943,'2025-07-10',310,0,0,0,1,0,0,0,0,0,0,0,0),(109942,'2025-07-10',309,0,0,0,1,0,0,0,0,0,0,0,0),(109941,'2025-07-10',308,0,0,0,1,0,0,0,0,0,0,0,0),(109940,'2025-07-10',307,0,0,0,1,0,0,0,0,0,0,0,0),(109939,'2025-07-10',304,0,0,0,1,0,0,0,0,0,0,0,0),(109938,'2025-07-10',303,0,0,0,1,0,0,0,0,0,0,0,0),(109937,'2025-07-10',302,0,0,0,1,0,0,0,0,0,0,0,0),(109936,'2025-07-10',301,0,0,0,1,0,0,0,0,0,0,0,0),(109935,'2025-07-10',300,0,0,0,1,0,0,0,0,0,0,0,0),(109934,'2025-07-10',299,0,0,0,1,0,0,0,0,0,0,0,0),(109933,'2025-07-10',298,0,0,0,1,0,0,0,0,0,0,0,0),(109932,'2025-07-10',297,0,0,0,1,0,0,0,0,0,0,0,0),(109931,'2025-07-10',296,0,0,0,1,0,0,0,0,0,0,0,0),(109930,'2025-07-10',295,0,0,0,1,0,0,0,0,0,0,0,0),(109929,'2025-07-10',294,0,0,0,1,0,0,0,0,0,0,0,0),(109928,'2025-07-10',292,0,0,0,1,0,0,0,0,0,0,0,0),(109927,'2025-07-10',291,0,0,0,1,0,0,0,0,0,0,0,0),(109926,'2025-07-10',290,0,0,0,1,0,0,0,0,0,0,0,0),(109684,'2025-07-09',233,0,0,0,0,0,0,1,0,0,0,0,0),(109683,'2025-07-09',188,0,0,0,0,0,0,1,0,0,0,0,0),(109682,'2025-07-09',89,0,0,0,0,0,0,0,0,0,0,0,1),(109681,'2025-07-09',75,0,0,0,0,0,0,2,0,0,0,0,0),(109680,'2025-07-09',9,0,0,0,0,0,0,3,0,0,0,0,0),(109679,'2025-07-09',5,0,0,0,0,0,0,1,0,0,0,0,0),(109678,'2025-07-09',2,0,0,0,0,0,0,1,0,0,0,0,0),(109677,'2025-07-09',1,0,0,0,0,0,0,1,0,0,0,0,0),(109704,'2025-07-10',24,0,0,0,1,0,0,0,0,0,0,0,0),(109703,'2025-07-10',23,0,0,0,1,0,0,0,0,0,0,0,0),(109702,'2025-07-10',22,0,0,0,1,0,0,0,0,0,0,0,0),(109701,'2025-07-10',21,0,0,0,1,0,0,0,0,0,0,0,0),(109700,'2025-07-10',20,0,0,0,1,0,0,0,0,0,0,0,0),(109699,'2025-07-10',19,0,0,0,1,0,0,0,0,0,0,0,0),(109698,'2025-07-10',18,0,0,0,1,0,0,0,0,0,0,0,0),(109697,'2025-07-10',17,0,0,0,1,0,0,2,0,0,0,0,0),(109696,'2025-07-10',16,0,0,0,1,0,0,0,0,0,0,0,0),(109695,'2025-07-10',14,0,0,0,1,0,0,0,0,0,0,0,0),(109694,'2025-07-10',13,0,0,0,1,0,0,0,0,0,0,0,0),(109693,'2025-07-10',12,0,0,0,1,0,0,0,0,0,0,0,0),(109692,'2025-07-10',11,0,0,0,1,0,0,0,0,0,0,0,0),(109691,'2025-07-10',10,0,0,0,1,0,0,0,0,0,0,0,0),(109690,'2025-07-10',9,0,0,0,1,1,0,0,0,0,0,0,0),(109689,'2025-07-10',8,0,0,0,1,1,0,0,0,0,0,0,0),(109688,'2025-07-10',5,0,0,0,1,1,0,0,0,0,0,0,0),(109687,'2025-07-10',3,0,0,0,1,0,0,0,0,0,0,0,0),(109686,'2025-07-10',2,0,0,0,1,1,0,0,0,0,0,0,0),(109685,'2025-07-10',1,0,0,0,1,1,0,0,0,0,0,0,0),(110855,'2025-07-26',281,0,0,0,1,0,1,0,0,0,0,0,0),(110854,'2025-07-26',280,0,0,0,1,0,0,0,0,0,0,0,0),(110853,'2025-07-26',278,0,0,0,1,0,0,0,0,0,0,0,0),(110852,'2025-07-26',275,0,0,0,1,0,0,0,0,0,0,0,0),(110851,'2025-07-26',274,0,0,0,1,0,0,0,0,0,0,0,0),(110365,'2025-07-24',67,0,0,0,1,0,1,0,0,0,0,0,0),(110364,'2025-07-24',66,0,0,0,1,0,0,0,0,0,0,0,0),(110363,'2025-07-24',65,0,0,0,1,0,0,0,0,0,0,0,0),(110362,'2025-07-24',64,0,0,0,1,0,0,0,0,0,0,0,0),(110361,'2025-07-24',63,0,0,0,1,0,0,0,0,0,0,0,0),(110595,'2025-07-24',420,0,0,0,1,0,0,0,0,0,0,0,0),(110594,'2025-07-24',417,0,0,0,1,0,0,0,0,0,0,0,0),(110593,'2025-07-24',414,0,0,0,1,0,0,0,0,0,0,0,0),(110592,'2025-07-24',413,0,0,0,1,0,0,0,0,0,0,0,0),(110603,'2025-07-24',433,0,0,0,1,0,0,0,0,0,0,0,0),(110602,'2025-07-24',432,0,0,0,1,0,0,0,0,0,0,0,0),(110601,'2025-07-24',431,0,0,0,1,0,0,0,0,0,0,0,0),(110600,'2025-07-24',430,0,0,0,1,0,0,0,0,0,0,0,0),(110300,'2025-07-18',407,0,0,0,1,0,0,0,0,0,0,0,0),(110299,'2025-07-18',405,0,0,0,1,0,0,0,0,0,0,0,0),(110298,'2025-07-18',403,0,0,0,1,0,0,0,0,0,0,0,0),(110297,'2025-07-18',401,0,0,0,1,0,0,0,0,0,0,0,0),(110296,'2025-07-18',400,0,0,0,1,0,0,0,0,0,0,0,0),(110295,'2025-07-18',396,0,0,0,1,0,0,0,0,0,0,0,0),(110294,'2025-07-18',395,0,0,0,1,0,0,0,0,0,0,0,0),(110293,'2025-07-18',393,0,0,0,1,0,0,0,0,0,0,0,0),(110292,'2025-07-18',392,0,0,0,1,0,0,0,0,0,0,0,0),(110291,'2025-07-18',391,0,0,0,1,0,0,0,0,0,0,0,0),(110290,'2025-07-18',390,0,0,0,1,0,0,0,0,0,0,0,0),(110289,'2025-07-18',388,0,0,0,1,0,0,0,0,0,0,0,0),(110288,'2025-07-18',387,0,0,0,1,0,0,0,0,0,0,0,0),(110287,'2025-07-18',385,0,0,0,1,0,0,0,0,0,0,0,0),(110286,'2025-07-18',384,0,0,0,1,0,0,0,0,0,0,0,0),(110285,'2025-07-18',382,0,0,0,1,0,0,0,0,0,0,0,0),(110284,'2025-07-18',381,0,0,0,1,0,0,0,0,0,0,0,0),(110283,'2025-07-18',378,0,0,0,1,0,0,0,0,0,0,0,0),(110282,'2025-07-18',377,0,0,0,1,0,0,0,0,0,0,0,0),(110281,'2025-07-18',376,0,0,0,1,0,0,0,0,0,0,0,0),(110280,'2025-07-18',375,0,0,0,1,0,0,0,0,0,0,0,0),(110279,'2025-07-18',372,0,0,0,1,0,0,0,0,0,0,0,0),(110278,'2025-07-18',371,0,0,0,1,0,0,0,0,0,0,0,0),(110277,'2025-07-18',367,0,0,0,1,0,0,0,0,0,0,0,0),(110276,'2025-07-18',365,0,0,0,1,0,0,0,0,0,0,0,0),(110275,'2025-07-18',364,0,0,0,1,0,0,0,0,0,0,0,0),(110274,'2025-07-18',363,0,0,0,1,0,0,0,0,0,0,0,0),(110273,'2025-07-18',361,0,0,0,1,0,0,0,0,0,0,0,0),(110272,'2025-07-18',360,0,0,0,1,0,0,0,0,0,0,0,0),(110271,'2025-07-18',359,0,0,0,1,0,0,0,0,0,0,0,0),(110270,'2025-07-18',357,0,0,0,1,0,0,0,0,0,0,0,0),(110269,'2025-07-18',353,0,0,0,1,0,0,0,0,0,0,0,0),(110268,'2025-07-18',352,0,0,0,1,0,0,0,0,0,0,0,0),(110267,'2025-07-18',351,0,0,0,1,0,0,0,0,0,0,0,0),(110266,'2025-07-18',348,0,0,0,1,0,0,0,0,0,0,0,0),(110265,'2025-07-18',347,0,0,0,1,0,0,0,0,0,0,0,0),(110264,'2025-07-18',346,0,0,0,1,0,0,0,0,0,0,0,0),(110263,'2025-07-18',345,0,0,0,1,0,0,0,0,0,0,0,0),(110262,'2025-07-18',344,0,0,0,1,0,0,0,0,0,0,0,0),(110261,'2025-07-18',341,0,0,0,1,0,0,0,0,0,0,0,0),(110260,'2025-07-18',340,0,0,0,1,0,0,0,0,0,0,0,0),(110259,'2025-07-18',339,0,0,0,1,0,0,0,0,0,0,0,0),(110258,'2025-07-18',338,0,0,0,1,0,0,0,0,0,0,0,0),(110257,'2025-07-18',337,0,0,0,1,0,0,0,0,0,0,0,0),(110256,'2025-07-18',336,0,0,0,1,0,0,0,0,0,0,0,0),(110255,'2025-07-18',335,0,0,0,1,0,0,0,0,0,0,0,0),(110254,'2025-07-18',334,0,0,0,1,0,0,0,0,0,0,0,0),(110253,'2025-07-18',333,0,0,0,1,0,0,0,0,0,0,0,0),(110252,'2025-07-18',332,0,0,0,1,0,0,0,0,0,0,0,0),(110251,'2025-07-18',331,0,0,0,1,0,0,0,0,0,0,0,0),(110250,'2025-07-18',330,0,0,0,1,0,0,0,0,0,0,0,0),(110249,'2025-07-18',329,0,0,0,1,0,0,0,0,0,0,0,0),(110248,'2025-07-18',328,0,0,0,1,0,0,0,0,0,0,0,0),(110247,'2025-07-18',327,1,0,0,1,0,0,0,0,0,0,0,0),(110246,'2025-07-18',326,0,0,0,1,0,0,0,0,0,0,0,0),(110245,'2025-07-18',324,0,0,0,1,0,0,0,0,0,0,0,0),(110244,'2025-07-18',323,0,0,0,1,0,0,0,0,0,0,0,0),(110243,'2025-07-18',321,0,0,0,1,0,0,0,0,0,0,0,0),(110242,'2025-07-18',320,0,0,0,1,1,0,0,0,0,0,0,0),(110241,'2025-07-18',319,0,0,0,1,0,0,0,0,0,0,0,0),(110240,'2025-07-18',317,0,0,0,1,0,0,0,0,0,0,0,0),(110239,'2025-07-18',316,0,0,0,1,0,0,0,0,0,0,0,0),(110238,'2025-07-18',314,0,0,0,1,0,0,0,0,0,0,0,0),(110237,'2025-07-18',313,0,0,0,1,0,0,0,0,0,0,0,0),(110236,'2025-07-18',310,0,0,0,1,1,0,0,0,0,0,0,0),(110235,'2025-07-18',309,0,0,0,1,0,0,0,0,0,0,0,0),(110234,'2025-07-18',308,0,0,0,1,0,0,0,0,0,0,0,0),(110233,'2025-07-18',307,0,0,0,1,0,0,0,0,0,0,0,0),(110232,'2025-07-18',304,0,0,0,1,0,0,0,0,0,0,0,0),(111213,'2025-07-27',298,0,0,0,1,0,0,0,0,0,0,0,0),(111212,'2025-07-27',297,0,0,0,1,1,0,0,0,0,0,0,0),(111211,'2025-07-27',296,0,0,0,1,0,0,0,0,0,0,0,0),(111210,'2025-07-27',295,0,0,0,1,0,0,0,0,0,0,0,0),(111209,'2025-07-27',294,0,0,0,1,0,0,0,0,0,0,0,0),(111208,'2025-07-27',292,0,0,0,1,0,0,0,0,0,0,0,0),(111207,'2025-07-27',291,0,0,0,1,0,0,0,0,0,0,0,0),(111206,'2025-07-27',290,0,0,0,1,0,0,0,0,0,0,0,0),(111205,'2025-07-27',289,0,0,0,1,0,0,0,0,0,0,0,0),(111204,'2025-07-27',288,0,0,0,1,0,0,0,0,0,0,0,0),(111203,'2025-07-27',285,0,0,0,1,0,0,0,0,0,0,0,0),(111202,'2025-07-27',283,0,0,0,0,0,1,0,0,0,0,0,0),(111201,'2025-07-27',281,0,0,0,1,0,0,0,0,0,0,0,0),(111200,'2025-07-27',280,0,0,0,1,0,0,0,0,0,0,0,0),(111199,'2025-07-27',278,0,0,0,1,0,0,0,0,0,0,0,0),(111198,'2025-07-27',275,0,0,0,1,0,0,0,0,0,0,0,0),(111197,'2025-07-27',274,0,0,0,1,0,0,0,0,0,0,0,0),(111196,'2025-07-27',273,0,0,0,1,0,0,0,0,0,0,0,0),(111195,'2025-07-27',271,0,0,0,1,0,0,0,0,0,0,0,0),(111194,'2025-07-27',269,0,0,0,1,0,0,0,0,0,0,0,0),(111193,'2025-07-27',267,0,0,0,1,0,0,0,0,0,0,0,0),(111192,'2025-07-27',266,0,0,0,1,0,0,0,0,0,0,0,0),(111191,'2025-07-27',265,0,0,0,1,0,0,0,0,0,0,0,0),(111190,'2025-07-27',264,0,0,0,1,0,0,0,0,0,0,0,0),(111189,'2025-07-27',263,0,0,0,1,0,1,0,0,0,0,0,0),(111188,'2025-07-27',262,0,0,0,1,0,0,0,0,0,0,0,0),(111187,'2025-07-27',261,0,0,0,1,0,0,0,0,0,0,0,0),(111186,'2025-07-27',260,0,0,0,1,0,0,0,0,0,0,0,0),(111185,'2025-07-27',258,0,0,0,1,0,0,0,0,0,0,0,0),(111184,'2025-07-27',257,0,0,0,1,0,0,0,0,0,0,0,0),(111183,'2025-07-27',256,0,0,0,1,0,1,0,0,0,0,0,0),(111182,'2025-07-27',255,0,0,0,1,0,0,0,0,0,0,0,0),(111181,'2025-07-27',254,0,0,0,1,0,0,0,0,0,0,0,0),(111180,'2025-07-27',253,0,0,0,1,0,0,0,0,0,0,0,0),(111179,'2025-07-27',251,0,0,0,1,0,0,0,0,0,0,0,0),(111178,'2025-07-27',250,0,0,0,1,0,0,0,0,0,0,0,0),(111177,'2025-07-27',249,0,0,0,1,0,0,0,0,0,0,0,0),(111176,'2025-07-27',247,0,0,0,1,0,0,0,0,0,0,0,0),(111175,'2025-07-27',246,0,0,0,1,0,0,0,0,0,0,0,0),(111174,'2025-07-27',245,0,0,0,1,0,0,0,0,0,0,0,0),(111173,'2025-07-27',243,0,0,0,1,0,0,0,0,0,0,0,0),(111172,'2025-07-27',242,0,0,0,1,0,0,0,0,0,0,0,0),(111171,'2025-07-27',241,0,0,0,1,0,0,0,0,0,0,0,0),(111170,'2025-07-27',239,0,0,0,1,0,0,0,0,0,0,0,0),(111169,'2025-07-27',238,0,0,0,1,0,0,0,0,0,0,0,0),(111168,'2025-07-27',236,0,0,0,1,0,0,0,0,0,0,0,0),(110231,'2025-07-18',303,0,0,0,1,0,0,0,0,0,0,0,0),(110230,'2025-07-18',302,0,0,0,1,0,0,0,0,0,0,0,0),(110229,'2025-07-18',301,0,0,0,1,0,0,0,0,0,0,0,0),(110228,'2025-07-18',300,1,0,0,1,0,0,0,0,0,0,0,0),(110227,'2025-07-18',299,0,0,0,1,0,0,0,0,0,0,0,0),(110226,'2025-07-18',298,0,0,0,1,0,1,0,0,0,0,0,0),(110225,'2025-07-18',297,0,0,0,0,1,0,0,0,0,0,0,0),(110224,'2025-07-18',296,0,0,0,1,0,0,0,0,0,0,0,0),(110223,'2025-07-18',295,0,0,0,1,0,0,0,0,0,0,0,0),(110817,'2025-07-26',231,0,0,0,1,0,0,0,0,0,0,0,0),(110816,'2025-07-26',228,0,0,0,1,0,0,0,0,0,0,0,0),(110815,'2025-07-26',227,0,0,0,1,0,0,0,0,0,0,0,0),(110814,'2025-07-26',226,0,0,0,1,0,0,0,0,0,0,0,0),(110813,'2025-07-26',225,0,0,0,1,0,0,0,0,0,0,0,0),(110812,'2025-07-26',224,0,0,0,1,0,0,0,0,0,0,0,0),(110811,'2025-07-26',222,0,0,0,1,0,0,0,0,0,0,0,0),(110810,'2025-07-26',221,0,0,0,1,0,0,0,0,0,0,0,0),(110809,'2025-07-26',220,0,0,0,1,0,0,0,0,0,0,0,0),(110808,'2025-07-26',218,0,0,0,0,0,0,1,0,0,0,0,0),(110807,'2025-07-26',217,0,0,0,1,0,0,0,0,0,0,0,0),(110806,'2025-07-26',214,0,0,0,1,0,0,0,0,0,0,0,0),(110805,'2025-07-26',213,0,0,0,1,0,0,0,0,0,0,0,0),(110804,'2025-07-26',212,0,0,0,1,0,0,0,0,0,0,0,0),(110803,'2025-07-26',211,0,0,0,1,0,0,0,0,0,0,0,0),(110802,'2025-07-26',210,0,0,0,1,0,0,0,0,0,0,0,0),(110801,'2025-07-26',209,0,0,0,1,0,0,0,0,0,0,0,0),(110800,'2025-07-26',208,0,0,0,1,0,0,0,0,0,0,0,0),(110799,'2025-07-26',207,0,0,0,1,0,0,0,0,0,0,0,0),(110798,'2025-07-26',206,0,0,0,1,0,0,0,0,0,0,0,0),(110797,'2025-07-26',205,0,0,0,1,0,0,0,0,0,0,0,0),(110796,'2025-07-26',204,0,0,0,1,0,0,0,0,0,0,0,0),(110795,'2025-07-26',203,0,0,0,1,0,0,0,0,0,0,0,0),(110794,'2025-07-26',201,0,0,0,1,0,0,0,0,0,0,0,0),(110793,'2025-07-26',200,0,0,0,1,0,0,0,0,0,0,0,0),(110792,'2025-07-26',197,0,0,0,1,0,0,0,0,0,0,0,0),(110791,'2025-07-26',196,0,0,0,1,0,0,0,0,0,0,0,0),(110790,'2025-07-26',195,0,0,0,1,0,0,0,0,0,0,0,0),(110789,'2025-07-26',194,0,0,0,1,0,0,0,0,0,0,0,0),(110788,'2025-07-26',193,0,0,0,1,0,0,0,0,0,0,0,0),(110787,'2025-07-26',192,0,0,0,1,0,0,0,0,0,0,0,0),(110786,'2025-07-26',191,0,0,0,1,0,0,0,0,0,0,0,0),(110040,'2025-07-14',51,0,0,0,0,1,0,0,0,0,0,0,0),(110039,'2025-07-14',49,0,0,0,0,0,1,0,0,0,0,0,0),(110038,'2025-07-14',45,0,0,0,0,1,0,0,0,0,0,0,0),(110037,'2025-07-14',2,0,0,0,0,0,1,0,0,0,0,0,0),(111167,'2025-07-27',234,0,0,0,1,0,0,0,0,0,0,0,0),(111166,'2025-07-27',233,0,0,0,1,0,0,1,0,0,0,0,0),(111165,'2025-07-27',232,0,0,0,1,0,0,0,0,0,0,0,0),(111164,'2025-07-27',231,0,0,0,1,0,0,0,0,0,0,0,0),(111163,'2025-07-27',228,0,0,0,1,0,0,0,0,0,0,0,0),(111162,'2025-07-27',227,0,0,0,1,0,0,0,0,0,0,0,0),(111161,'2025-07-27',226,0,0,0,1,0,0,0,0,0,0,0,0),(111160,'2025-07-27',225,0,0,0,1,0,0,0,0,0,0,0,0),(111159,'2025-07-27',224,0,0,0,1,0,0,0,0,0,0,0,0),(111158,'2025-07-27',222,0,0,0,1,0,0,0,0,0,0,0,0),(111157,'2025-07-27',221,0,0,0,1,0,0,0,0,0,0,0,0),(111156,'2025-07-27',220,0,0,0,1,0,0,0,0,0,0,0,0),(111155,'2025-07-27',217,0,0,0,1,0,0,0,0,0,0,0,0),(111154,'2025-07-27',214,0,0,0,1,0,0,0,0,0,0,0,0),(111153,'2025-07-27',213,0,0,0,1,0,0,0,0,0,0,0,0),(111152,'2025-07-27',212,0,0,0,1,0,1,0,0,0,0,0,0),(111151,'2025-07-27',211,0,0,0,1,0,0,0,0,0,0,0,0),(111150,'2025-07-27',210,0,0,0,1,0,0,0,0,0,0,0,0),(111149,'2025-07-27',209,0,0,0,1,0,0,0,0,0,0,0,0),(111148,'2025-07-27',208,0,0,0,1,0,0,0,0,0,0,0,0),(110785,'2025-07-26',190,0,0,0,1,0,0,0,0,0,0,0,0),(110784,'2025-07-26',189,0,0,0,1,0,0,0,0,0,0,0,0),(110783,'2025-07-26',188,0,0,0,1,0,0,0,0,0,0,0,0),(110782,'2025-07-26',187,0,0,0,1,0,0,0,0,0,0,0,0),(110781,'2025-07-26',186,0,0,0,1,0,0,0,0,0,0,0,0),(110780,'2025-07-26',185,0,0,0,1,0,0,0,0,0,0,0,0),(110779,'2025-07-26',184,0,0,0,1,0,0,0,0,0,0,0,0),(110778,'2025-07-26',183,0,0,0,1,0,0,0,0,0,0,0,0),(110777,'2025-07-26',182,0,0,0,1,0,0,0,0,0,0,0,0),(110776,'2025-07-26',181,0,0,0,1,0,0,0,0,0,0,0,0),(110775,'2025-07-26',180,0,0,0,1,0,0,0,0,0,0,0,0),(110774,'2025-07-26',179,0,0,0,1,0,0,0,0,0,0,0,0),(110773,'2025-07-26',178,0,0,0,1,0,0,0,0,0,0,0,0),(110772,'2025-07-26',176,0,0,0,1,0,0,0,0,0,0,0,0),(110771,'2025-07-26',175,0,0,0,1,0,0,0,0,0,0,0,0),(110770,'2025-07-26',174,0,0,0,1,0,0,0,0,0,0,0,0),(110769,'2025-07-26',173,0,0,0,1,0,0,0,0,0,0,0,0),(110768,'2025-07-26',172,0,0,0,1,0,0,0,0,0,0,0,0),(110767,'2025-07-26',171,0,0,0,1,0,0,0,0,0,0,0,0),(110766,'2025-07-26',170,0,0,0,1,0,0,0,0,0,0,0,0),(110765,'2025-07-26',169,0,0,0,1,0,0,0,0,0,0,0,0),(110764,'2025-07-26',168,0,0,0,1,0,0,0,0,0,0,0,0),(110763,'2025-07-26',167,0,0,0,1,0,0,0,0,0,0,0,0),(110762,'2025-07-26',166,0,0,0,1,0,0,0,0,0,0,0,0),(110761,'2025-07-26',164,0,0,0,1,0,0,0,0,0,0,0,0),(110760,'2025-07-26',163,0,0,0,1,0,0,0,0,0,0,0,0),(110759,'2025-07-26',162,0,0,0,1,0,0,0,0,0,0,0,0),(110758,'2025-07-26',161,0,0,0,1,0,0,0,0,0,0,0,0),(110757,'2025-07-26',160,0,0,0,1,0,0,0,0,0,0,0,0),(110756,'2025-07-26',159,0,0,0,1,0,0,0,0,0,0,0,0),(110755,'2025-07-26',158,0,0,0,1,0,0,0,0,0,0,0,0),(110754,'2025-07-26',157,0,0,0,1,0,0,0,0,0,0,0,0),(110753,'2025-07-26',155,0,0,0,1,0,0,0,0,0,0,0,0),(110752,'2025-07-26',154,0,0,0,1,0,0,0,0,0,0,0,0),(110751,'2025-07-26',152,0,0,0,1,0,0,0,0,0,0,0,0),(110750,'2025-07-26',151,0,0,0,1,0,0,0,0,0,0,0,0),(110749,'2025-07-26',150,0,0,0,1,0,0,0,0,0,0,0,0),(110748,'2025-07-26',148,0,0,0,1,0,0,0,0,0,0,0,0),(110747,'2025-07-26',147,0,0,0,1,0,0,0,0,0,0,0,0),(110746,'2025-07-26',146,0,0,0,1,0,0,0,0,0,0,0,0),(110745,'2025-07-26',145,0,0,0,1,0,0,0,0,0,0,0,0),(110744,'2025-07-26',144,0,0,0,1,0,0,0,0,0,0,0,0),(110743,'2025-07-26',143,0,0,0,1,0,0,0,0,0,0,0,0),(110742,'2025-07-26',142,0,0,0,1,0,0,0,0,0,0,0,0),(110741,'2025-07-26',141,0,0,0,1,0,0,0,0,0,0,0,0),(110740,'2025-07-26',140,0,0,0,1,0,0,0,0,0,0,0,0),(110739,'2025-07-26',139,0,0,0,1,0,0,0,0,0,0,0,0),(110738,'2025-07-26',136,0,0,0,1,0,0,0,0,0,0,0,0),(110737,'2025-07-26',134,0,0,0,1,0,0,0,0,0,0,0,0),(110736,'2025-07-26',133,0,0,0,1,0,0,0,0,0,0,0,0),(110735,'2025-07-26',132,0,0,0,1,0,0,0,0,0,0,0,0),(110734,'2025-07-26',129,0,0,0,1,0,0,0,0,0,0,0,0),(110733,'2025-07-26',128,0,0,0,1,0,0,0,0,0,0,0,0),(110732,'2025-07-26',127,0,0,0,1,0,0,0,0,0,0,0,0),(110731,'2025-07-26',126,0,0,0,1,0,0,0,0,0,0,0,0),(110730,'2025-07-26',125,0,0,0,1,0,0,0,0,0,0,0,0),(110729,'2025-07-26',124,0,0,0,1,0,0,0,0,0,0,0,0),(110728,'2025-07-26',123,0,0,0,1,0,0,0,0,0,0,0,0),(110727,'2025-07-26',122,0,0,0,1,0,0,0,0,0,0,0,0),(110726,'2025-07-26',121,0,0,0,1,0,0,0,0,0,0,0,0),(110725,'2025-07-26',120,0,0,0,1,0,1,0,0,0,0,0,0),(110724,'2025-07-26',119,0,0,0,1,0,0,0,0,0,0,0,0),(110723,'2025-07-26',118,0,0,0,1,0,0,0,0,0,0,0,0),(110722,'2025-07-26',117,0,0,0,1,0,0,0,0,0,0,0,0),(110721,'2025-07-26',116,0,0,0,1,0,0,0,0,0,0,0,0),(110720,'2025-07-26',115,0,0,0,1,0,0,0,0,0,0,0,0),(110719,'2025-07-26',114,0,0,0,1,0,0,0,0,0,0,0,0),(110718,'2025-07-26',113,0,0,0,1,0,0,0,0,0,0,0,0),(110717,'2025-07-26',112,0,0,0,1,0,0,0,0,0,0,0,0),(110716,'2025-07-26',111,0,0,0,1,0,0,0,0,0,0,0,0),(110715,'2025-07-26',110,0,0,0,1,0,0,0,0,0,0,0,0),(110714,'2025-07-26',109,0,0,0,1,0,0,0,0,0,0,0,0),(110713,'2025-07-26',106,0,0,0,1,0,0,0,0,0,0,0,0),(110712,'2025-07-26',105,0,0,0,1,0,0,0,0,0,0,0,0),(110711,'2025-07-26',104,0,0,0,1,0,0,0,0,0,0,0,0),(110710,'2025-07-26',103,0,0,0,1,0,0,0,0,0,0,0,0),(110709,'2025-07-26',102,0,0,0,1,0,0,0,0,0,0,0,0),(110708,'2025-07-26',101,0,0,0,1,0,0,0,0,0,0,0,0),(110707,'2025-07-26',100,0,0,0,1,0,0,0,0,0,0,0,0),(110706,'2025-07-26',98,0,0,0,1,0,0,0,0,0,0,0,0),(110705,'2025-07-26',97,0,0,0,1,0,0,0,0,0,0,0,0),(110704,'2025-07-26',96,0,0,0,1,0,0,0,0,0,0,0,0),(110703,'2025-07-26',95,0,0,0,1,0,0,0,0,0,0,0,0),(110702,'2025-07-26',94,0,0,0,1,0,0,0,0,0,0,0,0),(110701,'2025-07-26',93,0,0,0,1,0,0,0,0,0,0,0,0),(110700,'2025-07-26',91,0,0,0,1,0,0,0,0,0,0,0,0),(110699,'2025-07-26',90,0,0,0,1,0,0,0,0,0,0,0,0),(110698,'2025-07-26',89,0,0,0,1,0,0,1,0,0,0,0,0),(110697,'2025-07-26',87,0,0,0,1,0,0,0,0,0,0,0,0),(110696,'2025-07-26',86,0,0,0,1,0,0,0,0,0,0,0,0),(110695,'2025-07-26',85,0,0,0,1,0,0,0,0,0,0,0,0),(110694,'2025-07-26',84,0,0,0,1,0,0,0,0,0,0,0,0),(110693,'2025-07-26',83,0,0,0,1,0,0,0,0,0,0,0,0),(110692,'2025-07-26',82,0,0,0,1,0,0,0,0,0,0,0,0),(110691,'2025-07-26',81,0,0,0,1,0,0,0,0,0,0,0,0),(110690,'2025-07-26',80,0,0,0,1,0,0,0,0,0,0,0,0),(110689,'2025-07-26',79,0,0,0,1,0,0,0,0,0,0,0,0),(110688,'2025-07-26',78,0,0,0,1,0,0,0,0,0,0,0,0),(110687,'2025-07-26',77,0,0,0,1,0,0,0,0,0,0,0,0),(110686,'2025-07-26',75,0,0,0,1,0,0,0,0,0,0,0,0),(110685,'2025-07-26',74,0,0,0,1,0,0,0,0,0,0,0,0),(110684,'2025-07-26',73,0,0,0,1,0,0,0,0,0,0,0,0),(110683,'2025-07-26',71,0,0,0,1,0,0,0,0,0,0,0,0),(110682,'2025-07-26',70,0,0,0,1,0,0,0,0,0,0,0,0),(110681,'2025-07-26',69,0,0,0,1,0,0,0,0,0,0,0,0),(110680,'2025-07-26',68,0,0,0,1,0,0,0,0,0,0,0,0),(110679,'2025-07-26',67,0,0,0,1,0,0,0,0,0,0,0,0),(110678,'2025-07-26',66,0,0,0,1,0,0,0,0,0,0,0,0),(110677,'2025-07-26',65,0,0,0,1,0,0,0,0,0,0,0,0),(110676,'2025-07-26',64,0,0,0,1,0,0,0,0,0,0,0,0),(110675,'2025-07-26',63,0,0,0,1,0,0,0,0,0,0,0,0),(110674,'2025-07-26',61,0,0,0,1,0,0,0,0,0,0,0,0),(110673,'2025-07-26',60,0,0,0,1,0,0,0,0,0,0,0,0),(110672,'2025-07-26',59,0,0,0,1,0,0,0,0,0,0,0,0),(110671,'2025-07-26',58,0,0,0,1,0,0,0,0,0,0,0,0),(110670,'2025-07-26',57,0,0,0,1,0,0,0,0,0,0,0,0),(110669,'2025-07-26',56,0,0,0,1,0,0,0,0,0,0,0,0),(110668,'2025-07-26',55,0,0,0,1,0,0,0,0,0,0,0,0),(110667,'2025-07-26',54,1,0,0,1,0,0,0,0,0,0,0,0),(110666,'2025-07-26',53,0,0,1,0,0,0,0,0,0,0,0,0),(110665,'2025-07-26',52,0,0,0,1,0,0,0,0,0,0,0,0),(110664,'2025-07-26',51,0,0,0,1,0,0,2,0,0,0,0,0),(110663,'2025-07-26',50,0,0,0,1,0,0,0,0,0,0,0,0),(110662,'2025-07-26',49,0,0,0,1,0,0,1,0,0,0,0,0),(110661,'2025-07-26',48,0,0,0,1,0,0,0,0,0,0,0,0),(110660,'2025-07-26',47,0,0,0,1,0,0,0,0,0,0,0,0),(110659,'2025-07-26',46,0,0,0,1,0,0,0,0,0,0,0,0),(110658,'2025-07-26',45,0,0,0,1,0,0,0,0,0,0,0,0),(110657,'2025-07-26',44,0,0,0,1,0,0,0,0,0,0,0,0),(110656,'2025-07-26',43,0,0,0,1,0,0,0,0,0,0,0,0),(110655,'2025-07-26',42,0,0,0,1,0,0,0,0,0,0,0,0),(110654,'2025-07-26',41,0,0,0,1,0,0,0,0,0,0,0,0),(110653,'2025-07-26',40,0,0,0,1,0,0,0,0,0,0,0,0),(110652,'2025-07-26',38,0,0,0,1,0,0,0,0,0,0,0,0),(110651,'2025-07-26',37,0,0,0,1,0,0,0,0,0,0,0,0),(110650,'2025-07-26',36,0,0,0,1,0,0,0,0,0,0,0,0),(110649,'2025-07-26',35,0,0,0,1,0,0,0,0,0,0,0,0),(110648,'2025-07-26',34,0,0,0,1,0,0,0,0,0,0,0,0),(110647,'2025-07-26',33,0,0,0,1,0,0,0,0,0,0,0,0),(110646,'2025-07-26',32,0,0,0,1,0,0,0,0,0,0,0,0),(110645,'2025-07-26',31,0,0,0,1,0,0,0,0,0,0,0,0),(110644,'2025-07-26',30,0,0,0,1,0,0,0,0,0,0,0,0),(110643,'2025-07-26',29,0,0,0,1,0,0,0,0,0,0,0,0),(110642,'2025-07-26',28,0,0,0,1,0,0,0,0,0,0,0,0),(110641,'2025-07-26',27,0,0,0,1,0,0,0,0,0,0,0,0),(110640,'2025-07-26',26,0,0,0,1,0,0,0,0,0,0,0,0),(110639,'2025-07-26',25,0,0,0,1,0,0,0,0,0,0,0,0),(110638,'2025-07-26',24,0,0,0,1,0,0,0,0,0,0,0,0),(110637,'2025-07-26',23,0,0,0,1,0,0,0,0,0,0,0,0),(110636,'2025-07-26',22,0,0,0,1,0,0,0,0,0,0,0,0),(110635,'2025-07-26',21,0,0,0,1,0,0,0,0,0,0,0,0),(110634,'2025-07-26',20,0,0,0,1,0,0,0,0,0,0,0,0),(110633,'2025-07-26',19,0,0,0,1,0,0,0,0,0,0,0,0),(110632,'2025-07-26',18,0,0,0,1,0,0,0,0,0,0,0,0),(110631,'2025-07-26',17,0,0,0,1,1,0,0,0,0,0,0,0),(110630,'2025-07-26',16,0,0,0,1,0,0,0,0,0,0,0,0),(110629,'2025-07-26',14,0,0,0,1,0,0,0,0,0,0,0,0),(110628,'2025-07-26',13,0,0,0,1,0,0,0,0,0,0,0,0),(110627,'2025-07-26',12,0,0,0,1,0,0,0,0,0,0,0,0),(110626,'2025-07-26',11,0,0,0,1,0,0,0,0,0,0,0,0),(110625,'2025-07-26',10,0,0,0,1,0,0,0,0,0,0,0,0),(110624,'2025-07-26',9,0,0,0,1,0,0,0,0,0,0,0,0),(110623,'2025-07-26',8,0,0,0,1,0,0,0,0,0,0,0,0),(110622,'2025-07-26',5,0,0,0,1,0,0,0,0,0,0,0,0),(110621,'2025-07-26',3,0,0,0,1,0,0,0,0,0,0,0,0),(110620,'2025-07-26',2,0,0,0,1,0,0,0,0,0,0,0,0),(110619,'2025-07-26',1,0,0,0,1,0,0,0,0,0,0,0,0),(110618,'2025-07-25',388,1,0,1,0,0,0,0,0,0,0,0,0),(110617,'2025-07-25',304,0,0,0,0,1,0,0,0,0,0,0,0),(110616,'2025-07-25',301,0,0,0,0,0,1,0,0,0,0,0,0),(110615,'2025-07-25',280,0,0,0,0,0,1,0,0,0,0,0,0),(110614,'2025-07-25',141,0,0,0,0,1,0,0,0,0,0,0,0),(110613,'2025-07-25',10,0,0,0,1,0,0,0,0,0,0,0,0),(110612,'2025-07-24',446,0,0,0,1,0,0,0,0,0,0,0,0),(110611,'2025-07-24',445,0,0,0,1,0,0,0,0,0,0,0,0),(110610,'2025-07-24',443,0,0,0,1,0,0,0,0,0,0,0,0),(110609,'2025-07-24',441,0,0,0,1,0,0,0,0,0,0,0,0),(110608,'2025-07-24',440,0,0,0,1,0,0,0,0,0,0,0,0),(110830,'2025-07-26',249,0,0,0,1,0,0,0,0,0,0,0,0),(110829,'2025-07-26',247,0,0,0,1,0,0,0,0,0,0,0,0),(110828,'2025-07-26',246,0,0,0,1,0,0,0,0,0,0,0,0),(110827,'2025-07-26',245,0,0,0,1,0,0,0,0,0,0,0,0),(110826,'2025-07-26',243,0,0,0,1,0,0,0,0,0,0,0,0),(110825,'2025-07-26',242,0,0,0,1,0,0,0,0,0,0,0,0),(110824,'2025-07-26',241,0,0,0,1,0,0,0,0,0,0,0,0),(110823,'2025-07-26',239,0,0,0,1,0,0,0,0,0,0,0,0),(110822,'2025-07-26',238,0,0,0,1,0,0,0,0,0,0,0,0),(110821,'2025-07-26',236,0,0,0,1,0,0,0,0,0,0,0,0),(110820,'2025-07-26',234,0,0,0,1,0,0,0,0,0,0,0,0),(110819,'2025-07-26',233,0,0,0,1,0,0,0,0,0,0,0,0),(110818,'2025-07-26',232,0,0,0,1,0,0,0,0,0,0,0,0),(110607,'2025-07-24',439,0,0,0,1,0,0,0,0,0,0,0,0),(110606,'2025-07-24',438,0,0,0,1,0,0,0,0,0,0,0,0),(110605,'2025-07-24',435,0,0,0,1,0,0,0,0,0,0,0,0),(110604,'2025-07-24',434,0,0,0,1,0,0,0,0,0,0,0,0),(110324,'2025-07-18',446,0,0,0,1,0,0,0,0,0,0,0,0),(110323,'2025-07-18',445,0,0,0,1,0,0,0,0,0,0,0,0),(110322,'2025-07-18',443,0,0,0,1,0,0,0,0,0,0,0,0),(110321,'2025-07-18',441,0,0,0,1,0,0,0,0,0,0,0,0),(110320,'2025-07-18',440,0,0,0,1,0,0,0,0,0,0,0,0),(110319,'2025-07-18',439,0,0,0,1,0,0,0,0,0,0,0,0),(110318,'2025-07-18',438,0,0,0,1,0,0,0,0,0,0,0,0),(110317,'2025-07-18',435,0,0,0,1,0,0,0,0,0,0,0,0),(110316,'2025-07-18',434,0,0,0,1,0,0,0,0,0,0,0,0),(110315,'2025-07-18',433,0,0,0,1,0,0,0,0,0,0,0,0),(110314,'2025-07-18',432,0,0,0,1,0,0,0,0,0,0,0,0),(110313,'2025-07-18',431,0,0,0,1,0,0,0,0,0,0,0,0),(110312,'2025-07-18',430,0,0,0,1,0,0,0,0,0,0,0,0),(110311,'2025-07-18',428,0,0,0,1,0,0,0,0,0,0,0,0),(110310,'2025-07-18',426,0,0,0,1,0,0,0,0,0,0,0,0),(110309,'2025-07-18',423,0,0,0,1,0,0,0,0,0,0,0,0),(110308,'2025-07-18',422,0,0,0,1,0,0,0,0,0,0,0,0),(110307,'2025-07-18',420,0,0,0,1,0,0,0,0,0,0,0,0),(110306,'2025-07-18',417,0,0,0,1,0,0,0,0,0,0,0,0),(110305,'2025-07-18',414,0,0,0,1,0,0,0,0,0,0,0,0),(110304,'2025-07-18',413,0,0,0,1,1,0,0,0,0,0,0,0),(110303,'2025-07-18',412,0,0,0,1,0,0,0,0,0,0,0,0),(110302,'2025-07-18',410,0,0,0,1,0,0,0,0,0,0,0,0),(110301,'2025-07-18',408,0,0,0,1,0,0,0,0,0,0,0,0),(110591,'2025-07-24',412,0,0,0,1,0,0,0,0,0,0,0,0),(110590,'2025-07-24',410,0,0,0,1,0,0,0,0,0,0,0,0),(110589,'2025-07-24',408,0,0,0,1,0,0,0,0,0,0,0,0),(110588,'2025-07-24',407,0,0,0,1,0,0,0,0,0,0,0,0),(110587,'2025-07-24',405,0,0,0,1,0,1,0,0,0,0,0,0),(110586,'2025-07-24',403,0,0,0,1,0,0,0,0,0,0,0,0),(110585,'2025-07-24',401,0,0,0,1,1,0,0,0,0,0,0,0),(110584,'2025-07-24',400,0,0,0,1,0,0,0,0,0,0,0,0),(110583,'2025-07-24',396,0,0,0,1,0,0,0,0,0,0,0,0),(110582,'2025-07-24',395,0,0,0,1,0,0,0,0,0,0,0,0),(110581,'2025-07-24',393,0,0,0,1,0,0,0,0,0,0,0,0),(110580,'2025-07-24',392,0,0,0,1,0,0,0,0,0,0,0,0),(110579,'2025-07-24',391,0,0,0,1,0,0,0,0,0,0,0,0),(110578,'2025-07-24',390,0,0,0,1,0,0,0,0,0,0,0,0),(110577,'2025-07-24',388,0,0,0,1,0,0,0,0,0,0,0,0),(110576,'2025-07-24',387,0,0,0,1,0,0,0,0,0,0,0,0),(110575,'2025-07-24',385,0,0,0,1,0,0,0,0,0,0,0,0),(110574,'2025-07-24',384,0,0,0,1,0,0,0,0,0,0,0,0),(110573,'2025-07-24',382,0,0,0,1,0,0,0,0,0,0,0,0),(110572,'2025-07-24',381,0,0,0,1,0,0,0,0,0,0,0,0),(110571,'2025-07-24',378,0,0,0,1,0,0,0,0,0,0,0,0),(110570,'2025-07-24',377,0,0,0,1,0,0,0,0,0,0,0,0),(110569,'2025-07-24',376,0,0,0,1,0,0,0,0,0,0,0,0),(110568,'2025-07-24',375,0,0,0,1,0,0,0,0,0,0,0,0),(110567,'2025-07-24',372,0,0,0,1,0,0,0,0,0,0,0,0),(110566,'2025-07-24',371,0,0,0,1,0,0,0,0,0,0,0,0),(110565,'2025-07-24',367,0,0,0,1,0,0,0,0,0,0,0,0),(110564,'2025-07-24',365,0,0,0,1,0,0,0,0,0,0,0,0),(110563,'2025-07-24',364,0,0,0,1,0,0,0,0,0,0,0,0),(110562,'2025-07-24',363,0,0,0,1,0,0,0,0,0,0,0,0),(110561,'2025-07-24',361,0,0,0,1,0,0,0,0,0,0,0,0),(110560,'2025-07-24',360,0,0,0,1,0,0,0,0,0,0,0,0),(110559,'2025-07-24',359,0,0,0,1,0,0,0,0,0,0,0,0),(110558,'2025-07-24',357,0,0,0,1,0,0,0,0,0,0,0,0),(110557,'2025-07-24',353,0,0,0,1,0,0,0,0,0,0,0,0),(110556,'2025-07-24',352,0,0,0,1,0,0,0,0,0,0,0,0),(110555,'2025-07-24',351,0,0,0,1,0,0,0,0,0,0,0,0),(110554,'2025-07-24',348,0,0,0,1,0,0,0,0,0,0,0,0),(110553,'2025-07-24',347,0,0,0,1,0,0,0,0,0,0,0,0),(110552,'2025-07-24',346,0,0,0,1,0,0,0,0,0,0,0,0),(110551,'2025-07-24',345,0,0,0,1,0,0,0,0,0,0,0,0),(110550,'2025-07-24',344,0,0,0,1,0,0,0,0,0,0,0,0),(110549,'2025-07-24',341,0,0,0,1,0,0,0,0,0,0,0,0),(110548,'2025-07-24',340,0,0,0,1,0,0,0,0,0,0,0,0),(110547,'2025-07-24',339,0,0,0,1,0,0,0,0,0,0,0,0),(110546,'2025-07-24',338,0,0,0,1,0,0,0,0,0,0,0,0),(110545,'2025-07-24',337,0,0,0,1,0,0,0,0,0,0,0,0),(110544,'2025-07-24',336,0,0,0,1,0,0,0,0,0,0,0,0),(110543,'2025-07-24',335,0,0,0,1,0,0,0,0,0,0,0,0),(110599,'2025-07-24',428,0,0,0,1,1,0,0,0,0,0,0,0),(110598,'2025-07-24',426,0,0,0,1,0,0,0,0,0,0,0,0),(110597,'2025-07-24',423,0,0,0,1,0,0,0,0,0,0,0,0),(110596,'2025-07-24',422,0,0,0,1,0,0,0,0,0,0,0,0),(110336,'2025-07-20',123,0,0,0,0,0,0,1,0,0,0,0,0),(110335,'2025-07-20',109,0,0,0,0,0,0,2,0,0,0,0,0),(110334,'2025-07-20',81,0,0,0,0,0,0,2,0,0,0,0,0),(110333,'2025-07-19',388,1,0,1,0,0,0,0,0,0,0,0,0),(110332,'2025-07-19',344,0,0,0,1,0,0,0,0,0,0,0,0),(110331,'2025-07-19',308,0,0,0,0,0,1,0,0,0,0,0,0),(110330,'2025-07-19',301,0,0,0,0,1,0,0,0,0,0,0,0),(110329,'2025-07-19',162,0,0,0,0,0,1,0,0,0,0,0,0),(110328,'2025-07-19',90,0,0,0,0,0,0,1,0,0,0,0,0),(110327,'2025-07-19',51,0,0,0,0,0,0,3,0,0,0,0,0),(110326,'2025-07-19',49,0,0,0,0,0,0,1,0,0,0,0,0),(110325,'2025-07-19',22,0,0,0,0,1,0,0,0,0,0,0,0),(110542,'2025-07-24',334,0,0,0,1,0,0,0,0,0,0,0,0),(110541,'2025-07-24',333,0,0,0,1,0,0,0,0,0,0,0,0),(110540,'2025-07-24',332,0,0,0,1,0,0,0,0,0,0,0,0),(110539,'2025-07-24',331,0,0,0,1,0,0,0,0,0,0,0,0),(110538,'2025-07-24',330,0,0,0,1,0,0,0,0,0,0,0,0),(110537,'2025-07-24',329,0,0,0,1,0,0,0,0,0,0,0,0),(110536,'2025-07-24',328,0,0,0,1,0,0,0,0,0,0,0,0),(110535,'2025-07-24',327,0,0,1,0,0,0,0,0,0,0,0,0),(110534,'2025-07-24',326,0,0,0,1,0,0,0,0,0,0,0,0),(110533,'2025-07-24',324,0,0,0,1,0,0,0,0,0,0,0,0),(110532,'2025-07-24',323,0,0,0,1,0,0,0,0,0,0,0,0),(110531,'2025-07-24',321,0,0,0,1,0,0,0,0,0,0,0,0),(110530,'2025-07-24',320,0,0,0,1,0,0,0,0,0,0,0,0),(110529,'2025-07-24',319,0,0,0,1,0,0,0,0,0,0,0,0),(110528,'2025-07-24',317,0,0,0,1,0,0,0,0,0,0,0,0),(110527,'2025-07-24',316,0,0,0,1,0,0,0,0,0,0,0,0),(110526,'2025-07-24',314,0,0,0,1,0,0,0,0,0,0,0,0),(110525,'2025-07-24',313,0,0,0,1,0,0,0,0,0,0,0,0),(110524,'2025-07-24',310,0,0,0,1,0,0,0,0,0,0,0,0),(110523,'2025-07-24',309,0,0,0,1,0,0,0,0,0,0,0,0),(110522,'2025-07-24',308,0,0,0,1,0,0,0,0,0,0,0,0),(110521,'2025-07-24',307,0,0,0,1,0,0,0,0,0,0,0,0),(110520,'2025-07-24',304,0,0,0,1,0,0,0,0,0,0,0,0),(110519,'2025-07-24',303,0,0,0,1,0,0,0,0,0,0,0,0),(110518,'2025-07-24',302,0,0,0,1,0,0,0,0,0,0,0,0),(110517,'2025-07-24',301,0,0,0,1,0,0,0,0,0,0,0,0),(110516,'2025-07-24',300,1,0,0,1,0,0,0,0,0,0,0,0),(110515,'2025-07-24',299,0,0,0,1,0,0,0,0,0,0,0,0),(110514,'2025-07-24',298,0,0,0,1,0,0,0,0,0,0,0,0),(110513,'2025-07-24',296,0,0,0,1,0,0,0,0,0,0,0,0),(110512,'2025-07-24',295,0,0,0,1,0,0,0,0,0,0,0,0),(110511,'2025-07-24',294,0,0,0,1,0,0,0,0,0,0,0,0),(110510,'2025-07-24',292,0,0,0,1,0,0,0,0,0,0,0,0),(110509,'2025-07-24',291,0,0,0,1,0,0,0,0,0,0,0,0),(110508,'2025-07-24',290,0,0,0,1,0,0,0,0,0,0,0,0),(110507,'2025-07-24',289,0,0,0,1,0,0,0,0,0,0,0,0),(110506,'2025-07-24',288,0,0,0,1,0,0,0,0,0,0,0,0),(110505,'2025-07-24',285,0,0,0,1,0,0,0,0,0,0,0,0),(110504,'2025-07-24',281,0,0,0,1,0,0,0,0,0,0,0,0),(110503,'2025-07-24',280,0,0,0,1,0,0,0,0,0,0,0,0),(110502,'2025-07-24',278,0,0,0,1,0,0,0,0,0,0,0,0),(110501,'2025-07-24',275,0,0,0,1,0,0,0,0,0,0,0,0),(110500,'2025-07-24',274,0,0,0,1,0,0,0,0,0,0,0,0),(110499,'2025-07-24',273,0,0,0,1,0,0,0,0,0,0,0,0),(110498,'2025-07-24',271,0,0,0,1,0,0,0,0,0,0,0,0),(110497,'2025-07-24',269,0,0,0,1,0,0,0,0,0,0,0,0),(110496,'2025-07-24',268,0,0,0,1,0,0,0,0,0,0,0,0),(110495,'2025-07-24',266,0,0,0,1,0,0,0,0,0,0,0,0),(110494,'2025-07-24',265,0,0,0,1,0,0,0,0,0,0,0,0),(110493,'2025-07-24',264,0,0,0,1,0,0,0,0,0,0,0,0),(110492,'2025-07-24',263,0,0,0,1,1,0,0,0,0,0,0,0),(110491,'2025-07-24',262,0,0,0,1,0,0,0,0,0,0,0,0),(110490,'2025-07-24',261,0,0,0,1,0,0,0,0,0,0,0,0),(110489,'2025-07-24',260,0,0,0,1,0,0,0,0,0,0,0,0),(110488,'2025-07-24',258,0,0,0,1,0,0,0,0,0,0,0,0),(110487,'2025-07-24',257,0,0,0,1,0,0,0,0,0,0,0,0),(110486,'2025-07-24',256,0,0,0,1,0,0,0,0,0,0,0,0),(110485,'2025-07-24',255,0,0,0,1,0,0,0,0,0,0,0,0),(110484,'2025-07-24',254,0,0,0,1,0,0,0,0,0,0,0,0),(110483,'2025-07-24',253,0,0,0,1,0,0,0,0,0,0,0,0),(110482,'2025-07-24',251,0,0,0,1,0,0,0,0,0,0,0,0),(110481,'2025-07-24',250,0,0,0,1,0,0,0,0,0,0,0,0),(110480,'2025-07-24',249,0,0,0,1,0,0,0,0,0,0,0,0),(110479,'2025-07-24',247,0,0,0,1,0,0,0,0,0,0,0,0),(110478,'2025-07-24',246,0,0,0,1,0,0,0,0,0,0,0,0),(110477,'2025-07-24',245,0,0,0,1,0,0,0,0,0,0,0,0),(110476,'2025-07-24',243,0,0,0,1,0,0,0,0,0,0,0,0),(110475,'2025-07-24',242,0,0,0,1,0,0,0,0,0,0,0,0),(110474,'2025-07-24',241,0,0,0,1,0,0,0,0,0,0,0,0),(110473,'2025-07-24',239,0,0,0,1,0,0,0,0,0,0,0,0),(110472,'2025-07-24',238,0,0,0,1,0,0,0,0,0,0,0,0),(110471,'2025-07-24',236,0,0,0,1,0,0,0,0,0,0,0,0),(110470,'2025-07-24',234,0,0,0,1,0,0,0,0,0,0,0,0),(110469,'2025-07-24',233,0,0,0,1,0,1,0,0,0,0,0,0),(110468,'2025-07-24',232,0,0,0,1,0,0,0,0,0,0,0,0),(110467,'2025-07-24',231,0,0,0,1,0,0,0,0,0,0,0,0),(110466,'2025-07-24',230,0,0,0,0,0,1,0,0,0,0,0,0),(110465,'2025-07-24',228,0,0,0,1,0,0,0,0,0,0,0,0),(110464,'2025-07-24',227,0,0,0,1,0,0,0,0,0,0,0,0),(110463,'2025-07-24',226,0,0,0,1,0,1,0,0,0,0,0,0),(110462,'2025-07-24',225,0,0,0,1,0,0,0,0,0,0,0,0),(110461,'2025-07-24',224,0,0,0,1,0,0,0,0,0,0,0,0),(110460,'2025-07-24',222,0,0,0,1,0,0,0,0,0,0,0,0),(110459,'2025-07-24',221,0,0,0,1,0,0,0,0,0,0,0,0),(110458,'2025-07-24',220,0,0,0,1,0,0,0,0,0,0,0,0),(110457,'2025-07-24',218,0,0,0,0,1,0,0,0,0,0,0,0),(110456,'2025-07-24',217,0,0,0,1,0,0,0,0,0,0,0,0),(110455,'2025-07-24',214,0,0,0,1,0,0,0,0,0,0,0,0),(110454,'2025-07-24',213,0,0,0,1,0,0,0,0,0,0,0,0),(110453,'2025-07-24',212,0,0,0,1,0,0,0,0,0,0,0,0),(110452,'2025-07-24',211,0,0,0,1,0,0,0,0,0,0,0,0),(110451,'2025-07-24',210,0,0,0,1,0,0,0,0,0,0,0,0),(110450,'2025-07-24',209,0,0,0,1,0,0,0,0,0,0,0,0),(110449,'2025-07-24',208,0,0,0,1,0,0,0,0,0,0,0,0),(110448,'2025-07-24',207,0,0,0,1,0,0,0,0,0,0,0,0),(110447,'2025-07-24',206,0,0,0,1,0,0,0,0,0,0,0,0),(110446,'2025-07-24',205,0,0,0,1,0,0,0,0,0,0,0,0),(110445,'2025-07-24',204,0,0,0,1,0,0,0,0,0,0,0,0),(110444,'2025-07-24',203,0,0,0,1,0,0,0,0,0,0,0,0),(110443,'2025-07-24',201,0,0,0,1,0,0,0,0,0,0,0,0),(110442,'2025-07-24',200,0,0,0,1,0,0,0,0,0,0,0,0),(110441,'2025-07-24',197,0,0,0,1,0,0,0,0,0,0,0,0),(110440,'2025-07-24',196,0,0,0,1,0,0,0,0,0,0,0,0),(110439,'2025-07-24',195,0,0,0,1,0,0,0,0,0,0,0,0),(110438,'2025-07-24',194,0,0,0,1,0,0,0,0,0,0,0,0),(110437,'2025-07-24',193,0,0,0,1,0,0,0,0,0,0,0,0),(110436,'2025-07-24',192,0,0,0,1,0,0,0,0,0,0,0,0),(110435,'2025-07-24',191,0,0,0,1,0,0,0,0,0,0,0,0),(110434,'2025-07-24',190,0,0,0,1,0,0,0,0,0,0,0,0),(110433,'2025-07-24',189,0,0,0,1,0,0,0,0,0,0,0,0),(110432,'2025-07-24',188,0,0,0,1,0,0,1,0,0,0,0,0),(110431,'2025-07-24',187,0,0,0,1,0,0,0,0,0,0,0,0),(110430,'2025-07-24',186,0,0,0,1,0,0,0,0,0,0,0,0),(110429,'2025-07-24',185,0,0,0,1,0,0,0,0,0,0,0,0),(110428,'2025-07-24',184,0,0,0,1,0,0,0,0,0,0,0,0),(110427,'2025-07-24',183,0,0,0,1,0,0,0,0,0,0,0,0),(110426,'2025-07-24',182,0,0,0,1,0,0,0,0,0,0,0,0),(110425,'2025-07-24',181,0,0,0,1,0,0,0,0,0,0,0,0),(110424,'2025-07-24',180,0,0,0,1,0,0,0,0,0,0,0,0),(110423,'2025-07-24',179,0,0,0,1,0,0,0,0,0,0,0,0),(110422,'2025-07-24',176,0,0,0,1,0,0,0,0,0,0,0,0),(110421,'2025-07-24',175,0,0,0,1,0,0,0,0,0,0,0,0),(110420,'2025-07-24',174,0,0,0,1,0,0,0,0,0,0,0,0),(110419,'2025-07-24',173,0,0,0,1,0,0,0,0,0,0,0,0),(110418,'2025-07-24',172,0,0,0,1,0,0,0,0,0,0,0,0),(110417,'2025-07-24',170,0,0,0,1,0,0,0,0,0,0,0,0),(110416,'2025-07-24',168,0,0,0,1,0,0,0,0,0,0,0,0),(110415,'2025-07-24',167,0,0,0,1,0,0,0,0,0,0,0,0),(110414,'2025-07-24',166,0,0,0,1,0,0,0,0,0,0,0,0),(110413,'2025-07-24',164,1,0,0,1,0,0,0,0,0,0,0,0),(110412,'2025-07-24',163,0,0,0,1,0,0,0,0,0,0,0,0),(110411,'2025-07-24',161,0,0,0,1,0,0,0,0,0,0,0,0),(110410,'2025-07-24',160,0,0,0,1,0,0,0,0,0,0,0,0),(110409,'2025-07-24',159,0,0,0,1,0,0,0,0,0,0,0,0),(110408,'2025-07-24',158,0,0,0,1,0,0,0,0,0,0,0,0),(110407,'2025-07-24',157,0,0,0,1,0,0,0,0,0,0,0,0),(110406,'2025-07-24',154,0,0,0,1,0,0,0,0,0,0,0,0),(110405,'2025-07-24',152,0,0,0,1,0,0,0,0,0,0,0,0),(110404,'2025-07-24',151,0,0,0,1,0,0,0,0,0,0,0,0),(110403,'2025-07-24',148,0,0,0,1,0,0,0,0,0,0,0,0),(110402,'2025-07-24',147,0,0,0,1,0,0,0,0,0,0,0,0),(110401,'2025-07-24',146,0,0,0,1,0,0,0,0,0,0,0,0),(110400,'2025-07-24',145,0,0,0,1,0,0,0,0,0,0,0,0),(110399,'2025-07-24',144,0,0,0,1,0,0,0,0,0,0,0,0),(110398,'2025-07-24',143,0,0,0,1,0,0,0,0,0,0,0,0),(110397,'2025-07-24',141,0,0,0,1,0,0,0,0,0,0,0,0),(110396,'2025-07-24',140,0,0,0,1,1,0,0,0,0,0,0,0),(110395,'2025-07-24',137,0,0,0,0,0,1,0,0,0,0,0,0),(110394,'2025-07-24',136,0,0,0,1,0,0,0,0,0,0,0,0),(110393,'2025-07-24',132,0,0,0,1,1,0,0,0,0,0,0,0),(110392,'2025-07-24',128,0,0,0,1,0,0,0,0,0,0,0,0),(110391,'2025-07-24',127,0,0,0,1,0,0,0,0,0,0,0,0),(110390,'2025-07-24',126,0,0,0,1,0,0,0,0,0,0,0,0),(110389,'2025-07-24',124,0,0,0,1,0,0,0,0,0,0,0,0),(110388,'2025-07-24',123,0,0,0,1,0,0,0,0,0,0,0,0),(110387,'2025-07-24',121,0,0,0,1,0,0,0,0,0,0,0,0),(110386,'2025-07-24',115,0,0,0,1,0,0,0,0,0,0,0,0),(110385,'2025-07-24',114,0,0,0,1,0,0,0,0,0,0,0,0),(110384,'2025-07-24',113,0,0,0,1,0,0,0,0,0,0,0,0),(110383,'2025-07-24',112,0,0,0,1,0,0,0,0,0,0,0,0),(110382,'2025-07-24',110,0,0,0,1,0,0,0,0,0,0,0,0),(110381,'2025-07-24',103,0,0,0,1,0,0,0,0,0,0,0,0),(110380,'2025-07-24',98,0,0,0,1,0,0,0,0,0,0,0,0),(110379,'2025-07-24',97,0,0,0,1,0,0,0,0,0,0,0,0),(110378,'2025-07-24',96,0,0,0,1,0,0,0,0,0,0,0,0),(110377,'2025-07-24',94,0,0,0,1,0,0,0,0,0,0,0,0),(110376,'2025-07-24',91,0,0,0,1,0,0,0,0,0,0,0,0),(110375,'2025-07-24',90,0,0,0,1,0,0,0,0,0,0,0,0),(110374,'2025-07-24',89,0,0,0,0,1,0,0,0,0,0,0,0),(110373,'2025-07-24',87,0,0,0,1,0,0,0,0,0,0,0,0),(110372,'2025-07-24',81,0,0,0,0,1,0,0,0,0,0,0,0),(110371,'2025-07-24',79,0,0,0,1,0,0,0,0,0,0,0,0),(110370,'2025-07-24',78,0,0,0,0,1,0,1,0,0,0,0,0),(110369,'2025-07-24',75,0,0,0,0,0,0,1,0,0,0,0,0),(110368,'2025-07-24',70,0,0,0,1,0,0,0,0,0,0,0,0),(110367,'2025-07-24',69,0,0,0,1,0,0,0,0,0,0,0,0),(110366,'2025-07-24',68,0,0,0,1,0,0,0,0,0,0,0,0),(110340,'2025-07-21',233,0,0,0,0,0,0,1,0,0,0,0,0),(110339,'2025-07-21',137,0,0,0,0,0,0,1,0,0,0,0,0),(110338,'2025-07-21',2,0,0,0,0,0,0,2,0,0,0,0,0),(110337,'2025-07-21',1,0,0,0,0,0,0,1,0,0,0,0,0),(110360,'2025-07-24',61,0,0,0,1,0,0,0,0,0,0,0,0),(110359,'2025-07-24',58,0,0,0,1,0,0,0,0,0,0,0,0),(110358,'2025-07-24',54,1,0,0,1,0,0,0,0,0,0,0,0),(110357,'2025-07-24',52,0,0,0,1,0,0,0,0,0,0,0,0),(110356,'2025-07-24',42,0,0,0,1,0,0,0,0,0,0,0,0),(110355,'2025-07-24',37,0,0,0,1,0,0,0,0,0,0,0,0),(110354,'2025-07-24',35,0,0,0,0,1,0,0,0,0,0,0,0),(110353,'2025-07-24',34,0,0,0,0,0,1,0,0,0,0,0,0),(110352,'2025-07-24',32,0,0,0,1,0,0,0,0,0,0,0,0),(110343,'2025-07-22',17,0,0,0,0,0,0,1,0,0,0,0,0),(110342,'2025-07-22',9,0,0,0,0,0,0,3,0,0,0,0,0),(110341,'2025-07-22',5,0,0,0,0,0,0,1,0,0,0,0,0),(110351,'2025-07-24',24,0,0,0,1,0,0,0,0,0,0,0,0),(110350,'2025-07-24',22,0,0,0,0,0,0,2,0,0,0,0,0),(110349,'2025-07-24',19,0,0,0,1,0,0,0,0,0,0,0,0),(110348,'2025-07-24',18,0,0,0,0,0,1,0,0,0,0,0,0),(110347,'2025-07-24',13,0,0,0,1,0,0,0,0,0,0,0,0),(110346,'2025-07-24',11,0,0,0,0,0,1,0,0,0,0,0,0),(110345,'2025-07-24',10,0,0,0,1,0,0,0,0,0,0,0,0),(110344,'2025-07-24',9,0,0,0,0,0,1,0,0,0,0,0,0),(111147,'2025-07-27',207,0,0,0,1,0,0,0,0,0,0,0,0),(111146,'2025-07-27',206,0,0,0,1,0,0,0,0,0,0,0,0),(111145,'2025-07-27',205,0,0,0,1,0,0,0,0,0,0,0,0),(111144,'2025-07-27',204,0,0,0,1,0,0,0,0,0,0,0,0),(111143,'2025-07-27',203,0,0,0,1,0,0,0,0,0,0,0,0),(111142,'2025-07-27',201,0,0,0,1,0,0,0,0,0,0,0,0),(111141,'2025-07-27',200,0,0,0,1,0,0,0,0,0,0,0,0),(111140,'2025-07-27',197,0,0,0,1,0,0,0,0,0,0,0,0),(111139,'2025-07-27',196,0,0,0,1,0,0,0,0,0,0,0,0),(111138,'2025-07-27',195,0,0,0,1,0,0,0,0,0,0,0,0),(111137,'2025-07-27',194,0,0,0,1,0,0,0,0,0,0,0,0),(111136,'2025-07-27',193,0,0,0,1,0,0,0,0,0,0,0,0),(111135,'2025-07-27',192,0,0,0,1,0,1,0,0,0,0,0,0),(111134,'2025-07-27',191,0,0,0,1,0,0,0,0,0,0,0,0),(111133,'2025-07-27',190,0,0,0,1,0,0,0,0,0,0,0,0),(111132,'2025-07-27',189,0,0,0,1,0,0,0,0,0,0,0,0),(111131,'2025-07-27',188,0,0,0,1,0,0,0,0,0,0,0,0),(111130,'2025-07-27',187,0,0,0,1,0,0,0,0,0,0,0,0),(111129,'2025-07-27',186,0,0,0,1,0,0,0,0,0,0,0,0),(111128,'2025-07-27',185,0,0,0,1,0,0,0,0,0,0,0,0),(111127,'2025-07-27',184,0,0,0,1,0,0,0,0,0,0,0,0),(111126,'2025-07-27',183,0,0,0,1,0,0,0,0,0,0,0,0),(111125,'2025-07-27',182,0,0,0,1,0,0,0,0,0,0,0,0),(111124,'2025-07-27',181,0,0,0,1,0,1,0,0,0,0,0,0),(111123,'2025-07-27',180,0,0,0,1,0,0,0,0,0,0,0,0),(111122,'2025-07-27',179,0,0,0,1,0,0,0,0,0,0,0,0),(111121,'2025-07-27',178,0,0,0,1,0,0,0,0,0,0,0,0),(111120,'2025-07-27',176,0,0,0,1,1,1,0,0,0,0,0,0),(111119,'2025-07-27',175,0,0,0,1,0,0,0,0,0,0,0,0),(111118,'2025-07-27',174,0,0,0,1,0,0,0,0,0,0,0,0),(111117,'2025-07-27',173,0,0,0,1,0,0,0,0,0,0,0,0),(111116,'2025-07-27',172,0,0,0,1,0,0,0,0,0,0,0,0),(111115,'2025-07-27',171,0,0,0,1,0,0,0,0,0,0,0,0),(111114,'2025-07-27',170,0,0,0,1,0,0,0,0,0,0,0,0),(111113,'2025-07-27',169,0,0,0,1,0,0,0,0,0,0,0,0),(111112,'2025-07-27',168,0,0,0,1,0,0,0,0,0,0,0,0),(111111,'2025-07-27',167,0,0,0,1,0,0,0,0,0,0,0,0),(111110,'2025-07-27',166,0,0,0,1,0,0,0,0,0,0,0,0),(111109,'2025-07-27',164,0,0,0,1,0,0,0,0,0,0,0,0),(111108,'2025-07-27',163,0,0,0,1,0,0,0,0,0,0,0,0),(111107,'2025-07-27',162,0,0,0,1,1,0,0,0,0,0,0,0),(111106,'2025-07-27',161,0,0,0,1,1,0,0,0,0,0,0,0),(111105,'2025-07-27',160,0,0,0,1,0,0,0,0,0,0,0,0),(111104,'2025-07-27',159,0,0,0,1,0,0,0,0,0,0,0,0),(111103,'2025-07-27',158,0,0,0,1,0,0,0,0,0,0,0,0),(111102,'2025-07-27',157,0,0,0,1,0,0,0,0,0,0,0,0),(111101,'2025-07-27',155,0,0,0,1,0,0,0,0,0,0,0,0),(111100,'2025-07-27',154,0,0,0,1,0,0,0,0,0,0,0,0),(111099,'2025-07-27',152,0,0,0,1,0,0,0,0,0,0,0,0),(111098,'2025-07-27',151,0,0,0,1,0,1,0,0,0,0,0,0),(111097,'2025-07-27',150,0,0,0,1,0,1,0,0,0,0,0,0),(111096,'2025-07-27',148,0,0,0,1,0,0,0,0,0,0,0,0),(111095,'2025-07-27',147,0,0,0,1,0,0,0,0,0,0,0,0),(111094,'2025-07-27',146,0,0,0,1,0,0,0,0,0,0,0,0),(111093,'2025-07-27',145,0,0,0,1,0,0,0,0,0,0,0,0),(111092,'2025-07-27',144,0,0,0,1,0,0,0,0,0,0,0,0),(111091,'2025-07-27',143,0,0,0,1,0,0,0,0,0,0,0,0),(111090,'2025-07-27',142,0,0,0,1,0,0,0,0,0,0,0,0),(111089,'2025-07-27',141,0,0,0,1,0,1,0,0,0,0,0,0),(111088,'2025-07-27',140,0,0,0,1,0,1,0,0,0,0,0,0),(111087,'2025-07-27',139,0,0,0,1,0,1,0,0,0,0,0,0),(111086,'2025-07-27',137,0,0,0,0,1,0,0,0,0,0,0,0),(111085,'2025-07-27',136,0,0,0,1,0,0,0,0,0,0,0,0),(111084,'2025-07-27',134,0,0,0,1,0,0,0,0,0,0,0,0),(111083,'2025-07-27',133,0,0,0,1,0,0,0,0,0,0,0,0),(111082,'2025-07-27',132,0,0,0,1,0,0,0,0,0,0,0,0),(111081,'2025-07-27',129,0,0,0,1,0,0,0,0,0,0,0,0),(111080,'2025-07-27',128,0,0,0,1,0,0,0,0,0,0,0,0),(111079,'2025-07-27',127,0,0,0,1,0,0,0,0,0,0,0,0),(111078,'2025-07-27',126,0,0,0,1,0,0,0,0,0,0,0,0),(111077,'2025-07-27',125,0,0,0,1,0,0,0,0,0,0,0,0),(111076,'2025-07-27',124,0,0,0,1,0,0,0,0,0,0,0,0),(111075,'2025-07-27',123,0,0,0,1,1,1,1,0,0,0,0,0),(111074,'2025-07-27',122,0,0,0,1,0,0,0,0,0,0,0,0),(111073,'2025-07-27',121,0,0,0,1,0,0,0,0,0,0,0,0),(111072,'2025-07-27',120,0,0,0,1,0,0,0,0,0,0,0,0),(111071,'2025-07-27',119,0,0,0,1,0,0,0,0,0,0,0,0),(111070,'2025-07-27',118,0,0,0,1,0,0,0,0,0,0,0,0),(111326,'2025-07-28',264,0,0,0,1,0,0,0,0,0,0,0,0),(111325,'2025-07-28',218,0,0,0,0,1,0,0,0,0,0,0,0),(111324,'2025-07-28',140,0,0,0,0,1,0,0,0,0,0,0,0),(111323,'2025-07-28',132,0,0,0,0,1,0,0,0,0,0,0,0),(111322,'2025-07-28',128,0,0,0,1,0,0,0,0,0,0,0,0),(111321,'2025-07-28',89,0,0,0,0,1,0,0,0,0,0,0,0),(111320,'2025-07-28',81,0,0,0,0,0,1,0,0,0,0,0,0),(111319,'2025-07-28',78,0,0,0,0,1,1,0,0,0,0,0,0),(111318,'2025-07-28',75,0,0,0,0,0,1,0,0,0,0,0,0),(111317,'2025-07-28',40,0,0,0,0,0,1,0,0,0,0,0,0),(111316,'2025-07-28',36,0,0,0,0,0,1,0,0,0,0,0,0),(111315,'2025-07-28',35,0,0,0,0,1,0,0,0,0,0,0,0),(111314,'2025-07-28',27,0,0,0,0,0,1,0,0,0,0,0,0),(111313,'2025-07-28',22,0,0,0,0,1,0,0,0,0,0,0,0),(111333,'2025-07-29',2,0,0,0,0,0,0,1,0,0,0,0,0),(111332,'2025-07-29',1,0,0,0,0,0,0,2,0,0,0,0,0),(111590,'2025-08-07',422,0,0,0,1,0,0,0,0,0,0,0,0),(111343,'2025-08-03',188,0,0,0,0,0,0,1,0,0,0,0,0),(111342,'2025-08-03',78,0,0,0,0,0,0,1,0,0,0,0,0),(111341,'2025-08-03',51,0,0,0,0,0,0,1,0,0,0,0,0),(111340,'2025-08-03',49,0,0,0,0,0,0,1,0,0,0,0,0),(111339,'2025-08-03',22,0,0,0,0,0,0,1,0,0,0,0,0),(111589,'2025-08-07',420,0,0,0,1,0,0,0,0,0,0,0,0),(111588,'2025-08-07',417,0,0,0,1,0,0,0,0,0,0,0,0),(111587,'2025-08-07',414,0,0,0,1,0,0,0,0,0,0,0,0),(111586,'2025-08-07',413,0,0,0,1,0,0,0,0,0,0,0,0),(111582,'2025-08-07',407,0,0,0,1,0,0,0,0,0,0,0,0),(111581,'2025-08-07',405,0,0,0,1,0,0,0,0,0,0,0,0),(111580,'2025-08-07',403,0,0,0,1,0,0,0,0,0,0,0,0),(111579,'2025-08-07',401,0,0,0,1,0,0,0,0,0,0,0,0),(111578,'2025-08-07',400,0,0,0,1,0,0,0,0,0,0,0,0),(111577,'2025-08-07',396,0,0,0,1,0,0,0,0,0,0,0,0),(111576,'2025-08-07',395,0,0,0,1,0,0,0,0,0,0,0,0),(111575,'2025-08-07',393,0,0,0,1,0,0,0,0,0,0,0,0),(111574,'2025-08-07',392,0,0,0,1,0,0,0,0,0,0,0,0),(111573,'2025-08-07',391,0,0,0,1,0,0,0,0,0,0,0,0),(111572,'2025-08-07',390,0,0,0,1,0,0,0,0,0,0,0,0),(111571,'2025-08-07',388,0,0,0,1,0,0,0,0,0,0,0,0),(111570,'2025-08-07',387,0,0,0,1,0,0,0,0,0,0,0,0),(111569,'2025-08-07',385,0,0,0,1,0,0,0,0,0,0,0,0),(111568,'2025-08-07',384,0,0,0,1,0,0,0,0,0,0,0,0),(111567,'2025-08-07',382,0,0,0,1,0,0,0,0,0,0,0,0),(111566,'2025-08-07',381,0,0,0,1,0,0,0,0,0,0,0,0),(111565,'2025-08-07',378,0,0,0,1,0,0,0,0,0,0,0,0),(111564,'2025-08-07',377,0,0,0,1,0,0,0,0,0,0,0,0),(111563,'2025-08-07',376,0,0,0,1,0,0,0,0,0,0,0,0),(111562,'2025-08-07',375,0,0,0,1,0,0,0,0,0,0,0,0),(111561,'2025-08-07',372,0,0,0,1,0,0,0,0,0,0,0,0),(111560,'2025-08-07',371,0,0,0,1,0,0,0,0,0,0,0,0),(111559,'2025-08-07',367,0,0,0,1,0,0,0,0,0,0,0,0),(111558,'2025-08-07',365,0,0,0,1,0,0,0,0,0,0,0,0),(111557,'2025-08-07',364,0,0,0,1,0,0,0,0,0,0,0,0),(111556,'2025-08-07',363,0,0,0,1,0,0,0,0,0,0,0,0),(111555,'2025-08-07',361,0,0,0,1,0,0,0,0,0,0,0,0),(111554,'2025-08-07',360,0,0,0,1,0,0,0,0,0,0,0,0),(111553,'2025-08-07',359,0,0,0,1,0,0,0,0,0,0,0,0),(111552,'2025-08-07',357,0,0,0,1,0,0,0,0,0,0,0,0),(111551,'2025-08-07',353,0,0,0,1,0,0,0,0,0,0,0,0),(111550,'2025-08-07',352,0,0,0,1,0,0,0,0,0,0,0,0),(111549,'2025-08-07',351,0,0,0,1,0,0,0,0,0,0,0,0),(111548,'2025-08-07',348,0,0,0,1,0,0,0,0,0,0,0,0),(111547,'2025-08-07',347,0,0,0,1,0,0,0,0,0,0,0,0),(111546,'2025-08-07',346,0,0,0,1,0,0,0,0,0,0,0,0),(111545,'2025-08-07',345,0,0,0,1,0,0,0,0,0,0,0,0),(111544,'2025-08-07',344,0,0,0,1,0,0,0,0,0,0,0,0),(111543,'2025-08-07',341,0,0,0,1,0,0,0,0,0,0,0,0),(111542,'2025-08-07',340,0,0,0,1,0,0,0,0,0,0,0,0),(111541,'2025-08-07',339,0,0,0,1,0,0,0,0,0,0,0,0),(111540,'2025-08-07',338,0,0,0,1,0,0,0,0,0,0,0,0),(111539,'2025-08-07',337,0,0,0,1,0,0,0,0,0,0,0,0),(111538,'2025-08-07',336,0,0,0,1,0,0,0,0,0,0,0,0),(111537,'2025-08-07',335,0,0,0,1,0,0,0,0,0,0,0,0),(111536,'2025-08-07',334,0,0,0,1,0,0,0,0,0,0,0,0),(111535,'2025-08-07',333,0,0,0,1,0,0,0,0,0,0,0,0),(111534,'2025-08-07',332,0,0,0,1,0,0,0,0,0,0,0,0),(111533,'2025-08-07',331,0,0,0,1,0,0,0,0,0,0,0,0),(111532,'2025-08-07',330,0,0,0,1,0,0,0,0,0,0,0,0),(111531,'2025-08-07',329,0,0,0,1,0,0,0,0,0,0,0,0),(111530,'2025-08-07',328,0,0,0,1,0,0,0,0,0,0,0,0),(111529,'2025-08-07',327,0,0,1,0,0,0,0,0,0,0,0,0),(111528,'2025-08-07',326,0,0,0,1,0,0,0,0,0,0,0,0),(111527,'2025-08-07',324,0,0,0,1,0,0,0,0,0,0,0,0),(111526,'2025-08-07',323,0,0,0,1,0,0,0,0,0,0,0,0),(111525,'2025-08-07',321,0,0,0,1,0,0,0,0,0,0,0,0),(111524,'2025-08-07',320,0,0,0,1,0,0,0,0,0,0,0,0),(111523,'2025-08-07',319,0,0,0,1,0,0,0,0,0,0,0,0),(111522,'2025-08-07',317,0,0,0,1,0,0,0,0,0,0,0,0),(111521,'2025-08-07',316,0,0,0,1,0,0,0,0,0,0,0,0),(111520,'2025-08-07',314,0,0,0,1,0,0,0,0,0,0,0,0),(111519,'2025-08-07',313,0,0,0,1,0,0,0,0,0,0,0,0),(111518,'2025-08-07',310,0,0,0,1,0,0,0,0,0,0,0,0),(111517,'2025-08-07',309,0,0,0,1,0,0,0,0,0,0,0,0),(111516,'2025-08-07',308,0,0,0,1,0,0,0,0,0,0,0,0),(111515,'2025-08-07',307,0,0,0,1,0,0,0,0,0,0,0,0),(111514,'2025-08-07',304,0,0,0,1,0,0,0,0,0,0,0,0),(111513,'2025-08-07',303,0,0,0,1,0,0,0,0,0,0,0,0),(111512,'2025-08-07',302,0,0,0,1,0,0,0,0,0,0,0,0),(111511,'2025-08-07',301,0,0,0,1,0,0,0,0,0,0,0,0),(111510,'2025-08-07',300,0,0,0,1,0,0,0,0,0,0,0,0),(111509,'2025-08-07',299,0,0,0,1,0,0,0,0,0,0,0,0),(111508,'2025-08-07',298,0,0,0,1,0,0,0,0,0,0,0,0),(111507,'2025-08-07',296,0,0,0,1,0,0,0,0,0,0,0,0),(111506,'2025-08-07',295,0,0,0,1,0,0,0,0,0,0,0,0),(111505,'2025-08-07',294,0,0,0,1,0,0,0,0,0,0,0,0),(111504,'2025-08-07',292,0,0,0,1,0,0,0,0,0,0,0,0),(111503,'2025-08-07',291,0,0,0,1,0,0,0,0,0,0,0,0),(111502,'2025-08-07',290,0,0,0,1,0,0,0,0,0,0,0,0),(111501,'2025-08-07',289,0,0,0,1,0,0,0,0,0,0,0,0),(111500,'2025-08-07',288,0,0,0,1,0,0,0,0,0,0,0,0),(111499,'2025-08-07',285,0,0,0,1,0,0,0,0,0,0,0,0),(111498,'2025-08-07',281,0,0,0,1,0,0,0,0,0,0,0,0),(111497,'2025-08-07',280,0,0,0,1,0,0,0,0,0,0,0,0),(111496,'2025-08-07',278,0,0,0,1,0,0,0,0,0,0,0,0),(111495,'2025-08-07',275,0,0,0,1,0,0,0,0,0,0,0,0),(111494,'2025-08-07',274,0,0,0,1,0,0,0,0,0,0,0,0),(111493,'2025-08-07',273,0,0,0,1,0,0,0,0,0,0,0,0),(111492,'2025-08-07',271,0,0,0,1,0,0,0,0,0,0,0,0),(111491,'2025-08-07',269,0,0,0,1,0,0,0,0,0,0,0,0),(111490,'2025-08-07',268,0,0,0,1,0,0,0,0,0,0,0,0),(111489,'2025-08-07',266,0,0,0,1,0,0,0,0,0,0,0,0),(111488,'2025-08-07',265,0,0,0,1,0,0,0,0,0,0,0,0),(111487,'2025-08-07',264,0,0,0,1,0,0,0,0,0,0,0,0),(111486,'2025-08-07',263,0,0,0,1,0,0,0,0,0,0,0,0),(111485,'2025-08-07',262,0,0,0,1,0,0,0,0,0,0,0,0),(111484,'2025-08-07',261,0,0,0,1,0,0,0,0,0,0,0,0),(111483,'2025-08-07',260,0,0,0,1,0,0,0,0,0,0,0,0),(111482,'2025-08-07',258,0,0,0,1,0,0,0,0,0,0,0,0),(111481,'2025-08-07',257,0,0,0,1,0,0,0,0,0,0,0,0),(111480,'2025-08-07',256,0,0,0,1,0,0,0,0,0,0,0,0),(111479,'2025-08-07',255,0,0,0,1,0,0,0,0,0,0,0,0),(111478,'2025-08-07',254,0,0,0,1,0,0,0,0,0,0,0,0),(111477,'2025-08-07',253,0,0,0,1,0,0,0,0,0,0,0,0),(111476,'2025-08-07',251,0,0,0,1,0,0,0,0,0,0,0,0),(111475,'2025-08-07',250,0,0,0,1,0,0,0,0,0,0,0,0),(111474,'2025-08-07',249,0,0,0,1,0,0,0,0,0,0,0,0),(111473,'2025-08-07',247,0,0,0,1,0,0,0,0,0,0,0,0),(111472,'2025-08-07',246,0,0,0,1,0,0,0,0,0,0,0,0),(111471,'2025-08-07',245,0,0,0,1,0,0,0,0,0,0,0,0),(111470,'2025-08-07',243,0,0,0,1,0,0,0,0,0,0,0,0),(111469,'2025-08-07',242,0,0,0,1,0,0,0,0,0,0,0,0),(111468,'2025-08-07',241,0,0,0,1,0,0,0,0,0,0,0,0),(111467,'2025-08-07',239,0,0,0,1,0,0,0,0,0,0,0,0),(111466,'2025-08-07',238,0,0,0,1,0,0,0,0,0,0,0,0),(111465,'2025-08-07',236,0,0,0,1,0,0,0,0,0,0,0,0),(111464,'2025-08-07',234,0,0,0,1,0,0,0,0,0,0,0,0),(111463,'2025-08-07',233,0,0,0,1,0,0,1,0,0,0,0,0),(111462,'2025-08-07',232,0,0,0,1,0,0,0,0,0,0,0,0),(111461,'2025-08-07',231,0,0,0,1,0,0,0,0,0,0,0,0),(111460,'2025-08-07',228,0,0,0,1,0,0,0,0,0,0,0,0),(111459,'2025-08-07',227,0,0,0,1,0,0,0,0,0,0,0,0),(111458,'2025-08-07',226,0,0,0,1,0,0,0,0,0,0,0,0),(111457,'2025-08-07',225,0,0,0,1,0,0,0,0,0,0,0,0),(111456,'2025-08-07',224,0,0,0,1,0,0,0,0,0,0,0,0),(111455,'2025-08-07',222,0,0,0,1,0,0,0,0,0,0,0,0),(111454,'2025-08-07',221,0,0,0,1,0,0,0,0,0,0,0,0),(111453,'2025-08-07',220,0,0,0,1,0,0,0,0,0,0,0,0),(111452,'2025-08-07',217,0,0,0,1,0,0,0,0,0,0,0,0),(111451,'2025-08-07',214,0,0,0,1,0,0,0,0,0,0,0,0),(111450,'2025-08-07',213,0,0,0,1,0,0,0,0,0,0,0,0),(111449,'2025-08-07',212,0,0,0,1,0,0,0,0,0,0,0,0),(111448,'2025-08-07',211,0,0,0,1,0,0,0,0,0,0,0,0),(111447,'2025-08-07',210,0,0,0,1,0,0,0,0,0,0,0,0),(111446,'2025-08-07',209,0,0,0,1,0,0,0,0,0,0,0,0),(111445,'2025-08-07',208,0,0,0,1,0,0,0,0,0,0,0,0),(111444,'2025-08-07',207,0,0,0,1,0,0,0,0,0,0,0,0),(111443,'2025-08-07',206,0,0,0,1,0,0,0,0,0,0,0,0),(111442,'2025-08-07',205,0,0,0,1,0,0,0,0,0,0,0,0),(111441,'2025-08-07',204,0,0,0,1,0,0,0,0,0,0,0,0),(112836,'2025-09-04',211,0,0,0,1,0,0,0,0,0,0,0,0),(112835,'2025-09-04',210,0,0,0,1,0,0,0,0,0,0,0,0),(112834,'2025-09-04',209,0,0,0,1,0,0,0,0,0,0,0,0),(112833,'2025-09-04',208,0,0,0,1,0,0,0,0,0,0,0,0),(112832,'2025-09-04',207,0,0,0,1,0,0,0,0,0,0,0,0),(112831,'2025-09-04',206,0,0,0,1,0,0,0,0,0,0,0,0),(112830,'2025-09-04',205,0,0,0,1,0,0,0,0,0,0,0,0),(112829,'2025-09-04',204,0,0,0,1,0,0,0,0,0,0,0,0),(112828,'2025-09-04',203,0,0,0,1,0,0,0,0,0,0,0,0),(112827,'2025-09-04',201,0,0,0,1,0,0,0,0,0,0,0,0),(112100,'2025-08-25',448,0,0,0,1,0,0,0,0,0,0,0,0),(112099,'2025-08-25',446,0,0,0,1,0,0,0,0,0,0,0,0),(112098,'2025-08-25',445,0,0,0,1,0,0,0,0,0,0,0,0),(112097,'2025-08-25',443,0,0,0,1,0,0,0,0,0,0,0,0),(112096,'2025-08-25',441,0,0,0,1,0,0,0,0,0,0,0,0),(112095,'2025-08-25',440,0,0,0,1,0,0,0,0,0,0,0,0),(112094,'2025-08-25',439,0,0,0,1,0,0,0,0,0,0,0,0),(112093,'2025-08-25',438,0,0,0,1,0,0,0,0,0,0,0,0),(112092,'2025-08-25',435,0,0,0,1,0,0,0,0,0,0,0,0),(112091,'2025-08-25',434,0,0,0,1,0,0,0,0,0,0,0,0),(112090,'2025-08-25',433,0,0,0,1,0,0,0,0,0,0,0,0),(112089,'2025-08-25',432,0,0,0,1,0,0,0,0,0,0,0,0),(112088,'2025-08-25',431,0,0,0,1,0,0,0,0,0,0,0,0),(112087,'2025-08-25',430,0,0,0,1,0,0,0,0,0,0,0,0),(112086,'2025-08-25',428,0,0,0,1,0,0,0,0,0,0,0,0),(112085,'2025-08-25',426,0,0,0,1,0,0,0,0,0,0,0,0),(112084,'2025-08-25',423,0,0,0,1,0,0,0,0,0,0,0,0),(112083,'2025-08-25',422,0,0,0,1,0,0,0,0,0,0,0,0),(112082,'2025-08-25',420,0,0,0,1,0,0,0,0,0,0,0,0),(112081,'2025-08-25',417,0,0,0,1,0,0,0,0,0,0,0,0),(112080,'2025-08-25',414,0,0,0,1,0,0,0,0,0,0,0,0),(112079,'2025-08-25',413,0,0,0,1,0,0,0,0,0,0,0,0),(112078,'2025-08-25',412,0,0,0,1,0,0,0,0,0,0,0,0),(112077,'2025-08-25',410,0,0,0,1,0,0,0,0,0,0,0,0),(112076,'2025-08-25',408,0,0,0,1,0,0,0,0,0,0,0,0),(112075,'2025-08-25',407,0,0,0,1,0,0,0,0,0,0,0,0),(112074,'2025-08-25',405,0,0,0,1,0,0,0,0,0,0,0,0),(112073,'2025-08-25',403,0,0,0,1,0,0,0,0,0,0,0,0),(112072,'2025-08-25',401,0,0,0,1,0,0,0,0,0,0,0,0),(112071,'2025-08-25',400,0,0,0,1,0,0,0,0,0,0,0,0),(112070,'2025-08-25',396,0,0,0,1,0,0,0,0,0,0,0,0),(112069,'2025-08-25',395,0,0,0,1,0,0,0,0,0,0,0,0),(112068,'2025-08-25',393,0,0,0,1,1,0,0,0,0,0,0,0),(112067,'2025-08-25',392,0,0,0,1,0,0,0,0,0,0,0,0),(112066,'2025-08-25',391,0,0,0,1,0,0,0,0,0,0,0,0),(112065,'2025-08-25',390,0,0,0,1,0,0,0,0,0,0,0,0),(112064,'2025-08-25',388,0,0,0,1,0,0,0,0,0,0,0,0),(112063,'2025-08-25',387,0,0,0,1,0,0,0,0,0,0,0,0),(112062,'2025-08-25',385,0,0,0,1,0,0,0,0,0,0,0,0),(112061,'2025-08-25',384,0,0,0,1,0,0,0,0,0,0,0,0),(112060,'2025-08-25',382,0,0,0,1,0,0,0,0,0,0,0,0),(112059,'2025-08-25',381,0,0,0,1,0,0,0,0,0,0,0,0),(112058,'2025-08-25',378,0,0,0,1,0,0,0,0,0,0,0,0),(112057,'2025-08-25',377,0,0,0,1,0,0,0,0,0,0,0,0),(113090,'2025-09-10',79,0,0,0,1,0,0,0,0,0,0,0,0),(113089,'2025-09-10',78,0,0,0,1,1,0,0,0,0,0,0,0),(113088,'2025-09-10',77,0,0,0,1,0,0,0,0,0,0,0,0),(113087,'2025-09-10',75,0,0,0,1,0,0,0,0,0,0,0,0),(113086,'2025-09-10',74,0,0,0,1,0,0,0,0,0,0,0,0),(113085,'2025-09-10',73,0,0,0,1,0,0,0,0,0,0,0,0),(113084,'2025-09-10',71,0,0,0,1,0,0,0,0,0,0,0,0),(113083,'2025-09-10',70,0,0,0,1,0,0,0,0,0,0,0,0),(113082,'2025-09-10',69,0,0,0,1,0,0,0,0,0,0,0,0),(113081,'2025-09-10',68,0,0,0,1,0,0,0,0,0,0,0,0),(113080,'2025-09-10',67,0,0,0,1,0,0,0,0,0,0,0,0),(113079,'2025-09-10',66,0,0,0,1,0,0,0,0,0,0,0,0),(113078,'2025-09-10',65,0,0,0,1,0,0,0,0,0,0,0,0),(113077,'2025-09-10',64,0,0,0,1,0,0,0,0,0,0,0,0),(113076,'2025-09-10',63,0,0,0,1,0,0,0,0,0,0,0,0),(113075,'2025-09-10',61,0,0,0,1,0,0,0,0,0,0,0,0),(113074,'2025-09-10',60,0,0,0,1,0,0,0,0,0,0,0,0),(113073,'2025-09-10',59,0,0,0,1,0,0,0,0,0,0,0,0),(113072,'2025-09-10',58,0,0,0,1,0,0,0,0,0,0,0,0),(113071,'2025-09-10',57,0,0,0,1,0,0,0,0,0,0,0,0),(113070,'2025-09-10',56,0,0,0,1,0,0,0,0,0,0,0,0),(113069,'2025-09-10',55,0,0,0,1,0,0,0,0,0,0,0,0),(113068,'2025-09-10',54,0,0,0,1,0,0,0,0,0,0,0,0),(113067,'2025-09-10',53,0,0,0,1,0,0,0,0,0,0,0,0),(113066,'2025-09-10',52,0,0,0,1,0,0,0,0,0,0,0,0),(113065,'2025-09-10',51,0,0,0,1,0,0,0,0,0,0,0,0),(113064,'2025-09-10',50,0,0,0,1,0,0,0,0,0,0,0,0),(113063,'2025-09-10',49,0,0,0,1,0,0,0,0,0,0,0,0),(113062,'2025-09-10',48,0,0,0,1,0,0,0,0,0,0,0,0),(113061,'2025-09-10',47,0,0,0,1,0,0,0,0,0,0,0,0),(113060,'2025-09-10',46,0,0,0,1,0,0,0,0,0,0,0,0),(113059,'2025-09-10',45,0,0,0,1,0,0,0,0,0,0,0,0),(113058,'2025-09-10',44,0,0,0,1,0,0,0,0,0,0,0,0),(113057,'2025-09-10',43,0,0,0,1,0,0,0,0,0,0,0,0),(113056,'2025-09-10',42,0,0,0,1,0,0,0,0,0,0,0,0),(113055,'2025-09-10',41,0,0,0,1,0,0,0,0,0,0,0,0),(113054,'2025-09-10',40,0,0,0,1,0,0,0,0,0,0,0,0),(113053,'2025-09-10',38,1,0,1,0,0,0,0,0,0,0,0,0),(113052,'2025-09-10',37,0,0,0,1,0,0,0,0,0,0,0,0),(113051,'2025-09-10',36,0,0,0,1,0,0,0,0,0,0,0,0),(113050,'2025-09-10',35,0,0,0,1,0,0,0,0,0,0,0,0),(113049,'2025-09-10',34,0,0,0,1,0,0,0,0,0,0,0,0),(113048,'2025-09-10',33,0,0,0,1,0,0,0,0,0,0,0,0),(113047,'2025-09-10',32,0,0,0,1,0,0,0,0,0,0,0,0),(113046,'2025-09-10',31,0,0,0,1,0,0,0,0,0,0,0,0),(113045,'2025-09-10',30,0,0,0,1,0,0,0,0,0,0,0,0),(113044,'2025-09-10',29,0,0,0,1,0,0,0,0,0,0,0,0),(113043,'2025-09-10',28,0,0,0,1,0,0,0,0,0,0,0,0),(113042,'2025-09-10',27,0,0,0,1,0,0,0,0,0,0,0,0),(113041,'2025-09-10',26,0,0,0,1,0,0,0,0,0,0,0,0),(113040,'2025-09-10',25,0,0,0,1,0,0,0,0,0,0,0,0),(113039,'2025-09-10',24,0,0,0,1,0,0,0,0,0,0,0,0),(113038,'2025-09-10',23,0,0,0,1,0,0,0,0,0,0,0,0),(113037,'2025-09-10',22,0,0,0,1,0,0,0,0,0,0,0,0),(113036,'2025-09-10',21,0,0,0,1,0,0,0,0,0,0,0,0),(113035,'2025-09-10',20,0,0,0,1,0,0,0,0,0,0,0,0),(113034,'2025-09-10',19,0,0,0,1,0,0,0,0,0,0,0,0),(113033,'2025-09-10',18,0,0,0,1,0,0,0,0,0,0,0,0),(113032,'2025-09-10',17,0,0,0,1,0,0,0,0,0,0,0,0),(113031,'2025-09-10',16,0,0,0,1,0,0,0,0,0,0,0,0),(113030,'2025-09-10',14,0,0,0,1,0,0,0,0,0,0,0,0),(113029,'2025-09-10',13,0,0,0,1,0,0,0,0,0,0,0,0),(113028,'2025-09-10',12,0,0,0,1,0,0,0,0,0,0,0,0),(113027,'2025-09-10',11,0,0,0,1,0,0,0,0,0,0,0,0),(113026,'2025-09-10',10,0,0,0,1,0,0,0,0,0,0,0,0),(113025,'2025-09-10',9,0,0,0,1,0,0,0,0,0,0,0,0),(113024,'2025-09-10',8,0,0,0,1,0,0,0,0,0,0,0,0),(113023,'2025-09-10',5,0,0,0,1,0,0,1,0,0,0,0,0),(113320,'2025-09-10',371,0,0,0,1,0,0,0,0,0,0,0,0),(113319,'2025-09-10',367,0,0,0,1,0,0,0,0,0,0,0,0),(113318,'2025-09-10',365,0,0,0,1,0,0,0,0,0,0,0,0),(113317,'2025-09-10',364,0,0,0,1,0,0,0,0,0,0,0,0),(113316,'2025-09-10',363,0,0,0,1,0,0,0,0,0,0,0,0),(113315,'2025-09-10',361,0,0,0,1,0,0,0,0,0,0,0,0),(113314,'2025-09-10',360,0,0,0,1,0,0,0,0,0,0,0,0),(113313,'2025-09-10',359,0,0,0,1,0,0,0,0,0,0,0,0),(113312,'2025-09-10',357,0,0,0,1,0,0,0,0,0,0,0,0),(113311,'2025-09-10',353,0,0,0,1,0,0,0,0,0,0,0,0),(113310,'2025-09-10',352,0,0,0,1,0,0,0,0,0,0,0,0),(113309,'2025-09-10',351,0,0,0,1,0,0,0,0,0,0,0,0),(113308,'2025-09-10',348,0,0,0,1,0,0,0,0,0,0,0,0),(113307,'2025-09-10',347,0,0,0,1,0,0,0,0,0,0,0,0),(113306,'2025-09-10',346,0,0,0,1,0,0,0,0,0,0,0,0),(113305,'2025-09-10',345,0,0,0,1,0,0,0,0,0,0,0,0),(113304,'2025-09-10',344,0,0,0,1,0,0,0,0,0,0,0,0),(113303,'2025-09-10',341,0,0,0,1,0,0,0,0,0,0,0,0),(113302,'2025-09-10',340,0,0,0,1,0,0,0,0,0,0,0,0),(113301,'2025-09-10',339,0,0,0,1,0,0,0,0,0,0,0,0),(113300,'2025-09-10',338,0,0,0,1,0,0,0,0,0,0,0,0),(113299,'2025-09-10',337,0,0,0,1,0,0,0,0,0,0,0,0),(113298,'2025-09-10',336,0,0,0,1,0,0,0,0,0,0,0,0),(113297,'2025-09-10',335,0,0,0,1,0,0,0,0,0,0,0,0),(113296,'2025-09-10',334,0,0,0,1,0,0,0,0,0,0,0,0),(113295,'2025-09-10',333,0,0,0,1,0,0,0,0,0,0,0,0),(113294,'2025-09-10',332,0,0,0,1,0,0,0,0,0,0,0,0),(113293,'2025-09-10',331,0,0,0,1,0,0,0,0,0,0,0,0),(113292,'2025-09-10',330,0,0,0,1,0,0,0,0,0,0,0,0),(113291,'2025-09-10',329,0,0,0,1,0,0,0,0,0,0,0,0),(113290,'2025-09-10',328,0,0,0,1,0,0,0,0,0,0,0,0),(113289,'2025-09-10',327,0,0,0,1,0,0,0,0,0,0,0,0),(113288,'2025-09-10',326,0,0,0,1,0,0,0,0,0,0,0,0),(113287,'2025-09-10',324,0,0,0,1,0,0,0,0,0,0,0,0),(113286,'2025-09-10',323,0,0,0,1,0,0,0,0,0,0,0,0),(113285,'2025-09-10',321,0,0,0,1,0,0,0,0,0,0,0,0),(113284,'2025-09-10',320,0,0,0,1,0,0,0,0,0,0,0,0),(113283,'2025-09-10',319,0,0,0,1,0,0,0,0,0,0,0,0),(113282,'2025-09-10',317,0,0,0,1,0,0,0,0,0,0,0,0),(113281,'2025-09-10',316,0,0,0,1,0,0,0,0,0,0,0,0),(113280,'2025-09-10',314,0,0,0,1,0,0,0,0,0,0,0,0),(113279,'2025-09-10',313,0,0,0,1,0,0,0,0,0,0,0,0),(113278,'2025-09-10',311,0,0,0,1,0,0,0,0,0,0,0,0),(113277,'2025-09-10',310,0,0,0,1,0,0,0,0,0,0,0,0),(113276,'2025-09-10',309,0,0,0,1,0,0,0,0,0,0,0,0),(113275,'2025-09-10',308,0,0,0,1,0,0,0,0,0,0,0,0),(113274,'2025-09-10',307,0,0,0,1,0,0,0,0,0,0,0,0),(113273,'2025-09-10',304,0,0,0,1,0,0,0,0,0,0,0,0),(113272,'2025-09-10',303,0,0,0,1,0,0,0,0,0,0,0,0),(113271,'2025-09-10',302,0,0,0,1,0,0,0,0,0,0,0,0),(113270,'2025-09-10',301,0,0,0,1,0,0,0,0,0,0,0,0),(113269,'2025-09-10',300,0,0,0,1,0,0,0,0,0,0,0,0),(113268,'2025-09-10',299,0,0,0,1,0,0,0,0,0,0,0,0),(113267,'2025-09-10',298,0,0,0,1,0,0,0,0,0,0,0,0),(113266,'2025-09-10',297,0,0,0,1,0,0,0,0,0,0,0,0),(113265,'2025-09-10',296,0,0,0,1,0,0,0,0,0,0,0,0),(113264,'2025-09-10',295,0,0,0,1,0,0,0,0,0,0,0,0),(113263,'2025-09-10',294,0,0,0,1,0,0,0,0,0,0,0,0),(113262,'2025-09-10',292,0,0,0,1,0,0,0,0,0,0,0,0),(113261,'2025-09-10',291,0,0,0,1,0,0,0,0,0,0,0,0),(113260,'2025-09-10',290,0,0,0,1,0,0,0,0,0,0,0,0),(113259,'2025-09-10',289,0,0,0,1,0,0,0,0,0,0,0,0),(113258,'2025-09-10',288,0,0,0,1,0,0,0,0,0,0,0,0),(113257,'2025-09-10',285,0,0,0,1,0,0,0,0,0,0,0,0),(113256,'2025-09-10',281,0,0,0,1,0,0,0,0,0,0,0,0),(113255,'2025-09-10',280,0,0,0,1,0,0,0,0,0,0,0,0),(113254,'2025-09-10',278,0,0,0,1,0,0,0,0,0,0,0,0),(113253,'2025-09-10',275,0,0,0,1,0,0,0,0,0,0,0,0),(113252,'2025-09-10',274,0,0,0,1,0,0,0,0,0,0,0,0),(113251,'2025-09-10',273,0,0,0,1,0,0,0,0,0,0,0,0),(113250,'2025-09-10',271,0,0,0,1,0,0,0,0,0,0,0,0),(113249,'2025-09-10',269,0,0,0,1,0,0,0,0,0,0,0,0),(113248,'2025-09-10',268,0,0,0,1,0,0,0,0,0,0,0,0),(113389,'2025-09-12',49,0,0,0,0,0,0,1,0,0,0,0,0),(113388,'2025-09-12',22,0,0,0,0,0,0,2,0,0,0,0,0),(113387,'2025-09-12',17,0,0,0,0,0,0,1,0,0,0,0,0),(113386,'2025-09-12',9,0,0,0,0,0,0,1,0,0,0,0,0),(113385,'2025-09-11',428,0,0,0,0,1,0,0,0,0,0,0,0),(113384,'2025-09-11',405,0,0,0,0,1,0,0,0,0,0,0,0),(113383,'2025-09-11',393,0,0,0,0,1,0,0,0,0,0,0,0),(113382,'2025-09-11',316,0,0,0,0,0,1,0,0,0,0,0,0),(113381,'2025-09-11',304,0,0,0,0,1,0,0,0,0,0,0,0),(113380,'2025-09-11',300,1,0,0,0,0,0,0,0,0,0,0,0),(113379,'2025-09-11',212,0,0,0,0,0,1,0,0,0,0,0,0),(113378,'2025-09-11',192,0,0,0,0,0,1,0,0,0,0,0,0),(113377,'2025-09-11',176,0,0,0,0,0,1,0,0,0,0,0,0),(113376,'2025-09-11',162,0,0,0,0,1,0,0,0,0,0,0,0),(113375,'2025-09-11',141,0,0,0,0,1,0,0,0,0,0,0,0),(113374,'2025-09-11',140,0,0,0,0,0,1,0,0,0,0,0,0),(113373,'2025-09-11',111,0,0,0,0,0,1,0,0,0,0,0,0),(113372,'2025-09-11',91,0,0,0,0,0,1,0,0,0,0,0,0),(112056,'2025-08-25',376,0,0,0,1,0,0,0,0,0,0,0,0),(112055,'2025-08-25',375,0,0,0,1,0,0,0,0,0,0,0,0),(112054,'2025-08-25',372,0,0,0,1,0,0,0,0,0,0,0,0),(112053,'2025-08-25',371,0,0,0,1,0,0,0,0,0,0,0,0),(112052,'2025-08-25',367,0,0,0,1,0,0,0,0,0,0,0,0),(112051,'2025-08-25',365,0,0,0,1,0,0,0,0,0,0,0,0),(112050,'2025-08-25',364,0,0,0,1,0,0,0,0,0,0,0,0),(112049,'2025-08-25',363,0,0,0,1,0,0,0,0,0,0,0,0),(112048,'2025-08-25',361,0,0,0,1,0,0,0,0,0,0,0,0),(112047,'2025-08-25',360,0,0,0,1,0,0,0,0,0,0,0,0),(112046,'2025-08-25',359,0,0,0,1,0,0,0,0,0,0,0,0),(112045,'2025-08-25',357,0,0,0,1,0,0,0,0,0,0,0,0),(112044,'2025-08-25',353,0,0,0,1,0,0,0,0,0,0,0,0),(112043,'2025-08-25',352,0,0,0,1,0,0,0,0,0,0,0,0),(112042,'2025-08-25',351,0,0,0,1,0,0,0,0,0,0,0,0),(112041,'2025-08-25',348,0,0,0,1,0,0,0,0,0,0,0,0),(112040,'2025-08-25',347,0,0,0,1,0,0,0,0,0,0,0,0),(112039,'2025-08-25',346,0,0,0,1,0,0,0,0,0,0,0,0),(112038,'2025-08-25',345,0,0,0,1,0,0,0,0,0,0,0,0),(112037,'2025-08-25',344,0,0,0,1,0,0,0,0,0,0,0,0),(112036,'2025-08-25',341,0,0,0,1,0,0,0,0,0,0,0,0),(112035,'2025-08-25',340,0,0,0,1,0,0,0,0,0,0,0,0),(112034,'2025-08-25',339,0,0,0,1,0,0,0,0,0,0,0,0),(112033,'2025-08-25',338,0,0,0,1,0,0,0,0,0,0,0,0),(112032,'2025-08-25',337,0,0,0,1,0,0,0,0,0,0,0,0),(112031,'2025-08-25',336,0,0,0,1,0,0,0,0,0,0,0,0),(112030,'2025-08-25',335,0,0,0,1,0,0,0,0,0,0,0,0),(112029,'2025-08-25',334,0,0,0,1,0,0,0,0,0,0,0,0),(112028,'2025-08-25',333,0,0,0,1,0,0,0,0,0,0,0,0),(112027,'2025-08-25',332,0,0,0,1,0,0,0,0,0,0,0,0),(112026,'2025-08-25',331,0,0,0,1,0,0,0,0,0,0,0,0),(112025,'2025-08-25',330,0,0,0,1,0,0,0,0,0,0,0,0),(113019,'2025-09-09',137,0,0,0,0,0,0,1,0,0,0,0,0),(113018,'2025-09-09',89,0,0,0,0,0,0,1,0,0,0,0,0),(113017,'2025-09-09',81,0,0,0,0,0,0,1,0,0,0,0,0),(113016,'2025-09-09',78,0,0,0,0,0,0,2,0,0,0,0,0),(113015,'2025-09-08',75,0,0,0,0,0,0,5,0,0,0,0,0),(113014,'2025-09-07',51,0,0,0,0,0,0,1,0,0,0,0,0),(113013,'2025-09-07',49,0,0,0,0,0,0,1,0,0,0,0,0),(113012,'2025-09-07',22,0,0,0,0,0,0,1,0,0,0,0,0),(113011,'2025-09-07',17,0,0,0,0,0,0,1,0,0,0,0,0),(113010,'2025-09-07',9,0,0,0,0,0,0,1,0,0,0,0,0),(113009,'2025-09-05',388,1,0,1,0,0,0,0,0,0,0,0,0),(113008,'2025-09-05',209,0,0,0,1,0,0,0,0,0,0,0,0),(113007,'2025-09-05',150,0,0,0,0,0,1,0,0,0,0,0,0),(113006,'2025-09-05',132,0,0,0,0,1,0,0,0,0,0,0,0),(113005,'2025-09-05',90,0,0,0,0,0,1,0,0,0,0,0,0),(113004,'2025-09-05',89,0,0,0,0,1,0,0,0,0,0,0,0),(113003,'2025-09-05',35,0,0,0,0,1,0,0,0,0,0,0,0),(113002,'2025-09-05',22,0,0,0,0,0,1,0,0,0,0,0,0),(113001,'2025-09-04',448,1,0,0,1,0,0,0,0,0,0,0,0),(113000,'2025-09-04',446,0,0,0,1,0,0,0,0,0,0,0,0),(112999,'2025-09-04',445,0,0,0,1,0,0,0,0,0,0,0,0),(112998,'2025-09-04',443,0,0,0,1,0,0,0,0,0,0,0,0),(112997,'2025-09-04',441,0,0,0,1,0,0,0,0,0,0,0,0),(112996,'2025-09-04',440,0,0,0,1,0,0,0,0,0,0,0,0),(112995,'2025-09-04',439,0,0,0,1,0,0,0,0,0,0,0,0),(112994,'2025-09-04',438,0,0,0,1,0,0,0,0,0,0,0,0),(112993,'2025-09-04',435,0,0,0,1,0,0,0,0,0,0,0,0),(112992,'2025-09-04',434,0,0,0,1,0,0,0,0,0,0,0,0),(112991,'2025-09-04',433,0,0,0,1,0,0,0,0,0,0,0,0),(112990,'2025-09-04',432,0,0,0,1,0,0,0,0,0,0,0,0),(112989,'2025-09-04',431,0,0,0,1,0,0,0,0,0,0,0,0),(112988,'2025-09-04',430,0,0,0,1,0,0,0,0,0,0,0,0),(112987,'2025-09-04',428,0,0,0,1,0,0,0,0,0,0,0,0),(112986,'2025-09-04',426,0,0,0,1,0,0,0,0,0,0,0,0),(112985,'2025-09-04',423,0,0,0,1,0,0,0,0,0,0,0,0),(112984,'2025-09-04',422,0,0,0,1,0,0,0,0,0,0,0,0),(112983,'2025-09-04',420,0,0,0,1,0,0,0,0,0,0,0,0),(112982,'2025-09-04',417,0,0,0,1,0,0,0,0,0,0,0,0),(112981,'2025-09-04',414,0,0,0,1,0,0,0,0,0,0,0,0),(112980,'2025-09-04',413,0,0,0,1,1,0,0,0,0,0,0,0),(112979,'2025-09-04',412,0,0,0,1,0,0,0,0,0,0,0,0),(112978,'2025-09-04',410,0,0,0,1,0,0,0,0,0,0,0,0),(112977,'2025-09-04',408,0,0,0,1,0,0,0,0,0,0,0,0),(112976,'2025-09-04',407,0,0,0,1,0,0,0,0,0,0,0,0),(112975,'2025-09-04',405,0,0,0,1,0,0,0,0,0,0,0,0),(112974,'2025-09-04',403,0,0,0,1,0,0,0,0,0,0,0,0),(112973,'2025-09-04',401,0,0,0,1,1,0,0,0,0,0,0,0),(112972,'2025-09-04',400,0,0,0,1,0,0,0,0,0,0,0,0),(112971,'2025-09-04',396,0,0,0,1,0,0,0,0,0,0,0,0),(112970,'2025-09-04',395,0,0,0,1,0,0,0,0,0,0,0,0),(112969,'2025-09-04',393,0,0,0,1,0,0,0,0,0,0,0,0),(112968,'2025-09-04',392,0,0,0,1,0,0,0,0,0,0,0,0),(112967,'2025-09-04',391,0,0,0,1,0,0,0,0,0,0,0,0),(112966,'2025-09-04',390,0,0,0,1,0,0,0,0,0,0,0,0),(112965,'2025-09-04',388,0,0,0,1,0,0,0,0,0,0,0,0),(112964,'2025-09-04',387,0,0,0,1,0,0,0,0,0,0,0,0),(112963,'2025-09-04',385,0,0,0,1,0,0,0,0,0,0,0,0),(112962,'2025-09-04',384,0,0,0,1,0,0,0,0,0,0,0,0),(112961,'2025-09-04',382,0,0,0,1,0,0,0,0,0,0,0,0),(112960,'2025-09-04',381,0,0,0,1,0,0,0,0,0,0,0,0),(112959,'2025-09-04',378,0,0,0,1,0,0,0,0,0,0,0,0),(112958,'2025-09-04',377,0,0,0,1,0,0,0,0,0,0,0,0),(112957,'2025-09-04',376,0,0,0,1,0,0,0,0,0,0,0,0),(112956,'2025-09-04',375,0,0,0,1,0,0,0,0,0,0,0,0),(112955,'2025-09-04',372,0,0,0,1,0,0,0,0,0,0,0,0),(112954,'2025-09-04',371,0,0,0,1,0,0,0,0,0,0,0,0),(112953,'2025-09-04',367,0,0,0,1,0,0,0,0,0,0,0,0),(112952,'2025-09-04',365,0,0,0,1,0,0,0,0,0,0,0,0),(112951,'2025-09-04',364,0,0,0,1,0,0,0,0,0,0,0,0),(112950,'2025-09-04',363,0,0,0,1,0,0,0,0,0,0,0,0),(112949,'2025-09-04',361,0,0,0,1,0,0,0,0,0,0,0,0),(112948,'2025-09-04',360,0,0,0,1,0,0,0,0,0,0,0,0),(112947,'2025-09-04',359,0,0,0,1,0,0,0,0,0,0,0,0),(112946,'2025-09-04',357,0,0,0,1,0,0,0,0,0,0,0,0),(112945,'2025-09-04',353,0,0,0,1,0,0,0,0,0,0,0,0),(113247,'2025-09-10',267,0,0,0,1,0,0,0,0,0,0,0,0),(113246,'2025-09-10',266,0,0,0,1,0,0,0,0,0,0,0,0),(113245,'2025-09-10',265,0,0,0,1,0,0,0,0,0,0,0,0),(113244,'2025-09-10',264,0,0,0,1,0,0,0,0,0,0,0,0),(113243,'2025-09-10',263,0,0,0,1,1,1,0,0,0,0,0,0),(112944,'2025-09-04',352,0,0,0,1,0,0,0,0,0,0,0,0),(112943,'2025-09-04',351,0,0,0,1,0,0,0,0,0,0,0,0),(112942,'2025-09-04',348,0,0,0,1,0,0,0,0,0,0,0,0),(112941,'2025-09-04',347,0,0,0,1,0,0,0,0,0,0,0,0),(112940,'2025-09-04',346,0,0,0,1,0,0,0,0,0,0,0,0),(112939,'2025-09-04',345,0,0,0,1,0,0,0,0,0,0,0,0),(112938,'2025-09-04',344,0,0,0,1,0,0,0,0,0,0,0,0),(112937,'2025-09-04',341,0,0,0,1,0,0,0,0,0,0,0,0),(112936,'2025-09-04',340,0,0,0,1,0,0,0,0,0,0,0,0),(112935,'2025-09-04',339,0,0,0,1,0,0,0,0,0,0,0,0),(112934,'2025-09-04',338,0,0,0,1,0,0,0,0,0,0,0,0),(112933,'2025-09-04',337,0,0,0,1,0,0,0,0,0,0,0,0),(112932,'2025-09-04',336,0,0,0,1,0,0,0,0,0,0,0,0),(112931,'2025-09-04',335,0,0,0,1,0,0,0,0,0,0,0,0),(112930,'2025-09-04',334,0,0,0,1,0,0,0,0,0,0,0,0),(112929,'2025-09-04',333,0,0,0,1,0,0,0,0,0,0,0,0),(112928,'2025-09-04',332,0,0,0,1,0,0,0,0,0,0,0,0),(112927,'2025-09-04',331,0,0,0,1,0,0,0,0,0,0,0,0),(112926,'2025-09-04',330,0,0,0,1,0,0,0,0,0,0,0,0),(112925,'2025-09-04',329,0,0,0,1,0,0,0,0,0,0,0,0),(112924,'2025-09-04',328,0,0,0,1,0,0,0,0,0,0,0,0),(112923,'2025-09-04',327,0,0,0,1,0,0,0,0,0,0,0,0),(112922,'2025-09-04',326,0,0,0,1,0,0,0,0,0,0,0,0),(112921,'2025-09-04',324,0,0,0,1,0,0,0,0,0,0,0,0),(112920,'2025-09-04',323,0,0,0,1,0,0,0,0,0,0,0,0),(112919,'2025-09-04',322,0,0,0,0,0,1,0,0,0,0,0,0),(112918,'2025-09-04',321,0,0,0,1,0,0,0,0,0,0,0,0),(112917,'2025-09-04',320,0,0,0,1,1,0,0,0,0,0,0,0),(112916,'2025-09-04',319,0,0,0,1,0,0,0,0,0,0,0,0),(112915,'2025-09-04',317,0,0,0,1,0,0,0,0,0,0,0,0),(112914,'2025-09-04',316,0,0,0,1,0,0,0,0,0,0,0,0),(112913,'2025-09-04',314,0,0,0,1,0,0,0,0,0,0,0,0),(112912,'2025-09-04',313,0,0,0,1,0,0,0,0,0,0,0,0),(112911,'2025-09-04',311,0,0,0,1,0,0,0,0,0,0,0,0),(112910,'2025-09-04',310,0,0,0,1,1,0,0,0,0,0,0,0),(112909,'2025-09-04',309,0,0,0,1,0,0,0,0,0,0,0,0),(112908,'2025-09-04',308,0,0,0,1,0,0,0,0,0,0,0,0),(112907,'2025-09-04',307,0,0,0,1,0,0,0,0,0,0,0,0),(112906,'2025-09-04',304,0,0,0,1,0,0,0,0,0,0,0,0),(112905,'2025-09-04',303,0,0,0,1,0,0,0,0,0,0,0,0),(112904,'2025-09-04',302,0,0,0,1,0,0,0,0,0,0,0,0),(112903,'2025-09-04',301,0,0,0,1,1,1,0,0,0,0,0,0),(112902,'2025-09-04',300,0,0,0,1,0,0,0,0,0,0,0,0),(112901,'2025-09-04',299,0,0,0,1,0,0,0,0,0,0,0,0),(112900,'2025-09-04',298,0,0,0,1,0,0,0,0,0,0,0,0),(112899,'2025-09-04',297,0,0,0,1,1,0,0,0,0,0,0,0),(112898,'2025-09-04',296,0,0,0,1,0,0,0,0,0,0,0,0),(112897,'2025-09-04',295,0,0,0,1,0,0,0,0,0,0,0,0),(112896,'2025-09-04',294,0,0,0,1,0,0,0,0,0,0,0,0),(112895,'2025-09-04',292,0,0,0,1,0,0,0,0,0,0,0,0),(112894,'2025-09-04',291,0,0,0,1,0,0,0,0,0,0,0,0),(112893,'2025-09-04',290,0,0,0,1,0,0,0,0,0,0,0,0),(112892,'2025-09-04',289,0,0,0,1,0,0,0,0,0,0,0,0),(112891,'2025-09-04',288,0,0,0,1,0,0,0,0,0,0,0,0),(112890,'2025-09-04',285,0,0,0,1,0,0,0,0,0,0,0,0),(112889,'2025-09-04',283,0,0,0,0,0,1,0,0,0,0,0,0),(112888,'2025-09-04',281,0,0,0,1,0,1,0,0,0,0,0,0),(112887,'2025-09-04',280,0,0,0,1,0,1,0,0,0,0,0,0),(112886,'2025-09-04',278,0,0,0,1,0,0,0,0,0,0,0,0),(112885,'2025-09-04',275,0,0,0,1,0,0,0,0,0,0,0,0),(112884,'2025-09-04',274,0,0,0,1,0,0,0,0,0,0,0,0),(112883,'2025-09-04',273,0,0,0,1,0,0,0,0,0,0,0,0),(112882,'2025-09-04',271,0,0,0,1,0,0,0,0,0,0,0,0),(112881,'2025-09-04',269,0,0,0,1,0,0,0,0,0,0,0,0),(112880,'2025-09-04',268,0,0,0,1,0,0,0,0,0,0,0,0),(112879,'2025-09-04',267,0,0,0,1,0,0,0,0,0,0,0,0),(112878,'2025-09-04',266,0,0,0,1,0,0,0,0,0,0,0,0),(112877,'2025-09-04',265,0,0,0,1,0,0,0,0,0,0,0,0),(112876,'2025-09-04',264,0,0,0,1,0,0,0,0,0,0,0,0),(112875,'2025-09-04',263,0,0,0,1,0,0,0,0,0,0,0,0),(112874,'2025-09-04',262,0,0,0,1,0,0,0,0,0,0,0,0),(112873,'2025-09-04',261,0,0,0,1,0,0,0,0,0,0,0,0),(112872,'2025-09-04',260,0,0,0,1,0,0,0,0,0,0,0,0),(112871,'2025-09-04',258,0,0,0,1,0,0,0,0,0,0,0,0),(112870,'2025-09-04',257,0,0,0,1,0,0,0,0,0,0,0,0),(112869,'2025-09-04',256,0,0,0,1,0,1,0,0,0,0,0,0),(112868,'2025-09-04',255,0,0,0,1,0,0,0,0,0,0,0,0),(112867,'2025-09-04',254,0,0,0,1,0,0,0,0,0,0,0,0),(112866,'2025-09-04',253,0,0,0,1,0,0,0,0,0,0,0,0),(112865,'2025-09-04',251,0,0,0,1,0,0,0,0,0,0,0,0),(112864,'2025-09-04',250,0,0,0,1,0,0,0,0,0,0,0,0),(112863,'2025-09-04',249,0,0,0,1,0,0,0,0,0,0,0,0),(112862,'2025-09-04',247,0,0,0,1,0,0,0,0,0,0,0,0),(112861,'2025-09-04',246,0,0,0,1,0,0,0,0,0,0,0,0),(112860,'2025-09-04',245,0,0,0,1,0,0,0,0,0,0,0,0),(112859,'2025-09-04',243,0,0,0,1,0,0,0,0,0,0,0,0),(112858,'2025-09-04',242,0,0,0,1,0,0,0,0,0,0,0,0),(112857,'2025-09-04',241,0,0,0,1,0,0,0,0,0,0,0,0),(112856,'2025-09-04',239,0,0,0,1,0,0,0,0,0,0,0,0),(112855,'2025-09-04',238,0,0,0,1,0,0,0,0,0,0,0,0),(112854,'2025-09-04',236,0,0,0,1,0,0,0,0,0,0,0,0),(112853,'2025-09-04',234,0,0,0,1,0,0,0,0,0,0,0,0),(112852,'2025-09-04',233,0,0,0,1,0,0,0,0,0,0,0,0),(112851,'2025-09-04',232,0,0,0,1,0,0,0,0,0,0,0,0),(112850,'2025-09-04',231,0,0,0,1,0,0,0,0,0,0,0,0),(112849,'2025-09-04',228,0,0,0,1,0,0,0,0,0,0,0,0),(111737,'2025-08-18',388,1,0,1,0,0,0,0,0,0,0,0,0),(111736,'2025-08-18',359,0,0,0,1,0,0,0,0,0,0,0,0),(111735,'2025-08-18',304,0,0,0,0,1,0,0,0,0,0,0,0),(111734,'2025-08-18',298,0,0,0,0,0,1,0,0,0,0,0,0),(111733,'2025-08-18',239,0,0,0,0,0,1,0,0,0,0,0,0),(111732,'2025-08-18',233,0,0,0,0,0,0,1,0,0,0,0,0),(111731,'2025-08-18',218,0,0,0,0,0,0,2,0,0,0,0,0),(111730,'2025-08-18',141,0,0,0,0,1,0,0,0,0,0,0,0),(111729,'2025-08-18',123,0,0,0,0,0,0,1,0,0,0,0,0),(111728,'2025-08-18',109,0,0,0,0,0,0,1,0,0,0,0,0),(111727,'2025-08-18',90,0,0,0,0,0,0,2,0,0,0,0,0),(111726,'2025-08-18',17,0,0,0,0,0,0,1,0,0,0,0,0),(111725,'2025-08-18',9,0,0,0,0,0,0,3,0,0,0,0,0),(111724,'2025-08-18',5,0,0,0,0,0,0,1,0,0,0,0,0),(111723,'2025-08-18',2,0,0,0,0,0,0,1,0,0,0,0,0),(111722,'2025-08-18',1,0,0,0,0,0,0,2,0,0,0,0,0),(112024,'2025-08-25',329,0,0,0,1,0,0,0,0,0,0,0,0),(112023,'2025-08-25',328,0,0,0,1,0,0,0,0,0,0,0,0),(112022,'2025-08-25',327,0,0,0,1,0,0,0,0,0,0,0,0),(112021,'2025-08-25',326,0,0,0,1,0,0,0,0,0,0,0,0),(112020,'2025-08-25',324,0,0,0,1,0,0,0,0,0,0,0,0),(112019,'2025-08-25',323,0,0,0,1,0,0,0,0,0,0,0,0),(112018,'2025-08-25',321,0,0,0,1,0,0,0,0,0,0,0,0),(112017,'2025-08-25',320,0,0,0,1,0,0,0,0,0,0,0,0),(112016,'2025-08-25',319,0,0,0,1,0,0,0,0,0,0,0,0),(112015,'2025-08-25',317,0,0,0,1,0,0,0,0,0,0,0,0),(112014,'2025-08-25',316,0,0,0,1,0,0,0,0,0,0,0,0),(112013,'2025-08-25',314,0,0,0,1,0,0,0,0,0,0,0,0),(112012,'2025-08-25',313,0,0,0,1,0,0,0,0,0,0,0,0),(112011,'2025-08-25',311,0,0,0,1,0,0,0,0,0,0,0,0),(112010,'2025-08-25',310,0,0,0,1,0,0,0,0,0,0,0,0),(112009,'2025-08-25',309,0,0,0,1,0,0,0,0,0,0,0,0),(112008,'2025-08-25',308,0,0,0,1,0,0,0,0,0,0,0,0),(112007,'2025-08-25',307,0,0,0,1,0,0,0,0,0,0,0,0),(112006,'2025-08-25',304,0,0,0,1,0,0,0,0,0,0,0,0),(112005,'2025-08-25',303,0,0,0,1,0,0,0,0,0,0,0,0),(112004,'2025-08-25',302,0,0,0,1,0,0,0,0,0,0,0,0),(112003,'2025-08-25',301,0,0,0,1,0,0,0,0,0,0,0,0),(112002,'2025-08-25',300,0,0,0,1,0,0,0,0,0,0,0,0),(112001,'2025-08-25',299,0,0,0,1,0,0,0,0,0,0,0,0),(112000,'2025-08-25',298,0,0,0,1,0,0,0,0,0,0,0,0),(111999,'2025-08-25',297,0,0,0,1,0,0,0,0,0,0,0,0),(111998,'2025-08-25',296,0,0,0,1,0,0,0,0,0,0,0,0),(111997,'2025-08-25',295,0,0,0,1,0,0,0,0,0,0,0,0),(111996,'2025-08-25',294,0,0,0,1,0,0,0,0,0,0,0,0),(111995,'2025-08-25',292,0,0,0,1,0,0,0,0,0,0,0,0),(111994,'2025-08-25',291,0,0,0,1,0,0,0,0,0,0,0,0),(111993,'2025-08-25',290,0,0,0,1,0,0,0,0,0,0,0,0),(111992,'2025-08-25',289,0,0,0,1,0,0,0,0,0,0,0,0),(111991,'2025-08-25',288,0,0,0,1,0,0,0,0,0,0,0,0),(111990,'2025-08-25',285,0,0,0,1,0,0,0,0,0,0,0,0),(111989,'2025-08-25',281,0,0,0,1,0,0,0,0,0,0,0,0),(111988,'2025-08-25',280,0,0,0,1,0,0,0,0,0,0,0,0),(111987,'2025-08-25',278,0,0,0,1,0,0,0,0,0,0,0,0),(111986,'2025-08-25',275,0,0,0,1,0,0,0,0,0,0,0,0),(111985,'2025-08-25',274,0,0,0,1,0,0,0,0,0,0,0,0),(111984,'2025-08-25',273,0,0,0,1,0,0,0,0,0,0,0,0),(111983,'2025-08-25',271,0,0,0,1,0,0,0,0,0,0,0,0),(111982,'2025-08-25',269,0,0,0,1,0,0,0,0,0,0,0,0),(111981,'2025-08-25',268,0,0,0,1,0,0,0,0,0,0,0,0),(111980,'2025-08-25',267,0,0,0,1,0,0,0,0,0,0,0,0),(111979,'2025-08-25',266,0,0,0,1,0,0,0,0,0,0,0,0),(111978,'2025-08-25',265,0,0,0,1,0,0,0,0,0,0,0,0),(112162,'2025-08-31',137,0,0,0,0,0,1,1,0,0,0,0,0),(112161,'2025-08-31',136,0,0,0,1,0,0,0,0,0,0,0,0),(112160,'2025-08-31',132,0,0,0,1,0,0,0,0,0,0,0,0),(112159,'2025-08-31',128,0,0,0,1,0,0,0,0,0,0,0,0),(112158,'2025-08-31',127,0,0,0,1,0,0,0,0,0,0,0,0),(112157,'2025-08-31',126,0,0,0,1,0,0,0,0,0,0,0,0),(112156,'2025-08-31',124,0,0,0,1,0,0,0,0,0,0,0,0),(112155,'2025-08-31',123,0,0,0,1,1,0,0,0,0,0,0,0),(112154,'2025-08-31',121,0,0,0,1,0,0,0,0,0,0,0,0),(112153,'2025-08-31',119,0,0,0,0,0,1,0,0,0,0,0,0),(112152,'2025-08-31',115,0,0,0,1,0,0,0,0,0,0,0,0),(112151,'2025-08-31',114,0,0,0,1,0,0,0,0,0,0,0,0),(112150,'2025-08-31',113,0,0,0,1,0,0,0,0,0,0,0,0),(112149,'2025-08-31',112,0,0,0,1,0,0,0,0,0,0,0,0),(112148,'2025-08-31',110,0,0,0,1,0,0,0,0,0,0,0,0),(112147,'2025-08-31',103,0,0,0,1,0,0,0,0,0,0,0,0),(112826,'2025-09-04',200,0,0,0,1,0,0,0,0,0,0,0,0),(112825,'2025-09-04',197,0,0,0,1,0,0,0,0,0,0,0,0),(112824,'2025-09-04',196,0,0,0,1,0,0,0,0,0,0,0,0),(112823,'2025-09-04',195,0,0,0,1,0,0,0,0,0,0,0,0),(112822,'2025-09-04',194,0,0,0,1,0,0,0,0,0,0,0,0),(112821,'2025-09-04',193,0,0,0,1,0,0,0,0,0,0,0,0),(112820,'2025-09-04',192,0,0,0,1,0,0,0,0,0,0,0,0),(112819,'2025-09-04',191,0,0,0,1,0,0,0,0,0,0,0,0),(112818,'2025-09-04',190,0,0,0,1,0,0,0,0,0,0,0,0),(112817,'2025-09-04',189,0,0,0,1,0,0,0,0,0,0,0,0),(112816,'2025-09-04',188,0,0,0,1,0,0,0,0,0,0,0,0),(112815,'2025-09-04',187,0,0,0,1,0,0,0,0,0,0,0,0),(112814,'2025-09-04',186,0,0,0,1,0,0,0,0,0,0,0,0),(112813,'2025-09-04',185,0,0,0,1,0,0,0,0,0,0,0,0),(112812,'2025-09-04',184,0,0,0,1,0,0,0,0,0,0,0,0),(112811,'2025-09-04',183,0,0,0,1,0,0,0,0,0,0,0,0),(112810,'2025-09-04',182,0,0,0,1,0,0,0,0,0,0,0,0),(112809,'2025-09-04',181,0,0,0,1,0,1,0,0,0,0,0,0),(112808,'2025-09-04',180,0,0,0,1,0,0,0,0,0,0,0,0),(112807,'2025-09-04',179,0,0,0,1,0,0,0,0,0,0,0,0),(111782,'2025-08-25',33,0,0,0,1,0,0,0,0,0,0,0,0),(111781,'2025-08-25',32,0,0,0,1,0,0,0,0,0,0,0,0),(111780,'2025-08-25',31,0,0,0,1,0,0,0,0,0,0,0,0),(111779,'2025-08-25',30,0,0,0,1,0,0,0,0,0,0,0,0),(111778,'2025-08-25',29,0,0,0,1,0,0,0,0,0,0,0,0),(111777,'2025-08-25',28,0,0,0,1,0,0,0,0,0,0,0,0),(111776,'2025-08-25',27,0,0,0,1,0,0,0,0,0,0,0,0),(111775,'2025-08-25',26,0,0,0,1,0,0,0,0,0,0,0,0),(111774,'2025-08-25',25,0,0,0,1,0,0,0,0,0,0,0,0),(111773,'2025-08-25',24,0,0,0,1,0,0,0,0,0,0,0,0),(111772,'2025-08-25',23,0,0,0,1,0,0,0,0,0,0,0,0),(111771,'2025-08-25',22,0,0,0,1,0,0,0,0,0,0,0,0),(111770,'2025-08-25',21,0,0,0,1,0,0,0,0,0,0,0,0),(111769,'2025-08-25',20,0,0,0,1,0,0,0,0,0,0,0,0),(111768,'2025-08-25',19,0,0,0,1,0,0,0,0,0,0,0,0),(111767,'2025-08-25',18,0,0,0,1,0,0,0,0,0,0,0,0),(111766,'2025-08-25',17,0,0,0,1,1,0,0,0,0,0,0,0),(111765,'2025-08-25',16,0,0,0,1,0,0,0,0,0,0,0,0),(111764,'2025-08-25',14,0,0,0,1,0,0,0,0,0,0,0,0),(111763,'2025-08-25',13,0,0,0,1,0,0,0,0,0,0,0,0),(111762,'2025-08-25',12,0,0,0,1,0,0,0,0,0,0,0,0),(111761,'2025-08-25',11,0,0,0,1,0,0,0,0,0,0,0,0),(111760,'2025-08-25',10,0,0,0,1,0,0,0,0,0,0,0,0),(111759,'2025-08-25',9,0,0,0,1,0,0,0,0,0,0,0,0),(111744,'2025-08-21',81,0,0,0,0,0,0,2,0,0,0,0,0),(111743,'2025-08-21',78,0,0,0,0,0,0,2,0,0,0,0,0),(111742,'2025-08-21',75,0,0,0,0,0,0,1,0,0,0,0,0),(112806,'2025-09-04',178,0,0,0,1,0,0,0,0,0,0,0,0),(112805,'2025-09-04',176,0,0,0,1,1,0,0,0,0,0,0,0),(112804,'2025-09-04',175,0,0,0,1,0,0,0,0,0,0,0,0),(112803,'2025-09-04',174,0,0,0,1,0,0,0,0,0,0,0,0),(112802,'2025-09-04',173,0,0,0,1,0,0,0,0,0,0,0,0),(112801,'2025-09-04',172,0,0,0,1,0,0,0,0,0,0,0,0),(112800,'2025-09-04',171,0,0,0,1,0,0,0,0,0,0,0,0),(112799,'2025-09-04',170,0,0,0,1,0,0,0,0,0,0,0,0),(112798,'2025-09-04',169,0,0,0,1,0,0,0,0,0,0,0,0),(112797,'2025-09-04',168,0,0,0,1,0,0,0,0,0,0,0,0),(112796,'2025-09-04',167,0,0,0,1,0,0,0,0,0,0,0,0),(112795,'2025-09-04',166,0,0,0,1,0,0,0,0,0,0,0,0),(112794,'2025-09-04',164,1,0,0,1,0,0,0,0,0,0,0,0),(112793,'2025-09-04',163,0,0,0,1,0,0,0,0,0,0,0,0),(112792,'2025-09-04',162,0,0,0,1,0,0,0,0,0,0,0,0),(112791,'2025-09-04',161,0,0,0,1,0,0,0,0,0,0,0,0),(112790,'2025-09-04',160,0,0,0,1,0,0,0,0,0,0,0,0),(112789,'2025-09-04',159,0,0,0,1,0,0,0,0,0,0,0,0),(112788,'2025-09-04',158,0,0,0,1,0,0,0,0,0,0,0,0),(112787,'2025-09-04',157,0,0,0,1,0,0,0,0,0,0,0,0),(112786,'2025-09-04',155,0,0,0,1,0,0,0,0,0,0,0,0),(111758,'2025-08-25',8,0,0,0,1,0,0,0,0,0,0,0,0),(111747,'2025-08-22',188,0,0,0,0,0,0,2,0,0,0,0,0),(111746,'2025-08-22',90,0,0,0,0,0,0,2,0,0,0,0,0),(111745,'2025-08-22',89,0,0,0,0,0,0,1,0,0,0,0,0),(112146,'2025-08-31',98,0,0,0,1,0,0,0,0,0,0,0,0),(112145,'2025-08-31',97,0,0,0,1,0,0,0,0,0,0,0,0),(112785,'2025-09-04',154,0,0,0,1,0,0,0,0,0,0,0,0),(112784,'2025-09-04',152,0,0,0,1,0,0,0,0,0,0,0,0),(112783,'2025-09-04',151,0,0,0,1,0,0,0,0,0,0,0,0),(112782,'2025-09-04',150,0,0,0,1,0,0,0,0,0,0,0,0),(112781,'2025-09-04',148,0,0,0,1,0,0,0,0,0,0,0,0),(112780,'2025-09-04',147,0,0,0,1,0,0,0,0,0,0,0,0),(112779,'2025-09-04',146,0,0,0,1,0,0,0,0,0,0,0,0),(112778,'2025-09-04',145,0,0,0,1,0,0,0,0,0,0,0,0),(112777,'2025-09-04',144,0,0,0,1,0,0,0,0,0,0,0,0),(112776,'2025-09-04',143,0,0,0,1,0,0,0,0,0,0,0,0),(112775,'2025-09-04',142,0,0,0,1,0,0,0,0,0,0,0,0),(112774,'2025-09-04',141,0,0,0,1,0,0,0,0,0,0,0,0),(112773,'2025-09-04',140,0,0,0,1,0,0,0,0,0,0,0,0),(112772,'2025-09-04',139,0,0,0,1,0,1,0,0,0,0,0,0),(112771,'2025-09-04',137,0,0,0,0,1,0,0,0,0,0,0,0),(112770,'2025-09-04',136,0,0,0,1,0,0,0,0,0,0,0,0),(112769,'2025-09-04',134,0,0,0,1,0,0,0,0,0,0,0,0),(112768,'2025-09-04',133,0,0,0,1,0,0,0,0,0,0,0,0),(112767,'2025-09-04',132,0,0,0,1,0,0,0,0,0,0,0,0),(112766,'2025-09-04',129,0,0,0,1,0,0,0,0,0,0,0,0),(112765,'2025-09-04',128,0,0,0,1,0,0,0,0,0,0,0,0),(112764,'2025-09-04',127,0,0,0,1,0,0,0,0,0,0,0,0),(112763,'2025-09-04',126,0,0,0,1,0,0,0,0,0,0,0,0),(112762,'2025-09-04',125,0,0,0,1,0,0,0,0,0,0,0,0),(112761,'2025-09-04',124,0,0,0,1,0,0,0,0,0,0,0,0),(112760,'2025-09-04',123,0,0,0,1,0,1,1,0,0,0,0,0),(112759,'2025-09-04',122,0,0,0,1,0,0,0,0,0,0,0,0),(112758,'2025-09-04',121,0,0,0,1,0,0,0,0,0,0,0,0),(112757,'2025-09-04',120,0,0,0,1,0,1,0,0,0,0,0,0),(112756,'2025-09-04',119,0,0,0,1,0,0,0,0,0,0,0,0),(112755,'2025-09-04',118,0,0,0,1,0,0,0,0,0,0,0,0),(112754,'2025-09-04',117,0,0,0,1,0,0,0,0,0,0,0,0),(112753,'2025-09-04',116,0,0,0,1,0,0,0,0,0,0,0,0),(112752,'2025-09-04',115,0,0,0,1,0,0,0,0,0,0,0,0),(112751,'2025-09-04',114,0,0,0,1,0,0,0,0,0,0,0,0),(112750,'2025-09-04',113,0,0,0,1,0,0,0,0,0,0,0,0),(112749,'2025-09-04',112,0,0,0,1,0,0,0,0,0,0,0,0),(112748,'2025-09-04',111,0,0,0,1,1,0,0,0,0,0,0,0),(112747,'2025-09-04',110,0,0,0,1,0,0,0,0,0,0,0,0),(112746,'2025-09-04',109,0,0,0,1,0,0,1,0,0,0,0,0),(112745,'2025-09-04',106,0,0,0,1,0,0,0,0,0,0,0,0),(112744,'2025-09-04',105,0,0,0,1,0,0,0,0,0,0,0,0),(112743,'2025-09-04',104,0,0,0,1,0,0,0,0,0,0,0,0),(112742,'2025-09-04',103,0,0,0,1,0,0,0,0,0,0,0,0),(112741,'2025-09-04',102,0,0,0,1,0,0,0,0,0,0,0,0),(112740,'2025-09-04',101,0,0,0,1,0,0,0,0,0,0,0,0),(112739,'2025-09-04',100,0,0,0,1,0,0,0,0,0,0,0,0),(112738,'2025-09-04',98,0,0,0,1,0,0,0,0,0,0,0,0),(112737,'2025-09-04',97,0,0,0,1,0,0,0,0,0,0,0,0),(112736,'2025-09-04',96,0,0,0,1,0,0,0,0,0,0,0,0),(112735,'2025-09-04',95,0,0,0,1,0,0,0,0,0,0,0,0),(112734,'2025-09-04',94,0,0,0,1,0,0,0,0,0,0,0,0),(112733,'2025-09-04',93,0,0,0,1,0,0,0,0,0,0,0,0),(112732,'2025-09-04',91,1,0,0,1,1,0,0,0,0,0,0,0),(112731,'2025-09-04',90,0,0,0,1,0,0,0,0,0,0,0,0),(112730,'2025-09-04',89,0,0,0,1,0,1,0,0,0,0,0,0),(112729,'2025-09-04',87,0,0,0,1,0,0,0,0,0,0,0,0),(112728,'2025-09-04',86,0,0,0,1,0,0,0,0,0,0,0,0),(112727,'2025-09-04',85,0,0,0,1,0,0,0,0,0,0,0,0),(112726,'2025-09-04',84,0,0,0,1,0,0,0,0,0,0,0,0),(112382,'2025-08-31',448,0,0,0,1,0,0,0,0,0,0,0,0),(112381,'2025-08-31',446,0,0,0,1,0,0,0,0,0,0,0,0),(112380,'2025-08-31',445,0,0,0,1,0,0,0,0,0,0,0,0),(112379,'2025-08-31',443,0,0,0,1,0,0,0,0,0,0,0,0),(112378,'2025-08-31',441,0,0,0,1,0,0,0,0,0,0,0,0),(112377,'2025-08-31',440,0,0,0,1,0,0,0,0,0,0,0,0),(112376,'2025-08-31',439,0,0,0,1,0,0,0,0,0,0,0,0),(112375,'2025-08-31',438,0,0,0,1,0,0,0,0,0,0,0,0),(112374,'2025-08-31',435,0,0,0,1,0,0,0,0,0,0,0,0),(112373,'2025-08-31',434,0,0,0,1,0,0,0,0,0,0,0,0),(112372,'2025-08-31',433,0,0,0,1,0,0,0,0,0,0,0,0),(112371,'2025-08-31',432,0,0,0,1,0,0,0,0,0,0,0,0),(112370,'2025-08-31',431,0,0,0,1,0,0,0,0,0,0,0,0),(112369,'2025-08-31',430,0,0,0,1,0,0,0,0,0,0,0,0),(112368,'2025-08-31',428,0,0,0,1,0,0,0,0,0,0,0,0),(112367,'2025-08-31',426,0,0,0,1,0,0,0,0,0,0,0,0),(112366,'2025-08-31',423,0,0,0,1,0,0,0,0,0,0,0,0),(112365,'2025-08-31',422,0,0,0,1,0,0,0,0,0,0,0,0),(112364,'2025-08-31',420,0,0,0,1,0,0,0,0,0,0,0,0),(112363,'2025-08-31',417,0,0,0,1,0,0,0,0,0,0,0,0),(112362,'2025-08-31',414,0,0,0,1,0,0,0,0,0,0,0,0),(112361,'2025-08-31',413,0,0,0,1,0,0,0,0,0,0,0,0),(112360,'2025-08-31',412,0,0,0,1,0,0,0,0,0,0,0,0),(112359,'2025-08-31',410,0,0,0,1,0,0,0,0,0,0,0,0),(112358,'2025-08-31',408,0,0,0,1,0,0,0,0,0,0,0,0),(112357,'2025-08-31',407,0,0,0,1,0,0,0,0,0,0,0,0),(112356,'2025-08-31',405,0,0,0,1,1,0,0,0,0,0,0,0),(112355,'2025-08-31',403,0,0,0,1,0,0,0,0,0,0,0,0),(112354,'2025-08-31',401,0,0,0,1,0,0,0,0,0,0,0,0),(112353,'2025-08-31',400,0,0,0,1,0,0,0,0,0,0,0,0),(112352,'2025-08-31',396,0,0,0,1,0,0,0,0,0,0,0,0),(112351,'2025-08-31',395,0,0,0,1,0,0,0,0,0,0,0,0),(112350,'2025-08-31',393,0,0,0,1,0,0,0,0,0,0,0,0),(112349,'2025-08-31',392,0,0,0,1,0,0,0,0,0,0,0,0),(112348,'2025-08-31',391,0,0,0,1,0,0,0,0,0,0,0,0),(112347,'2025-08-31',390,0,0,0,1,0,0,0,0,0,0,0,0),(112346,'2025-08-31',388,0,0,0,1,0,0,0,0,0,0,0,0),(112345,'2025-08-31',387,0,0,0,1,0,0,0,0,0,0,0,0),(112344,'2025-08-31',385,0,0,0,1,0,0,0,0,0,0,0,0),(112343,'2025-08-31',384,0,0,0,1,0,0,0,0,0,0,0,0),(112342,'2025-08-31',382,0,0,0,1,0,0,0,0,0,0,0,0),(112341,'2025-08-31',381,0,0,0,1,0,0,0,0,0,0,0,0),(112340,'2025-08-31',378,0,0,0,1,0,0,0,0,0,0,0,0),(112339,'2025-08-31',377,0,0,0,1,0,0,0,0,0,0,0,0),(112338,'2025-08-31',376,0,0,0,1,0,0,0,0,0,0,0,0),(112337,'2025-08-31',375,0,0,0,1,0,0,0,0,0,0,0,0),(112336,'2025-08-31',372,0,0,0,1,0,0,0,0,0,0,0,0),(112335,'2025-08-31',371,0,0,0,1,0,0,0,0,0,0,0,0),(112334,'2025-08-31',367,0,0,0,1,0,0,0,0,0,0,0,0),(112333,'2025-08-31',365,0,0,0,1,0,0,0,0,0,0,0,0),(112332,'2025-08-31',364,0,0,0,1,0,0,0,0,0,0,0,0),(112331,'2025-08-31',363,0,0,0,1,0,0,0,0,0,0,0,0),(112330,'2025-08-31',361,0,0,0,1,0,0,0,0,0,0,0,0),(112329,'2025-08-31',360,0,0,0,1,0,0,0,0,0,0,0,0),(112328,'2025-08-31',359,0,0,0,1,0,0,0,0,0,0,0,0),(112327,'2025-08-31',357,0,0,0,1,0,0,0,0,0,0,0,0),(112326,'2025-08-31',353,0,0,0,1,0,0,0,0,0,0,0,0),(112325,'2025-08-31',352,0,0,0,1,0,0,0,0,0,0,0,0),(112324,'2025-08-31',351,0,0,0,1,0,0,0,0,0,0,0,0),(112323,'2025-08-31',348,0,0,0,1,0,0,0,0,0,0,0,0),(112322,'2025-08-31',347,0,0,0,1,0,0,0,0,0,0,0,0),(112321,'2025-08-31',346,0,0,0,1,0,0,0,0,0,0,0,0),(112320,'2025-08-31',345,0,0,0,1,0,0,0,0,0,0,0,0),(112319,'2025-08-31',344,0,0,0,1,0,0,0,0,0,0,0,0),(112318,'2025-08-31',341,0,0,0,1,0,0,0,0,0,0,0,0),(112317,'2025-08-31',340,0,0,0,1,0,0,0,0,0,0,0,0),(112316,'2025-08-31',339,0,0,0,1,0,0,0,0,0,0,0,0),(112315,'2025-08-31',338,0,0,0,1,0,0,0,0,0,0,0,0),(112314,'2025-08-31',337,0,0,0,1,0,0,0,0,0,0,0,0),(112313,'2025-08-31',336,0,0,0,1,0,0,0,0,0,0,0,0),(112312,'2025-08-31',335,0,0,0,1,0,0,0,0,0,0,0,0),(112311,'2025-08-31',334,0,0,0,1,0,0,0,0,0,0,0,0),(112310,'2025-08-31',333,0,0,0,1,0,0,0,0,0,0,0,0),(112309,'2025-08-31',332,0,0,0,1,0,0,0,0,0,0,0,0),(112308,'2025-08-31',331,0,0,0,1,0,0,0,0,0,0,0,0),(112307,'2025-08-31',330,0,0,0,1,0,0,0,0,0,0,0,0),(112306,'2025-08-31',329,0,0,0,1,0,0,0,0,0,0,0,0),(112305,'2025-08-31',328,0,0,0,1,0,0,0,0,0,0,0,0),(112304,'2025-08-31',327,0,0,1,0,0,0,0,0,0,0,0,0),(112303,'2025-08-31',326,0,0,0,1,0,0,0,0,0,0,0,0),(112302,'2025-08-31',324,0,0,0,1,0,0,0,0,0,0,0,0),(112301,'2025-08-31',323,0,0,0,1,0,0,0,0,0,0,0,0),(112300,'2025-08-31',321,0,0,0,1,0,0,0,0,0,0,0,0),(112299,'2025-08-31',320,0,0,0,1,0,0,0,0,0,0,0,0),(112298,'2025-08-31',319,0,0,0,1,0,0,0,0,0,0,0,0),(112297,'2025-08-31',317,0,0,0,1,0,0,0,0,0,0,0,0),(112296,'2025-08-31',316,0,0,0,1,0,0,0,0,0,0,0,0),(112295,'2025-08-31',314,0,0,0,1,0,0,0,0,0,0,0,0),(112294,'2025-08-31',313,0,0,0,1,0,0,0,0,0,0,0,0),(112293,'2025-08-31',311,0,0,0,0,1,0,0,0,0,0,0,0),(112292,'2025-08-31',310,0,0,0,1,0,0,0,0,0,0,0,0),(112291,'2025-08-31',309,0,0,0,1,0,0,0,0,0,0,0,0),(112290,'2025-08-31',308,0,0,0,1,1,1,0,0,0,0,0,0),(112289,'2025-08-31',307,0,0,0,1,0,0,0,0,0,0,0,0),(112288,'2025-08-31',304,0,0,0,1,0,0,0,0,0,0,0,0),(112287,'2025-08-31',303,0,0,0,1,0,0,0,0,0,0,0,0),(112286,'2025-08-31',302,0,0,0,1,0,0,0,0,0,0,0,0),(112285,'2025-08-31',301,0,0,0,1,0,0,0,0,0,0,0,0),(112284,'2025-08-31',300,0,0,0,1,0,0,0,0,0,0,0,0),(112283,'2025-08-31',299,0,0,0,1,0,0,0,0,0,0,0,0),(112282,'2025-08-31',298,0,0,0,1,0,0,0,0,0,0,0,0),(112281,'2025-08-31',296,0,0,0,1,0,0,0,0,0,0,0,0),(112280,'2025-08-31',295,0,0,0,1,0,0,0,0,0,0,0,0),(112279,'2025-08-31',294,0,0,0,1,0,0,0,0,0,0,0,0),(112278,'2025-08-31',292,0,0,0,1,0,0,0,0,0,0,0,0),(112277,'2025-08-31',291,0,0,0,1,0,0,0,0,0,0,0,0),(112276,'2025-08-31',290,0,0,0,1,0,0,0,0,0,0,0,0),(111757,'2025-08-25',5,0,0,0,1,0,1,0,0,0,0,0,0),(111756,'2025-08-25',3,0,0,0,1,0,0,0,0,0,0,0,0),(112275,'2025-08-31',289,0,0,0,1,0,0,0,0,0,0,0,0),(112274,'2025-08-31',288,0,0,0,1,0,0,0,0,0,0,0,0),(112273,'2025-08-31',285,0,0,0,1,0,0,0,0,0,0,0,0),(112272,'2025-08-31',281,0,0,0,1,0,0,0,0,0,0,0,0),(112271,'2025-08-31',280,0,0,0,1,0,0,0,0,0,0,0,0),(112270,'2025-08-31',278,0,0,0,1,0,0,0,0,0,0,0,0),(112269,'2025-08-31',275,0,0,0,1,0,0,0,0,0,0,0,0),(112268,'2025-08-31',274,0,0,0,1,0,0,0,0,0,0,0,0),(112267,'2025-08-31',273,0,0,0,1,0,0,0,0,0,0,0,0),(112266,'2025-08-31',271,0,0,0,1,0,0,0,0,0,0,0,0),(112265,'2025-08-31',269,0,0,0,1,0,0,0,0,0,0,0,0),(112264,'2025-08-31',268,0,0,0,1,0,0,0,0,0,0,0,0),(112263,'2025-08-31',266,0,0,0,1,0,0,0,0,0,0,0,0),(112262,'2025-08-31',265,0,0,0,1,0,0,0,0,0,0,0,0),(112261,'2025-08-31',264,0,0,0,1,0,0,0,0,0,0,0,0),(111755,'2025-08-25',2,0,0,0,1,0,0,0,0,0,0,0,0),(111754,'2025-08-25',1,0,0,0,1,0,0,0,0,0,0,0,0),(111753,'2025-08-24',233,0,0,0,0,0,0,1,0,0,0,0,0),(111752,'2025-08-24',218,0,0,0,0,0,0,5,0,0,0,0,0),(111751,'2025-08-24',123,0,0,0,0,0,0,1,0,0,0,0,0),(111750,'2025-08-24',109,0,0,0,0,0,0,1,0,0,0,0,0),(111749,'2025-08-24',2,0,0,0,0,0,0,1,0,0,0,0,0),(111748,'2025-08-24',1,0,0,0,0,0,0,1,0,0,0,0,0),(112260,'2025-08-31',263,0,0,0,1,0,0,0,0,0,0,0,0),(112259,'2025-08-31',262,0,0,0,1,0,0,0,0,0,0,0,0),(112258,'2025-08-31',261,0,0,0,1,0,0,0,0,0,0,0,0),(112257,'2025-08-31',260,0,0,0,1,0,0,0,0,0,0,0,0),(112256,'2025-08-31',258,0,0,0,1,0,0,0,0,0,0,0,0),(112255,'2025-08-31',257,0,0,0,1,0,0,0,0,0,0,0,0),(112254,'2025-08-31',256,0,0,0,1,0,0,0,0,0,0,0,0),(112253,'2025-08-31',255,0,0,0,1,0,0,0,0,0,0,0,0),(112252,'2025-08-31',254,0,0,0,1,0,0,0,0,0,0,0,0),(112251,'2025-08-31',253,0,0,0,1,0,0,0,0,0,0,0,0),(112250,'2025-08-31',251,0,0,0,1,0,0,0,0,0,0,0,0),(112249,'2025-08-31',250,0,0,0,1,0,0,0,0,0,0,0,0),(112248,'2025-08-31',249,0,0,0,1,0,0,0,0,0,0,0,0),(112247,'2025-08-31',247,0,0,0,1,0,0,0,0,0,0,0,0),(112246,'2025-08-31',246,0,0,0,1,0,0,0,0,0,0,0,0),(112245,'2025-08-31',245,0,0,0,1,0,0,0,0,0,0,0,0),(112244,'2025-08-31',243,0,0,0,1,0,0,0,0,0,0,0,0),(112243,'2025-08-31',242,0,0,0,1,0,0,0,0,0,0,0,0),(112242,'2025-08-31',241,0,0,0,1,0,0,0,0,0,0,0,0),(112241,'2025-08-31',239,0,0,0,1,0,0,0,0,0,0,0,0),(112240,'2025-08-31',238,0,0,0,1,0,0,0,0,0,0,0,0),(112239,'2025-08-31',236,0,0,0,1,0,0,0,0,0,0,0,0),(112238,'2025-08-31',234,0,0,0,1,0,0,0,0,0,0,0,0),(112237,'2025-08-31',233,0,0,0,1,0,0,0,0,0,0,0,0),(112236,'2025-08-31',232,0,0,0,1,0,0,0,0,0,0,0,0),(112235,'2025-08-31',231,0,0,0,1,0,0,0,0,0,0,0,0),(112234,'2025-08-31',230,0,0,0,0,0,1,0,0,0,0,0,0),(112233,'2025-08-31',228,0,0,0,1,0,0,0,0,0,0,0,0),(112232,'2025-08-31',227,0,0,0,1,0,0,0,0,0,0,0,0),(112231,'2025-08-31',226,0,0,0,1,0,0,0,0,0,0,0,0),(112230,'2025-08-31',225,0,0,0,1,0,0,0,0,0,0,0,0),(112229,'2025-08-31',224,0,0,0,1,0,0,0,0,0,0,0,0),(112228,'2025-08-31',222,0,0,0,1,0,0,0,0,0,0,0,0),(112227,'2025-08-31',221,0,0,0,1,0,0,0,0,0,0,0,0),(112226,'2025-08-31',220,0,0,0,1,0,0,0,0,0,0,0,0),(112225,'2025-08-31',217,0,0,0,1,0,0,0,0,0,0,0,0),(112224,'2025-08-31',214,0,0,0,1,0,0,0,0,0,0,0,0),(112223,'2025-08-31',213,0,0,0,1,0,0,0,0,0,0,0,0),(112222,'2025-08-31',212,0,0,0,1,0,0,0,0,0,0,0,0),(112221,'2025-08-31',211,0,0,0,1,0,0,0,0,0,0,0,0),(112220,'2025-08-31',210,0,0,0,1,0,0,0,0,0,0,0,0),(112219,'2025-08-31',209,0,0,0,1,0,0,0,0,0,0,0,0),(112218,'2025-08-31',208,0,0,0,1,0,0,0,0,0,0,0,0),(112217,'2025-08-31',207,0,0,0,1,0,0,0,0,0,0,0,0),(112216,'2025-08-31',206,0,0,0,1,0,0,0,0,0,0,0,0),(112215,'2025-08-31',205,0,0,0,1,0,0,0,0,0,0,0,0),(112214,'2025-08-31',204,0,0,0,1,0,0,0,0,0,0,0,0),(112213,'2025-08-31',203,0,0,0,1,0,0,0,0,0,0,0,0),(112212,'2025-08-31',201,0,0,0,1,0,0,0,0,0,0,0,0),(112211,'2025-08-31',200,0,0,0,1,0,0,0,0,0,0,0,0),(112210,'2025-08-31',197,0,0,0,1,0,0,0,0,0,0,0,0),(112209,'2025-08-31',196,0,0,0,1,0,0,0,0,0,0,0,0),(112208,'2025-08-31',195,0,0,0,1,0,0,0,0,0,0,0,0),(112207,'2025-08-31',194,0,0,0,1,0,0,0,0,0,0,0,0),(112206,'2025-08-31',193,0,0,0,1,0,0,0,0,0,0,0,0),(112205,'2025-08-31',192,0,0,0,1,0,0,0,0,0,0,0,0),(112204,'2025-08-31',191,0,0,0,1,0,0,0,0,0,0,0,0),(112203,'2025-08-31',190,0,0,0,1,0,0,0,0,0,0,0,0),(112202,'2025-08-31',189,0,0,0,1,0,0,0,0,0,0,0,0),(112201,'2025-08-31',188,0,0,0,1,0,0,0,0,0,0,0,0),(112200,'2025-08-31',187,0,0,0,1,0,0,0,0,0,0,0,0),(112199,'2025-08-31',186,0,0,0,1,0,0,0,0,0,0,0,0),(112198,'2025-08-31',185,0,0,0,1,0,0,0,0,0,0,0,0),(112197,'2025-08-31',184,0,0,0,1,0,0,0,0,0,0,0,0),(112196,'2025-08-31',183,0,0,0,1,0,0,0,0,0,0,0,0),(112195,'2025-08-31',182,0,0,0,1,0,0,0,0,0,0,0,0),(112194,'2025-08-31',181,0,0,0,1,0,0,0,0,0,0,0,0),(112193,'2025-08-31',180,0,0,0,1,0,0,0,0,0,0,0,0),(112192,'2025-08-31',179,0,0,0,1,0,0,0,0,0,0,0,0),(112191,'2025-08-31',178,0,0,0,0,0,1,0,0,0,0,0,0),(112190,'2025-08-31',176,0,0,0,1,0,0,0,0,0,0,0,0),(112189,'2025-08-31',175,0,0,0,1,0,0,0,0,0,0,0,0),(112188,'2025-08-31',174,0,0,0,1,0,0,0,0,0,0,0,0),(112187,'2025-08-31',173,0,0,0,1,0,0,0,0,0,0,0,0),(112186,'2025-08-31',172,0,0,0,1,0,0,0,0,0,0,0,0),(112185,'2025-08-31',170,0,0,0,1,0,0,0,0,0,0,0,0),(112184,'2025-08-31',168,0,0,0,1,0,0,0,0,0,0,0,0),(112183,'2025-08-31',167,0,0,0,1,0,0,0,0,0,0,0,0),(112182,'2025-08-31',166,0,0,0,1,0,0,0,0,0,0,0,0),(112181,'2025-08-31',164,0,0,0,1,0,0,0,0,0,0,0,0),(112180,'2025-08-31',163,0,0,0,1,0,0,0,0,0,0,0,0),(112179,'2025-08-31',162,0,0,0,0,0,1,0,0,0,0,0,0),(112178,'2025-08-31',161,0,0,0,1,1,0,0,0,0,0,0,0),(112177,'2025-08-31',160,0,0,0,1,0,0,0,0,0,0,0,0),(112176,'2025-08-31',159,0,0,0,1,0,0,0,0,0,0,0,0),(112175,'2025-08-31',158,0,0,0,1,0,0,0,0,0,0,0,0),(112174,'2025-08-31',157,0,0,0,1,0,0,0,0,0,0,0,0),(112173,'2025-08-31',154,0,0,0,1,0,0,0,0,0,0,0,0),(112172,'2025-08-31',152,0,0,0,1,0,0,0,0,0,0,0,0),(112171,'2025-08-31',151,0,0,0,1,0,0,0,0,0,0,0,0),(112170,'2025-08-31',148,0,0,0,1,0,0,0,0,0,0,0,0),(112169,'2025-08-31',147,0,0,0,1,0,0,0,0,0,0,0,0),(112168,'2025-08-31',146,0,0,0,1,0,0,0,0,0,0,0,0),(112167,'2025-08-31',145,0,0,0,1,0,0,0,0,0,0,0,0),(112166,'2025-08-31',144,0,0,0,1,0,0,0,0,0,0,0,0),(112165,'2025-08-31',143,0,0,0,1,0,0,0,0,0,0,0,0),(112164,'2025-08-31',141,0,0,0,1,0,0,0,0,0,0,0,0),(112163,'2025-08-31',140,0,0,0,1,0,0,0,0,0,0,0,0),(112105,'2025-08-26',327,1,0,0,0,0,0,0,0,0,0,0,0),(112104,'2025-08-26',162,0,0,0,0,1,0,0,0,0,0,0,0),(112103,'2025-08-26',109,0,0,0,0,0,1,0,0,0,0,0,0),(112102,'2025-08-26',47,0,0,0,0,0,1,0,0,0,0,0,0),(112101,'2025-08-26',27,0,0,0,0,1,0,0,0,0,0,0,0),(112144,'2025-08-31',96,0,0,0,1,0,0,0,0,0,0,0,0),(112143,'2025-08-31',94,0,0,0,1,0,0,0,0,0,0,0,0),(112142,'2025-08-31',91,1,0,0,1,0,0,0,0,0,0,0,0),(112141,'2025-08-31',90,0,0,0,1,0,0,0,0,0,0,0,0),(112140,'2025-08-31',89,0,0,0,0,0,0,2,0,0,0,0,0),(112139,'2025-08-31',87,0,0,0,1,0,0,0,0,0,0,0,0),(112138,'2025-08-31',81,0,0,0,0,0,0,2,0,0,0,0,0),(112137,'2025-08-31',79,0,0,0,1,0,0,0,0,0,0,0,0),(112721,'2025-09-04',79,0,0,0,1,0,0,0,0,0,0,0,0),(112720,'2025-09-04',78,0,0,0,1,0,0,0,0,0,0,0,0),(112719,'2025-09-04',77,0,0,0,1,0,0,0,0,0,0,0,0),(112718,'2025-09-04',75,0,0,0,1,0,0,0,0,0,0,0,0),(112717,'2025-09-04',74,0,0,0,1,0,0,0,0,0,0,0,0),(112716,'2025-09-04',73,0,0,0,1,0,0,0,0,0,0,0,0),(113022,'2025-09-10',3,0,0,0,1,0,0,0,0,0,0,0,0),(113021,'2025-09-10',2,0,0,0,1,0,0,1,0,0,0,0,0),(113020,'2025-09-10',1,0,0,0,1,0,0,1,0,0,0,0,0),(113651,'2025-09-15',448,0,0,0,1,0,0,0,0,0,0,0,0),(113650,'2025-09-15',446,0,0,0,1,0,0,0,0,0,0,0,0),(113649,'2025-09-15',445,0,0,0,1,0,0,0,0,0,0,0,0),(113648,'2025-09-15',443,0,0,0,1,0,0,0,0,0,0,0,0),(113647,'2025-09-15',441,0,0,0,1,0,0,0,0,0,0,0,0),(113646,'2025-09-15',440,0,0,0,1,0,0,0,0,0,0,0,0),(113645,'2025-09-15',439,0,0,0,1,0,0,0,0,0,0,0,0),(113644,'2025-09-15',438,0,0,0,1,0,0,0,0,0,0,0,0),(113643,'2025-09-15',435,0,0,0,1,0,0,0,0,0,0,0,0),(113642,'2025-09-15',434,0,0,0,1,0,0,0,0,0,0,0,0),(113641,'2025-09-15',433,0,0,0,1,0,0,0,0,0,0,0,0),(113640,'2025-09-15',432,0,0,0,1,0,0,0,0,0,0,0,0),(113639,'2025-09-15',431,0,0,0,1,0,0,0,0,0,0,0,0),(113638,'2025-09-15',430,0,0,0,1,0,0,0,0,0,0,0,0),(113637,'2025-09-15',428,0,0,0,1,0,0,0,0,0,0,0,0),(113636,'2025-09-15',426,0,0,0,1,0,0,0,0,0,0,0,0),(113635,'2025-09-15',423,0,0,0,1,0,0,0,0,0,0,0,0),(113634,'2025-09-15',422,0,0,0,1,0,0,0,0,0,0,0,0),(113633,'2025-09-15',420,0,0,0,1,0,0,0,0,0,0,0,0),(113632,'2025-09-15',417,0,0,0,1,0,0,0,0,0,0,0,0),(113631,'2025-09-15',414,0,0,0,1,0,0,0,0,0,0,0,0),(113630,'2025-09-15',413,0,0,0,1,0,0,0,0,0,0,0,0),(113629,'2025-09-15',412,0,0,0,1,0,0,0,0,0,0,0,0),(113628,'2025-09-15',410,0,0,0,1,0,0,0,0,0,0,0,0),(113627,'2025-09-15',408,0,0,0,1,0,0,0,0,0,0,0,0),(113626,'2025-09-15',407,0,0,0,1,0,0,0,0,0,0,0,0),(113625,'2025-09-15',405,0,0,0,1,0,0,0,0,0,0,0,0),(113624,'2025-09-15',403,0,0,0,1,0,0,0,0,0,0,0,0),(113623,'2025-09-15',401,0,0,0,1,0,0,0,0,0,0,0,0),(113622,'2025-09-15',400,0,0,0,1,0,0,0,0,0,0,0,0),(113621,'2025-09-15',396,0,0,0,1,0,0,0,0,0,0,0,0),(113620,'2025-09-15',395,0,0,0,1,0,0,0,0,0,0,0,0),(113619,'2025-09-15',393,0,0,0,1,0,0,0,0,0,0,0,0),(113618,'2025-09-15',392,0,0,0,1,0,0,0,0,0,0,0,0),(113617,'2025-09-15',391,0,0,0,1,0,0,0,0,0,0,0,0),(113616,'2025-09-15',390,0,0,0,1,0,0,0,0,0,0,0,0),(113615,'2025-09-15',388,0,0,0,1,0,0,0,0,0,0,0,0),(113614,'2025-09-15',387,0,0,0,1,0,0,0,0,0,0,0,0),(113613,'2025-09-15',385,0,0,0,1,0,0,0,0,0,0,0,0),(113612,'2025-09-15',384,0,0,0,1,0,0,0,0,0,0,0,0),(113611,'2025-09-15',382,0,0,0,1,0,0,0,0,0,0,0,0),(113610,'2025-09-15',381,0,0,0,1,0,0,0,0,0,0,0,0),(113609,'2025-09-15',378,0,0,0,1,0,0,0,0,0,0,0,0),(113608,'2025-09-15',377,0,0,0,1,0,0,0,0,0,0,0,0),(113607,'2025-09-15',376,0,0,0,1,0,0,0,0,0,0,0,0),(113606,'2025-09-15',375,0,0,0,1,0,0,0,0,0,0,0,0),(113605,'2025-09-15',372,0,0,0,1,0,0,0,0,0,0,0,0),(113604,'2025-09-15',371,0,0,0,1,0,0,0,0,0,0,0,0),(113603,'2025-09-15',367,0,0,0,1,0,0,0,0,0,0,0,0),(113602,'2025-09-15',365,0,0,0,1,0,0,0,0,0,0,0,0),(113601,'2025-09-15',364,0,0,0,1,0,0,0,0,0,0,0,0),(113600,'2025-09-15',363,0,0,0,1,0,0,0,0,0,0,0,0),(113599,'2025-09-15',361,0,0,0,1,0,0,0,0,0,0,0,0),(113598,'2025-09-15',360,0,0,0,1,0,0,0,0,0,0,0,0),(113597,'2025-09-15',359,0,0,0,1,0,0,0,0,0,0,0,0),(113596,'2025-09-15',357,0,0,0,1,0,0,0,0,0,0,0,0),(113595,'2025-09-15',353,0,0,0,1,0,0,0,0,0,0,0,0),(113594,'2025-09-15',352,0,0,0,1,0,0,0,0,0,0,0,0),(113593,'2025-09-15',351,0,0,0,1,0,0,0,0,0,0,0,0),(113592,'2025-09-15',348,0,0,0,1,0,0,0,0,0,0,0,0),(113591,'2025-09-15',347,0,0,0,1,0,0,0,0,0,0,0,0),(113590,'2025-09-15',346,0,0,0,1,0,0,0,0,0,0,0,0),(113589,'2025-09-15',345,0,0,0,1,0,0,0,0,0,0,0,0),(113588,'2025-09-15',344,0,0,0,1,0,0,0,0,0,0,0,0),(113587,'2025-09-15',341,0,0,0,1,0,0,0,0,0,0,0,0),(113586,'2025-09-15',340,0,0,0,1,0,0,0,0,0,0,0,0),(113585,'2025-09-15',339,0,0,0,1,0,0,0,0,0,0,0,0),(113584,'2025-09-15',338,0,0,0,1,0,0,0,0,0,0,0,0),(113583,'2025-09-15',337,0,0,0,1,0,0,0,0,0,0,0,0),(113582,'2025-09-15',336,0,0,0,1,0,0,0,0,0,0,0,0),(113581,'2025-09-15',335,0,0,0,1,0,0,0,0,0,0,0,0),(113580,'2025-09-15',334,0,0,0,1,0,0,0,0,0,0,0,0),(113579,'2025-09-15',333,0,0,0,1,0,0,0,0,0,0,0,0),(113578,'2025-09-15',332,0,0,0,1,0,0,0,0,0,0,0,0),(113577,'2025-09-15',331,0,0,0,1,0,0,0,0,0,0,0,0),(113576,'2025-09-15',330,0,0,0,1,0,0,0,0,0,0,0,0),(113575,'2025-09-15',329,0,0,0,1,0,0,0,0,0,0,0,0),(113574,'2025-09-15',328,0,0,0,1,0,0,0,0,0,0,0,0),(113573,'2025-09-15',327,0,0,0,1,0,0,0,0,0,0,0,0),(113572,'2025-09-15',326,0,0,0,1,0,0,0,0,0,0,0,0),(113571,'2025-09-15',324,0,0,0,1,0,0,0,0,0,0,0,0),(113570,'2025-09-15',323,0,0,0,1,0,0,0,0,0,0,0,0),(113569,'2025-09-15',321,0,0,0,1,0,0,0,0,0,0,0,0),(113568,'2025-09-15',320,0,0,0,1,0,0,0,0,0,0,0,0),(113567,'2025-09-15',319,0,0,0,1,0,0,0,0,0,0,0,0),(113566,'2025-09-15',317,0,0,0,1,0,0,0,0,0,0,0,0),(113565,'2025-09-15',316,0,0,0,1,0,0,0,0,0,0,0,0),(113564,'2025-09-15',314,0,0,0,1,0,0,0,0,0,0,0,0),(113563,'2025-09-15',313,0,0,0,1,0,0,0,0,0,0,0,0),(113562,'2025-09-15',310,0,0,0,1,0,0,0,0,0,0,0,0),(113561,'2025-09-15',309,0,0,0,1,0,0,0,0,0,0,0,0),(113560,'2025-09-15',308,0,0,0,1,0,0,0,0,0,0,0,0),(113559,'2025-09-15',307,0,0,0,1,0,0,0,0,0,0,0,0),(113558,'2025-09-15',304,0,0,0,1,0,0,0,0,0,0,0,0),(113557,'2025-09-15',303,0,0,0,1,0,0,0,0,0,0,0,0),(113556,'2025-09-15',302,0,0,0,1,0,0,0,0,0,0,0,0),(113555,'2025-09-15',301,0,0,0,1,0,0,0,0,0,0,0,0),(113554,'2025-09-15',300,0,0,0,1,0,0,0,0,0,0,0,0),(113553,'2025-09-15',299,0,0,0,1,0,0,0,0,0,0,0,0),(113552,'2025-09-15',298,0,0,0,1,0,0,0,0,0,0,0,0),(113551,'2025-09-15',296,0,0,0,1,0,0,0,0,0,0,0,0),(113550,'2025-09-15',295,0,0,0,1,0,0,0,0,0,0,0,0),(113549,'2025-09-15',294,0,0,0,1,0,0,0,0,0,0,0,0),(113548,'2025-09-15',292,0,0,0,1,0,0,0,0,0,0,0,0),(113547,'2025-09-15',291,0,0,0,1,0,0,0,0,0,0,0,0),(113546,'2025-09-15',290,0,0,0,1,0,0,0,0,0,0,0,0),(113545,'2025-09-15',289,0,0,0,1,0,0,0,0,0,0,0,0),(113544,'2025-09-15',288,0,0,0,1,0,0,0,0,0,0,0,0),(113543,'2025-09-15',285,0,0,0,1,0,0,0,0,0,0,0,0),(113542,'2025-09-15',281,0,0,0,1,0,0,0,0,0,0,0,0),(113541,'2025-09-15',280,0,0,0,1,0,0,0,0,0,0,0,0),(113540,'2025-09-15',278,0,0,0,1,0,0,0,0,0,0,0,0),(113539,'2025-09-15',275,0,0,0,1,0,0,0,0,0,0,0,0),(113538,'2025-09-15',274,0,0,0,1,0,0,0,0,0,0,0,0),(113537,'2025-09-15',273,0,0,0,1,0,0,0,0,0,0,0,0),(113536,'2025-09-15',271,0,0,0,1,0,0,0,0,0,0,0,0),(113535,'2025-09-15',269,0,0,0,1,0,0,0,0,0,0,0,0),(113534,'2025-09-15',268,0,0,0,1,0,0,0,0,0,0,0,0),(113533,'2025-09-15',266,0,0,0,1,0,0,0,0,0,0,0,0),(113532,'2025-09-15',265,0,0,0,1,0,0,0,0,0,0,0,0),(113531,'2025-09-15',264,0,0,0,1,0,0,0,0,0,0,0,0),(113530,'2025-09-15',263,0,0,0,1,0,0,0,0,0,0,0,0),(113529,'2025-09-15',262,0,0,0,1,0,0,0,0,0,0,0,0),(113528,'2025-09-15',261,0,0,0,1,0,0,0,0,0,0,0,0),(113527,'2025-09-15',260,0,0,0,1,0,0,0,0,0,0,0,0),(113526,'2025-09-15',258,0,0,0,1,0,0,0,0,0,0,0,0),(113525,'2025-09-15',257,0,0,0,1,0,0,0,0,0,0,0,0),(113524,'2025-09-15',256,0,0,0,1,0,0,0,0,0,0,0,0),(113523,'2025-09-15',255,0,0,0,1,0,0,0,0,0,0,0,0),(113522,'2025-09-15',254,0,0,0,1,0,0,0,0,0,0,0,0),(113521,'2025-09-15',253,0,0,0,1,0,0,0,0,0,0,0,0),(113520,'2025-09-15',251,0,0,0,1,0,0,0,0,0,0,0,0),(113519,'2025-09-15',250,0,0,0,1,0,0,0,0,0,0,0,0),(113518,'2025-09-15',249,0,0,0,1,0,0,0,0,0,0,0,0),(113517,'2025-09-15',247,0,0,0,1,0,0,0,0,0,0,0,0),(113516,'2025-09-15',246,0,0,0,1,0,0,0,0,0,0,0,0),(113515,'2025-09-15',245,0,0,0,1,0,0,0,0,0,0,0,0),(113514,'2025-09-15',243,0,0,0,1,0,0,0,0,0,0,0,0),(113513,'2025-09-15',242,0,0,0,1,0,0,0,0,0,0,0,0),(113512,'2025-09-15',241,0,0,0,1,0,0,0,0,0,0,0,0),(113511,'2025-09-15',239,0,0,0,1,0,0,0,0,0,0,0,0),(113510,'2025-09-15',238,0,0,0,1,0,0,0,0,0,0,0,0),(113509,'2025-09-15',236,0,0,0,1,0,0,0,0,0,0,0,0),(113508,'2025-09-15',234,0,0,0,1,0,0,0,0,0,0,0,0),(113507,'2025-09-15',233,0,0,0,1,0,0,0,0,0,0,0,0),(113506,'2025-09-15',232,0,0,0,1,0,0,0,0,0,0,0,0),(113505,'2025-09-15',231,0,0,0,1,0,0,0,0,0,0,0,0),(113504,'2025-09-15',228,0,0,0,1,0,0,0,0,0,0,0,0),(113503,'2025-09-15',227,0,0,0,1,0,0,0,0,0,0,0,0),(113502,'2025-09-15',226,0,0,0,1,0,0,0,0,0,0,0,0),(113501,'2025-09-15',225,0,0,0,1,0,0,0,0,0,0,0,0),(113500,'2025-09-15',224,0,0,0,1,0,0,0,0,0,0,0,0),(113499,'2025-09-15',222,0,0,0,1,0,0,0,0,0,0,0,0),(113498,'2025-09-15',221,0,0,0,1,0,0,0,0,0,0,0,0),(113497,'2025-09-15',220,0,0,0,1,0,0,0,0,0,0,0,0),(113496,'2025-09-15',217,0,0,0,1,0,0,0,0,0,0,0,0),(113495,'2025-09-15',214,0,0,0,1,0,0,0,0,0,0,0,0),(113494,'2025-09-15',213,0,0,0,1,0,0,0,0,0,0,0,0),(113493,'2025-09-15',212,0,0,0,1,0,0,0,0,0,0,0,0),(113492,'2025-09-15',211,0,0,0,1,0,0,0,0,0,0,0,0),(113491,'2025-09-15',210,0,0,0,1,0,0,0,0,0,0,0,0),(113490,'2025-09-15',209,0,0,0,1,0,0,0,0,0,0,0,0),(113489,'2025-09-15',208,0,0,0,1,0,0,0,0,0,0,0,0),(113488,'2025-09-15',207,0,0,0,1,0,0,0,0,0,0,0,0),(113487,'2025-09-15',206,0,0,0,1,0,0,0,0,0,0,0,0),(113486,'2025-09-15',205,0,0,0,1,0,0,0,0,0,0,0,0),(113485,'2025-09-15',204,0,0,0,1,0,0,0,0,0,0,0,0),(113484,'2025-09-15',203,0,0,0,1,0,0,0,0,0,0,0,0),(113483,'2025-09-15',201,0,0,0,1,0,0,0,0,0,0,0,0),(113482,'2025-09-15',200,0,0,0,1,0,0,0,0,0,0,0,0),(113481,'2025-09-15',197,0,0,0,1,0,0,0,0,0,0,0,0),(113480,'2025-09-15',196,0,0,0,1,0,0,0,0,0,0,0,0),(113479,'2025-09-15',195,0,0,0,1,0,0,0,0,0,0,0,0),(113478,'2025-09-15',194,0,0,0,1,0,0,0,0,0,0,0,0),(113477,'2025-09-15',193,0,0,0,1,0,0,0,0,0,0,0,0),(113476,'2025-09-15',192,0,0,0,1,0,0,0,0,0,0,0,0),(113475,'2025-09-15',191,0,0,0,1,0,0,0,0,0,0,0,0),(113474,'2025-09-15',190,0,0,0,1,0,0,0,0,0,0,0,0),(113473,'2025-09-15',189,0,0,0,1,0,0,0,0,0,0,0,0),(113472,'2025-09-15',188,0,0,0,1,0,0,0,0,0,0,0,0),(113471,'2025-09-15',187,0,0,0,1,0,0,0,0,0,0,0,0),(113470,'2025-09-15',186,0,0,0,1,0,0,0,0,0,0,0,0),(113469,'2025-09-15',185,0,0,0,1,0,0,0,0,0,0,0,0),(113468,'2025-09-15',184,0,0,0,1,0,0,0,0,0,0,0,0),(113467,'2025-09-15',183,0,0,0,1,0,0,0,0,0,0,0,0),(113466,'2025-09-15',182,0,0,0,1,0,0,0,0,0,0,0,0),(113465,'2025-09-15',181,0,0,0,1,0,0,0,0,0,0,0,0),(113464,'2025-09-15',180,0,0,0,1,0,0,0,0,0,0,0,0),(113463,'2025-09-15',179,0,0,0,1,0,0,0,0,0,0,0,0),(113462,'2025-09-15',176,0,0,0,1,0,0,0,0,0,0,0,0),(113461,'2025-09-15',175,0,0,0,1,0,0,0,0,0,0,0,0),(113460,'2025-09-15',174,0,0,0,1,0,0,0,0,0,0,0,0),(113459,'2025-09-15',173,0,0,0,1,0,0,0,0,0,0,0,0),(113458,'2025-09-15',172,0,0,0,1,0,0,0,0,0,0,0,0),(113457,'2025-09-15',170,0,0,0,1,0,0,0,0,0,0,0,0),(113456,'2025-09-15',168,0,0,0,1,0,0,0,0,0,0,0,0),(113455,'2025-09-15',167,0,0,0,1,0,0,0,0,0,0,0,0),(113907,'2025-09-22',417,0,0,0,1,0,0,0,0,0,0,0,0),(113906,'2025-09-22',414,0,0,0,1,0,0,0,0,0,0,0,0),(114228,'2025-10-08',68,0,0,0,1,0,0,0,0,0,0,0,0),(114227,'2025-10-08',67,0,0,0,1,0,0,0,0,0,0,0,0),(114226,'2025-10-08',66,0,0,0,1,0,0,0,0,0,0,0,0),(114225,'2025-10-08',65,0,0,0,1,0,0,0,0,0,0,0,0),(114224,'2025-10-08',64,0,0,0,1,0,0,0,0,0,0,0,0),(114223,'2025-10-08',63,0,0,0,1,0,0,0,0,0,0,0,0),(114222,'2025-10-08',61,0,0,0,1,0,0,0,0,0,0,0,0),(114221,'2025-10-08',58,0,0,0,1,0,0,0,0,0,0,0,0),(114220,'2025-10-08',54,1,0,0,1,0,0,0,0,0,0,0,0),(114204,'2025-10-02',448,0,0,0,1,0,0,0,0,0,0,0,0),(114203,'2025-10-02',446,0,0,0,1,0,0,0,0,0,0,0,0),(114202,'2025-10-02',445,0,0,0,1,0,0,0,0,0,0,0,0),(114201,'2025-10-02',443,0,0,0,1,0,0,0,0,0,0,0,0),(114200,'2025-10-02',441,0,0,0,1,0,1,0,0,0,0,0,0),(114199,'2025-10-02',440,0,0,0,1,0,0,0,0,0,0,0,0),(114198,'2025-10-02',439,0,0,0,1,0,0,0,0,0,0,0,0),(114197,'2025-10-02',438,0,0,0,1,0,0,0,0,0,0,0,0),(114196,'2025-10-02',435,0,0,0,1,0,0,0,0,0,0,0,0),(114195,'2025-10-02',434,0,0,0,1,0,0,0,0,0,0,0,0),(114194,'2025-10-02',433,0,0,0,1,0,0,0,0,0,0,0,0),(114193,'2025-10-02',432,0,0,0,1,0,0,0,0,0,0,0,0),(114192,'2025-10-02',431,0,0,0,1,0,0,0,0,0,0,0,0),(114191,'2025-10-02',430,0,0,0,1,0,0,0,0,0,0,0,0),(114190,'2025-10-02',428,0,0,0,1,0,0,0,0,0,0,0,0),(114189,'2025-10-02',426,0,0,0,1,0,0,0,0,0,0,0,0),(114188,'2025-10-02',423,0,0,0,1,0,0,0,0,0,0,0,0),(114187,'2025-10-02',422,0,0,0,1,0,0,0,0,0,0,0,0),(114186,'2025-10-02',420,0,0,0,1,0,0,0,0,0,0,0,0),(114185,'2025-10-02',417,0,0,0,1,0,0,0,0,0,0,0,0),(114184,'2025-10-02',414,0,0,0,1,0,0,0,0,0,0,0,0),(114183,'2025-10-02',413,0,0,0,1,0,0,0,0,0,0,0,0),(114182,'2025-10-02',412,0,0,0,1,0,0,0,0,0,0,0,0),(114181,'2025-10-02',410,0,0,0,1,0,0,0,0,0,0,0,0),(114180,'2025-10-02',408,0,0,0,1,0,0,0,0,0,0,0,0),(114179,'2025-10-02',407,0,0,0,1,0,0,0,0,0,0,0,0),(114178,'2025-10-02',405,0,0,0,1,0,0,0,0,0,0,0,0),(114177,'2025-10-02',403,0,0,0,1,0,0,0,0,0,0,0,0),(114176,'2025-10-02',401,0,0,0,1,0,0,0,0,0,0,0,0),(114175,'2025-10-02',400,0,0,0,1,0,0,0,0,0,0,0,0),(114174,'2025-10-02',396,0,0,0,1,0,0,0,0,0,0,0,0),(114173,'2025-10-02',395,0,0,0,1,0,0,0,0,0,0,0,0),(114172,'2025-10-02',393,0,0,0,1,0,0,0,0,0,0,0,0),(114171,'2025-10-02',392,0,0,0,1,0,0,0,0,0,0,0,0),(114170,'2025-10-02',391,0,0,0,1,0,0,0,0,0,0,0,0),(114169,'2025-10-02',390,0,0,0,1,0,0,0,0,0,0,0,0),(114168,'2025-10-02',388,0,0,0,1,0,0,0,0,0,0,0,0),(114167,'2025-10-02',387,0,0,0,1,0,0,0,0,0,0,0,0),(114166,'2025-10-02',385,0,0,0,1,0,0,0,0,0,0,0,0),(114165,'2025-10-02',384,0,0,0,1,0,0,0,0,0,0,0,0),(114164,'2025-10-02',382,0,0,0,1,0,0,0,0,0,0,0,0),(114163,'2025-10-02',381,0,0,0,1,0,0,0,0,0,0,0,0),(114162,'2025-10-02',378,0,0,0,1,0,0,0,0,0,0,0,0),(114161,'2025-10-02',377,0,0,0,1,0,0,0,0,0,0,0,0),(114160,'2025-10-02',376,0,0,0,1,0,0,0,0,0,0,0,0),(114159,'2025-10-02',375,0,0,0,1,0,0,0,0,0,0,0,0),(114158,'2025-10-02',372,0,0,0,1,0,0,0,0,0,0,0,0),(114157,'2025-10-02',371,0,0,0,1,0,0,0,0,0,0,0,0),(114156,'2025-10-02',367,0,0,0,1,0,0,0,0,0,0,0,0),(114155,'2025-10-02',365,0,0,0,1,0,0,0,0,0,0,0,0),(114154,'2025-10-02',364,0,0,0,1,0,0,0,0,0,0,0,0),(114153,'2025-10-02',363,0,0,0,1,0,0,0,0,0,0,0,0),(114152,'2025-10-02',361,0,0,0,1,0,0,0,0,0,0,0,0),(114151,'2025-10-02',360,0,0,0,1,0,0,0,0,0,0,0,0),(114150,'2025-10-02',359,0,0,0,1,0,0,0,0,0,0,0,0),(114149,'2025-10-02',357,0,0,0,1,0,0,0,0,0,0,0,0),(114148,'2025-10-02',353,0,0,0,1,0,0,0,0,0,0,0,0),(114147,'2025-10-02',352,0,0,0,1,0,0,0,0,0,0,0,0),(114146,'2025-10-02',351,0,0,0,1,0,0,0,0,0,0,0,0),(114145,'2025-10-02',348,0,0,0,1,0,0,0,0,0,0,0,0),(114144,'2025-10-02',347,0,0,0,1,0,0,0,0,0,0,0,0),(114143,'2025-10-02',346,0,0,0,1,0,0,0,0,0,0,0,0),(114142,'2025-10-02',345,0,0,0,1,0,0,0,0,0,0,0,0),(114141,'2025-10-02',344,0,0,0,1,0,0,0,0,0,0,0,0),(114140,'2025-10-02',341,0,0,0,1,0,0,0,0,0,0,0,0),(114139,'2025-10-02',340,0,0,0,1,0,0,0,0,0,0,0,0),(114138,'2025-10-02',339,0,0,0,1,0,0,0,0,0,0,0,0),(114137,'2025-10-02',338,0,0,0,1,0,0,0,0,0,0,0,0),(114136,'2025-10-02',337,0,0,0,1,0,0,0,0,0,0,0,0),(114135,'2025-10-02',336,0,0,0,1,0,0,0,0,0,0,0,0),(114134,'2025-10-02',335,0,0,0,1,0,0,0,0,0,0,0,0),(114133,'2025-10-02',334,0,0,0,1,0,0,0,0,0,0,0,0),(114132,'2025-10-02',333,0,0,0,1,0,0,0,0,0,0,0,0),(114131,'2025-10-02',332,0,0,0,1,0,0,0,0,0,0,0,0),(114130,'2025-10-02',331,0,0,0,1,0,0,0,0,0,0,0,0),(114129,'2025-10-02',330,0,0,0,1,0,0,0,0,0,0,0,0),(114128,'2025-10-02',329,0,0,0,1,0,0,0,0,0,0,0,0),(114127,'2025-10-02',328,0,0,0,1,0,0,0,0,0,0,0,0),(114126,'2025-10-02',327,0,0,1,0,0,0,0,0,0,0,0,0),(114125,'2025-10-02',326,0,0,0,1,0,0,0,0,0,0,0,0),(114124,'2025-10-02',324,0,0,0,1,0,0,0,0,0,0,0,0),(114123,'2025-10-02',323,0,0,0,1,0,0,0,0,0,0,0,0),(114122,'2025-10-02',321,0,0,0,1,0,0,0,0,0,0,0,0),(114121,'2025-10-02',320,0,0,0,1,0,0,0,0,0,0,0,0),(114120,'2025-10-02',319,0,0,0,1,0,0,0,0,0,0,0,0),(114119,'2025-10-02',317,0,0,0,1,0,0,0,0,0,0,0,0),(114118,'2025-10-02',316,0,0,0,1,0,0,0,0,0,0,0,0),(114117,'2025-10-02',314,0,0,0,1,0,0,0,0,0,0,0,0),(114116,'2025-10-02',313,0,0,0,1,0,0,0,0,0,0,0,0),(114115,'2025-10-02',310,0,0,0,1,0,0,0,0,0,0,0,0),(114114,'2025-10-02',309,0,0,0,1,0,0,0,0,0,0,0,0),(114113,'2025-10-02',308,0,0,0,1,0,0,0,0,0,0,0,0),(114112,'2025-10-02',307,0,0,0,1,0,0,0,0,0,0,0,0),(114111,'2025-10-02',304,0,0,0,1,0,0,0,0,0,0,0,0),(114110,'2025-10-02',303,0,0,0,1,0,0,0,0,0,0,0,0),(114109,'2025-10-02',302,0,0,0,1,0,0,0,0,0,0,0,0),(114108,'2025-10-02',301,0,0,0,1,0,0,0,0,0,0,0,0),(114107,'2025-10-02',300,0,0,0,1,0,0,0,0,0,0,0,0),(114106,'2025-10-02',299,0,0,0,1,0,0,0,0,0,0,0,0),(114105,'2025-10-02',298,0,0,0,1,0,0,0,0,0,0,0,0),(114104,'2025-10-02',296,0,0,0,1,0,0,0,0,0,0,0,0),(114103,'2025-10-02',295,0,0,0,1,0,0,0,0,0,0,0,0),(114102,'2025-10-02',294,0,0,0,1,0,0,0,0,0,0,0,0),(114101,'2025-10-02',292,0,0,0,1,0,0,0,0,0,0,0,0),(114100,'2025-10-02',291,0,0,0,1,0,0,0,0,0,0,0,0),(114099,'2025-10-02',290,0,0,0,1,0,0,0,0,0,0,0,0),(114098,'2025-10-02',289,0,0,0,1,0,0,0,0,0,0,0,0),(114097,'2025-10-02',288,0,0,0,1,0,0,0,0,0,0,0,0),(114096,'2025-10-02',285,0,0,0,1,0,0,0,0,0,0,0,0),(114095,'2025-10-02',281,0,0,0,1,0,0,0,0,0,0,0,0),(114094,'2025-10-02',280,0,0,0,1,0,0,0,0,0,0,0,0),(114093,'2025-10-02',278,0,0,0,1,0,0,0,0,0,0,0,0),(114092,'2025-10-02',275,0,0,0,1,0,0,0,0,0,0,0,0),(114091,'2025-10-02',274,0,0,0,1,0,0,0,0,0,0,0,0),(114090,'2025-10-02',273,0,0,0,1,0,0,0,0,0,0,0,0),(114089,'2025-10-02',271,0,0,0,1,0,0,0,0,0,0,0,0),(114088,'2025-10-02',269,0,0,0,1,0,0,0,0,0,0,0,0),(114087,'2025-10-02',268,0,0,0,1,0,0,0,0,0,0,0,0),(114086,'2025-10-02',266,0,0,0,1,0,0,0,0,0,0,0,0),(114085,'2025-10-02',265,0,0,0,1,0,0,0,0,0,0,0,0),(114084,'2025-10-02',264,0,0,0,1,0,0,0,0,0,0,0,0),(114083,'2025-10-02',263,0,0,0,1,0,0,0,0,0,0,0,0),(114082,'2025-10-02',262,0,0,0,1,0,0,0,0,0,0,0,0),(114081,'2025-10-02',261,0,0,0,1,0,0,0,0,0,0,0,0),(114080,'2025-10-02',260,0,0,0,1,0,0,0,0,0,0,0,0),(114079,'2025-10-02',258,0,0,0,1,0,0,0,0,0,0,0,0),(114078,'2025-10-02',257,0,0,0,1,0,0,0,0,0,0,0,0),(114077,'2025-10-02',256,0,0,0,1,0,0,0,0,0,0,0,0),(114076,'2025-10-02',255,0,0,0,1,0,0,0,0,0,0,0,0),(114075,'2025-10-02',254,0,0,0,1,0,0,0,0,0,0,0,0),(114074,'2025-10-02',253,0,0,0,1,0,0,0,0,0,0,0,0),(114073,'2025-10-02',251,0,0,0,1,0,0,0,0,0,0,0,0),(114072,'2025-10-02',250,0,0,0,1,0,0,0,0,0,0,0,0),(114071,'2025-10-02',249,0,0,0,1,0,0,0,0,0,0,0,0),(114070,'2025-10-02',247,0,0,0,1,0,0,0,0,0,0,0,0),(114069,'2025-10-02',246,0,0,0,1,0,0,0,0,0,0,0,0),(114068,'2025-10-02',245,0,0,0,1,0,0,0,0,0,0,0,0),(114067,'2025-10-02',243,0,0,0,1,0,0,0,0,0,0,0,0),(114066,'2025-10-02',242,0,0,0,1,0,0,0,0,0,0,0,0),(114065,'2025-10-02',241,0,0,0,1,0,0,0,0,0,0,0,0),(114064,'2025-10-02',239,0,0,0,1,0,0,0,0,0,0,0,0),(114063,'2025-10-02',238,0,0,0,1,0,0,0,0,0,0,0,0),(114062,'2025-10-02',236,0,0,0,1,0,0,0,0,0,0,0,0),(114061,'2025-10-02',234,0,0,0,1,0,0,0,0,0,0,0,0),(114060,'2025-10-02',233,0,0,0,1,0,0,2,0,0,0,0,0),(114059,'2025-10-02',232,0,0,0,1,0,0,0,0,0,0,0,0),(114058,'2025-10-02',231,0,0,0,1,0,0,0,0,0,0,0,0),(114057,'2025-10-02',228,0,0,0,1,0,0,0,0,0,0,0,0),(114056,'2025-10-02',227,0,0,0,1,0,0,0,0,0,0,0,0),(114055,'2025-10-02',226,0,0,0,1,0,0,0,0,0,0,0,0),(114054,'2025-10-02',225,0,0,0,1,0,0,0,0,0,0,0,0),(114053,'2025-10-02',224,0,0,0,1,0,0,0,0,0,0,0,0),(114052,'2025-10-02',222,0,0,0,1,0,0,0,0,0,0,0,0),(114051,'2025-10-02',221,0,0,0,1,0,0,0,0,0,0,0,0),(114050,'2025-10-02',220,0,0,0,1,0,0,0,0,0,0,0,0),(114049,'2025-10-02',217,0,0,0,1,0,0,0,0,0,0,0,0),(114048,'2025-10-02',214,0,0,0,1,0,0,0,0,0,0,0,0),(114047,'2025-10-02',213,0,0,0,1,0,0,0,0,0,0,0,0),(114046,'2025-10-02',212,0,0,0,1,0,0,0,0,0,0,0,0),(114045,'2025-10-02',211,0,0,0,1,0,0,0,0,0,0,0,0),(114044,'2025-10-02',210,0,0,0,1,0,0,0,0,0,0,0,0),(114043,'2025-10-02',209,0,0,0,1,0,0,0,0,0,0,0,0),(114042,'2025-10-02',208,0,0,0,1,0,0,0,0,0,0,0,0),(114041,'2025-10-02',207,0,0,0,1,0,0,0,0,0,0,0,0),(114040,'2025-10-02',206,0,0,0,1,0,0,0,0,0,0,0,0),(114039,'2025-10-02',205,0,0,0,1,0,0,0,0,0,0,0,0),(114038,'2025-10-02',204,0,0,0,1,0,0,0,0,0,0,0,0),(114037,'2025-10-02',203,0,0,0,1,0,0,0,0,0,0,0,0),(114036,'2025-10-02',201,0,0,0,1,0,0,0,0,0,0,0,0),(114035,'2025-10-02',200,0,0,0,1,0,0,0,0,0,0,0,0),(114034,'2025-10-02',197,0,0,0,1,0,0,0,0,0,0,0,0),(114033,'2025-10-02',196,0,0,0,1,0,0,0,0,0,0,0,0),(114461,'2025-10-08',448,0,0,0,1,0,1,0,0,0,0,0,0),(114460,'2025-10-08',446,0,0,0,1,0,0,0,0,0,0,0,0),(114459,'2025-10-08',445,0,0,0,1,0,0,0,0,0,0,0,0),(114458,'2025-10-08',443,0,0,0,1,0,0,0,0,0,0,0,0),(114457,'2025-10-08',441,0,0,0,1,0,0,0,0,0,0,0,0),(114456,'2025-10-08',440,0,0,0,1,0,0,0,0,0,0,0,0),(114455,'2025-10-08',439,0,0,0,1,0,0,0,0,0,0,0,0),(114454,'2025-10-08',438,0,0,0,1,0,0,0,0,0,0,0,0),(114453,'2025-10-08',435,0,0,0,1,0,0,0,0,0,0,0,0),(114452,'2025-10-08',434,0,0,0,1,0,0,0,0,0,0,0,0),(114451,'2025-10-08',433,0,0,0,1,0,0,0,0,0,0,0,0),(114450,'2025-10-08',432,0,0,0,1,0,0,0,0,0,0,0,0),(114449,'2025-10-08',431,0,0,0,1,0,0,0,0,0,0,0,0),(114448,'2025-10-08',430,0,0,0,1,0,0,0,0,0,0,0,0),(114447,'2025-10-08',428,0,0,0,1,0,0,0,0,0,0,0,0),(114446,'2025-10-08',426,0,0,0,1,0,0,0,0,0,0,0,0),(114445,'2025-10-08',423,0,0,0,1,0,0,0,0,0,0,0,0),(114444,'2025-10-08',422,0,0,0,1,0,0,0,0,0,0,0,0),(114443,'2025-10-08',420,0,0,0,1,0,0,0,0,0,0,0,0),(114442,'2025-10-08',417,0,0,0,1,0,0,0,0,0,0,0,0),(114441,'2025-10-08',414,0,0,0,1,0,0,0,0,0,0,0,0),(114440,'2025-10-08',413,0,0,0,1,0,0,0,0,0,0,0,0),(114439,'2025-10-08',412,0,0,0,1,0,0,0,0,0,0,0,0),(114438,'2025-10-08',410,0,0,0,1,0,0,0,0,0,0,0,0),(114437,'2025-10-08',408,0,0,0,1,0,0,0,0,0,0,0,0),(114436,'2025-10-08',407,0,0,0,1,0,0,0,0,0,0,0,0),(114435,'2025-10-08',405,0,0,0,1,0,0,0,0,0,0,0,0),(114434,'2025-10-08',403,0,0,0,1,0,0,0,0,0,0,0,0),(114433,'2025-10-08',401,0,0,0,1,0,0,0,0,0,0,0,0),(114432,'2025-10-08',400,0,0,0,1,0,0,0,0,0,0,0,0),(114431,'2025-10-08',396,0,0,0,1,0,0,0,0,0,0,0,0),(114430,'2025-10-08',395,0,0,0,1,0,0,0,0,0,0,0,0),(114429,'2025-10-08',393,0,0,0,1,0,0,0,0,0,0,0,0),(114428,'2025-10-08',392,0,0,0,1,0,0,0,0,0,0,0,0),(114427,'2025-10-08',391,0,0,0,1,0,0,0,0,0,0,0,0),(114426,'2025-10-08',390,0,0,0,1,0,0,0,0,0,0,0,0),(114425,'2025-10-08',388,0,0,0,1,0,0,0,0,0,0,0,0),(114424,'2025-10-08',387,0,0,0,1,0,0,0,0,0,0,0,0),(114423,'2025-10-08',385,0,0,0,1,0,0,0,0,0,0,0,0),(114422,'2025-10-08',384,0,0,0,1,0,0,0,0,0,0,0,0),(114421,'2025-10-08',382,0,0,0,1,0,0,0,0,0,0,0,0),(114420,'2025-10-08',381,0,0,0,1,0,0,0,0,0,0,0,0),(114419,'2025-10-08',378,0,0,0,1,0,0,0,0,0,0,0,0),(114418,'2025-10-08',377,0,0,0,1,0,0,0,0,0,0,0,0),(114417,'2025-10-08',376,0,0,0,1,0,0,0,0,0,0,0,0),(114416,'2025-10-08',375,0,0,0,1,0,0,0,0,0,0,0,0),(114415,'2025-10-08',372,0,0,0,1,0,0,0,0,0,0,0,0),(114414,'2025-10-08',371,0,0,0,1,0,0,0,0,0,0,0,0),(114413,'2025-10-08',367,0,0,0,1,0,0,0,0,0,0,0,0),(114412,'2025-10-08',365,0,0,0,1,0,0,0,0,0,0,0,0),(114411,'2025-10-08',364,0,0,0,1,0,0,0,0,0,0,0,0),(114410,'2025-10-08',363,0,0,0,1,0,0,0,0,0,0,0,0),(114409,'2025-10-08',361,0,0,0,1,0,0,0,0,0,0,0,0),(114408,'2025-10-08',360,0,0,0,1,0,0,0,0,0,0,0,0),(114407,'2025-10-08',359,0,0,0,1,0,0,0,0,0,0,0,0),(114406,'2025-10-08',357,0,0,0,1,0,0,0,0,0,0,0,0),(114405,'2025-10-08',353,0,0,0,1,0,0,0,0,0,0,0,0),(114404,'2025-10-08',352,0,0,0,1,0,0,0,0,0,0,0,0),(114403,'2025-10-08',351,0,0,0,1,0,0,0,0,0,0,0,0),(114402,'2025-10-08',348,0,0,0,1,0,0,0,0,0,0,0,0),(114401,'2025-10-08',347,0,0,0,1,0,0,0,0,0,0,0,0),(114400,'2025-10-08',346,0,0,0,1,0,0,0,0,0,0,0,0),(114399,'2025-10-08',345,0,0,0,1,0,0,0,0,0,0,0,0),(114398,'2025-10-08',344,0,0,0,1,0,0,0,0,0,0,0,0),(114397,'2025-10-08',341,0,0,0,1,0,0,0,0,0,0,0,0),(114396,'2025-10-08',340,0,0,0,1,0,0,0,0,0,0,0,0),(114395,'2025-10-08',339,0,0,0,1,0,0,0,0,0,0,0,0),(114394,'2025-10-08',338,0,0,0,1,0,0,0,0,0,0,0,0),(114393,'2025-10-08',337,0,0,0,1,0,0,0,0,0,0,0,0),(114392,'2025-10-08',336,0,0,0,1,0,0,0,0,0,0,0,0),(114391,'2025-10-08',335,0,0,0,1,0,0,0,0,0,0,0,0),(114390,'2025-10-08',334,0,0,0,1,0,0,0,0,0,0,0,0),(114389,'2025-10-08',333,0,0,0,1,0,0,0,0,0,0,0,0),(114388,'2025-10-08',332,0,0,0,1,0,0,0,0,0,0,0,0),(114387,'2025-10-08',331,0,0,0,1,0,0,0,0,0,0,0,0),(114386,'2025-10-08',330,0,0,0,1,0,0,0,0,0,0,0,0),(114385,'2025-10-08',329,0,0,0,1,0,0,0,0,0,0,0,0),(114384,'2025-10-08',328,0,0,0,1,0,0,0,0,0,0,0,0),(114383,'2025-10-08',327,1,0,0,1,0,0,0,0,0,0,0,0),(114382,'2025-10-08',326,0,0,0,1,0,0,0,0,0,0,0,0),(114381,'2025-10-08',324,0,0,0,1,0,0,0,0,0,0,0,0),(114380,'2025-10-08',323,0,0,0,1,0,0,0,0,0,0,0,0),(114379,'2025-10-08',321,0,0,0,1,0,0,0,0,0,0,0,0),(114378,'2025-10-08',320,0,0,0,1,0,0,0,0,0,0,0,0),(114377,'2025-10-08',319,0,0,0,1,0,0,0,0,0,0,0,0),(114376,'2025-10-08',317,0,0,0,1,0,0,0,0,0,0,0,0),(114375,'2025-10-08',316,0,0,0,1,0,0,0,0,0,0,0,0),(114374,'2025-10-08',314,0,0,0,1,0,0,0,0,0,0,0,0),(114373,'2025-10-08',313,0,0,0,1,0,0,0,0,0,0,0,0),(114372,'2025-10-08',310,0,0,0,1,0,0,0,0,0,0,0,0),(114371,'2025-10-08',309,0,0,0,1,0,0,0,0,0,0,0,0),(114370,'2025-10-08',308,0,0,0,1,0,0,0,0,0,0,0,0),(114369,'2025-10-08',307,0,0,0,1,0,0,0,0,0,0,0,0),(114368,'2025-10-08',304,0,0,0,1,0,0,0,0,0,0,0,0),(114367,'2025-10-08',303,0,0,0,1,0,0,0,0,0,0,0,0),(114366,'2025-10-08',302,0,0,0,1,0,0,0,0,0,0,0,0),(114365,'2025-10-08',301,0,0,0,1,0,0,0,0,0,0,0,0),(114364,'2025-10-08',300,0,0,0,1,0,0,0,0,0,0,0,0),(114363,'2025-10-08',299,0,0,0,1,0,0,0,0,0,0,0,0),(114362,'2025-10-08',298,0,0,0,1,0,0,0,0,0,0,0,0),(114361,'2025-10-08',296,0,0,0,1,0,0,0,0,0,0,0,0),(114360,'2025-10-08',295,0,0,0,1,0,0,0,0,0,0,0,0),(114359,'2025-10-08',294,0,0,0,1,0,0,0,0,0,0,0,0),(114358,'2025-10-08',292,0,0,0,1,0,0,0,0,0,0,0,0),(114357,'2025-10-08',291,0,0,0,1,0,0,0,0,0,0,0,0),(114356,'2025-10-08',290,0,0,0,1,0,0,0,0,0,0,0,0),(114355,'2025-10-08',289,0,0,0,1,0,0,0,0,0,0,0,0),(114354,'2025-10-08',288,0,0,0,1,0,0,0,0,0,0,0,0),(114353,'2025-10-08',285,0,0,0,1,0,0,0,0,0,0,0,0),(114352,'2025-10-08',281,0,0,0,1,0,0,0,0,0,0,0,0),(114351,'2025-10-08',280,0,0,0,1,0,0,0,0,0,0,0,0),(114350,'2025-10-08',278,0,0,0,1,0,0,0,0,0,0,0,0),(114349,'2025-10-08',275,0,0,0,1,0,0,0,0,0,0,0,0),(114348,'2025-10-08',274,0,0,0,1,0,0,0,0,0,0,0,0),(114347,'2025-10-08',273,0,0,0,1,0,0,0,0,0,0,0,0),(114346,'2025-10-08',271,0,0,0,1,0,0,0,0,0,0,0,0),(114345,'2025-10-08',269,0,0,0,1,0,0,0,0,0,0,0,0),(114344,'2025-10-08',268,0,0,0,1,0,0,0,0,0,0,0,0),(114343,'2025-10-08',266,0,0,0,1,0,0,0,0,0,0,0,0),(114342,'2025-10-08',265,0,0,0,1,0,0,0,0,0,0,0,0),(114341,'2025-10-08',264,0,0,0,1,0,0,0,0,0,0,0,0),(114340,'2025-10-08',263,0,0,0,1,0,0,0,0,0,0,0,0),(114339,'2025-10-08',262,0,0,0,1,0,0,0,0,0,0,0,0),(114338,'2025-10-08',261,0,0,0,1,0,0,0,0,0,0,0,0),(114337,'2025-10-08',260,0,0,0,1,0,0,0,0,0,0,0,0),(114336,'2025-10-08',258,0,0,0,1,0,0,0,0,0,0,0,0),(114335,'2025-10-08',257,0,0,0,1,0,0,0,0,0,0,0,0),(114334,'2025-10-08',256,0,0,0,1,0,0,0,0,0,0,0,0),(114333,'2025-10-08',255,0,0,0,1,0,0,0,0,0,0,0,0),(114332,'2025-10-08',254,0,0,0,1,0,0,0,0,0,0,0,0),(114331,'2025-10-08',250,0,0,0,1,0,0,0,0,0,0,0,0),(114330,'2025-10-08',249,0,0,0,1,0,0,0,0,0,0,0,0),(114032,'2025-10-02',195,0,0,0,1,0,0,0,0,0,0,0,0),(114031,'2025-10-02',194,0,0,0,1,0,0,0,0,0,0,0,0),(114030,'2025-10-02',193,0,0,0,1,0,0,0,0,0,0,0,0),(114029,'2025-10-02',192,0,0,0,1,0,0,0,0,0,0,0,0),(114028,'2025-10-02',191,0,0,0,1,0,0,0,0,0,0,0,0),(114027,'2025-10-02',190,0,0,0,1,0,0,0,0,0,0,0,0),(114026,'2025-10-02',189,0,0,0,1,0,0,0,0,0,0,0,0),(114025,'2025-10-02',188,0,0,0,1,0,0,1,0,0,0,0,0),(114024,'2025-10-02',187,0,0,0,1,0,0,0,0,0,0,0,0),(114023,'2025-10-02',186,0,0,0,1,0,0,0,0,0,0,0,0),(114022,'2025-10-02',185,0,0,0,1,0,0,0,0,0,0,0,0),(114021,'2025-10-02',184,0,0,0,1,0,0,0,0,0,0,0,0),(114020,'2025-10-02',183,0,0,0,1,0,0,0,0,0,0,0,0),(114019,'2025-10-02',182,0,0,0,1,0,0,0,0,0,0,0,0),(114018,'2025-10-02',181,0,0,0,1,0,0,0,0,0,0,0,0),(114017,'2025-10-02',180,0,0,0,1,0,0,0,0,0,0,0,0),(114016,'2025-10-02',179,0,0,0,1,0,0,0,0,0,0,0,0),(114015,'2025-10-02',176,0,0,0,1,0,0,0,0,0,0,0,0),(114014,'2025-10-02',175,0,0,0,1,0,0,0,0,0,0,0,0),(114013,'2025-10-02',174,0,0,0,1,0,0,0,0,0,0,0,0),(114012,'2025-10-02',173,0,0,0,1,0,0,0,0,0,0,0,0),(114011,'2025-10-02',172,0,0,0,1,0,0,0,0,0,0,0,0),(114010,'2025-10-02',170,0,0,0,1,0,0,0,0,0,0,0,0),(113947,'2025-10-02',13,0,0,0,1,0,0,0,0,0,0,0,0),(113946,'2025-10-02',10,0,0,0,1,0,0,0,0,0,0,0,0),(113945,'2025-10-02',5,0,0,0,0,1,0,0,0,0,0,0,0),(113944,'2025-10-02',2,0,0,0,0,1,1,0,0,0,0,0,0),(113943,'2025-10-02',1,0,0,0,0,1,0,0,0,0,0,0,0),(114210,'2025-10-08',10,0,0,0,1,0,0,0,0,0,0,0,0),(114209,'2025-10-08',9,0,0,0,0,1,0,1,0,0,0,0,0),(114208,'2025-10-08',8,0,0,0,0,1,0,0,0,0,0,0,0),(115012,'2025-10-15',448,0,0,0,1,0,0,0,0,0,0,0,0),(115011,'2025-10-15',446,0,0,0,1,0,0,0,0,0,0,0,0),(115010,'2025-10-15',445,0,0,0,1,0,0,0,0,0,0,0,0),(115009,'2025-10-15',443,0,0,0,1,0,0,0,0,0,0,0,0),(115008,'2025-10-15',441,0,0,0,1,0,0,0,0,0,0,0,0),(115007,'2025-10-15',440,0,0,0,1,0,0,0,0,0,0,0,0),(115006,'2025-10-15',439,0,0,0,1,0,0,0,0,0,0,0,0),(115005,'2025-10-15',438,0,0,0,1,0,0,0,0,0,0,0,0),(115004,'2025-10-15',435,0,0,0,1,0,0,0,0,0,0,0,0),(115003,'2025-10-15',434,0,0,0,1,0,0,0,0,0,0,0,0),(115002,'2025-10-15',433,0,0,0,1,0,0,0,0,0,0,0,0),(115001,'2025-10-15',432,0,0,0,1,0,0,0,0,0,0,0,0),(115000,'2025-10-15',431,0,0,0,1,0,0,0,0,0,0,0,0),(114999,'2025-10-15',430,0,0,0,1,0,0,0,0,0,0,0,0),(114998,'2025-10-15',428,0,0,0,1,0,0,0,0,0,0,0,0),(114997,'2025-10-15',426,0,0,0,1,0,0,0,0,0,0,0,0),(114996,'2025-10-15',423,0,0,0,1,0,0,0,0,0,0,0,0),(114995,'2025-10-15',422,0,0,0,1,0,0,0,0,0,0,0,0),(114994,'2025-10-15',420,0,0,0,1,0,0,0,0,0,0,0,0),(114993,'2025-10-15',417,0,0,0,1,0,0,0,0,0,0,0,0),(114992,'2025-10-15',414,0,0,0,1,0,0,0,0,0,0,0,0),(114991,'2025-10-15',413,0,0,0,1,0,0,0,0,0,0,0,0),(115262,'2025-10-19',435,0,0,0,1,0,0,0,0,0,0,0,0),(115261,'2025-10-19',434,0,0,0,1,0,0,0,0,0,0,0,0),(115260,'2025-10-19',433,0,0,0,1,0,0,0,0,0,0,0,0),(115259,'2025-10-19',432,0,0,0,1,0,0,0,0,0,0,0,0),(115258,'2025-10-19',431,0,0,0,1,0,0,0,0,0,0,0,0),(115257,'2025-10-19',430,0,0,0,1,0,0,0,0,0,0,0,0),(115256,'2025-10-19',428,0,0,0,1,0,0,0,0,0,0,0,0),(115255,'2025-10-19',426,0,0,0,1,0,0,0,0,0,0,0,0),(115254,'2025-10-19',423,0,0,0,1,0,0,0,0,0,0,0,0),(115253,'2025-10-19',422,0,0,0,1,0,0,0,0,0,0,0,0),(115252,'2025-10-19',420,0,0,0,1,0,0,0,0,0,0,0,0),(115251,'2025-10-19',417,0,0,0,1,0,0,0,0,0,0,0,0),(115250,'2025-10-19',414,0,0,0,1,0,0,0,0,0,0,0,0),(115249,'2025-10-19',413,0,0,0,1,0,0,0,0,0,0,0,0),(115248,'2025-10-19',412,0,0,0,1,0,0,0,0,0,0,0,0),(115247,'2025-10-19',410,0,0,0,1,0,0,0,0,0,0,0,0),(115246,'2025-10-19',408,0,0,0,1,0,0,0,0,0,0,0,0),(115245,'2025-10-19',407,0,0,0,1,0,0,0,0,0,0,0,0),(115244,'2025-10-19',405,0,0,0,1,0,0,0,0,0,0,0,0),(115243,'2025-10-19',403,0,0,0,1,0,0,0,0,0,0,0,0),(115242,'2025-10-19',401,0,0,0,1,0,0,0,0,0,0,0,0),(115241,'2025-10-19',400,0,0,0,1,0,0,0,0,0,0,0,0),(115240,'2025-10-19',396,0,0,0,1,0,0,0,0,0,0,0,0),(115239,'2025-10-19',395,0,0,0,1,0,0,0,0,0,0,0,0),(115238,'2025-10-19',393,0,0,0,1,0,0,0,0,0,0,0,0),(115237,'2025-10-19',392,0,0,0,1,0,0,0,0,0,0,0,0),(115236,'2025-10-19',391,0,0,0,1,0,0,0,0,0,0,0,0),(115235,'2025-10-19',390,0,0,0,1,0,0,0,0,0,0,0,0),(115234,'2025-10-19',388,0,0,0,1,0,0,0,0,0,0,0,0),(115233,'2025-10-19',387,0,0,0,1,0,0,0,0,0,0,0,0),(115232,'2025-10-19',385,0,0,0,1,0,0,0,0,0,0,0,0),(115231,'2025-10-19',384,0,0,0,1,0,0,0,0,0,0,0,0),(115230,'2025-10-19',382,0,0,0,1,0,0,0,0,0,0,0,0),(115229,'2025-10-19',381,0,0,0,1,0,0,0,0,0,0,0,0),(115228,'2025-10-19',378,0,0,0,1,0,0,0,0,0,0,0,0),(115227,'2025-10-19',377,0,0,0,1,0,0,0,0,0,0,0,0),(115226,'2025-10-19',376,0,0,0,1,0,0,0,0,0,0,0,0),(115225,'2025-10-19',375,0,0,0,1,0,0,0,0,0,0,0,0),(115224,'2025-10-19',372,0,0,0,1,0,0,0,0,0,0,0,0),(115223,'2025-10-19',371,0,0,0,1,0,0,0,0,0,0,0,0),(115222,'2025-10-19',367,0,0,0,1,0,0,0,0,0,0,0,0),(115221,'2025-10-19',365,0,0,0,1,0,0,0,0,0,0,0,0),(115220,'2025-10-19',364,0,0,0,1,0,0,0,0,0,0,0,0),(115219,'2025-10-19',363,0,0,0,1,0,0,0,0,0,0,0,0),(115218,'2025-10-19',361,0,0,0,1,0,0,0,0,0,0,0,0),(115217,'2025-10-19',360,0,0,0,1,0,0,0,0,0,0,0,0),(115216,'2025-10-19',359,0,0,0,1,0,0,0,0,0,0,0,0),(115215,'2025-10-19',357,0,0,0,1,0,0,0,0,0,0,0,0),(115214,'2025-10-19',353,0,0,0,1,0,0,0,0,0,0,0,0),(115213,'2025-10-19',352,0,0,0,1,0,0,0,0,0,0,0,0),(115212,'2025-10-19',351,0,0,0,1,0,0,0,0,0,0,0,0),(115211,'2025-10-19',348,0,0,0,1,0,0,0,0,0,0,0,0),(115210,'2025-10-19',347,0,0,0,1,0,0,0,0,0,0,0,0),(115209,'2025-10-19',346,0,0,0,1,0,0,0,0,0,0,0,0),(115208,'2025-10-19',345,0,0,0,1,0,0,0,0,0,0,0,0),(115207,'2025-10-19',344,0,0,0,1,0,0,0,0,0,0,0,0),(115206,'2025-10-19',341,0,0,0,1,0,0,0,0,0,0,0,0),(115205,'2025-10-19',340,0,0,0,1,0,0,0,0,0,0,0,0),(115204,'2025-10-19',339,0,0,0,1,0,0,0,0,0,0,0,0),(115203,'2025-10-19',338,0,0,0,1,0,0,0,0,0,0,0,0),(115202,'2025-10-19',337,0,0,0,1,0,0,0,0,0,0,0,0),(115201,'2025-10-19',336,0,0,0,1,0,0,0,0,0,0,0,0),(115200,'2025-10-19',335,0,0,0,1,0,0,0,0,0,0,0,0),(115199,'2025-10-19',334,0,0,0,1,0,0,0,0,0,0,0,0),(115198,'2025-10-19',333,0,0,0,1,0,0,0,0,0,0,0,0),(115197,'2025-10-19',332,0,0,0,1,0,0,0,0,0,0,0,0),(115196,'2025-10-19',331,0,0,0,1,0,0,0,0,0,0,0,0),(115195,'2025-10-19',330,0,0,0,1,0,0,0,0,0,0,0,0),(115194,'2025-10-19',329,0,0,0,1,0,0,0,0,0,0,0,0),(115193,'2025-10-19',328,0,0,0,1,0,0,0,0,0,0,0,0),(115192,'2025-10-19',327,0,0,0,1,0,0,0,0,0,0,0,0),(115191,'2025-10-19',326,0,0,0,1,0,0,0,0,0,0,0,0),(115190,'2025-10-19',324,0,0,0,1,0,0,0,0,0,0,0,0),(115189,'2025-10-19',323,0,0,0,1,0,0,0,0,0,0,0,0),(115188,'2025-10-19',321,0,0,0,1,0,0,0,0,0,0,0,0),(115187,'2025-10-19',320,0,0,0,1,0,0,0,0,0,0,0,0),(115186,'2025-10-19',319,0,0,0,1,0,0,0,0,0,0,0,0),(115185,'2025-10-19',317,0,0,0,1,0,0,0,0,0,0,0,0),(115184,'2025-10-19',316,0,0,0,1,0,0,0,0,0,0,0,0),(115183,'2025-10-19',314,0,0,0,1,0,0,0,0,0,0,0,0),(115182,'2025-10-19',313,0,0,0,1,0,0,0,0,0,0,0,0),(115181,'2025-10-19',310,0,0,0,1,0,0,0,0,0,0,0,0),(115180,'2025-10-19',309,0,0,0,1,0,0,0,0,0,0,0,0),(115179,'2025-10-19',308,0,0,0,1,0,0,0,0,0,0,0,0),(115178,'2025-10-19',307,0,0,0,1,0,0,0,0,0,0,0,0),(115177,'2025-10-19',304,0,0,0,1,0,0,0,0,0,0,0,0),(115176,'2025-10-19',303,0,0,0,1,0,0,0,0,0,0,0,0),(115175,'2025-10-19',302,0,0,0,1,0,0,0,0,0,0,0,0),(115174,'2025-10-19',301,0,0,0,1,0,0,0,0,0,0,0,0),(115173,'2025-10-19',300,0,0,0,1,0,0,0,0,0,0,0,0),(115172,'2025-10-19',299,0,0,0,1,0,0,0,0,0,0,0,0),(115171,'2025-10-19',298,0,0,0,1,0,0,0,0,0,0,0,0),(115170,'2025-10-19',296,0,0,0,1,0,0,0,0,0,0,0,0),(115169,'2025-10-19',295,0,0,0,1,0,0,0,0,0,0,0,0),(115168,'2025-10-19',294,0,0,0,1,0,0,0,0,0,0,0,0),(115167,'2025-10-19',292,0,0,0,1,0,0,0,0,0,0,0,0),(115166,'2025-10-19',291,0,0,0,1,0,0,0,0,0,0,0,0),(115165,'2025-10-19',290,0,0,0,1,0,0,0,0,0,0,0,0),(115164,'2025-10-19',289,0,0,0,1,0,0,0,0,0,0,0,0),(115163,'2025-10-19',288,0,0,0,1,0,0,0,0,0,0,0,0),(115162,'2025-10-19',285,0,0,0,1,0,0,0,0,0,0,0,0),(115161,'2025-10-19',281,0,0,0,1,0,0,0,0,0,0,0,0),(115160,'2025-10-19',280,0,0,0,1,0,0,0,0,0,0,0,0),(115266,'2025-10-19',441,0,0,0,1,0,0,0,0,0,0,0,0),(115265,'2025-10-19',440,0,0,0,1,0,0,0,0,0,0,0,0),(115264,'2025-10-19',439,0,0,0,1,0,0,0,0,0,0,0,0),(115263,'2025-10-19',438,0,0,0,1,0,0,0,0,0,0,0,0),(115013,'2025-10-18',89,0,0,0,0,0,0,5,0,0,0,0,0),(115159,'2025-10-19',278,0,0,0,1,0,0,0,0,0,0,0,0),(115158,'2025-10-19',275,0,0,0,1,0,0,0,0,0,0,0,0),(115157,'2025-10-19',274,0,0,0,1,0,0,0,0,0,0,0,0),(115156,'2025-10-19',273,0,0,0,1,0,0,0,0,0,0,0,0),(115155,'2025-10-19',271,0,0,0,1,0,0,0,0,0,0,0,0),(115154,'2025-10-19',269,0,0,0,1,0,0,0,0,0,0,0,0),(115153,'2025-10-19',268,0,0,0,1,0,0,0,0,0,0,0,0),(115152,'2025-10-19',266,0,0,0,1,0,0,0,0,0,0,0,0),(115151,'2025-10-19',265,0,0,0,1,0,0,0,0,0,0,0,0),(115150,'2025-10-19',264,0,0,0,1,0,0,0,0,0,0,0,0),(115149,'2025-10-19',263,0,0,0,1,0,0,0,0,0,0,0,0),(115148,'2025-10-19',262,0,0,0,1,0,0,0,0,0,0,0,0),(115147,'2025-10-19',261,0,0,0,1,0,0,0,0,0,0,0,0),(115146,'2025-10-19',260,0,0,0,1,0,0,0,0,0,0,0,0),(115145,'2025-10-19',258,0,0,0,1,0,0,0,0,0,0,0,0),(115144,'2025-10-19',257,0,0,0,1,0,0,0,0,0,0,0,0),(115570,'2025-10-25',438,0,0,0,1,0,0,0,0,0,0,0,0),(115569,'2025-10-25',435,0,0,0,1,0,0,0,0,0,0,0,0),(115312,'2025-10-23',393,0,0,0,0,1,0,0,0,0,0,0,0),(115311,'2025-10-23',233,0,0,0,0,0,0,1,0,0,0,0,0),(115310,'2025-10-23',188,0,0,0,0,0,0,2,0,0,0,0,0),(115309,'2025-10-23',137,0,0,0,0,0,0,1,0,0,0,0,0),(115308,'2025-10-23',97,1,0,0,0,0,0,0,0,0,0,0,0),(115307,'2025-10-23',89,0,0,0,0,0,1,0,0,0,0,0,0),(115561,'2025-10-25',423,0,0,0,1,0,0,0,0,0,0,0,0),(115560,'2025-10-25',422,0,0,0,1,0,0,0,0,0,0,0,0),(115559,'2025-10-25',420,0,0,0,1,0,0,0,0,0,0,0,0),(115558,'2025-10-25',417,0,0,0,1,0,0,0,0,0,0,0,0),(115557,'2025-10-25',414,0,0,0,1,0,0,0,0,0,0,0,0),(115556,'2025-10-25',413,0,0,0,1,0,0,0,0,0,0,0,0),(115555,'2025-10-25',412,0,0,0,1,0,0,0,0,0,0,0,0),(115554,'2025-10-25',410,0,0,0,1,0,0,0,0,0,0,0,0),(115553,'2025-10-25',408,0,0,0,1,0,0,0,0,0,0,0,0),(115552,'2025-10-25',407,0,0,0,1,0,0,0,0,0,0,0,0),(115551,'2025-10-25',405,0,0,0,1,1,0,0,0,0,0,0,0),(115550,'2025-10-25',403,0,0,0,1,0,0,0,0,0,0,0,0),(115549,'2025-10-25',401,0,0,0,1,0,0,0,0,0,0,0,0),(115548,'2025-10-25',400,0,0,0,1,0,0,0,0,0,0,0,0),(115547,'2025-10-25',396,0,0,0,1,0,0,0,0,0,0,0,0),(115546,'2025-10-25',395,0,0,0,1,0,0,0,0,0,0,0,0),(115545,'2025-10-25',393,0,0,0,1,0,0,0,0,0,0,0,0),(115544,'2025-10-25',392,0,0,0,1,0,0,0,0,0,0,0,0),(115543,'2025-10-25',391,0,0,0,1,0,0,0,0,0,0,0,0),(115542,'2025-10-25',390,0,0,0,1,0,0,0,0,0,0,0,0),(115541,'2025-10-25',388,0,0,0,1,0,0,0,0,0,0,0,0),(115540,'2025-10-25',387,0,0,0,1,0,0,0,0,0,0,0,0),(115539,'2025-10-25',385,0,0,0,1,0,0,0,0,0,0,0,0),(115538,'2025-10-25',384,0,0,0,1,0,0,0,0,0,0,0,0),(115537,'2025-10-25',382,0,0,0,1,0,0,0,0,0,0,0,0),(115536,'2025-10-25',381,0,0,0,1,0,0,0,0,0,0,0,0),(115535,'2025-10-25',378,0,0,0,1,0,0,0,0,0,0,0,0),(115534,'2025-10-25',377,0,0,0,1,0,0,0,0,0,0,0,0),(115533,'2025-10-25',376,0,0,0,1,0,0,0,0,0,0,0,0),(115532,'2025-10-25',375,0,0,0,1,0,0,0,0,0,0,0,0),(115531,'2025-10-25',372,0,0,0,1,0,0,0,0,0,0,0,0),(115530,'2025-10-25',371,0,0,0,1,0,0,0,0,0,0,0,0),(115529,'2025-10-25',367,0,0,0,1,0,0,0,0,0,0,0,0),(115528,'2025-10-25',365,0,0,0,1,0,0,0,0,0,0,0,0),(115527,'2025-10-25',364,0,0,0,1,0,0,0,0,0,0,0,0),(115526,'2025-10-25',363,0,0,0,1,0,0,0,0,0,0,0,0),(115525,'2025-10-25',361,0,0,0,1,0,0,0,0,0,0,0,0),(115524,'2025-10-25',360,0,0,0,1,0,0,0,0,0,0,0,0),(115523,'2025-10-25',359,0,0,0,1,0,0,0,0,0,0,0,0),(115522,'2025-10-25',357,0,0,0,1,0,0,0,0,0,0,0,0),(115521,'2025-10-25',353,0,0,0,1,0,0,0,0,0,0,0,0),(115520,'2025-10-25',352,0,0,0,1,0,0,0,0,0,0,0,0),(115519,'2025-10-25',351,0,0,0,1,0,0,0,0,0,0,0,0),(115518,'2025-10-25',348,0,0,0,1,0,0,0,0,0,0,0,0),(115517,'2025-10-25',347,0,0,0,1,0,0,0,0,0,0,0,0),(115516,'2025-10-25',346,0,0,0,1,0,0,0,0,0,0,0,0),(115515,'2025-10-25',345,0,0,0,1,0,0,0,0,0,0,0,0),(115514,'2025-10-25',344,0,0,0,1,0,0,0,0,0,0,0,0),(115568,'2025-10-25',434,0,0,0,1,0,0,0,0,0,0,0,0),(115567,'2025-10-25',433,0,0,0,1,0,0,0,0,0,0,0,0),(115566,'2025-10-25',432,0,0,0,1,0,0,0,0,0,0,0,0),(115565,'2025-10-25',431,0,0,0,1,0,0,0,0,0,0,0,0),(115564,'2025-10-25',430,0,0,0,1,0,0,0,0,0,0,0,0),(115563,'2025-10-25',428,0,0,0,1,0,0,0,0,0,0,0,0),(115562,'2025-10-25',426,0,0,0,1,0,0,0,0,0,0,0,0),(115513,'2025-10-25',341,0,0,0,1,0,0,0,0,0,0,0,0),(115512,'2025-10-25',340,0,0,0,1,0,0,0,0,0,0,0,0),(115511,'2025-10-25',339,0,0,0,1,0,0,0,0,0,0,0,0),(115510,'2025-10-25',338,0,0,0,1,0,0,0,0,0,0,0,0),(115509,'2025-10-25',337,0,0,0,1,0,0,0,0,0,0,0,0),(115508,'2025-10-25',336,0,0,0,1,0,0,0,0,0,0,0,0),(115507,'2025-10-25',335,0,0,0,1,0,0,0,0,0,0,0,0),(115506,'2025-10-25',334,0,0,0,1,0,0,0,0,0,0,0,0),(115505,'2025-10-25',333,0,0,0,1,0,0,0,0,0,0,0,0),(115504,'2025-10-25',332,0,0,0,1,0,0,0,0,0,0,0,0),(115503,'2025-10-25',331,0,0,0,1,0,0,0,0,0,0,0,0),(115502,'2025-10-25',330,0,0,0,1,0,0,0,0,0,0,0,0),(115501,'2025-10-25',329,0,0,0,1,0,0,0,0,0,0,0,0),(115500,'2025-10-25',328,0,0,0,1,0,0,0,0,0,0,0,0),(115499,'2025-10-25',327,0,0,0,1,0,0,0,0,0,0,0,0),(115498,'2025-10-25',326,0,0,0,1,0,0,0,0,0,0,0,0),(115497,'2025-10-25',324,0,0,0,1,0,0,0,0,0,0,0,0),(115604,'2025-10-27',401,0,0,0,0,0,1,0,0,0,0,0,0),(115603,'2025-10-27',140,0,0,0,0,0,1,0,0,0,0,0,0),(115602,'2025-10-27',75,0,0,0,0,1,0,0,0,0,0,0,0),(115601,'2025-10-27',54,1,0,0,0,0,0,0,0,0,0,0,0),(115600,'2025-10-27',8,0,0,0,0,1,0,0,0,0,0,0,0),(115908,'2025-11-13',452,0,0,0,1,0,0,0,0,0,0,0,0),(115907,'2025-11-13',451,0,0,0,1,0,0,0,0,0,0,0,0),(115906,'2025-11-13',448,0,0,0,1,0,0,0,0,0,0,0,0),(115905,'2025-11-13',446,0,0,0,1,0,0,0,0,0,0,0,0),(115904,'2025-11-13',445,0,0,0,1,0,0,0,0,0,0,0,0),(115903,'2025-11-13',443,0,0,0,1,0,0,0,0,0,0,0,0),(115902,'2025-11-13',441,0,0,0,1,0,0,0,0,0,0,0,0),(115901,'2025-11-13',440,0,0,0,1,0,0,0,0,0,0,0,0),(115900,'2025-11-13',439,0,0,0,1,0,0,0,0,0,0,0,0),(115899,'2025-11-13',438,0,0,0,1,0,0,0,0,0,0,0,0),(115898,'2025-11-13',435,0,0,0,1,0,0,0,0,0,0,0,0),(115897,'2025-11-13',434,0,0,0,1,0,0,0,0,0,0,0,0),(115896,'2025-11-13',433,0,0,0,1,0,0,0,0,0,0,0,0),(115895,'2025-11-13',432,0,0,0,1,0,0,0,0,0,0,0,0),(115894,'2025-11-13',431,0,0,0,1,0,0,0,0,0,0,0,0),(115893,'2025-11-13',430,0,0,0,1,0,0,0,0,0,0,0,0),(115892,'2025-11-13',428,0,0,0,1,0,0,0,0,0,0,0,0),(115891,'2025-11-13',426,0,0,0,1,0,0,0,0,0,0,0,0),(115890,'2025-11-13',423,0,0,0,1,0,0,0,0,0,0,0,0),(115889,'2025-11-13',422,0,0,0,1,0,0,0,0,0,0,0,0),(115888,'2025-11-13',420,0,0,0,1,0,0,0,0,0,0,0,0),(115887,'2025-11-13',417,0,0,0,1,0,0,0,0,0,0,0,0),(115886,'2025-11-13',414,0,0,0,1,0,0,0,0,0,0,0,0),(115885,'2025-11-13',413,0,0,0,1,1,0,0,0,0,0,0,0),(115884,'2025-11-13',412,0,0,0,1,0,0,0,0,0,0,0,0),(115883,'2025-11-13',410,0,0,0,1,0,0,0,0,0,0,0,0),(115882,'2025-11-13',408,0,0,0,1,0,0,0,0,0,0,0,0),(115881,'2025-11-13',407,0,0,0,1,0,0,0,0,0,0,0,0),(115880,'2025-11-13',405,0,0,0,1,0,0,0,0,0,0,0,0),(115879,'2025-11-13',403,0,0,0,1,0,0,0,0,0,0,0,0),(115878,'2025-11-13',401,0,0,0,1,0,0,0,0,0,0,0,0),(115877,'2025-11-13',400,0,0,0,1,0,0,0,0,0,0,0,0),(115876,'2025-11-13',396,0,0,0,1,0,0,0,0,0,0,0,0),(115875,'2025-11-13',395,0,0,0,1,0,0,0,0,0,0,0,0),(115874,'2025-11-13',393,0,0,0,1,0,0,0,0,0,0,0,0),(115873,'2025-11-13',392,0,0,0,1,0,0,0,0,0,0,0,0),(115872,'2025-11-13',391,0,0,0,1,0,0,0,0,0,0,0,0),(115633,'2025-11-07',123,0,0,0,0,0,0,1,0,0,0,0,0),(115632,'2025-11-07',75,0,0,0,0,0,0,1,0,0,0,0,0),(115631,'2025-11-07',51,0,0,0,0,0,0,2,0,0,0,0,0),(115630,'2025-11-07',49,0,0,0,0,0,0,1,0,0,0,0,0),(115629,'2025-11-06',218,0,0,0,0,0,0,1,0,0,0,0,0),(115628,'2025-11-06',188,0,0,0,0,0,0,1,0,0,0,0,0),(115627,'2025-11-06',137,0,0,0,0,0,0,1,0,0,0,0,0),(115626,'2025-11-06',109,0,0,0,0,0,0,1,0,0,0,0,0),(115625,'2025-11-06',22,0,0,0,0,0,0,1,0,0,0,0,0),(115624,'2025-11-06',17,0,0,0,0,0,0,1,0,0,0,0,0),(115623,'2025-11-06',9,0,0,0,0,0,0,1,0,0,0,0,0),(115622,'2025-11-06',5,0,0,0,0,0,0,1,0,0,0,0,0),(115621,'2025-11-06',2,0,0,0,0,0,0,1,0,0,0,0,0),(115620,'2025-11-06',1,0,0,0,0,0,0,1,0,0,0,0,0),(115871,'2025-11-13',390,0,0,0,1,0,0,0,0,0,0,0,0),(115870,'2025-11-13',388,0,0,0,1,0,0,0,0,0,0,0,0),(115869,'2025-11-13',387,0,0,0,1,0,0,0,0,0,0,0,0),(115868,'2025-11-13',385,0,0,0,1,0,0,0,0,0,0,0,0),(115867,'2025-11-13',384,0,0,0,1,0,0,0,0,0,0,0,0),(115866,'2025-11-13',382,0,0,0,1,0,0,0,0,0,0,0,0),(115865,'2025-11-13',381,0,0,0,1,0,0,0,0,0,0,0,0),(115864,'2025-11-13',378,0,0,0,1,0,0,0,0,0,0,0,0),(115863,'2025-11-13',377,0,0,0,1,0,0,0,0,0,0,0,0),(115862,'2025-11-13',376,0,0,0,1,0,0,0,0,0,0,0,0),(115861,'2025-11-13',375,0,0,0,1,0,0,0,0,0,0,0,0),(115860,'2025-11-13',372,0,0,0,1,0,0,0,0,0,0,0,0),(115859,'2025-11-13',371,0,0,0,1,0,0,0,0,0,0,0,0),(115645,'2025-11-13',19,0,0,0,1,0,0,0,0,0,0,0,0),(115644,'2025-11-13',13,0,0,0,1,0,0,0,0,0,0,0,0),(115643,'2025-11-13',10,0,0,0,1,0,0,0,0,0,0,0,0),(115642,'2025-11-13',9,0,0,0,0,1,0,0,0,0,0,0,0),(115641,'2025-11-13',5,0,0,0,0,0,0,2,0,0,0,0,0),(115640,'2025-11-13',2,0,0,0,0,0,0,1,0,0,0,0,0),(115639,'2025-11-13',1,0,0,0,0,0,0,1,0,0,0,0,0),(115917,'2025-11-14',388,1,0,1,0,0,0,0,0,0,0,0,0),(115916,'2025-11-14',384,0,0,0,1,0,0,0,0,0,0,0,0),(115915,'2025-11-14',320,0,0,0,0,1,0,0,0,0,0,0,0),(115914,'2025-11-14',188,0,0,0,0,0,0,1,0,0,0,0,0),(115913,'2025-11-14',104,0,0,0,0,0,1,0,0,0,0,0,0),(115912,'2025-11-14',40,0,0,0,0,0,1,0,0,0,0,0,0),(115911,'2025-11-14',18,0,0,0,0,1,0,0,0,0,0,0,0),(115910,'2025-11-14',17,0,0,0,0,0,0,2,0,0,0,0,0),(115909,'2025-11-14',9,0,0,0,0,0,0,2,0,0,0,0,0),(115924,'2025-11-15',317,0,0,0,0,0,1,0,0,0,0,0,0),(115923,'2025-11-15',297,0,0,0,0,1,0,0,0,0,0,0,0),(115922,'2025-11-15',111,0,0,0,0,1,0,0,0,0,0,0,0),(115921,'2025-11-15',97,1,0,0,0,0,0,0,0,0,0,0,0),(115920,'2025-11-15',81,0,0,0,0,0,1,0,0,0,0,0,0),(115919,'2025-11-15',75,0,0,0,0,0,1,0,0,0,0,0,0),(115918,'2025-11-15',50,0,0,0,0,1,0,0,0,0,0,0,0),(115928,'2025-11-17',218,0,0,0,0,0,0,1,0,0,0,0,0),(115927,'2025-11-17',109,0,0,0,0,0,0,2,0,0,0,0,0),(117205,'2026-01-17',70,0,0,0,1,0,0,0,0,0,0,0,0),(117204,'2026-01-17',69,0,0,0,1,0,0,0,0,0,0,0,0),(117203,'2026-01-17',68,0,0,0,1,0,0,0,0,0,0,0,0),(117202,'2026-01-17',67,0,0,0,1,0,0,0,0,0,0,0,0),(117201,'2026-01-17',66,0,0,0,1,0,0,0,0,0,0,0,0),(117200,'2026-01-17',65,0,0,0,1,0,0,0,0,0,0,0,0),(117199,'2026-01-17',64,0,0,0,1,0,0,0,0,0,0,0,0),(117198,'2026-01-17',63,0,0,0,1,0,0,0,0,0,0,0,0),(117197,'2026-01-17',61,0,0,0,1,0,0,0,0,0,0,0,0),(117196,'2026-01-17',58,0,0,0,1,0,0,0,0,0,0,0,0),(117212,'2026-01-17',97,0,0,0,1,0,0,0,0,0,0,0,0),(117211,'2026-01-17',96,0,0,0,1,0,0,0,0,0,0,0,0),(117210,'2026-01-17',94,0,0,0,1,0,0,0,0,0,0,0,0),(117209,'2026-01-17',91,0,0,0,1,0,0,0,0,0,0,0,0),(117208,'2026-01-17',90,0,0,0,1,0,0,0,0,0,0,0,0),(117207,'2026-01-17',87,0,0,0,1,0,0,0,0,0,0,0,0),(117206,'2026-01-17',79,0,0,0,1,0,0,0,0,0,0,0,0),(117175,'2026-01-05',90,0,0,0,0,0,0,2,0,0,0,0,0),(117174,'2026-01-05',9,0,0,0,0,0,0,1,0,0,0,0,0),(117173,'2026-01-05',5,0,0,0,0,0,0,1,0,0,0,0,0),(117172,'2026-01-05',1,0,0,0,0,0,0,1,0,0,0,0,0),(117239,'2026-01-17',154,0,0,0,1,0,0,0,0,0,0,0,0),(117238,'2026-01-17',152,0,0,0,1,0,0,0,0,0,0,0,0),(117237,'2026-01-17',151,0,0,0,1,0,0,0,0,0,0,0,0),(117236,'2026-01-17',148,0,0,0,1,0,0,0,0,0,0,0,0),(117235,'2026-01-17',147,0,0,0,1,0,0,0,0,0,0,0,0),(117234,'2026-01-17',146,0,0,0,1,0,0,0,0,0,0,0,0),(117233,'2026-01-17',145,0,0,0,1,0,0,0,0,0,0,0,0),(117232,'2026-01-17',144,0,0,0,1,0,0,0,0,0,0,0,0),(117231,'2026-01-17',143,0,0,0,1,0,0,0,0,0,0,0,0),(117230,'2026-01-17',141,0,0,0,1,0,0,0,0,0,0,0,0),(117229,'2026-01-17',140,0,0,0,1,0,0,0,0,0,0,0,0),(117228,'2026-01-17',136,0,0,0,1,0,0,0,0,0,0,0,0),(117227,'2026-01-17',132,0,0,0,1,0,0,0,0,0,0,0,0),(117226,'2026-01-17',128,0,0,0,1,0,0,0,0,0,0,0,0),(117225,'2026-01-17',127,0,0,0,1,0,0,0,0,0,0,0,0),(117224,'2026-01-17',126,0,0,0,1,0,0,0,0,0,0,0,0),(117223,'2026-01-17',124,0,0,0,1,0,0,0,0,0,0,0,0),(117222,'2026-01-17',123,0,0,0,1,0,0,1,0,0,0,0,0),(117221,'2026-01-17',121,0,0,0,1,0,0,0,0,0,0,0,0),(117220,'2026-01-17',115,0,0,0,1,0,0,0,0,0,0,0,0),(117219,'2026-01-17',114,0,0,0,1,0,0,0,0,0,0,0,0),(117218,'2026-01-17',113,0,0,0,1,0,0,0,0,0,0,0,0),(117217,'2026-01-17',112,0,0,0,1,0,0,0,0,0,0,0,0),(117216,'2026-01-17',110,0,0,0,1,0,0,0,0,0,0,0,0),(117215,'2026-01-17',109,0,0,0,0,0,0,5,0,0,0,0,0),(117214,'2026-01-17',103,0,0,0,1,0,0,0,0,0,0,0,0),(117213,'2026-01-17',98,0,0,0,1,0,0,0,0,0,0,0,0),(117987,'2026-02-11',405,0,0,0,1,0,0,0,0,0,0,0,0),(117986,'2026-02-11',403,0,0,0,1,0,0,0,0,0,0,0,0),(117985,'2026-02-11',401,0,0,0,1,0,0,0,0,0,0,0,0),(117984,'2026-02-11',400,0,0,0,1,0,0,0,0,0,0,0,0),(117983,'2026-02-11',396,0,0,0,1,0,0,0,0,0,0,0,0),(117982,'2026-02-11',395,0,0,0,1,0,0,0,0,0,0,0,0),(117981,'2026-02-11',393,0,0,0,1,0,0,0,0,0,0,0,0),(117980,'2026-02-11',392,0,0,0,1,0,0,0,0,0,0,0,0),(117979,'2026-02-11',391,0,0,0,1,0,0,0,0,0,0,0,0),(117978,'2026-02-11',390,0,0,0,1,0,0,0,0,0,0,0,0),(117977,'2026-02-11',388,0,0,0,1,0,0,0,0,0,0,0,0),(117976,'2026-02-11',387,0,0,0,1,0,0,0,0,0,0,0,0),(117975,'2026-02-11',385,0,0,0,1,0,0,0,0,0,0,0,0),(117974,'2026-02-11',384,0,0,0,1,0,0,0,0,0,0,0,0),(117973,'2026-02-11',382,0,0,0,1,0,0,0,0,0,0,0,0),(117972,'2026-02-11',381,0,0,0,1,0,0,0,0,0,0,0,0),(117971,'2026-02-11',378,0,0,0,1,0,0,0,0,0,0,0,0),(117970,'2026-02-11',377,0,0,0,1,0,0,0,0,0,0,0,0),(117969,'2026-02-11',376,0,0,0,1,0,0,0,0,0,0,0,0),(117968,'2026-02-11',375,0,0,0,1,0,0,0,0,0,0,0,0),(117967,'2026-02-11',372,0,0,0,1,0,0,0,0,0,0,0,0),(117966,'2026-02-11',371,0,0,0,1,0,0,0,0,0,0,0,0),(117965,'2026-02-11',367,0,0,0,1,0,0,0,0,0,0,0,0),(117964,'2026-02-11',365,0,0,0,1,0,0,0,0,0,0,0,0),(117963,'2026-02-11',364,0,0,0,1,0,0,0,0,0,0,0,0),(117962,'2026-02-11',363,0,0,0,1,0,0,0,0,0,0,0,0),(117961,'2026-02-11',361,0,0,0,1,0,0,0,0,0,0,0,0),(117960,'2026-02-11',360,0,0,0,1,0,0,0,0,0,0,0,0),(117959,'2026-02-11',359,0,0,0,1,0,0,0,0,0,0,0,0),(117958,'2026-02-11',357,0,0,0,1,0,0,0,0,0,0,0,0),(117957,'2026-02-11',353,0,0,0,1,0,0,0,0,0,0,0,0),(117956,'2026-02-11',352,0,0,0,1,0,0,0,0,0,0,0,0),(117955,'2026-02-11',351,0,0,0,1,0,0,0,0,0,0,0,0),(117954,'2026-02-11',348,0,0,0,1,0,0,0,0,0,0,0,0),(117953,'2026-02-11',347,0,0,0,1,0,0,0,0,0,0,0,0),(117952,'2026-02-11',346,0,0,0,1,0,0,0,0,0,0,0,0),(117951,'2026-02-11',345,0,0,0,1,0,0,0,0,0,0,0,0),(117950,'2026-02-11',344,0,0,0,1,0,0,0,0,0,0,0,0),(117949,'2026-02-11',341,0,0,0,1,0,0,0,0,0,0,0,0),(117948,'2026-02-11',340,0,0,0,1,0,0,0,0,0,0,0,0),(117947,'2026-02-11',339,0,0,0,1,0,0,0,0,0,0,0,0),(117946,'2026-02-11',338,0,0,0,1,0,0,0,0,0,0,0,0),(117945,'2026-02-11',337,0,0,0,1,0,0,0,0,0,0,0,0),(117944,'2026-02-11',336,0,0,0,1,0,0,0,0,0,0,0,0),(117943,'2026-02-11',335,0,0,0,1,0,0,0,0,0,0,0,0),(117942,'2026-02-11',334,0,0,0,1,0,0,0,0,0,0,0,0),(117941,'2026-02-11',333,0,0,0,1,0,0,0,0,0,0,0,0),(117940,'2026-02-11',332,0,0,0,1,0,0,0,0,0,0,0,0),(117939,'2026-02-11',331,0,0,0,1,0,0,0,0,0,0,0,0),(117938,'2026-02-11',330,0,0,0,1,0,0,0,0,0,0,0,0),(117937,'2026-02-11',329,0,0,0,1,0,0,0,0,0,0,0,0),(117936,'2026-02-11',328,0,0,0,1,0,0,0,0,0,0,0,0),(117935,'2026-02-11',327,0,0,0,1,0,0,0,0,0,0,0,0),(117934,'2026-02-11',326,0,0,0,1,0,0,0,0,0,0,0,0),(117933,'2026-02-11',324,0,0,0,1,0,0,0,0,0,0,0,0),(117932,'2026-02-11',323,0,0,0,1,0,0,0,0,0,0,0,0),(117931,'2026-02-11',321,0,0,0,1,0,0,0,0,0,0,0,0),(117930,'2026-02-11',320,0,0,0,1,0,0,0,0,0,0,0,0),(117929,'2026-02-11',319,0,0,0,1,0,0,0,0,0,0,0,0),(117928,'2026-02-11',317,0,0,0,1,0,0,0,0,0,0,0,0),(117927,'2026-02-11',316,0,0,0,1,0,0,0,0,0,0,0,0),(117926,'2026-02-11',314,0,0,0,1,0,0,0,0,0,0,0,0),(117925,'2026-02-11',313,0,0,0,1,0,0,0,0,0,0,0,0),(117924,'2026-02-11',310,0,0,0,1,0,0,0,0,0,0,0,0),(117923,'2026-02-11',309,0,0,0,1,0,0,0,0,0,0,0,0),(117922,'2026-02-11',308,0,0,0,1,0,0,0,0,0,0,0,0),(117921,'2026-02-11',307,0,0,0,1,0,0,0,0,0,0,0,0),(117920,'2026-02-11',304,0,0,0,1,0,0,0,0,0,0,0,0),(117919,'2026-02-11',303,0,0,0,1,0,0,0,0,0,0,0,0),(117918,'2026-02-11',302,0,0,0,1,0,0,0,0,0,0,0,0),(117917,'2026-02-11',301,0,0,0,1,0,0,0,0,0,0,0,0),(117916,'2026-02-11',300,0,0,0,1,0,0,0,0,0,0,0,0),(117915,'2026-02-11',299,0,0,0,1,0,0,0,0,0,0,0,0),(117914,'2026-02-11',298,0,0,0,1,0,0,0,0,0,0,0,0),(117913,'2026-02-11',296,0,0,0,1,0,0,0,0,0,0,0,0),(117912,'2026-02-11',295,0,0,0,1,0,0,0,0,0,0,0,0),(117911,'2026-02-11',294,0,0,0,1,0,0,0,0,0,0,0,0),(116219,'2025-12-02',239,0,0,0,0,0,1,0,0,0,0,0,0),(116218,'2025-12-02',203,0,0,0,0,0,1,0,0,0,0,0,0),(116217,'2025-12-02',160,0,0,0,1,0,0,0,0,0,0,0,0),(116216,'2025-12-02',140,0,0,0,0,1,0,0,0,0,0,0,0),(116215,'2025-12-02',35,0,0,0,0,1,0,0,0,0,0,0,0),(117910,'2026-02-11',292,0,0,0,1,0,0,0,0,0,0,0,0),(117909,'2026-02-11',291,0,0,0,1,0,0,0,0,0,0,0,0),(117908,'2026-02-11',290,0,0,0,1,0,0,0,0,0,0,0,0),(117907,'2026-02-11',289,0,0,0,1,0,0,0,0,0,0,0,0),(117906,'2026-02-11',288,0,0,0,1,0,0,0,0,0,0,0,0),(117905,'2026-02-11',285,0,0,0,1,0,0,0,0,0,0,0,0),(117904,'2026-02-11',283,0,0,0,0,0,1,0,0,0,0,0,0),(117903,'2026-02-11',281,0,0,0,1,0,0,0,0,0,0,0,0),(117902,'2026-02-11',280,0,0,0,1,0,0,0,0,0,0,0,0),(117901,'2026-02-11',278,0,0,0,1,0,0,0,0,0,0,0,0),(117900,'2026-02-11',275,0,0,0,1,0,0,0,0,0,0,0,0),(117899,'2026-02-11',274,0,0,0,1,0,0,0,0,0,0,0,0),(117898,'2026-02-11',273,0,0,0,1,0,0,0,0,0,0,0,0),(118351,'2026-02-26',69,0,0,0,1,0,0,0,0,0,0,0,0),(118350,'2026-02-26',68,0,0,0,1,0,0,0,0,0,0,0,0),(118349,'2026-02-26',67,0,0,0,1,0,0,0,0,0,0,0,0),(118348,'2026-02-26',66,0,0,0,1,0,0,0,0,0,0,0,0),(118347,'2026-02-26',65,0,0,0,1,0,0,0,0,0,0,0,0),(118346,'2026-02-26',64,0,0,0,1,0,1,0,0,0,0,0,0),(118345,'2026-02-26',63,0,0,0,1,0,0,0,0,0,0,0,0),(118344,'2026-02-26',61,0,0,0,1,0,0,0,0,0,0,0,0),(118343,'2026-02-26',58,0,0,0,1,0,0,0,0,0,0,0,0),(118342,'2026-02-26',54,1,0,0,1,0,0,0,0,0,0,0,0),(118341,'2026-02-26',52,0,0,0,1,0,0,0,0,0,0,0,0),(118340,'2026-02-26',50,0,0,0,0,1,0,0,0,0,0,0,0),(118339,'2026-02-26',46,0,0,0,0,0,1,0,0,0,0,0,0),(118338,'2026-02-26',42,0,0,0,1,0,0,0,0,0,0,0,0),(118337,'2026-02-26',37,1,0,0,1,0,0,0,0,0,0,0,0),(118336,'2026-02-26',36,0,0,0,0,1,0,0,0,0,0,0,0),(118311,'2026-02-18',670,0,0,0,1,0,0,0,0,0,0,0,0),(118310,'2026-02-18',628,0,0,0,1,0,0,0,0,0,0,0,0),(118309,'2026-02-18',621,0,0,0,1,0,0,0,0,0,0,0,0),(118308,'2026-02-18',584,0,0,0,1,0,0,0,0,0,0,0,0),(118307,'2026-02-18',560,0,0,0,1,0,0,0,0,0,0,0,0),(118306,'2026-02-18',539,0,0,0,1,0,0,0,0,0,0,0,0),(118305,'2026-02-18',537,0,0,0,1,0,0,0,0,0,0,0,0),(118304,'2026-02-18',536,0,0,0,1,0,0,0,0,0,0,0,0),(118303,'2026-02-18',456,0,0,0,1,0,0,0,0,0,0,0,0),(118302,'2026-02-18',452,0,0,0,1,0,0,0,0,0,0,0,0),(118301,'2026-02-18',451,0,0,0,1,0,0,0,0,0,0,0,0),(118300,'2026-02-18',448,0,0,0,1,0,0,0,0,0,0,0,0),(118299,'2026-02-18',446,0,0,0,1,0,0,0,0,0,0,0,0),(118298,'2026-02-18',445,0,0,0,1,0,0,0,0,0,0,0,0),(118297,'2026-02-18',443,0,0,0,1,0,0,0,0,0,0,0,0),(118296,'2026-02-18',441,0,0,0,1,0,0,0,0,0,0,0,0),(118295,'2026-02-18',440,0,0,0,1,0,0,0,0,0,0,0,0),(118294,'2026-02-18',439,0,0,0,1,0,0,0,0,0,0,0,0),(118293,'2026-02-18',438,0,0,0,1,0,0,0,0,0,0,0,0),(118292,'2026-02-18',435,0,0,0,1,0,0,0,0,0,0,0,0),(118291,'2026-02-18',434,0,0,0,1,0,0,0,0,0,0,0,0),(118290,'2026-02-18',433,0,0,0,1,0,0,0,0,0,0,0,0),(118289,'2026-02-18',432,0,0,0,1,0,0,0,0,0,0,0,0),(118288,'2026-02-18',431,0,0,0,1,0,0,0,0,0,0,0,0),(118287,'2026-02-18',430,0,0,0,1,0,0,0,0,0,0,0,0),(118286,'2026-02-18',428,0,0,0,1,0,0,0,0,0,0,0,0),(118285,'2026-02-18',426,0,0,0,1,0,0,0,0,0,0,0,0),(118284,'2026-02-18',423,0,0,0,1,0,0,0,0,0,0,0,0),(118283,'2026-02-18',422,0,0,0,1,0,0,0,0,0,0,0,0),(118282,'2026-02-18',420,0,0,0,1,0,0,0,0,0,0,0,0),(118281,'2026-02-18',417,0,0,0,1,0,0,0,0,0,0,0,0),(118280,'2026-02-18',414,0,0,0,1,0,0,0,0,0,0,0,0),(118279,'2026-02-18',413,0,0,0,1,1,0,0,0,0,0,0,0),(118278,'2026-02-18',412,0,0,0,1,0,0,0,0,0,0,0,0),(118277,'2026-02-18',410,0,0,0,1,0,0,0,0,0,0,0,0),(118276,'2026-02-18',408,0,0,0,1,0,0,0,0,0,0,0,0),(118275,'2026-02-18',407,0,0,0,1,0,0,0,0,0,0,0,0),(118274,'2026-02-18',405,0,0,0,1,0,0,0,0,0,0,0,0),(118273,'2026-02-18',403,0,0,0,1,0,0,0,0,0,0,0,0),(118272,'2026-02-18',401,0,0,0,1,0,0,0,0,0,0,0,0),(118271,'2026-02-18',400,0,0,0,1,0,0,0,0,0,0,0,0),(118270,'2026-02-18',396,0,0,0,1,0,0,0,0,0,0,0,0),(118269,'2026-02-18',395,0,0,0,1,0,0,0,0,0,0,0,0),(118268,'2026-02-18',393,0,0,0,1,0,0,0,0,0,0,0,0),(118267,'2026-02-18',392,0,0,0,1,0,0,0,0,0,0,0,0),(118266,'2026-02-18',391,0,0,0,1,0,0,0,0,0,0,0,0),(118265,'2026-02-18',390,0,0,0,1,0,0,0,0,0,0,0,0),(118264,'2026-02-18',388,0,0,0,1,0,0,0,0,0,0,0,0),(118263,'2026-02-18',387,0,0,0,1,0,0,0,0,0,0,0,0),(118262,'2026-02-18',385,0,0,0,1,0,0,0,0,0,0,0,0),(118261,'2026-02-18',384,0,0,0,1,0,0,0,0,0,0,0,0),(118260,'2026-02-18',382,0,0,0,1,0,0,0,0,0,0,0,0),(118259,'2026-02-18',381,0,0,0,1,0,0,0,0,0,0,0,0),(118258,'2026-02-18',378,0,0,0,1,0,0,0,0,0,0,0,0),(118257,'2026-02-18',377,0,0,0,1,0,0,0,0,0,0,0,0),(118256,'2026-02-18',376,0,0,0,1,0,0,0,0,0,0,0,0),(118255,'2026-02-18',375,0,0,0,1,0,0,0,0,0,0,0,0),(118254,'2026-02-18',372,0,0,0,1,0,0,0,0,0,0,0,0),(118253,'2026-02-18',371,0,0,0,1,0,0,0,0,0,0,0,0),(118252,'2026-02-18',367,0,0,0,1,0,0,0,0,0,0,0,0),(118251,'2026-02-18',365,0,0,0,1,0,0,0,0,0,0,0,0),(118250,'2026-02-18',364,0,0,0,1,0,0,0,0,0,0,0,0),(118249,'2026-02-18',363,0,0,0,1,0,0,0,0,0,0,0,0),(118248,'2026-02-18',361,0,0,0,1,0,0,0,0,0,0,0,0),(118247,'2026-02-18',360,0,0,0,1,0,0,0,0,0,0,0,0),(118246,'2026-02-18',359,0,0,0,1,0,0,0,0,0,0,0,0),(118245,'2026-02-18',357,0,0,0,1,0,0,0,0,0,0,0,0),(117897,'2026-02-11',271,0,0,0,1,0,0,0,0,0,0,0,0),(117896,'2026-02-11',269,0,0,0,1,0,0,0,0,0,0,0,0),(117895,'2026-02-11',268,0,0,0,1,0,0,0,0,0,0,0,0),(117894,'2026-02-11',266,0,0,0,1,0,0,0,0,0,0,0,0),(117893,'2026-02-11',265,0,0,0,1,0,0,0,0,0,0,0,0),(117892,'2026-02-11',264,0,0,0,1,0,0,0,0,0,0,0,0),(117891,'2026-02-11',263,0,0,0,1,0,0,0,0,0,0,0,0),(117890,'2026-02-11',262,0,0,0,1,0,0,0,0,0,0,0,0),(117889,'2026-02-11',261,0,0,0,1,0,0,0,0,0,0,0,0),(117888,'2026-02-11',260,0,0,0,1,0,0,0,0,0,0,0,0),(117887,'2026-02-11',258,0,0,0,1,0,0,0,0,0,0,0,0),(117886,'2026-02-11',257,0,0,0,1,0,0,0,0,0,0,0,0),(117885,'2026-02-11',256,0,0,0,1,0,1,0,0,0,0,0,0),(117884,'2026-02-11',255,0,0,0,1,0,0,0,0,0,0,0,0),(117883,'2026-02-11',254,0,0,0,1,0,0,0,0,0,0,0,0),(117882,'2026-02-11',253,0,0,0,1,0,0,0,0,0,0,0,0),(117881,'2026-02-11',251,0,0,0,1,0,0,0,0,0,0,0,0),(117880,'2026-02-11',250,0,0,0,1,0,0,0,0,0,0,0,0),(117879,'2026-02-11',249,0,0,0,1,0,0,0,0,0,0,0,0),(117878,'2026-02-11',247,0,0,0,1,0,0,0,0,0,0,0,0),(117877,'2026-02-11',246,0,0,0,1,0,0,0,0,0,0,0,0),(117876,'2026-02-11',245,0,0,0,1,0,0,0,0,0,0,0,0),(117875,'2026-02-11',243,0,0,0,1,0,0,0,0,0,0,0,0),(117874,'2026-02-11',242,0,0,0,1,0,0,0,0,0,0,0,0),(117873,'2026-02-11',241,0,0,0,1,0,0,0,0,0,0,0,0),(117872,'2026-02-11',239,0,0,0,1,0,0,0,0,0,0,0,0),(117871,'2026-02-11',238,0,0,0,1,0,0,0,0,0,0,0,0),(117870,'2026-02-11',236,0,0,0,1,0,0,0,0,0,0,0,0),(117869,'2026-02-11',234,0,0,0,1,0,0,0,0,0,0,0,0),(117454,'2026-01-18',388,1,0,1,0,0,0,0,0,0,0,0,0),(117453,'2026-01-18',301,0,0,0,0,0,1,0,0,0,0,0,0),(117452,'2026-01-18',280,0,0,0,0,0,1,0,0,0,0,0,0),(117451,'2026-01-18',243,0,0,0,1,0,0,0,0,0,0,0,0),(117450,'2026-01-18',109,0,0,0,0,1,0,0,0,0,0,0,0),(117448,'2026-01-17',456,0,0,0,1,0,0,0,0,0,0,0,0),(117447,'2026-01-17',452,0,0,0,1,0,0,0,0,0,0,0,0),(117446,'2026-01-17',451,0,0,0,1,0,0,0,0,0,0,0,0),(117445,'2026-01-17',448,0,0,0,1,0,0,0,0,0,0,0,0),(117444,'2026-01-17',446,0,0,0,1,0,0,0,0,0,0,0,0),(117443,'2026-01-17',445,0,0,0,1,0,0,0,0,0,0,0,0),(117442,'2026-01-17',443,0,0,0,1,0,0,0,0,0,0,0,0),(117441,'2026-01-17',441,0,0,0,1,0,0,0,0,0,0,0,0),(117440,'2026-01-17',440,0,0,0,1,0,0,0,0,0,0,0,0),(117439,'2026-01-17',439,0,0,0,1,0,0,0,0,0,0,0,0),(117438,'2026-01-17',438,0,0,0,1,0,0,0,0,0,0,0,0),(117437,'2026-01-17',435,0,0,0,1,0,0,0,0,0,0,0,0),(117436,'2026-01-17',434,0,0,0,1,0,0,0,0,0,0,0,0),(117160,'2026-01-01',435,0,0,0,1,0,0,0,0,0,0,0,0),(117159,'2026-01-01',434,0,0,0,1,0,0,0,0,0,0,0,0),(117158,'2026-01-01',433,0,0,0,1,0,0,0,0,0,0,0,0),(117157,'2026-01-01',432,0,0,0,1,0,0,0,0,0,0,0,0),(117156,'2026-01-01',431,0,0,0,1,0,0,0,0,0,0,0,0),(117155,'2026-01-01',430,0,0,0,1,0,0,0,0,0,0,0,0),(117154,'2026-01-01',428,0,0,0,1,0,0,0,0,0,0,0,0),(117153,'2026-01-01',426,0,0,0,1,0,0,0,0,0,0,0,0),(117152,'2026-01-01',423,0,0,0,1,0,0,0,0,0,0,0,0),(117151,'2026-01-01',422,0,0,0,1,0,0,0,0,0,0,0,0),(117150,'2026-01-01',420,0,0,0,1,0,0,0,0,0,0,0,0),(117149,'2026-01-01',417,0,0,0,1,0,0,0,0,0,0,0,0),(117148,'2026-01-01',414,0,0,0,1,0,0,0,0,0,0,0,0),(117147,'2026-01-01',413,0,0,0,1,0,0,0,0,0,0,0,0),(117146,'2026-01-01',412,0,0,0,1,0,0,0,0,0,0,0,0),(117145,'2026-01-01',410,0,0,0,1,0,0,0,0,0,0,0,0),(117144,'2026-01-01',408,0,0,0,1,0,0,0,0,0,0,0,0),(117143,'2026-01-01',407,0,0,0,1,0,0,0,0,0,0,0,0),(117142,'2026-01-01',405,0,0,0,1,0,0,0,0,0,0,0,0),(117141,'2026-01-01',403,0,0,0,1,0,0,0,0,0,0,0,0),(117140,'2026-01-01',401,0,0,0,1,0,0,0,0,0,0,0,0),(117139,'2026-01-01',400,0,0,0,1,0,0,0,0,0,0,0,0),(117138,'2026-01-01',396,0,0,0,1,0,0,0,0,0,0,0,0),(117137,'2026-01-01',395,0,0,0,1,0,0,0,0,0,0,0,0),(117136,'2026-01-01',393,0,0,0,1,0,0,0,0,0,0,0,0),(117135,'2026-01-01',392,0,0,0,1,0,0,0,0,0,0,0,0),(117134,'2026-01-01',391,0,0,0,1,0,0,0,0,0,0,0,0),(117133,'2026-01-01',390,0,0,0,1,0,0,0,0,0,0,0,0),(117132,'2026-01-01',388,0,0,0,1,0,0,0,0,0,0,0,0),(117131,'2026-01-01',387,0,0,0,1,0,0,0,0,0,0,0,0),(117130,'2026-01-01',385,0,0,0,1,0,0,0,0,0,0,0,0),(117129,'2026-01-01',384,0,0,0,1,0,0,0,0,0,0,0,0),(117128,'2026-01-01',382,0,0,0,1,0,0,0,0,0,0,0,0),(117127,'2026-01-01',381,0,0,0,1,0,0,0,0,0,0,0,0),(117126,'2026-01-01',378,0,0,0,1,0,0,0,0,0,0,0,0),(117435,'2026-01-17',433,0,0,0,1,0,0,0,0,0,0,0,0),(117434,'2026-01-17',432,0,0,0,1,0,0,0,0,0,0,0,0),(117433,'2026-01-17',431,0,0,0,1,0,0,0,0,0,0,0,0),(117432,'2026-01-17',430,0,0,0,1,0,0,0,0,0,0,0,0),(117431,'2026-01-17',428,0,0,0,1,0,0,0,0,0,0,0,0),(117430,'2026-01-17',426,0,0,0,1,0,0,0,0,0,0,0,0),(117429,'2026-01-17',423,0,0,0,1,0,0,0,0,0,0,0,0),(117428,'2026-01-17',422,0,0,0,1,0,0,0,0,0,0,0,0),(117427,'2026-01-17',420,0,0,0,1,0,0,0,0,0,0,0,0),(117426,'2026-01-17',417,0,0,0,1,0,0,0,0,0,0,0,0),(117425,'2026-01-17',414,0,0,0,1,0,0,0,0,0,0,0,0),(117424,'2026-01-17',413,0,0,0,1,0,0,0,0,0,0,0,0),(117423,'2026-01-17',412,0,0,0,1,0,0,0,0,0,0,0,0),(117422,'2026-01-17',410,0,0,0,1,0,0,0,0,0,0,0,0),(117421,'2026-01-17',408,0,0,0,1,0,0,0,0,0,0,0,0),(117420,'2026-01-17',407,0,0,0,1,0,0,0,0,0,0,0,0),(117419,'2026-01-17',405,0,0,0,1,0,0,0,0,0,0,0,0),(117418,'2026-01-17',403,0,0,0,1,0,0,0,0,0,0,0,0),(117417,'2026-01-17',401,0,0,0,1,0,0,0,0,0,0,0,0),(117416,'2026-01-17',400,0,0,0,1,0,0,0,0,0,0,0,0),(117415,'2026-01-17',396,0,0,0,1,0,0,0,0,0,0,0,0),(117414,'2026-01-17',395,0,0,0,1,0,0,0,0,0,0,0,0),(117413,'2026-01-17',393,0,0,0,1,0,0,0,0,0,0,0,0),(117412,'2026-01-17',392,0,0,0,1,0,0,0,0,0,0,0,0),(117411,'2026-01-17',391,0,0,0,1,0,0,0,0,0,0,0,0),(117410,'2026-01-17',390,0,0,0,1,0,0,0,0,0,0,0,0),(117409,'2026-01-17',388,0,0,0,1,0,0,0,0,0,0,0,0),(117408,'2026-01-17',387,0,0,0,1,0,0,0,0,0,0,0,0),(117407,'2026-01-17',385,0,0,0,1,0,0,0,0,0,0,0,0),(117406,'2026-01-17',384,0,0,0,1,0,0,0,0,0,0,0,0),(115935,'2025-11-23',90,0,0,0,0,0,0,2,0,0,0,0,0),(115934,'2025-11-23',89,0,0,0,0,0,0,1,0,0,0,0,0),(115933,'2025-11-23',81,0,0,0,0,0,0,1,0,0,0,0,0),(115932,'2025-11-23',78,0,0,0,0,0,0,1,0,0,0,0,0),(117125,'2026-01-01',377,0,0,0,1,0,0,0,0,0,0,0,0),(117124,'2026-01-01',376,0,0,0,1,0,0,0,0,0,0,0,0),(117123,'2026-01-01',375,0,0,0,1,0,0,0,0,0,0,0,0),(117122,'2026-01-01',372,0,0,0,1,0,0,0,0,0,0,0,0),(117121,'2026-01-01',371,0,0,0,1,0,0,0,0,0,0,0,0),(117120,'2026-01-01',367,0,0,0,1,0,0,0,0,0,0,0,0),(117119,'2026-01-01',365,0,0,0,1,0,0,0,0,0,0,0,0),(117118,'2026-01-01',364,0,0,0,1,0,0,0,0,0,0,0,0),(117117,'2026-01-01',363,0,0,0,1,0,0,0,0,0,0,0,0),(117116,'2026-01-01',361,0,0,0,1,0,0,0,0,0,0,0,0),(117115,'2026-01-01',360,0,0,0,1,0,0,0,0,0,0,0,0),(117114,'2026-01-01',359,0,0,0,1,0,0,0,0,0,0,0,0),(117113,'2026-01-01',357,0,0,0,1,0,0,0,0,0,0,0,0),(117112,'2026-01-01',353,0,0,0,1,0,0,0,0,0,0,0,0),(117111,'2026-01-01',352,0,0,0,1,0,0,0,0,0,0,0,0),(117110,'2026-01-01',351,0,0,0,1,0,0,0,0,0,0,0,0),(117109,'2026-01-01',348,0,0,0,1,0,0,0,0,0,0,0,0),(117108,'2026-01-01',347,0,0,0,1,0,0,0,0,0,0,0,0),(117107,'2026-01-01',346,0,0,0,1,0,0,0,0,0,0,0,0),(117106,'2026-01-01',345,0,0,0,1,0,0,0,0,0,0,0,0),(117105,'2026-01-01',344,0,0,0,1,0,0,0,0,0,0,0,0),(117104,'2026-01-01',341,0,0,0,1,0,0,0,0,0,0,0,0),(117103,'2026-01-01',340,0,0,0,1,0,0,0,0,0,0,0,0),(117102,'2026-01-01',339,0,0,0,1,0,0,0,0,0,0,0,0),(117101,'2026-01-01',338,0,0,0,1,0,0,0,0,0,0,0,0),(117100,'2026-01-01',337,0,0,0,1,0,0,0,0,0,0,0,0),(117099,'2026-01-01',336,0,0,0,1,0,0,0,0,0,0,0,0),(117098,'2026-01-01',335,0,0,0,1,0,0,0,0,0,0,0,0),(117097,'2026-01-01',334,0,0,0,1,0,0,0,0,0,0,0,0),(117096,'2026-01-01',333,0,0,0,1,0,0,0,0,0,0,0,0),(117095,'2026-01-01',332,0,0,0,1,0,0,0,0,0,0,0,0),(117094,'2026-01-01',331,0,0,0,1,0,0,0,0,0,0,0,0),(117093,'2026-01-01',330,0,0,0,1,0,0,0,0,0,0,0,0),(117092,'2026-01-01',329,0,0,0,1,0,0,0,0,0,0,0,0),(117091,'2026-01-01',328,0,0,0,1,0,0,0,0,0,0,0,0),(117090,'2026-01-01',327,0,0,1,0,0,0,0,0,0,0,0,0),(117089,'2026-01-01',326,0,0,0,1,0,0,0,0,0,0,0,0),(117088,'2026-01-01',324,0,0,0,1,0,0,0,0,0,0,0,0),(117087,'2026-01-01',323,0,0,0,1,0,0,0,0,0,0,0,0),(117086,'2026-01-01',321,0,0,0,1,0,0,0,0,0,0,0,0),(117085,'2026-01-01',320,0,0,0,1,0,0,0,0,0,0,0,0),(117084,'2026-01-01',319,0,0,0,1,0,0,0,0,0,0,0,0),(117083,'2026-01-01',317,0,0,0,1,0,0,0,0,0,0,0,0),(117082,'2026-01-01',316,0,0,0,1,0,0,0,0,0,0,0,0),(117081,'2026-01-01',314,0,0,0,1,0,0,0,0,0,0,0,0),(117080,'2026-01-01',313,0,0,0,1,0,0,0,0,0,0,0,0),(117079,'2026-01-01',310,0,0,0,1,0,0,0,0,0,0,0,0),(117078,'2026-01-01',309,0,0,0,1,0,0,0,0,0,0,0,0),(117077,'2026-01-01',308,0,0,0,1,0,0,0,0,0,0,0,0),(117076,'2026-01-01',307,0,0,0,1,0,0,0,0,0,0,0,0),(117075,'2026-01-01',304,0,0,0,1,0,0,0,0,0,0,0,0),(117074,'2026-01-01',303,0,0,0,1,0,0,0,0,0,0,0,0),(117073,'2026-01-01',302,0,0,0,1,0,0,0,0,0,0,0,0),(117072,'2026-01-01',301,0,0,0,1,0,0,0,0,0,0,0,0),(117071,'2026-01-01',300,0,0,0,1,0,0,0,0,0,0,0,0),(117070,'2026-01-01',299,0,0,0,1,0,0,0,0,0,0,0,0),(117069,'2026-01-01',298,0,0,0,1,0,0,0,0,0,0,0,0),(117068,'2026-01-01',296,0,0,0,1,0,0,0,0,0,0,0,0),(117067,'2026-01-01',295,0,0,0,1,0,0,0,0,0,0,0,0),(117066,'2026-01-01',294,0,0,0,1,0,0,0,0,0,0,0,0),(117065,'2026-01-01',292,0,0,0,1,0,0,0,0,0,0,0,0),(117064,'2026-01-01',291,0,0,0,1,0,0,0,0,0,0,0,0),(117063,'2026-01-01',290,0,0,0,1,0,0,0,0,0,0,0,0),(117062,'2026-01-01',289,0,0,0,1,0,0,0,0,0,0,0,0),(117061,'2026-01-01',288,0,0,0,1,0,0,0,0,0,0,0,0),(117060,'2026-01-01',285,0,0,0,1,0,0,0,0,0,0,0,0),(117059,'2026-01-01',281,0,0,0,1,0,0,0,0,0,0,0,0),(117058,'2026-01-01',280,0,0,0,1,0,0,0,0,0,0,0,0),(117057,'2026-01-01',278,0,0,0,1,0,0,0,0,0,0,0,0),(117056,'2026-01-01',275,0,0,0,1,0,0,0,0,0,0,0,0),(117055,'2026-01-01',274,0,0,0,1,0,0,0,0,0,0,0,0),(117054,'2026-01-01',273,0,0,0,1,0,0,0,0,0,0,0,0),(117053,'2026-01-01',271,0,0,0,1,0,0,0,0,0,0,0,0),(117052,'2026-01-01',269,0,0,0,1,0,0,0,0,0,0,0,0),(117051,'2026-01-01',268,0,0,0,1,0,0,0,0,0,0,0,0),(117050,'2026-01-01',266,0,0,0,1,0,0,0,0,0,0,0,0),(117049,'2026-01-01',265,0,0,0,1,0,0,0,0,0,0,0,0),(117048,'2026-01-01',264,0,0,0,1,0,0,0,0,0,0,0,0),(117047,'2026-01-01',263,0,0,0,1,0,0,0,0,0,0,0,0),(117046,'2026-01-01',262,0,0,0,1,0,0,0,0,0,0,0,0),(117045,'2026-01-01',261,0,0,0,1,0,0,0,0,0,0,0,0),(117044,'2026-01-01',260,0,0,0,1,0,0,0,0,0,0,0,0),(117043,'2026-01-01',258,0,0,0,1,0,0,0,0,0,0,0,0),(117042,'2026-01-01',257,0,0,0,1,0,0,0,0,0,0,0,0),(117041,'2026-01-01',256,0,0,0,1,0,0,0,0,0,0,0,0),(117040,'2026-01-01',255,0,0,0,1,0,0,0,0,0,0,0,0),(117039,'2026-01-01',254,0,0,0,1,0,0,0,0,0,0,0,0),(117038,'2026-01-01',253,0,0,0,1,0,0,0,0,0,0,0,0),(117037,'2026-01-01',251,0,0,0,1,0,0,0,0,0,0,0,0),(117036,'2026-01-01',250,0,0,0,1,0,0,0,0,0,0,0,0),(117035,'2026-01-01',249,0,0,0,1,0,0,0,0,0,0,0,0),(117034,'2026-01-01',247,0,0,0,1,0,0,0,0,0,0,0,0),(117033,'2026-01-01',246,0,0,0,1,0,0,0,0,0,0,0,0),(117032,'2026-01-01',245,0,0,0,1,0,0,0,0,0,0,0,0),(117031,'2026-01-01',243,0,0,0,1,0,0,0,0,0,0,0,0),(117030,'2026-01-01',242,0,0,0,1,0,0,0,0,0,0,0,0),(117029,'2026-01-01',241,0,0,0,1,0,0,0,0,0,0,0,0),(117028,'2026-01-01',239,0,0,0,1,0,0,0,0,0,0,0,0),(117027,'2026-01-01',238,0,0,0,1,0,0,0,0,0,0,0,0),(117026,'2026-01-01',236,0,0,0,1,0,0,0,0,0,0,0,0),(117025,'2026-01-01',234,0,0,0,1,0,0,0,0,0,0,0,0),(117024,'2026-01-01',233,0,0,0,1,0,0,1,0,0,0,0,0),(117023,'2026-01-01',232,0,0,0,1,0,0,0,0,0,0,0,0),(117022,'2026-01-01',231,0,0,0,1,0,0,0,0,0,0,0,0),(117021,'2026-01-01',228,0,0,0,1,0,0,0,0,0,0,0,0),(117020,'2026-01-01',227,0,0,0,1,0,0,0,0,0,0,0,0),(117019,'2026-01-01',226,0,0,0,1,0,0,0,0,0,0,0,0),(117018,'2026-01-01',225,0,0,0,1,0,0,0,0,0,0,0,0),(117017,'2026-01-01',224,0,0,0,1,0,0,0,0,0,0,0,0),(117016,'2026-01-01',222,0,0,0,1,0,0,0,0,0,0,0,0),(117015,'2026-01-01',221,0,0,0,1,0,0,0,0,0,0,0,0),(117014,'2026-01-01',220,0,0,0,1,0,0,0,0,0,0,0,0),(117013,'2026-01-01',218,0,0,0,0,0,0,1,0,0,0,0,0),(117012,'2026-01-01',217,0,0,0,1,0,0,0,0,0,0,0,0),(117011,'2026-01-01',214,0,0,0,1,0,0,0,0,0,0,0,0),(117010,'2026-01-01',213,0,0,0,1,0,0,0,0,0,0,0,0),(117009,'2026-01-01',212,0,0,0,1,0,0,0,0,0,0,0,0),(117008,'2026-01-01',211,0,0,0,1,0,0,0,0,0,0,0,0),(117007,'2026-01-01',210,0,0,0,1,0,0,0,0,0,0,0,0),(117006,'2026-01-01',209,0,0,0,1,0,0,0,0,0,0,0,0),(117005,'2026-01-01',208,0,0,0,1,0,0,0,0,0,0,0,0),(117004,'2026-01-01',207,0,0,0,1,0,0,0,0,0,0,0,0),(117003,'2026-01-01',206,0,0,0,1,0,0,0,0,0,0,0,0),(117002,'2026-01-01',205,0,0,0,1,0,0,0,0,0,0,0,0),(117001,'2026-01-01',204,0,0,0,1,0,0,0,0,0,0,0,0),(117000,'2026-01-01',203,0,0,0,1,0,0,0,0,0,0,0,0),(116999,'2026-01-01',201,0,0,0,1,0,0,0,0,0,0,0,0),(116998,'2026-01-01',200,0,0,0,1,0,0,0,0,0,0,0,0),(116997,'2026-01-01',197,0,0,0,1,0,0,0,0,0,0,0,0),(116996,'2026-01-01',196,0,0,0,1,0,0,0,0,0,0,0,0),(116995,'2026-01-01',195,0,0,0,1,0,0,0,0,0,0,0,0),(116994,'2026-01-01',194,0,0,0,1,0,0,0,0,0,0,0,0),(116993,'2026-01-01',193,0,0,0,1,0,0,0,0,0,0,0,0),(116992,'2026-01-01',192,0,0,0,1,0,0,0,0,0,0,0,0),(116991,'2026-01-01',191,0,0,0,1,0,0,0,0,0,0,0,0),(116990,'2026-01-01',190,0,0,0,1,0,0,0,0,0,0,0,0),(116989,'2026-01-01',189,0,0,0,1,0,0,0,0,0,0,0,0),(116988,'2026-01-01',188,0,0,0,1,0,0,0,0,0,0,0,0),(116987,'2026-01-01',187,0,0,0,1,0,0,0,0,0,0,0,0),(116986,'2026-01-01',186,0,0,0,1,0,0,0,0,0,0,0,0),(116985,'2026-01-01',185,0,0,0,1,0,0,0,0,0,0,0,0),(116984,'2026-01-01',184,0,0,0,1,0,0,0,0,0,0,0,0),(116983,'2026-01-01',183,0,0,0,1,0,0,0,0,0,0,0,0),(116982,'2026-01-01',182,0,0,0,1,0,0,0,0,0,0,0,0),(116981,'2026-01-01',181,0,0,0,1,0,0,0,0,0,0,0,0),(116980,'2026-01-01',180,0,0,0,1,0,0,0,0,0,0,0,0),(116979,'2026-01-01',179,0,0,0,1,0,0,0,0,0,0,0,0),(116978,'2026-01-01',176,0,0,0,1,0,0,0,0,0,0,0,0),(116977,'2026-01-01',175,0,0,0,1,0,0,0,0,0,0,0,0),(116976,'2026-01-01',174,0,0,0,1,0,0,0,0,0,0,0,0),(116975,'2026-01-01',173,0,0,0,1,0,0,0,0,0,0,0,0),(116974,'2026-01-01',172,0,0,0,1,0,0,0,0,0,0,0,0),(116973,'2026-01-01',170,0,0,0,1,0,0,0,0,0,0,0,0),(116972,'2026-01-01',168,0,0,0,1,0,0,0,0,0,0,0,0),(116971,'2026-01-01',167,0,0,0,1,0,0,0,0,0,0,0,0),(116970,'2026-01-01',166,0,0,0,1,0,0,0,0,0,0,0,0),(116969,'2026-01-01',164,0,0,0,1,0,0,0,0,0,0,0,0),(116968,'2026-01-01',163,0,0,0,1,0,0,0,0,0,0,0,0),(116967,'2026-01-01',161,0,0,0,1,0,0,0,0,0,0,0,0),(116966,'2026-01-01',160,0,0,0,1,0,0,0,0,0,0,0,0),(116965,'2026-01-01',159,0,0,0,1,0,0,0,0,0,0,0,0),(116964,'2026-01-01',158,0,0,0,1,0,0,0,0,0,0,0,0),(116963,'2026-01-01',157,0,0,0,1,0,0,0,0,0,0,0,0),(116962,'2026-01-01',154,0,0,0,1,0,0,0,0,0,0,0,0),(116961,'2026-01-01',152,0,0,0,1,0,0,0,0,0,0,0,0),(116960,'2026-01-01',151,0,0,0,1,0,0,0,0,0,0,0,0),(116959,'2026-01-01',148,0,0,0,1,0,0,0,0,0,0,0,0),(116958,'2026-01-01',147,0,0,0,1,0,0,0,0,0,0,0,0),(116957,'2026-01-01',146,0,0,0,1,0,0,0,0,0,0,0,0),(116956,'2026-01-01',145,0,0,0,1,0,0,0,0,0,0,0,0),(116955,'2026-01-01',144,0,0,0,1,0,0,0,0,0,0,0,0),(116954,'2026-01-01',143,0,0,0,1,0,0,0,0,0,0,0,0),(116953,'2026-01-01',141,0,0,0,1,0,0,0,0,0,0,0,0),(116952,'2026-01-01',140,0,0,0,1,0,0,0,0,0,0,0,0),(116951,'2026-01-01',136,0,0,0,1,0,0,0,0,0,0,0,0),(116950,'2026-01-01',132,0,0,0,1,0,0,0,0,0,0,0,0),(116949,'2026-01-01',128,0,0,0,1,0,0,0,0,0,0,0,0),(116948,'2026-01-01',127,0,0,0,1,0,0,0,0,0,0,0,0),(116947,'2026-01-01',126,0,0,0,1,0,0,0,0,0,0,0,0),(116946,'2026-01-01',124,0,0,0,1,0,0,0,0,0,0,0,0),(116945,'2026-01-01',123,0,0,0,1,0,0,2,0,0,0,0,0),(116944,'2026-01-01',121,0,0,0,1,0,0,0,0,0,0,0,0),(116943,'2026-01-01',115,0,0,0,1,0,0,0,0,0,0,0,0),(116942,'2026-01-01',114,0,0,0,1,0,0,0,0,0,0,0,0),(116941,'2026-01-01',113,0,0,0,1,0,0,0,0,0,0,0,0),(116940,'2026-01-01',112,0,0,0,1,0,0,0,0,0,0,0,0),(116939,'2026-01-01',110,0,0,0,1,0,0,0,0,0,0,0,0),(116938,'2026-01-01',109,0,0,0,0,0,0,2,0,0,0,0,0),(116937,'2026-01-01',103,0,0,0,1,0,0,0,0,0,0,0,0),(116936,'2026-01-01',98,0,0,0,1,0,0,0,0,0,0,0,0),(116935,'2026-01-01',97,0,0,0,1,0,0,0,0,0,0,0,0),(116934,'2026-01-01',96,0,0,0,1,0,0,0,0,0,0,0,0),(116933,'2026-01-01',94,0,0,0,1,0,0,0,0,0,0,0,0),(116932,'2026-01-01',91,0,0,0,1,0,0,0,0,0,0,0,0),(116931,'2026-01-01',90,0,0,0,1,0,0,0,0,0,0,0,0),(115938,'2025-11-27',2,0,0,0,0,0,0,1,0,0,0,0,0),(115937,'2025-11-27',1,0,0,0,0,0,0,2,0,0,0,0,0),(115936,'2025-11-24',233,0,0,0,0,0,0,5,0,0,0,0,0),(118244,'2026-02-18',353,0,0,0,1,0,0,0,0,0,0,0,0),(118243,'2026-02-18',352,0,0,0,1,0,0,0,0,0,0,0,0),(118242,'2026-02-18',351,0,0,0,1,0,0,0,0,0,0,0,0),(118241,'2026-02-18',348,0,0,0,1,0,0,0,0,0,0,0,0),(118240,'2026-02-18',347,0,0,0,1,0,0,0,0,0,0,0,0),(118239,'2026-02-18',346,0,0,0,1,0,0,0,0,0,0,0,0),(118238,'2026-02-18',345,0,0,0,1,0,0,0,0,0,0,0,0),(118237,'2026-02-18',344,0,0,0,1,0,0,0,0,0,0,0,0),(118236,'2026-02-18',341,0,0,0,1,0,0,0,0,0,0,0,0),(118235,'2026-02-18',340,0,0,0,1,0,0,0,0,0,0,0,0),(118234,'2026-02-18',339,0,0,0,1,0,0,0,0,0,0,0,0),(118233,'2026-02-18',338,0,0,0,1,0,0,0,0,0,0,0,0),(118232,'2026-02-18',337,0,0,0,1,0,0,0,0,0,0,0,0),(118231,'2026-02-18',336,0,0,0,1,0,0,0,0,0,0,0,0),(118230,'2026-02-18',335,0,0,0,1,0,0,0,0,0,0,0,0),(118229,'2026-02-18',334,0,0,0,1,0,0,0,0,0,0,0,0),(118228,'2026-02-18',333,0,0,0,1,0,0,0,0,0,0,0,0),(118227,'2026-02-18',332,0,0,0,1,0,0,0,0,0,0,0,0),(118226,'2026-02-18',331,0,0,0,1,0,0,0,0,0,0,0,0),(118225,'2026-02-18',330,0,0,0,1,0,0,0,0,0,0,0,0),(118224,'2026-02-18',329,0,0,0,1,0,0,0,0,0,0,0,0),(118223,'2026-02-18',328,0,0,0,1,0,0,0,0,0,0,0,0),(118222,'2026-02-18',327,0,0,0,1,0,0,0,0,0,0,0,0),(118221,'2026-02-18',326,0,0,0,1,0,0,0,0,0,0,0,0),(118220,'2026-02-18',324,0,0,0,1,0,0,0,0,0,0,0,0),(118219,'2026-02-18',323,0,0,0,1,0,0,0,0,0,0,0,0),(118218,'2026-02-18',321,0,0,0,1,0,0,0,0,0,0,0,0),(118217,'2026-02-18',320,0,0,0,1,0,0,0,0,0,0,0,0),(118216,'2026-02-18',319,0,0,0,1,0,0,0,0,0,0,0,0),(118215,'2026-02-18',317,0,0,0,1,0,0,0,0,0,0,0,0),(118214,'2026-02-18',316,0,0,0,1,0,0,0,0,0,0,0,0),(118213,'2026-02-18',314,0,0,0,1,0,0,0,0,0,0,0,0),(118212,'2026-02-18',313,0,0,0,1,0,0,0,0,0,0,0,0),(118211,'2026-02-18',310,0,0,0,1,1,0,0,0,0,0,0,0),(116930,'2026-01-01',89,0,0,0,0,0,0,2,0,0,0,0,0),(116929,'2026-01-01',87,0,0,0,1,0,0,0,0,0,0,0,0),(116928,'2026-01-01',79,0,0,0,1,0,0,0,0,0,0,0,0),(116927,'2026-01-01',70,0,0,0,1,0,0,0,0,0,0,0,0),(116926,'2026-01-01',69,0,0,0,1,0,0,0,0,0,0,0,0),(116925,'2026-01-01',68,0,0,0,1,0,0,0,0,0,0,0,0),(116924,'2026-01-01',67,0,0,0,1,0,0,0,0,0,0,0,0),(116923,'2026-01-01',66,0,0,0,1,0,0,0,0,0,0,0,0),(116922,'2026-01-01',65,0,0,0,1,0,0,0,0,0,0,0,0),(116921,'2026-01-01',64,0,0,0,1,0,0,0,0,0,0,0,0),(118210,'2026-02-18',309,0,0,0,1,0,0,0,0,0,0,0,0),(118209,'2026-02-18',308,0,0,0,1,0,0,0,0,0,0,0,0),(118208,'2026-02-18',307,0,0,0,1,0,0,0,0,0,0,0,0),(118207,'2026-02-18',304,0,0,0,1,0,0,0,0,0,0,0,0),(118206,'2026-02-18',303,0,0,0,1,0,0,0,0,0,0,0,0),(118205,'2026-02-18',302,0,0,0,1,0,0,0,0,0,0,0,0),(118204,'2026-02-18',301,0,0,0,1,0,0,0,0,0,0,0,0),(118203,'2026-02-18',300,0,0,0,1,0,0,0,0,0,0,0,0),(118202,'2026-02-18',299,0,0,0,1,0,0,0,0,0,0,0,0),(118201,'2026-02-18',298,0,0,0,1,0,0,0,0,0,0,0,0),(118200,'2026-02-18',296,0,0,0,1,0,0,0,0,0,0,0,0),(118199,'2026-02-18',295,0,0,0,1,0,0,0,0,0,0,0,0),(118198,'2026-02-18',294,0,0,0,1,0,0,0,0,0,0,0,0),(118197,'2026-02-18',292,0,0,0,1,0,0,0,0,0,0,0,0),(118196,'2026-02-18',291,0,0,0,1,0,0,0,0,0,0,0,0),(118195,'2026-02-18',290,0,0,0,1,0,0,0,0,0,0,0,0),(118194,'2026-02-18',289,0,0,0,1,0,0,0,0,0,0,0,0),(118193,'2026-02-18',288,0,0,0,1,0,0,0,0,0,0,0,0),(118192,'2026-02-18',285,0,0,0,1,0,0,0,0,0,0,0,0),(118191,'2026-02-18',281,0,0,0,1,0,0,0,0,0,0,0,0),(118190,'2026-02-18',280,0,0,0,1,0,0,0,0,0,0,0,0),(118189,'2026-02-18',278,0,0,0,1,0,0,0,0,0,0,0,0),(118188,'2026-02-18',275,0,0,0,1,0,0,0,0,0,0,0,0),(118187,'2026-02-18',274,0,0,0,1,0,0,0,0,0,0,0,0),(118186,'2026-02-18',273,0,0,0,1,0,0,0,0,0,0,0,0),(118185,'2026-02-18',271,0,0,0,1,0,0,0,0,0,0,0,0),(118184,'2026-02-18',269,0,0,0,1,0,0,0,0,0,0,0,0),(118183,'2026-02-18',268,0,0,0,1,0,0,0,0,0,0,0,0),(118182,'2026-02-18',266,0,0,0,1,0,0,0,0,0,0,0,0),(118181,'2026-02-18',265,0,0,0,1,0,0,0,0,0,0,0,0),(118180,'2026-02-18',264,0,0,0,1,0,0,0,0,0,0,0,0),(118179,'2026-02-18',263,0,0,0,1,0,0,0,0,0,0,0,0),(118178,'2026-02-18',262,0,0,0,1,0,0,0,0,0,0,0,0),(118177,'2026-02-18',261,0,0,0,1,0,0,0,0,0,0,0,0),(118176,'2026-02-18',260,0,0,0,1,0,0,0,0,0,0,0,0),(118175,'2026-02-18',258,0,0,0,1,0,0,0,0,0,0,0,0),(118174,'2026-02-18',257,0,0,0,1,0,0,0,0,0,0,0,0),(118173,'2026-02-18',256,0,0,0,1,0,0,0,0,0,0,0,0),(118172,'2026-02-18',255,0,0,0,1,0,0,0,0,0,0,0,0),(118171,'2026-02-18',254,0,0,0,1,0,0,0,0,0,0,0,0),(118170,'2026-02-18',253,0,0,0,1,0,0,0,0,0,0,0,0),(116920,'2026-01-01',63,0,0,0,1,0,0,0,0,0,0,0,0),(116919,'2026-01-01',61,0,0,0,1,0,0,0,0,0,0,0,0),(116918,'2026-01-01',58,0,0,0,1,0,0,0,0,0,0,0,0),(116917,'2026-01-01',54,0,0,0,1,0,0,0,0,0,0,0,0),(116916,'2026-01-01',52,0,0,0,1,0,0,0,0,0,0,0,0),(116915,'2026-01-01',42,0,0,0,1,0,0,0,0,0,0,0,0),(116914,'2026-01-01',37,0,0,0,1,0,0,0,0,0,0,0,0),(116913,'2026-01-01',32,0,0,0,1,0,0,0,0,0,0,0,0),(116912,'2026-01-01',24,0,0,0,1,0,0,0,0,0,0,0,0),(116911,'2026-01-01',19,0,0,0,1,0,0,0,0,0,0,0,0),(116910,'2026-01-01',13,0,0,0,1,0,0,0,0,0,0,0,0),(116909,'2026-01-01',10,0,0,0,1,0,0,0,0,0,0,0,0),(116908,'2026-01-01',2,0,0,0,0,0,0,2,0,0,0,0,0),(117164,'2026-01-01',441,0,0,0,1,0,0,0,0,0,0,0,0),(117163,'2026-01-01',440,0,0,0,1,0,0,0,0,0,0,0,0),(117162,'2026-01-01',439,0,0,0,1,0,0,0,0,0,0,0,0),(117161,'2026-01-01',438,0,0,0,1,0,0,0,0,0,0,0,0),(117168,'2026-01-01',448,0,0,0,1,0,0,0,0,0,0,0,0),(117167,'2026-01-01',446,0,0,0,1,0,0,0,0,0,0,0,0),(117166,'2026-01-01',445,0,0,0,1,0,0,0,0,0,0,0,0),(117165,'2026-01-01',443,0,0,0,1,0,0,0,0,0,0,0,0),(116907,'2025-12-30',81,0,0,0,0,0,0,2,0,0,0,0,0),(116906,'2025-12-30',78,0,0,0,0,0,0,2,0,0,0,0,0),(116905,'2025-12-30',75,0,0,0,0,0,0,1,0,0,0,0,0),(117994,'2026-02-11',417,0,0,0,1,0,0,0,0,0,0,0,0),(117993,'2026-02-11',414,0,0,0,1,0,0,0,0,0,0,0,0),(117992,'2026-02-11',413,0,0,0,1,0,0,0,0,0,0,0,0),(117991,'2026-02-11',412,0,0,0,1,0,0,0,0,0,0,0,0),(117990,'2026-02-11',410,0,0,0,1,0,0,0,0,0,0,0,0),(117989,'2026-02-11',408,0,0,0,1,0,0,0,0,0,0,0,0),(117988,'2026-02-11',407,0,0,0,1,0,0,0,0,0,0,0,0),(117171,'2026-01-01',456,0,0,0,1,0,0,0,0,0,0,0,0),(117170,'2026-01-01',452,0,0,0,1,0,0,0,0,0,0,0,0),(117169,'2026-01-01',451,0,0,0,1,0,0,0,0,0,0,0,0),(118169,'2026-02-18',251,0,0,0,1,0,0,0,0,0,0,0,0),(118168,'2026-02-18',250,0,0,0,1,0,0,0,0,0,0,0,0),(118167,'2026-02-18',249,0,0,0,1,0,0,0,0,0,0,0,0),(118166,'2026-02-18',247,0,0,0,1,0,0,0,0,0,0,0,0),(118165,'2026-02-18',246,0,0,0,1,0,0,0,0,0,0,0,0),(118164,'2026-02-18',245,0,0,0,1,0,0,0,0,0,0,0,0),(118163,'2026-02-18',243,0,0,0,1,0,0,0,0,0,0,0,0),(118162,'2026-02-18',242,0,0,0,1,0,0,0,0,0,0,0,0),(118161,'2026-02-18',241,0,0,0,1,0,0,0,0,0,0,0,0),(118160,'2026-02-18',239,0,0,0,1,0,0,0,0,0,0,0,0),(118159,'2026-02-18',238,0,0,0,1,0,0,0,0,0,0,0,0),(118158,'2026-02-18',236,0,0,0,1,0,0,0,0,0,0,0,0),(118157,'2026-02-18',234,0,0,0,1,0,0,0,0,0,0,0,0),(118156,'2026-02-18',233,0,0,0,1,0,0,1,0,0,0,0,0),(118155,'2026-02-18',232,0,0,0,1,0,0,0,0,0,0,0,0),(118154,'2026-02-18',231,0,0,0,1,0,0,0,0,0,0,0,0),(118153,'2026-02-18',228,0,0,0,1,0,0,0,0,0,0,0,0),(118152,'2026-02-18',227,0,0,0,1,0,0,0,0,0,0,0,0),(118151,'2026-02-18',226,0,0,0,1,0,0,0,0,0,0,0,0),(118150,'2026-02-18',225,0,0,0,1,0,0,0,0,0,0,0,0),(118149,'2026-02-18',224,0,0,0,1,0,0,0,0,0,0,0,0),(118148,'2026-02-18',222,0,0,0,1,0,0,0,0,0,0,0,0),(118147,'2026-02-18',221,0,0,0,1,0,0,0,0,0,0,0,0),(118146,'2026-02-18',220,0,0,0,1,0,0,0,0,0,0,0,0),(118145,'2026-02-18',218,0,0,0,0,0,0,1,0,0,0,0,0),(118144,'2026-02-18',217,0,0,0,1,0,0,0,0,0,0,0,0),(118143,'2026-02-18',214,0,0,0,1,0,0,0,0,0,0,0,0),(118142,'2026-02-18',213,0,0,0,1,0,0,0,0,0,0,0,0),(118141,'2026-02-18',212,0,0,0,1,0,0,0,0,0,0,0,0),(115949,'2025-12-01',24,0,0,0,1,0,0,0,0,0,0,0,0),(115948,'2025-12-01',22,0,0,0,0,1,0,2,0,0,0,0,0),(115947,'2025-12-01',19,0,0,0,1,0,0,0,0,0,0,0,0),(115946,'2025-12-01',17,0,0,0,0,0,0,1,0,0,0,0,0),(115945,'2025-12-01',13,0,0,0,1,0,0,0,0,0,0,0,0),(115944,'2025-12-01',10,0,0,0,1,0,0,0,0,0,0,0,0),(116203,'2025-12-01',435,0,0,0,1,0,0,0,0,0,0,0,0),(116202,'2025-12-01',434,0,0,0,1,0,0,0,0,0,0,0,0),(116201,'2025-12-01',433,0,0,0,1,0,0,0,0,0,0,0,0),(116200,'2025-12-01',432,0,0,0,1,0,0,0,0,0,0,0,0),(116199,'2025-12-01',431,0,0,0,1,0,0,0,0,0,0,0,0),(116198,'2025-12-01',430,0,0,0,1,0,0,0,0,0,0,0,0),(116197,'2025-12-01',428,0,0,0,1,0,0,0,0,0,0,0,0),(116196,'2025-12-01',426,0,0,0,1,0,0,0,0,0,0,0,0),(116195,'2025-12-01',423,0,0,0,1,0,0,0,0,0,0,0,0),(116194,'2025-12-01',422,0,0,0,1,0,0,0,0,0,0,0,0),(116193,'2025-12-01',420,0,0,0,1,0,0,0,0,0,0,0,0),(116192,'2025-12-01',417,0,0,0,1,0,0,0,0,0,0,0,0),(118140,'2026-02-18',211,0,0,0,1,0,0,0,0,0,0,0,0),(116191,'2025-12-01',414,0,0,0,1,0,0,0,0,0,0,0,0),(116190,'2025-12-01',413,0,0,0,1,0,0,0,0,0,0,0,0),(116189,'2025-12-01',412,0,0,0,1,0,0,0,0,0,0,0,0),(116188,'2025-12-01',410,0,0,0,1,0,0,0,0,0,0,0,0),(116187,'2025-12-01',408,0,0,0,1,0,0,0,0,0,0,0,0),(116186,'2025-12-01',407,0,0,0,1,0,0,0,0,0,0,0,0),(116185,'2025-12-01',405,0,0,0,1,0,0,0,0,0,0,0,0),(116184,'2025-12-01',403,0,0,0,1,0,0,0,0,0,0,0,0),(116183,'2025-12-01',401,0,0,0,1,1,0,0,0,0,0,0,0),(116182,'2025-12-01',400,0,0,0,1,0,0,0,0,0,0,0,0),(116181,'2025-12-01',396,0,0,0,1,0,0,0,0,0,0,0,0),(116180,'2025-12-01',395,0,0,0,1,0,0,0,0,0,0,0,0),(116179,'2025-12-01',393,0,0,0,1,0,0,0,0,0,0,0,0),(116178,'2025-12-01',392,0,0,0,1,0,0,0,0,0,0,0,0),(116177,'2025-12-01',391,0,0,0,1,0,0,0,0,0,0,0,0),(116176,'2025-12-01',390,0,0,0,1,0,0,0,0,0,0,0,0),(118139,'2026-02-18',210,0,0,0,1,0,0,0,0,0,0,0,0),(118138,'2026-02-18',209,0,0,0,1,0,0,0,0,0,0,0,0),(118137,'2026-02-18',208,0,0,0,1,0,0,0,0,0,0,0,0),(118136,'2026-02-18',207,0,0,0,1,0,0,0,0,0,0,0,0),(118135,'2026-02-18',206,0,0,0,1,0,0,0,0,0,0,0,0),(118134,'2026-02-18',205,0,0,0,1,0,0,0,0,0,0,0,0),(118133,'2026-02-18',204,0,0,0,1,0,0,0,0,0,0,0,0),(118132,'2026-02-18',203,0,0,0,1,0,0,0,0,0,0,0,0),(118131,'2026-02-18',201,0,0,0,1,0,0,0,0,0,0,0,0),(118130,'2026-02-18',200,0,0,0,1,0,0,0,0,0,0,0,0),(118129,'2026-02-18',197,0,0,0,1,0,0,0,0,0,0,0,0),(118128,'2026-02-18',196,0,0,0,1,0,0,0,0,0,0,0,0),(118127,'2026-02-18',195,0,0,0,1,0,0,0,0,0,0,0,0),(118126,'2026-02-18',194,0,0,0,1,0,0,0,0,0,0,0,0),(118125,'2026-02-18',193,0,0,0,1,0,0,0,0,0,0,0,0),(118124,'2026-02-18',192,0,0,0,1,0,0,0,0,0,0,0,0),(118123,'2026-02-18',191,0,0,0,1,0,0,0,0,0,0,0,0),(118122,'2026-02-18',190,0,0,0,1,0,0,0,0,0,0,0,0),(118121,'2026-02-18',189,0,0,0,1,0,0,0,0,0,0,0,0),(118120,'2026-02-18',188,0,0,0,1,0,0,0,0,0,0,0,0),(118119,'2026-02-18',187,0,0,0,1,0,0,0,0,0,0,0,0),(118118,'2026-02-18',186,0,0,0,1,0,0,0,0,0,0,0,0),(118117,'2026-02-18',185,0,0,0,1,0,0,0,0,0,0,0,0),(118116,'2026-02-18',184,0,0,0,1,0,0,0,0,0,0,0,0),(118115,'2026-02-18',183,0,0,0,1,0,0,0,0,0,0,0,0),(118114,'2026-02-18',182,0,0,0,1,0,0,0,0,0,0,0,0),(118113,'2026-02-18',181,0,0,0,1,0,1,0,0,0,0,0,0),(118112,'2026-02-18',180,0,0,0,1,0,0,0,0,0,0,0,0),(118111,'2026-02-18',179,0,0,0,1,0,0,0,0,0,0,0,0),(118110,'2026-02-18',176,0,0,0,1,0,0,0,0,0,0,0,0),(118109,'2026-02-18',175,0,0,0,1,0,0,0,0,0,0,0,0),(118108,'2026-02-18',174,0,0,0,1,0,0,0,0,0,0,0,0),(118107,'2026-02-18',173,0,0,0,1,0,0,0,0,0,0,0,0),(118106,'2026-02-18',172,0,0,0,1,0,0,0,0,0,0,0,0),(118105,'2026-02-18',170,0,0,0,1,0,0,0,0,0,0,0,0),(118104,'2026-02-18',168,0,0,0,1,0,0,0,0,0,0,0,0),(118103,'2026-02-18',167,0,0,0,1,0,0,0,0,0,0,0,0),(118102,'2026-02-18',166,0,0,0,1,0,0,0,0,0,0,0,0),(118101,'2026-02-18',164,0,0,0,1,0,0,0,0,0,0,0,0),(118100,'2026-02-18',163,0,0,0,1,0,0,0,0,0,0,0,0),(118099,'2026-02-18',161,0,0,0,1,0,0,0,0,0,0,0,0),(118098,'2026-02-18',160,0,0,0,1,0,0,0,0,0,0,0,0),(118097,'2026-02-18',159,0,0,0,1,0,0,0,0,0,0,0,0),(118096,'2026-02-18',158,0,0,0,1,0,0,0,0,0,0,0,0),(118095,'2026-02-18',157,0,0,0,1,0,0,0,0,0,0,0,0),(118094,'2026-02-18',154,0,0,0,1,0,0,0,0,0,0,0,0),(118093,'2026-02-18',152,0,0,0,1,0,0,0,0,0,0,0,0),(118092,'2026-02-18',151,0,0,0,1,0,0,0,0,0,0,0,0),(118091,'2026-02-18',148,0,0,0,1,0,0,0,0,0,0,0,0),(118090,'2026-02-18',147,0,0,0,1,0,0,0,0,0,0,0,0),(118089,'2026-02-18',146,0,0,0,1,0,0,0,0,0,0,0,0),(118088,'2026-02-18',145,0,0,0,1,0,0,0,0,0,0,0,0),(118087,'2026-02-18',144,0,0,0,1,0,0,0,0,0,0,0,0),(118086,'2026-02-18',143,0,0,0,1,0,0,0,0,0,0,0,0),(118085,'2026-02-18',141,0,0,0,1,0,0,0,0,0,0,0,0),(118084,'2026-02-18',140,0,0,0,1,0,0,0,0,0,0,0,0),(118083,'2026-02-18',136,0,0,0,1,0,0,0,0,0,0,0,0),(118082,'2026-02-18',132,0,0,0,1,0,0,0,0,0,0,0,0),(118081,'2026-02-18',128,0,0,0,1,0,0,0,0,0,0,0,0),(118080,'2026-02-18',127,0,0,0,1,0,0,0,0,0,0,0,0),(118079,'2026-02-18',126,0,0,0,1,0,0,0,0,0,0,0,0),(118078,'2026-02-18',124,0,0,0,1,0,0,0,0,0,0,0,0),(118077,'2026-02-18',123,0,0,0,1,0,0,1,0,0,0,0,0),(118076,'2026-02-18',121,0,0,0,1,0,0,0,0,0,0,0,0),(118075,'2026-02-18',115,0,0,0,1,0,0,0,0,0,0,0,0),(118074,'2026-02-18',114,0,0,0,1,0,0,0,0,0,0,0,0),(118073,'2026-02-18',113,0,0,0,1,0,0,0,0,0,0,0,0),(118072,'2026-02-18',112,0,0,0,1,0,0,0,0,0,0,0,0),(118071,'2026-02-18',110,0,0,0,1,0,0,0,0,0,0,0,0),(118070,'2026-02-18',109,0,0,0,0,0,0,2,0,0,0,0,0),(118069,'2026-02-18',103,0,0,0,1,0,0,0,0,0,0,0,0),(118068,'2026-02-18',98,0,0,0,1,0,0,0,0,0,0,0,0),(118067,'2026-02-18',97,0,0,0,1,0,0,0,0,0,0,0,0),(118066,'2026-02-18',96,0,0,0,1,0,0,0,0,0,0,0,0),(118065,'2026-02-18',94,0,0,0,1,0,0,0,0,0,0,0,0),(118064,'2026-02-18',91,0,0,1,0,1,0,0,0,0,0,0,0),(118063,'2026-02-18',90,0,0,0,1,0,0,0,0,0,0,0,0),(118062,'2026-02-18',87,0,0,0,1,0,0,0,0,0,0,0,0),(118061,'2026-02-18',79,0,0,0,1,0,0,0,0,0,0,0,0),(118060,'2026-02-18',70,0,0,0,1,0,0,0,0,0,0,0,0),(118059,'2026-02-18',69,0,0,0,1,0,0,0,0,0,0,0,0),(118058,'2026-02-18',68,0,0,0,1,0,0,0,0,0,0,0,0),(118057,'2026-02-18',67,0,0,0,1,0,0,0,0,0,0,0,0),(118056,'2026-02-18',66,0,0,0,1,0,0,0,0,0,0,0,0),(118055,'2026-02-18',65,0,0,0,1,0,0,0,0,0,0,0,0),(118054,'2026-02-18',64,0,0,0,1,0,0,0,0,0,0,0,0),(118053,'2026-02-18',63,0,0,0,1,0,0,0,0,0,0,0,0),(118052,'2026-02-18',61,0,0,0,1,0,0,0,0,0,0,0,0),(118051,'2026-02-18',58,0,0,0,1,0,0,0,0,0,0,0,0),(118050,'2026-02-18',54,0,0,0,1,0,0,0,0,0,0,0,0),(118049,'2026-02-18',52,0,0,0,1,0,0,0,0,0,0,0,0),(118048,'2026-02-18',51,0,0,0,0,0,1,0,0,0,0,0,0),(118047,'2026-02-18',42,0,0,0,1,0,0,0,0,0,0,0,0),(118046,'2026-02-18',37,0,0,0,1,0,0,0,0,0,0,0,0),(118045,'2026-02-18',32,0,0,0,1,0,0,0,0,0,0,0,0),(118044,'2026-02-18',24,0,0,0,1,0,0,0,0,0,0,0,0),(118043,'2026-02-18',19,0,0,0,1,0,0,0,0,0,0,0,0),(118042,'2026-02-18',13,0,0,0,1,0,0,0,0,0,0,0,0),(118041,'2026-02-18',10,0,0,0,1,0,0,0,0,0,0,0,0),(118040,'2026-02-18',5,0,0,0,0,0,0,1,0,0,0,0,0),(118039,'2026-02-18',2,0,0,0,0,0,0,1,0,0,0,0,0),(118037,'2026-02-16',188,0,0,0,0,0,0,5,0,0,0,0,0),(118036,'2026-02-12',388,1,0,1,0,0,0,0,0,0,0,0,0),(118035,'2026-02-12',205,0,0,0,1,0,0,0,0,0,0,0,0),(118034,'2026-02-12',137,0,0,0,0,0,0,1,0,0,0,0,0),(118033,'2026-02-12',90,0,0,0,0,0,0,3,0,0,0,0,0),(118032,'2026-02-12',89,0,0,0,0,0,1,2,0,0,0,0,1),(118031,'2026-02-12',81,0,0,0,0,0,0,2,0,0,0,0,0),(118030,'2026-02-12',78,0,0,0,0,0,0,1,0,0,0,0,0),(118029,'2026-02-12',75,0,0,0,0,0,0,3,0,0,0,0,0),(118028,'2026-02-12',51,0,0,0,0,1,0,1,0,0,0,0,0),(118027,'2026-02-12',49,0,0,0,0,0,0,1,0,0,0,0,0),(118026,'2026-02-12',45,0,0,0,0,1,0,0,0,0,0,0,0),(118025,'2026-02-12',23,0,0,0,0,0,1,0,0,0,0,0,0),(118024,'2026-02-12',22,0,0,0,0,0,0,1,0,0,0,0,0),(118023,'2026-02-11',628,0,0,0,1,0,0,0,0,0,0,0,0),(118022,'2026-02-11',621,0,0,0,1,0,0,0,0,0,0,0,0),(118021,'2026-02-11',584,0,0,0,1,0,0,0,0,0,0,0,0),(118020,'2026-02-11',560,0,0,0,1,0,0,0,0,0,0,0,0),(118019,'2026-02-11',539,0,0,0,1,0,0,0,0,0,0,0,0),(118018,'2026-02-11',537,0,0,0,1,0,0,0,0,0,0,0,0),(118017,'2026-02-11',536,0,0,0,1,0,0,0,0,0,0,0,0),(118016,'2026-02-11',456,0,0,0,1,0,0,0,0,0,0,0,0),(118015,'2026-02-11',452,0,0,0,1,0,0,0,0,0,0,0,0),(118014,'2026-02-11',451,0,0,0,1,0,0,0,0,0,0,0,0),(118013,'2026-02-11',448,0,0,0,1,0,0,0,0,0,0,0,0),(118012,'2026-02-11',446,0,0,0,1,0,0,0,0,0,0,0,0),(118011,'2026-02-11',445,0,0,0,1,0,0,0,0,0,0,0,0),(118010,'2026-02-11',443,0,0,0,1,0,0,0,0,0,0,0,0),(118009,'2026-02-11',441,0,0,0,1,0,0,0,0,0,0,0,0),(118008,'2026-02-11',440,0,0,0,1,0,0,0,0,0,0,0,0),(118007,'2026-02-11',439,0,0,0,1,0,0,0,0,0,0,0,0),(118006,'2026-02-11',438,0,0,0,1,0,0,0,0,0,0,0,0),(118005,'2026-02-11',435,0,0,0,1,0,0,0,0,0,0,0,0),(118004,'2026-02-11',434,0,0,0,1,0,0,0,0,0,0,0,0),(118003,'2026-02-11',433,0,0,0,1,0,0,0,0,0,0,0,0),(118002,'2026-02-11',432,0,0,0,1,0,0,0,0,0,0,0,0),(118001,'2026-02-11',431,0,0,0,1,0,0,0,0,0,0,0,0),(118000,'2026-02-11',430,0,0,0,1,0,0,0,0,0,0,0,0),(117999,'2026-02-11',428,0,0,0,1,0,0,0,0,0,0,0,0),(116175,'2025-12-01',388,0,0,0,1,0,0,0,0,0,0,0,0),(116174,'2025-12-01',387,0,0,0,1,0,0,0,0,0,0,0,0),(116173,'2025-12-01',385,0,0,0,1,0,0,0,0,0,0,0,0),(116172,'2025-12-01',384,0,0,0,1,0,0,0,0,0,0,0,0),(116171,'2025-12-01',382,0,0,0,1,0,0,0,0,0,0,0,0),(116170,'2025-12-01',381,0,0,0,1,0,0,0,0,0,0,0,0),(116169,'2025-12-01',378,0,0,0,1,0,0,0,0,0,0,0,0),(116168,'2025-12-01',377,0,0,0,1,0,0,0,0,0,0,0,0),(116167,'2025-12-01',376,0,0,0,1,0,0,0,0,0,0,0,0),(116166,'2025-12-01',375,0,0,0,1,0,0,0,0,0,0,0,0),(116165,'2025-12-01',372,0,0,0,1,0,0,0,0,0,0,0,0),(116164,'2025-12-01',371,0,0,0,1,0,0,0,0,0,0,0,0),(116163,'2025-12-01',367,0,0,0,1,0,0,0,0,0,0,0,0),(116162,'2025-12-01',365,0,0,0,1,0,0,0,0,0,0,0,0),(116161,'2025-12-01',364,0,0,0,1,0,0,0,0,0,0,0,0),(116160,'2025-12-01',363,0,0,0,1,0,0,0,0,0,0,0,0),(116159,'2025-12-01',361,0,0,0,1,0,0,0,0,0,0,0,0),(116158,'2025-12-01',360,0,0,0,1,0,0,0,0,0,0,0,0),(116157,'2025-12-01',359,0,0,0,1,0,0,0,0,0,0,0,0),(116156,'2025-12-01',357,0,0,0,1,0,0,0,0,0,0,0,0),(116155,'2025-12-01',353,0,0,0,1,0,0,0,0,0,0,0,0),(116154,'2025-12-01',352,0,0,0,1,0,0,0,0,0,0,0,0),(116153,'2025-12-01',351,0,0,0,1,0,0,0,0,0,0,0,0),(116152,'2025-12-01',348,0,0,0,1,0,0,0,0,0,0,0,0),(116151,'2025-12-01',347,0,0,0,1,0,0,0,0,0,0,0,0),(116150,'2025-12-01',346,0,0,0,1,0,0,0,0,0,0,0,0),(116149,'2025-12-01',345,0,0,0,1,0,0,0,0,0,0,0,0),(116148,'2025-12-01',344,0,0,0,1,0,0,0,0,0,0,0,0),(116147,'2025-12-01',341,0,0,0,1,0,0,0,0,0,0,0,0),(116146,'2025-12-01',340,0,0,0,1,0,0,0,0,0,0,0,0),(116145,'2025-12-01',339,0,0,0,1,0,0,0,0,0,0,0,0),(116144,'2025-12-01',338,0,0,0,1,0,0,0,0,0,0,0,0),(116143,'2025-12-01',337,0,0,0,1,0,0,0,0,0,0,0,0),(116142,'2025-12-01',336,0,0,0,1,0,0,0,0,0,0,0,0),(116141,'2025-12-01',335,0,0,0,1,0,0,0,0,0,0,0,0),(116140,'2025-12-01',334,0,0,0,1,0,0,0,0,0,0,0,0),(116139,'2025-12-01',333,0,0,0,1,0,0,0,0,0,0,0,0),(116138,'2025-12-01',332,0,0,0,1,0,0,0,0,0,0,0,0),(116137,'2025-12-01',331,0,0,0,1,0,0,0,0,0,0,0,0),(116136,'2025-12-01',330,0,0,0,1,0,0,0,0,0,0,0,0),(116135,'2025-12-01',329,0,0,0,1,0,0,0,0,0,0,0,0),(116134,'2025-12-01',328,0,0,0,1,0,0,0,0,0,0,0,0),(116133,'2025-12-01',327,1,0,0,1,0,0,0,0,0,0,0,0),(116132,'2025-12-01',326,0,0,0,1,0,0,0,0,0,0,0,0),(116131,'2025-12-01',324,0,0,0,1,0,0,0,0,0,0,0,0),(116130,'2025-12-01',323,0,0,0,1,0,0,0,0,0,0,0,0),(116129,'2025-12-01',321,0,0,0,1,0,0,0,0,0,0,0,0),(116128,'2025-12-01',320,0,0,0,1,0,0,0,0,0,0,0,0),(116127,'2025-12-01',319,0,0,0,1,0,0,0,0,0,0,0,0),(116126,'2025-12-01',317,0,0,0,1,0,0,0,0,0,0,0,0),(116125,'2025-12-01',316,0,0,0,1,0,0,0,0,0,0,0,0),(116124,'2025-12-01',314,0,0,0,1,0,0,0,0,0,0,0,0),(116123,'2025-12-01',313,0,0,0,1,0,0,0,0,0,0,0,0),(116122,'2025-12-01',310,0,0,0,1,0,0,0,0,0,0,0,0),(116121,'2025-12-01',309,0,0,0,1,0,0,0,0,0,0,0,0),(116120,'2025-12-01',308,0,0,0,1,0,0,0,0,0,0,0,0),(116119,'2025-12-01',307,0,0,0,1,0,0,0,0,0,0,0,0),(116118,'2025-12-01',304,0,0,0,1,0,0,0,0,0,0,0,0),(116117,'2025-12-01',303,0,0,0,1,0,0,0,0,0,0,0,0),(116116,'2025-12-01',302,0,0,0,1,0,0,0,0,0,0,0,0),(116115,'2025-12-01',301,0,0,0,1,1,0,0,0,0,0,0,0),(116114,'2025-12-01',300,0,0,0,1,0,0,0,0,0,0,0,0),(116113,'2025-12-01',299,0,0,0,1,0,0,0,0,0,0,0,0),(116112,'2025-12-01',298,0,0,0,1,0,0,0,0,0,0,0,0),(116111,'2025-12-01',296,0,0,0,1,0,0,0,0,0,0,0,0),(116110,'2025-12-01',295,0,0,0,1,0,0,0,0,0,0,0,0),(116109,'2025-12-01',294,0,0,0,1,0,0,0,0,0,0,0,0),(116108,'2025-12-01',292,0,0,0,1,0,0,0,0,0,0,0,0),(116107,'2025-12-01',291,0,0,0,1,0,0,0,0,0,0,0,0),(116106,'2025-12-01',290,0,0,0,1,0,0,0,0,0,0,0,0),(116105,'2025-12-01',289,0,0,0,1,0,0,0,0,0,0,0,0),(116104,'2025-12-01',288,0,0,0,1,0,0,0,0,0,0,0,0),(116103,'2025-12-01',285,0,0,0,1,0,0,0,0,0,0,0,0),(116102,'2025-12-01',281,0,0,0,1,0,0,0,0,0,0,0,0),(116101,'2025-12-01',280,0,0,0,1,0,0,0,0,0,0,0,0),(116100,'2025-12-01',278,0,0,0,1,0,0,0,0,0,0,0,0),(116099,'2025-12-01',275,0,0,0,1,0,0,0,0,0,0,0,0),(116098,'2025-12-01',274,0,0,0,1,0,0,0,0,0,0,0,0),(116097,'2025-12-01',273,0,0,0,1,0,0,0,0,0,0,0,0),(116096,'2025-12-01',271,0,0,0,1,0,0,0,0,0,0,0,0),(116095,'2025-12-01',269,0,0,0,1,0,0,0,0,0,0,0,0),(116094,'2025-12-01',268,0,0,0,1,0,0,0,0,0,0,0,0),(116093,'2025-12-01',266,0,0,0,1,0,0,0,0,0,0,0,0),(116092,'2025-12-01',265,0,0,0,1,0,0,0,0,0,0,0,0),(116091,'2025-12-01',264,0,0,0,1,0,0,0,0,0,0,0,0),(116090,'2025-12-01',263,0,0,0,1,0,0,0,0,0,0,0,0),(116089,'2025-12-01',262,0,0,0,1,0,0,0,0,0,0,0,0),(116088,'2025-12-01',261,0,0,0,1,0,0,0,0,0,0,0,0),(116087,'2025-12-01',260,0,0,0,1,0,0,0,0,0,0,0,0),(116086,'2025-12-01',258,0,0,0,1,0,0,0,0,0,0,0,0),(116085,'2025-12-01',257,0,0,0,1,0,0,0,0,0,0,0,0),(116084,'2025-12-01',256,0,0,0,1,0,0,0,0,0,0,0,0),(116083,'2025-12-01',255,0,0,0,1,0,0,0,0,0,0,0,0),(116082,'2025-12-01',254,0,0,0,1,0,0,0,0,0,0,0,0),(116081,'2025-12-01',253,0,0,0,1,0,0,0,0,0,0,0,0),(116080,'2025-12-01',251,0,0,0,1,0,0,0,0,0,0,0,0),(116079,'2025-12-01',250,0,0,0,1,0,0,0,0,0,0,0,0),(116078,'2025-12-01',249,0,0,0,1,0,0,0,0,0,0,0,0),(116077,'2025-12-01',247,0,0,0,1,0,0,0,0,0,0,0,0),(116076,'2025-12-01',246,0,0,0,1,0,0,0,0,0,0,0,0),(116075,'2025-12-01',245,0,0,0,1,0,0,0,0,0,0,0,0),(116074,'2025-12-01',243,0,0,0,1,0,0,0,0,0,0,0,0),(116073,'2025-12-01',242,0,0,0,1,0,0,0,0,0,0,0,0),(116072,'2025-12-01',241,0,0,0,1,0,0,0,0,0,0,0,0),(116071,'2025-12-01',239,0,0,0,1,0,0,0,0,0,0,0,0),(116070,'2025-12-01',238,0,0,0,1,0,0,0,0,0,0,0,0),(116069,'2025-12-01',236,0,0,0,1,0,0,0,0,0,0,0,0),(116068,'2025-12-01',234,0,0,0,1,0,0,0,0,0,0,0,0),(116067,'2025-12-01',233,0,0,0,1,0,0,0,0,0,0,0,0),(116066,'2025-12-01',232,0,0,0,1,0,0,0,0,0,0,0,0),(116065,'2025-12-01',231,0,0,0,1,0,0,0,0,0,0,0,0),(116064,'2025-12-01',228,0,0,0,1,0,0,0,0,0,0,0,0),(116063,'2025-12-01',227,0,0,0,1,0,0,0,0,0,0,0,0),(116062,'2025-12-01',226,0,0,0,1,0,0,0,0,0,0,0,0),(116061,'2025-12-01',225,0,0,0,1,0,0,0,0,0,0,0,0),(116060,'2025-12-01',224,0,0,0,1,0,0,0,0,0,0,0,0),(116059,'2025-12-01',222,0,0,0,1,0,0,0,0,0,0,0,0),(116058,'2025-12-01',221,0,0,0,1,0,0,0,0,0,0,0,0),(116057,'2025-12-01',220,0,0,0,1,0,0,0,0,0,0,0,0),(116056,'2025-12-01',218,0,0,0,0,1,0,1,0,0,0,0,0),(116055,'2025-12-01',217,0,0,0,1,0,0,0,0,0,0,0,0),(116054,'2025-12-01',214,0,0,0,1,0,0,0,0,0,0,0,0),(116053,'2025-12-01',213,0,0,0,1,0,0,0,0,0,0,0,0),(116052,'2025-12-01',212,0,0,0,1,0,0,0,0,0,0,0,0),(116051,'2025-12-01',211,0,0,0,1,0,0,0,0,0,0,0,0),(116050,'2025-12-01',210,0,0,0,1,0,0,0,0,0,0,0,0),(116049,'2025-12-01',209,0,0,0,1,0,0,0,0,0,0,0,0),(116048,'2025-12-01',208,0,0,0,1,0,0,0,0,0,0,0,0),(116047,'2025-12-01',207,0,0,0,1,0,0,0,0,0,0,0,0),(116046,'2025-12-01',206,0,0,0,1,0,0,0,0,0,0,0,0),(116045,'2025-12-01',205,0,0,0,1,0,0,0,0,0,0,0,0),(116044,'2025-12-01',204,0,0,0,1,0,0,0,0,0,0,0,0),(116043,'2025-12-01',203,0,0,0,1,0,0,0,0,0,0,0,0),(116042,'2025-12-01',201,0,0,0,1,0,0,0,0,0,0,0,0),(116041,'2025-12-01',200,0,0,0,1,0,0,0,0,0,0,0,0),(116040,'2025-12-01',197,0,0,0,1,0,0,0,0,0,0,0,0),(116039,'2025-12-01',196,0,0,0,1,0,0,0,0,0,0,0,0),(116038,'2025-12-01',195,0,0,0,1,0,0,0,0,0,0,0,0),(116037,'2025-12-01',194,0,0,0,1,0,0,0,0,0,0,0,0),(116036,'2025-12-01',193,0,0,0,1,0,0,0,0,0,0,0,0),(116035,'2025-12-01',192,0,0,0,1,0,0,0,0,0,0,0,0),(116034,'2025-12-01',191,0,0,0,1,0,0,0,0,0,0,0,0),(116033,'2025-12-01',190,0,0,0,1,0,0,0,0,0,0,0,0),(116032,'2025-12-01',189,0,0,0,1,0,0,0,0,0,0,0,0),(116031,'2025-12-01',188,0,0,0,1,0,0,1,0,0,0,0,0),(116030,'2025-12-01',187,0,0,0,1,0,0,0,0,0,0,0,0),(116029,'2025-12-01',186,0,0,0,1,0,0,0,0,0,0,0,0),(116028,'2025-12-01',185,0,0,0,1,0,0,0,0,0,0,0,0),(116027,'2025-12-01',184,0,0,0,1,0,0,0,0,0,0,0,0),(116026,'2025-12-01',183,0,0,0,1,0,0,0,0,0,0,0,0),(116025,'2025-12-01',182,0,0,0,1,0,0,0,0,0,0,0,0),(116024,'2025-12-01',181,0,0,0,1,0,0,0,0,0,0,0,0),(116023,'2025-12-01',180,0,0,0,1,0,0,0,0,0,0,0,0),(116022,'2025-12-01',179,0,0,0,1,0,0,0,0,0,0,0,0),(116021,'2025-12-01',176,0,0,0,1,1,0,0,0,0,0,0,0),(116020,'2025-12-01',175,0,0,0,1,0,0,0,0,0,0,0,0),(116019,'2025-12-01',174,0,0,0,1,0,0,0,0,0,0,0,0),(116018,'2025-12-01',173,0,0,0,1,0,0,0,0,0,0,0,0),(116017,'2025-12-01',172,0,0,0,1,0,0,0,0,0,0,0,0),(116016,'2025-12-01',170,0,0,0,1,0,0,0,0,0,0,0,0),(116015,'2025-12-01',168,0,0,0,1,0,0,0,0,0,0,0,0),(116014,'2025-12-01',167,0,0,0,1,0,0,0,0,0,0,0,0),(116013,'2025-12-01',166,0,0,0,1,0,0,0,0,0,0,0,0),(116012,'2025-12-01',164,0,0,0,1,0,0,0,0,0,0,0,0),(116011,'2025-12-01',163,0,0,0,1,0,0,0,0,0,0,0,0),(116010,'2025-12-01',161,0,0,0,1,0,0,0,0,0,0,0,0),(116009,'2025-12-01',160,0,0,0,1,0,0,0,0,0,0,0,0),(116008,'2025-12-01',159,0,0,0,1,0,0,0,0,0,0,0,0),(116007,'2025-12-01',158,0,0,0,1,0,0,0,0,0,0,0,0),(116006,'2025-12-01',157,0,0,0,1,0,0,0,0,0,0,0,0),(116005,'2025-12-01',154,0,0,0,1,0,0,0,0,0,0,0,0),(116004,'2025-12-01',152,0,0,0,1,0,0,0,0,0,0,0,0),(116003,'2025-12-01',151,0,0,0,1,0,0,0,0,0,0,0,0),(116002,'2025-12-01',148,0,0,0,1,0,0,0,0,0,0,0,0),(116001,'2025-12-01',147,0,0,0,1,0,0,0,0,0,0,0,0),(116000,'2025-12-01',146,0,0,0,1,0,0,0,0,0,0,0,0),(115999,'2025-12-01',145,0,0,0,1,0,0,0,0,0,0,0,0),(115998,'2025-12-01',144,0,0,0,1,0,0,0,0,0,0,0,0),(115997,'2025-12-01',143,0,0,0,1,0,0,0,0,0,0,0,0),(115996,'2025-12-01',141,0,0,0,1,0,0,0,0,0,0,0,0),(115995,'2025-12-01',140,0,0,0,1,0,0,0,0,0,0,0,0),(115994,'2025-12-01',136,0,0,0,1,0,0,0,0,0,0,0,0),(115993,'2025-12-01',132,0,0,0,1,1,0,0,0,0,0,0,0),(115992,'2025-12-01',128,0,0,0,1,0,0,0,0,0,0,0,0),(115991,'2025-12-01',127,0,0,0,1,0,0,0,0,0,0,0,0),(115990,'2025-12-01',126,0,0,0,1,0,0,0,0,0,0,0,0),(115989,'2025-12-01',124,0,0,0,1,0,0,0,0,0,0,0,0),(115988,'2025-12-01',123,0,0,0,1,0,0,0,0,0,0,0,0),(115987,'2025-12-01',121,0,0,0,1,0,0,0,0,0,0,0,0),(115986,'2025-12-01',115,0,0,0,1,0,0,0,0,0,0,0,0),(115985,'2025-12-01',114,0,0,0,1,0,0,0,0,0,0,0,0),(115984,'2025-12-01',113,0,0,0,1,0,0,0,0,0,0,0,0),(115983,'2025-12-01',112,0,0,0,1,0,0,0,0,0,0,0,0),(115982,'2025-12-01',110,0,0,0,1,0,0,0,0,0,0,0,0),(115981,'2025-12-01',109,0,0,0,0,0,0,1,0,0,0,0,0),(115980,'2025-12-01',103,0,0,0,1,0,0,0,0,0,0,0,0),(115979,'2025-12-01',98,0,0,0,1,0,0,0,0,0,0,0,0),(115978,'2025-12-01',97,1,0,0,1,0,0,0,0,0,0,0,0),(115977,'2025-12-01',96,0,0,0,1,0,0,0,0,0,0,0,0),(115976,'2025-12-01',94,0,0,0,1,0,0,0,0,0,0,0,0),(115975,'2025-12-01',91,0,0,1,0,0,0,0,0,0,0,0,0),(115974,'2025-12-01',90,0,0,0,1,0,0,0,0,0,0,0,0),(115973,'2025-12-01',89,0,0,0,0,1,0,0,0,0,0,0,0),(115972,'2025-12-01',87,0,0,0,1,0,0,0,0,0,0,0,0),(115971,'2025-12-01',79,0,0,0,1,0,0,0,0,0,0,0,0),(115970,'2025-12-01',78,0,0,0,0,0,1,0,0,0,0,0,0),(115969,'2025-12-01',75,0,0,0,0,0,0,1,0,0,0,0,0),(115968,'2025-12-01',70,0,0,0,1,0,0,0,0,0,0,0,0),(115967,'2025-12-01',69,0,0,0,1,0,0,0,0,0,0,0,0),(115966,'2025-12-01',68,0,0,0,1,0,0,0,0,0,0,0,0),(115965,'2025-12-01',67,0,0,0,1,0,0,0,0,0,0,0,0),(115964,'2025-12-01',66,0,0,0,1,0,0,0,0,0,0,0,0),(115963,'2025-12-01',65,0,0,0,1,0,0,0,0,0,0,0,0),(115962,'2025-12-01',64,0,0,0,1,0,0,0,0,0,0,0,0),(115961,'2025-12-01',63,0,0,0,1,0,0,0,0,0,0,0,0),(115960,'2025-12-01',61,0,0,0,1,0,0,0,0,0,0,0,0),(115959,'2025-12-01',58,0,0,0,1,0,0,0,0,0,0,0,0),(115958,'2025-12-01',54,0,0,0,1,0,0,0,0,0,0,0,0),(115957,'2025-12-01',52,0,0,0,1,0,0,0,0,0,0,0,0),(115956,'2025-12-01',51,0,0,0,0,0,0,1,0,0,0,0,0),(115955,'2025-12-01',49,0,0,0,0,0,1,1,0,0,0,0,0),(115954,'2025-12-01',42,0,0,0,1,0,0,0,0,0,0,0,0),(115953,'2025-12-01',37,0,0,0,1,0,0,0,0,0,0,0,0),(115952,'2025-12-01',36,0,0,0,0,0,1,0,0,0,0,0,0),(115951,'2025-12-01',32,0,0,0,1,0,0,0,0,0,0,0,0),(115950,'2025-12-01',27,0,0,0,0,0,1,0,0,0,0,0,0),(115943,'2025-12-01',9,0,0,0,0,0,0,1,0,0,0,0,0),(115942,'2025-12-01',5,0,0,0,0,0,0,0,0,0,0,0,1),(115941,'2025-12-01',2,0,0,0,0,0,1,0,0,0,0,0,0),(116232,'2025-12-04',428,0,0,0,0,1,0,0,0,0,0,0,0),(116231,'2025-12-04',298,0,0,0,0,0,1,0,0,0,0,0,0),(116230,'2025-12-04',263,0,0,0,0,1,0,0,0,0,0,0,0),(116229,'2025-12-04',141,0,0,0,0,1,0,0,0,0,0,0,0),(116228,'2025-12-04',123,0,0,0,0,0,0,3,0,0,0,0,0),(116227,'2025-12-04',109,0,0,0,0,0,1,0,0,0,0,0,0),(116226,'2025-12-04',81,0,0,0,0,1,0,1,0,0,0,0,0),(116225,'2025-12-04',78,0,0,0,0,1,0,1,0,0,0,0,0),(116224,'2025-12-04',70,1,0,0,0,0,0,0,0,0,0,0,0),(116223,'2025-12-04',53,0,0,0,0,0,1,0,0,0,0,0,0),(116222,'2025-12-04',47,0,0,0,0,0,1,0,0,0,0,0,0),(116221,'2025-12-04',5,0,0,0,0,0,1,0,0,0,0,0,0),(117998,'2026-02-11',426,0,0,0,1,0,0,0,0,0,0,0,0),(117997,'2026-02-11',423,0,0,0,1,0,0,0,0,0,0,0,0),(117996,'2026-02-11',422,0,0,0,1,0,0,0,0,0,0,0,0),(117995,'2026-02-11',420,0,0,0,1,0,0,0,0,0,0,0,0),(118356,'2026-02-26',90,0,0,0,1,0,1,0,0,0,0,0,0),(118355,'2026-02-26',89,0,0,0,0,1,0,0,0,0,0,0,0),(118354,'2026-02-26',87,0,0,0,1,0,0,0,0,0,0,0,0),(118353,'2026-02-26',79,0,0,0,1,0,0,0,0,0,0,0,0),(118352,'2026-02-26',70,0,0,0,1,0,0,0,0,0,0,0,0),(118611,'2026-02-27',22,0,0,0,0,0,0,1,0,0,0,0,0),(118610,'2026-02-27',17,0,0,0,0,0,0,2,0,0,0,0,0),(118609,'2026-02-27',9,0,0,0,0,0,0,1,0,0,0,0,0),(118608,'2026-02-26',670,0,0,0,1,0,0,0,0,0,0,0,0),(118607,'2026-02-26',628,0,0,0,1,0,0,0,0,0,0,0,0),(118606,'2026-02-26',621,0,0,0,1,0,0,0,0,0,0,0,0),(118605,'2026-02-26',584,0,0,0,1,0,0,0,0,0,0,0,0),(118604,'2026-02-26',560,0,0,0,1,0,0,0,0,0,0,0,0),(118603,'2026-02-26',539,0,0,0,1,0,0,0,0,0,0,0,0),(118602,'2026-02-26',537,0,0,0,1,0,0,0,0,0,0,0,0),(118601,'2026-02-26',536,0,0,0,1,0,0,0,0,0,0,0,0),(118600,'2026-02-26',456,0,0,0,1,0,0,0,0,0,0,0,0),(118599,'2026-02-26',452,0,0,0,1,0,0,0,0,0,0,0,0),(118598,'2026-02-26',451,0,0,0,1,0,0,0,0,0,0,0,0),(118597,'2026-02-26',448,0,0,0,1,0,0,0,0,0,0,0,0),(118596,'2026-02-26',446,0,0,0,1,0,0,0,0,0,0,0,0),(118595,'2026-02-26',445,0,0,0,1,0,0,0,0,0,0,0,0),(118594,'2026-02-26',443,0,0,0,1,0,0,0,0,0,0,0,0),(118593,'2026-02-26',441,0,0,0,1,0,0,0,0,0,0,0,0),(118592,'2026-02-26',440,0,0,0,1,0,0,0,0,0,0,0,0),(118591,'2026-02-26',439,0,0,0,1,0,0,0,0,0,0,0,0),(118590,'2026-02-26',438,0,0,0,1,0,0,0,0,0,0,0,0),(118589,'2026-02-26',435,0,0,0,1,0,0,0,0,0,0,0,0),(118588,'2026-02-26',434,0,0,0,1,0,0,0,0,0,0,0,0),(118587,'2026-02-26',433,0,0,0,1,0,0,0,0,0,0,0,0),(118586,'2026-02-26',432,0,0,0,1,0,0,0,0,0,0,0,0),(118585,'2026-02-26',431,0,0,0,1,0,0,0,0,0,0,0,0),(118584,'2026-02-26',430,0,0,0,1,0,0,0,0,0,0,0,0),(118583,'2026-02-26',428,0,0,0,1,0,0,0,0,0,0,0,0),(118582,'2026-02-26',426,0,0,0,1,0,0,0,0,0,0,0,0),(118581,'2026-02-26',423,0,0,0,1,0,0,0,0,0,0,0,0),(118580,'2026-02-26',422,0,0,0,1,0,0,0,0,0,0,0,0),(118579,'2026-02-26',420,0,0,0,1,0,0,0,0,0,0,0,0),(118578,'2026-02-26',417,0,0,0,1,0,0,0,0,0,0,0,0),(118577,'2026-02-26',414,0,0,0,1,0,0,0,0,0,0,0,0),(118576,'2026-02-26',413,0,0,0,1,0,0,0,0,0,0,0,0),(118575,'2026-02-26',412,0,0,0,1,0,0,0,0,0,0,0,0),(118574,'2026-02-26',410,0,0,0,1,0,0,0,0,0,0,0,0),(118573,'2026-02-26',408,0,0,0,1,0,0,0,0,0,0,0,0),(118572,'2026-02-26',407,0,0,0,1,0,0,0,0,0,0,0,0),(118571,'2026-02-26',405,0,0,0,1,0,0,0,0,0,0,0,0),(118570,'2026-02-26',403,0,0,0,1,0,0,0,0,0,0,0,0),(118569,'2026-02-26',401,0,0,0,1,1,1,0,0,0,0,0,0),(118568,'2026-02-26',400,0,0,0,1,0,0,0,0,0,0,0,0),(118567,'2026-02-26',396,0,0,0,1,0,0,0,0,0,0,0,0),(118566,'2026-02-26',395,0,0,0,1,0,0,0,0,0,0,0,0),(118565,'2026-02-26',393,0,0,0,1,0,0,0,0,0,0,0,0),(118564,'2026-02-26',392,0,0,0,1,0,0,0,0,0,0,0,0),(118563,'2026-02-26',391,0,0,0,1,0,0,0,0,0,0,0,0),(118562,'2026-02-26',390,0,0,0,1,0,0,0,0,0,0,0,0),(118561,'2026-02-26',388,0,0,0,1,0,0,0,0,0,0,0,0),(118560,'2026-02-26',387,0,0,0,1,0,0,0,0,0,0,0,0),(118559,'2026-02-26',385,0,0,0,1,0,0,0,0,0,0,0,0),(118558,'2026-02-26',384,0,0,0,1,0,0,0,0,0,0,0,0),(118557,'2026-02-26',382,0,0,0,1,0,0,0,0,0,0,0,0),(118556,'2026-02-26',381,0,0,0,1,0,0,0,0,0,0,0,0),(118555,'2026-02-26',378,0,0,0,1,0,0,0,0,0,0,0,0),(118554,'2026-02-26',377,0,0,0,1,0,0,0,0,0,0,0,0),(118553,'2026-02-26',376,0,0,0,1,0,0,0,0,0,0,0,0),(118552,'2026-02-26',375,0,0,0,1,0,0,0,0,0,0,0,0),(118551,'2026-02-26',372,0,0,0,1,0,0,0,0,0,0,0,0),(118550,'2026-02-26',371,0,0,0,1,0,0,0,0,0,0,0,0),(118549,'2026-02-26',367,0,0,0,1,0,0,0,0,0,0,0,0),(118548,'2026-02-26',365,0,0,0,1,0,0,0,0,0,0,0,0),(118547,'2026-02-26',364,0,0,0,1,0,0,0,0,0,0,0,0),(118546,'2026-02-26',363,0,0,0,1,0,0,0,0,0,0,0,0),(118545,'2026-02-26',361,0,0,0,1,0,0,0,0,0,0,0,0),(118544,'2026-02-26',360,0,0,0,1,0,0,0,0,0,0,0,0),(118543,'2026-02-26',359,0,0,0,1,0,0,0,0,0,0,0,0),(118542,'2026-02-26',357,0,0,0,1,0,0,0,0,0,0,0,0),(118541,'2026-02-26',353,0,0,0,1,0,0,0,0,0,0,0,0),(116879,'2025-12-23',430,0,0,0,1,0,0,0,0,0,0,0,0),(116878,'2025-12-23',428,0,0,0,1,0,0,0,0,0,0,0,0),(116877,'2025-12-23',426,0,0,0,1,0,0,0,0,0,0,0,0),(116876,'2025-12-23',423,0,0,0,1,0,0,0,0,0,0,0,0),(116875,'2025-12-23',422,0,0,0,1,0,0,0,0,0,0,0,0),(116874,'2025-12-23',420,0,0,0,1,0,0,0,0,0,0,0,0),(116873,'2025-12-23',417,0,0,0,1,0,0,0,0,0,0,0,0),(116872,'2025-12-23',414,0,0,0,1,0,0,0,0,0,0,0,0),(116871,'2025-12-23',412,0,0,0,1,0,0,0,0,0,0,0,0),(116870,'2025-12-23',410,0,0,0,1,0,0,0,0,0,0,0,0),(116869,'2025-12-23',408,0,0,0,1,0,0,0,0,0,0,0,0),(116868,'2025-12-23',407,0,0,0,1,0,0,0,0,0,0,0,0),(116867,'2025-12-23',405,0,0,0,1,0,0,0,0,0,0,0,0),(116866,'2025-12-23',403,0,0,0,1,0,0,0,0,0,0,0,0),(116865,'2025-12-23',401,0,0,0,1,0,0,0,0,0,0,0,0),(116864,'2025-12-23',400,0,0,0,1,0,0,0,0,0,0,0,0),(116863,'2025-12-23',396,0,0,0,1,0,0,0,0,0,0,0,0),(116862,'2025-12-23',395,0,0,0,1,0,0,0,0,0,0,0,0),(116861,'2025-12-23',393,0,0,0,1,0,0,0,0,0,0,0,0),(116860,'2025-12-23',392,0,0,0,1,0,0,0,0,0,0,0,0),(116859,'2025-12-23',391,0,0,0,1,0,0,0,0,0,0,0,0),(116858,'2025-12-23',390,0,0,0,1,0,0,0,0,0,0,0,0),(116857,'2025-12-23',388,0,0,0,1,0,0,0,0,0,0,0,0),(116856,'2025-12-23',387,0,0,0,1,0,0,0,0,0,0,0,0),(116855,'2025-12-23',385,0,0,0,1,0,0,0,0,0,0,0,0),(116854,'2025-12-23',384,0,0,0,1,0,0,0,0,0,0,0,0),(116853,'2025-12-23',382,0,0,0,1,0,0,0,0,0,0,0,0),(116852,'2025-12-23',381,0,0,0,1,0,0,0,0,0,0,0,0),(116851,'2025-12-23',378,0,0,0,1,0,0,0,0,0,0,0,0),(116850,'2025-12-23',377,0,0,0,1,0,0,0,0,0,0,0,0),(116849,'2025-12-23',376,0,0,0,1,0,0,0,0,0,0,0,0),(116848,'2025-12-23',375,0,0,0,1,0,0,0,0,0,0,0,0),(116847,'2025-12-23',372,0,0,0,1,0,0,0,0,0,0,0,0),(116846,'2025-12-23',371,0,0,0,1,0,0,0,0,0,0,0,0),(116845,'2025-12-23',367,0,0,0,1,0,0,0,0,0,0,0,0),(116844,'2025-12-23',365,0,0,0,1,0,0,0,0,0,0,0,0),(116843,'2025-12-23',364,0,0,0,1,0,0,0,0,0,0,0,0),(116842,'2025-12-23',363,0,0,0,1,0,0,0,0,0,0,0,0),(116841,'2025-12-23',361,0,0,0,1,0,0,0,0,0,0,0,0),(116840,'2025-12-23',360,0,0,0,1,0,0,0,0,0,0,0,0),(116839,'2025-12-23',359,0,0,0,1,0,0,0,0,0,0,0,0),(116838,'2025-12-23',357,0,0,0,1,0,0,0,0,0,0,0,0),(116837,'2025-12-23',353,0,0,0,1,0,0,0,0,0,0,0,0),(116836,'2025-12-23',352,0,0,0,1,0,0,0,0,0,0,0,0),(116835,'2025-12-23',351,0,0,0,1,0,0,0,0,0,0,0,0),(116834,'2025-12-23',348,0,0,0,1,0,0,0,0,0,0,0,0),(116833,'2025-12-23',347,0,0,0,1,0,0,0,0,0,0,0,0),(116832,'2025-12-23',346,0,0,0,1,0,0,0,0,0,0,0,0),(116831,'2025-12-23',345,0,0,0,1,0,0,0,0,0,0,0,0),(116830,'2025-12-23',344,0,0,0,1,0,0,0,0,0,0,0,0),(116829,'2025-12-23',341,0,0,0,1,0,0,0,0,0,0,0,0),(116828,'2025-12-23',340,0,0,0,1,0,0,0,0,0,0,0,0),(116827,'2025-12-23',339,0,0,0,1,0,0,0,0,0,0,0,0),(116826,'2025-12-23',338,0,0,0,1,0,0,0,0,0,0,0,0),(116825,'2025-12-23',337,0,0,0,1,0,0,0,0,0,0,0,0),(116824,'2025-12-23',336,0,0,0,1,0,0,0,0,0,0,0,0),(116823,'2025-12-23',335,0,0,0,1,0,0,0,0,0,0,0,0),(116822,'2025-12-23',333,0,0,0,1,0,0,0,0,0,0,0,0),(116821,'2025-12-23',332,0,0,0,1,0,0,0,0,0,0,0,0),(116820,'2025-12-23',331,0,0,0,1,0,0,0,0,0,0,0,0),(116819,'2025-12-23',330,0,0,0,1,0,0,0,0,0,0,0,0),(116818,'2025-12-23',329,0,0,0,1,0,0,0,0,0,0,0,0),(116817,'2025-12-23',328,0,0,0,1,0,0,0,0,0,0,0,0),(116816,'2025-12-23',327,0,0,0,1,0,0,0,0,0,0,0,0),(116815,'2025-12-23',326,0,0,0,1,0,0,0,0,0,0,0,0),(116814,'2025-12-23',324,0,0,0,1,0,0,0,0,0,0,0,0),(116813,'2025-12-23',323,0,0,0,1,0,0,0,0,0,0,0,0),(116812,'2025-12-23',321,0,0,0,1,0,0,0,0,0,0,0,0),(116811,'2025-12-23',320,0,0,0,1,0,0,0,0,0,0,0,0),(116810,'2025-12-23',319,0,0,0,1,0,0,0,0,0,0,0,0),(116809,'2025-12-23',317,0,0,0,1,0,0,0,0,0,0,0,0),(116808,'2025-12-23',316,0,0,0,1,0,0,0,0,0,0,0,0),(116807,'2025-12-23',314,0,0,0,1,0,0,0,0,0,0,0,0),(116806,'2025-12-23',313,0,0,0,1,0,0,0,0,0,0,0,0),(116805,'2025-12-23',311,0,0,0,1,0,0,0,0,0,0,0,0),(116804,'2025-12-23',310,0,0,0,1,0,0,0,0,0,0,0,0),(116803,'2025-12-23',309,0,0,0,1,0,0,0,0,0,0,0,0),(116802,'2025-12-23',308,0,0,0,1,0,0,0,0,0,0,0,0),(116801,'2025-12-23',307,0,0,0,1,0,0,0,0,0,0,0,0),(116800,'2025-12-23',304,0,0,0,1,0,0,0,0,0,0,0,0),(116799,'2025-12-23',303,0,0,0,1,0,0,0,0,0,0,0,0),(116798,'2025-12-23',302,0,0,0,1,0,0,0,0,0,0,0,0),(116797,'2025-12-23',301,0,0,0,1,0,0,0,0,0,0,0,0),(116233,'2025-12-09',89,0,0,0,0,0,0,5,0,0,0,0,0),(116532,'2025-12-18',456,0,0,0,1,0,0,0,0,0,0,0,0),(116531,'2025-12-18',452,0,0,0,1,0,0,0,0,0,0,0,0),(116530,'2025-12-18',451,0,0,0,1,0,0,0,0,0,0,0,0),(116529,'2025-12-18',448,1,0,0,1,0,0,0,0,0,0,0,0),(116528,'2025-12-18',446,0,0,0,1,0,0,0,0,0,0,0,0),(116527,'2025-12-18',445,0,0,0,1,0,0,0,0,0,0,0,0),(116526,'2025-12-18',443,0,0,0,1,0,0,0,0,0,0,0,0),(116525,'2025-12-18',441,0,0,0,1,0,0,0,0,0,0,0,0),(116524,'2025-12-18',440,0,0,0,1,0,0,0,0,0,0,0,0),(116523,'2025-12-18',439,0,0,0,1,0,0,0,0,0,0,0,0),(116522,'2025-12-18',438,0,0,0,1,0,0,0,0,0,0,0,0),(116521,'2025-12-18',435,0,0,0,1,0,0,0,0,0,0,0,0),(116520,'2025-12-18',434,0,0,0,1,0,0,0,0,0,0,0,0),(116519,'2025-12-18',433,0,0,0,1,0,0,0,0,0,0,0,0),(116518,'2025-12-18',432,0,0,0,1,0,0,0,0,0,0,0,0),(116517,'2025-12-18',431,0,0,0,1,0,0,0,0,0,0,0,0),(116516,'2025-12-18',430,0,0,0,1,0,0,0,0,0,0,0,0),(116515,'2025-12-18',428,0,0,0,1,0,0,0,0,0,0,0,0),(116514,'2025-12-18',426,0,0,0,1,0,0,0,0,0,0,0,0),(116513,'2025-12-18',423,0,0,0,1,0,0,0,0,0,0,0,0),(116512,'2025-12-18',422,0,0,0,1,0,0,0,0,0,0,0,0),(116511,'2025-12-18',420,0,0,0,1,0,0,0,0,0,0,0,0),(116510,'2025-12-18',417,0,0,0,1,0,0,0,0,0,0,0,0),(116509,'2025-12-18',414,0,0,0,1,0,0,0,0,0,0,0,0),(116508,'2025-12-18',413,0,0,0,1,0,0,0,0,0,0,0,0),(116507,'2025-12-18',412,0,0,0,1,0,0,0,0,0,0,0,0),(116506,'2025-12-18',410,0,0,0,1,0,0,0,0,0,0,0,0),(116505,'2025-12-18',408,0,0,0,1,0,0,0,0,0,0,0,0),(116504,'2025-12-18',407,0,0,0,1,0,0,0,0,0,0,0,0),(116503,'2025-12-18',405,0,0,0,1,1,0,0,0,0,0,0,0),(116502,'2025-12-18',403,0,0,0,1,0,0,0,0,0,0,0,0),(116501,'2025-12-18',401,0,0,0,1,0,0,0,0,0,0,0,0),(116500,'2025-12-18',400,0,0,0,1,0,0,0,0,0,0,0,0),(116499,'2025-12-18',396,0,0,0,1,0,0,0,0,0,0,0,0),(116498,'2025-12-18',395,0,0,0,1,0,0,0,0,0,0,0,0),(116497,'2025-12-18',393,0,0,0,1,1,0,0,0,0,0,0,0),(116496,'2025-12-18',392,0,0,0,1,0,0,0,0,0,0,0,0),(116495,'2025-12-18',391,0,0,0,1,0,0,0,0,0,0,0,0),(116494,'2025-12-18',390,0,0,0,1,0,0,0,0,0,0,0,0),(116493,'2025-12-18',388,0,0,0,1,0,0,0,0,0,0,0,0),(116492,'2025-12-18',387,0,0,0,1,0,0,0,0,0,0,0,0),(116491,'2025-12-18',385,0,0,0,1,0,0,0,0,0,0,0,0),(116490,'2025-12-18',384,0,0,0,1,0,0,0,0,0,0,0,0),(116489,'2025-12-18',382,0,0,0,1,0,0,0,0,0,0,0,0),(116488,'2025-12-18',381,0,0,0,1,0,0,0,0,0,0,0,0),(116487,'2025-12-18',378,0,0,0,1,0,0,0,0,0,0,0,0),(116486,'2025-12-18',377,0,0,0,1,0,0,0,0,0,0,0,0),(116485,'2025-12-18',376,0,0,0,1,0,0,0,0,0,0,0,0),(116484,'2025-12-18',375,0,0,0,1,0,0,0,0,0,0,0,0),(116483,'2025-12-18',372,0,0,0,1,0,0,0,0,0,0,0,0),(116482,'2025-12-18',371,0,0,0,1,0,0,0,0,0,0,0,0),(116481,'2025-12-18',367,0,0,0,1,0,0,0,0,0,0,0,0),(116480,'2025-12-18',365,0,0,0,1,0,0,0,0,0,0,0,0),(116479,'2025-12-18',364,0,0,0,1,0,0,0,0,0,0,0,0),(116478,'2025-12-18',363,0,0,0,1,0,0,0,0,0,0,0,0),(116477,'2025-12-18',361,0,0,0,1,0,0,0,0,0,0,0,0),(116476,'2025-12-18',360,0,0,0,1,0,0,0,0,0,0,0,0),(116475,'2025-12-18',359,0,0,0,1,0,0,0,0,0,0,0,0),(116474,'2025-12-18',357,0,0,0,1,0,0,0,0,0,0,0,0),(116473,'2025-12-18',353,0,0,0,1,0,0,0,0,0,0,0,0),(116472,'2025-12-18',352,0,0,0,1,0,0,0,0,0,0,0,0),(116471,'2025-12-18',351,0,0,0,1,0,0,0,0,0,0,0,0),(116470,'2025-12-18',348,0,0,0,1,0,0,0,0,0,0,0,0),(116469,'2025-12-18',347,0,0,0,1,0,0,0,0,0,0,0,0),(116468,'2025-12-18',346,0,0,0,1,0,0,0,0,0,0,0,0),(116467,'2025-12-18',345,0,0,0,1,0,0,0,0,0,0,0,0),(116466,'2025-12-18',344,0,0,0,1,0,0,0,0,0,0,0,0),(116465,'2025-12-18',341,0,0,0,1,0,0,0,0,0,0,0,0),(116464,'2025-12-18',340,0,0,0,1,0,0,0,0,0,0,0,0),(116463,'2025-12-18',339,0,0,0,1,0,0,0,0,0,0,0,0),(116462,'2025-12-18',338,0,0,0,1,0,0,0,0,0,0,0,0),(116461,'2025-12-18',337,0,0,0,1,0,0,0,0,0,0,0,0),(116460,'2025-12-18',336,0,0,0,1,0,0,0,0,0,0,0,0),(116459,'2025-12-18',335,0,0,0,1,0,0,0,0,0,0,0,0),(116458,'2025-12-18',334,0,0,0,1,0,0,0,0,0,0,0,0),(116457,'2025-12-18',333,0,0,0,1,0,0,0,0,0,0,0,0),(116456,'2025-12-18',332,0,0,0,1,0,0,0,0,0,0,0,0),(116455,'2025-12-18',331,0,0,0,1,0,0,0,0,0,0,0,0),(116454,'2025-12-18',330,0,0,0,1,0,0,0,0,0,0,0,0),(116453,'2025-12-18',329,0,0,0,1,0,0,0,0,0,0,0,0),(116452,'2025-12-18',328,0,0,0,1,0,0,0,0,0,0,0,0),(116451,'2025-12-18',327,0,0,1,0,0,0,0,0,0,0,0,0),(116450,'2025-12-18',326,0,0,0,1,0,0,0,0,0,0,0,0),(116449,'2025-12-18',324,0,0,0,1,0,0,0,0,0,0,0,0),(116448,'2025-12-18',323,0,0,0,1,0,0,0,0,0,0,0,0),(116447,'2025-12-18',321,0,0,0,1,0,0,0,0,0,0,0,0),(116446,'2025-12-18',320,0,0,0,1,0,0,0,0,0,0,0,0),(116445,'2025-12-18',319,0,0,0,1,0,0,0,0,0,0,0,0),(116444,'2025-12-18',317,0,0,0,1,0,0,0,0,0,0,0,0),(116443,'2025-12-18',316,0,0,0,1,0,0,0,0,0,0,0,0),(116442,'2025-12-18',314,0,0,0,1,0,0,0,0,0,0,0,0),(116441,'2025-12-18',313,0,0,0,1,0,0,0,0,0,0,0,0),(116440,'2025-12-18',310,0,0,0,1,0,0,0,0,0,0,0,0),(116439,'2025-12-18',309,0,0,0,1,0,0,0,0,0,0,0,0),(116438,'2025-12-18',308,0,0,0,1,0,1,0,0,0,0,0,0),(116437,'2025-12-18',307,0,0,0,1,0,0,0,0,0,0,0,0),(116436,'2025-12-18',304,0,0,0,1,1,0,0,0,0,0,0,0),(116435,'2025-12-18',303,0,0,0,1,0,0,0,0,0,0,0,0),(116434,'2025-12-18',302,0,0,0,1,0,0,0,0,0,0,0,0),(116433,'2025-12-18',301,0,0,0,1,0,0,0,0,0,0,0,0),(116432,'2025-12-18',300,0,0,0,1,0,0,0,0,0,0,0,0),(116431,'2025-12-18',299,0,0,0,1,0,0,0,0,0,0,0,0),(116430,'2025-12-18',298,0,0,0,1,0,0,0,0,0,0,0,0),(116429,'2025-12-18',296,0,0,0,1,0,0,0,0,0,0,0,0),(116428,'2025-12-18',295,0,0,0,1,0,0,0,0,0,0,0,0),(116427,'2025-12-18',294,0,0,0,1,0,0,0,0,0,0,0,0),(116426,'2025-12-18',292,0,0,0,1,0,0,0,0,0,0,0,0),(116425,'2025-12-18',291,0,0,0,1,0,0,0,0,0,0,0,0),(116424,'2025-12-18',290,0,0,0,1,0,0,0,0,0,0,0,0),(116423,'2025-12-18',289,0,0,0,1,0,0,0,0,0,0,0,0),(116422,'2025-12-18',288,0,0,0,1,0,0,0,0,0,0,0,0),(116421,'2025-12-18',285,0,0,0,1,0,0,0,0,0,0,0,0),(116420,'2025-12-18',281,0,0,0,1,0,0,0,0,0,0,0,0),(116419,'2025-12-18',280,0,0,0,1,0,0,0,0,0,0,0,0),(116418,'2025-12-18',278,0,0,0,1,0,0,0,0,0,0,0,0),(116417,'2025-12-18',275,0,0,0,1,0,0,0,0,0,0,0,0),(116416,'2025-12-18',274,0,0,0,1,0,0,0,0,0,0,0,0),(116415,'2025-12-18',273,0,0,0,1,0,0,0,0,0,0,0,0),(116414,'2025-12-18',271,0,0,0,1,0,0,0,0,0,0,0,0),(116413,'2025-12-18',269,0,0,0,1,0,0,0,0,0,0,0,0),(116412,'2025-12-18',268,0,0,0,1,0,0,0,0,0,0,0,0),(116411,'2025-12-18',266,0,0,0,1,0,0,0,0,0,0,0,0),(116410,'2025-12-18',265,0,0,0,1,0,0,0,0,0,0,0,0),(116409,'2025-12-18',264,0,0,0,1,0,0,0,0,0,0,0,0),(116237,'2025-12-11',233,0,0,0,0,0,0,1,0,0,0,0,0),(116236,'2025-12-11',90,0,0,0,0,0,0,1,0,0,0,0,0),(116235,'2025-12-11',2,0,0,0,0,0,0,2,0,0,0,0,0),(116234,'2025-12-11',1,0,0,0,0,0,0,1,0,0,0,0,0),(116408,'2025-12-18',263,0,0,0,1,0,0,0,0,0,0,0,0),(116407,'2025-12-18',262,0,0,0,1,0,0,0,0,0,0,0,0),(116406,'2025-12-18',261,0,0,0,1,0,0,0,0,0,0,0,0),(116405,'2025-12-18',260,0,0,0,1,0,0,0,0,0,0,0,0),(116404,'2025-12-18',258,0,0,0,1,0,0,0,0,0,0,0,0),(116403,'2025-12-18',257,0,0,0,1,0,0,0,0,0,0,0,0),(116402,'2025-12-18',256,0,0,0,1,0,0,0,0,0,0,0,0),(116401,'2025-12-18',255,0,0,0,1,0,0,0,0,0,0,0,0),(116400,'2025-12-18',254,0,0,0,1,0,0,0,0,0,0,0,0),(116399,'2025-12-18',253,0,0,0,1,0,0,0,0,0,0,0,0),(116398,'2025-12-18',251,0,0,0,1,0,0,0,0,0,0,0,0),(116397,'2025-12-18',250,0,0,0,1,0,0,0,0,0,0,0,0),(116396,'2025-12-18',249,0,0,0,1,0,0,0,0,0,0,0,0),(116395,'2025-12-18',247,0,0,0,1,0,0,0,0,0,0,0,0),(116394,'2025-12-18',246,0,0,0,1,0,0,0,0,0,0,0,0),(116393,'2025-12-18',245,0,0,0,1,0,0,0,0,0,0,0,0),(116392,'2025-12-18',243,0,0,0,1,0,0,0,0,0,0,0,0),(116391,'2025-12-18',242,0,0,0,1,0,0,0,0,0,0,0,0),(116390,'2025-12-18',241,0,0,0,1,0,0,0,0,0,0,0,0),(116389,'2025-12-18',239,0,0,0,1,0,0,0,0,0,0,0,0),(116388,'2025-12-18',238,0,0,0,1,0,0,0,0,0,0,0,0),(116387,'2025-12-18',236,0,0,0,1,0,0,0,0,0,0,0,0),(116386,'2025-12-18',234,0,0,0,1,0,0,0,0,0,0,0,0),(116385,'2025-12-18',233,0,0,0,1,0,0,0,0,0,0,0,0),(116384,'2025-12-18',232,0,0,0,1,0,0,0,0,0,0,0,0),(116383,'2025-12-18',231,0,0,0,1,0,0,0,0,0,0,0,0),(116382,'2025-12-18',230,0,0,0,0,0,1,0,0,0,0,0,0),(116381,'2025-12-18',228,0,0,0,1,0,0,0,0,0,0,0,0),(116380,'2025-12-18',227,0,0,0,1,0,0,0,0,0,0,0,0),(116379,'2025-12-18',226,0,0,0,1,0,0,0,0,0,0,0,0),(116378,'2025-12-18',225,0,0,0,1,0,0,0,0,0,0,0,0),(116377,'2025-12-18',224,0,0,0,1,0,0,0,0,0,0,0,0),(116376,'2025-12-18',222,0,0,0,1,0,0,0,0,0,0,0,0),(116375,'2025-12-18',221,0,0,0,1,0,0,0,0,0,0,0,0),(116374,'2025-12-18',220,0,0,0,1,0,0,0,0,0,0,0,0),(116373,'2025-12-18',217,0,0,0,1,0,0,0,0,0,0,0,0),(116372,'2025-12-18',214,0,0,0,1,0,0,0,0,0,0,0,0),(116371,'2025-12-18',213,0,0,0,1,0,0,0,0,0,0,0,0),(116370,'2025-12-18',212,0,0,0,1,0,0,0,0,0,0,0,0),(116369,'2025-12-18',211,0,0,0,1,0,0,0,0,0,0,0,0),(116368,'2025-12-18',210,0,0,0,1,0,0,0,0,0,0,0,0),(116367,'2025-12-18',209,0,0,0,1,0,0,0,0,0,0,0,0),(116366,'2025-12-18',208,0,0,0,1,0,0,0,0,0,0,0,0),(116365,'2025-12-18',207,0,0,0,1,0,0,0,0,0,0,0,0),(116364,'2025-12-18',206,0,0,0,1,0,0,0,0,0,0,0,0),(116363,'2025-12-18',205,0,0,0,1,0,0,0,0,0,0,0,0),(116362,'2025-12-18',204,0,0,0,1,0,0,0,0,0,0,0,0),(116361,'2025-12-18',203,0,0,0,1,0,0,0,0,0,0,0,0),(116360,'2025-12-18',201,0,0,0,1,0,0,0,0,0,0,0,0),(116359,'2025-12-18',200,0,0,0,1,0,0,0,0,0,0,0,0),(116358,'2025-12-18',197,0,0,0,1,0,0,0,0,0,0,0,0),(116357,'2025-12-18',196,0,0,0,1,0,0,0,0,0,0,0,0),(116356,'2025-12-18',195,0,0,0,1,0,0,0,0,0,0,0,0),(116355,'2025-12-18',194,0,0,0,1,0,0,0,0,0,0,0,0),(116354,'2025-12-18',193,0,0,0,1,0,0,0,0,0,0,0,0),(116353,'2025-12-18',192,0,0,0,1,0,0,0,0,0,0,0,0),(116352,'2025-12-18',191,0,0,0,1,0,0,0,0,0,0,0,0),(116351,'2025-12-18',190,0,0,0,1,0,0,0,0,0,0,0,0),(116350,'2025-12-18',189,0,0,0,1,0,0,0,0,0,0,0,0),(116349,'2025-12-18',188,0,0,0,1,0,0,3,0,0,0,0,0),(116348,'2025-12-18',187,0,0,0,1,0,0,0,0,0,0,0,0),(116347,'2025-12-18',186,0,0,0,1,0,0,0,0,0,0,0,0),(116346,'2025-12-18',185,0,0,0,1,0,0,0,0,0,0,0,0),(116345,'2025-12-18',184,0,0,0,1,0,0,0,0,0,0,0,0),(116344,'2025-12-18',183,0,0,0,1,0,0,0,0,0,0,0,0),(116343,'2025-12-18',182,0,0,0,1,0,0,0,0,0,0,0,0),(116342,'2025-12-18',181,0,0,0,1,0,0,0,0,0,0,0,0),(116341,'2025-12-18',180,0,0,0,1,0,0,0,0,0,0,0,0),(116340,'2025-12-18',179,0,0,0,1,0,0,0,0,0,0,0,0),(116339,'2025-12-18',178,0,0,0,0,0,1,0,0,0,0,0,0),(116338,'2025-12-18',176,0,0,0,1,0,0,0,0,0,0,0,0),(116337,'2025-12-18',175,0,0,0,1,0,0,0,0,0,0,0,0),(116336,'2025-12-18',174,0,0,0,1,0,0,0,0,0,0,0,0),(116335,'2025-12-18',173,0,0,0,1,0,0,0,0,0,0,0,0),(116334,'2025-12-18',172,0,0,0,1,0,0,0,0,0,0,0,0),(116333,'2025-12-18',170,0,0,0,1,0,0,0,0,0,0,0,0),(116332,'2025-12-18',168,0,0,0,1,0,0,0,0,0,0,0,0),(116331,'2025-12-18',167,0,0,0,1,0,0,0,0,0,0,0,0),(116330,'2025-12-18',166,0,0,0,1,0,0,0,0,0,0,0,0),(116329,'2025-12-18',164,0,0,0,1,0,0,0,0,0,0,0,0),(116328,'2025-12-18',163,0,0,0,1,0,0,0,0,0,0,0,0),(116327,'2025-12-18',162,0,0,0,0,1,1,0,0,0,0,0,0),(116326,'2025-12-18',161,0,0,0,1,0,0,0,0,0,0,0,0),(116325,'2025-12-18',160,0,0,0,1,0,0,0,0,0,0,0,0),(116324,'2025-12-18',159,0,0,0,1,0,0,0,0,0,0,0,0),(116323,'2025-12-18',158,0,0,0,1,0,0,0,0,0,0,0,0),(116322,'2025-12-18',157,0,0,0,1,0,0,0,0,0,0,0,0),(116321,'2025-12-18',154,0,0,0,1,0,0,0,0,0,0,0,0),(116320,'2025-12-18',152,0,0,0,1,0,0,0,0,0,0,0,0),(116319,'2025-12-18',151,0,0,0,1,0,0,0,0,0,0,0,0),(116318,'2025-12-18',148,0,0,0,1,0,0,0,0,0,0,0,0),(116317,'2025-12-18',147,0,0,0,1,0,0,0,0,0,0,0,0),(116316,'2025-12-18',146,0,0,0,1,0,0,0,0,0,0,0,0),(116315,'2025-12-18',145,0,0,0,1,0,0,0,0,0,0,0,0),(116314,'2025-12-18',144,0,0,0,1,0,0,0,0,0,0,0,0),(116313,'2025-12-18',143,0,0,0,1,0,0,0,0,0,0,0,0),(116312,'2025-12-18',141,0,0,0,1,0,0,0,0,0,0,0,0),(116311,'2025-12-18',140,0,0,0,1,0,0,0,0,0,0,0,0),(116310,'2025-12-18',136,0,0,0,1,0,0,0,0,0,0,0,0),(116309,'2025-12-18',132,0,0,0,1,0,0,0,0,0,0,0,0),(116308,'2025-12-18',128,0,0,0,1,0,0,0,0,0,0,0,0),(116307,'2025-12-18',127,0,0,0,1,0,0,0,0,0,0,0,0),(116306,'2025-12-18',126,0,0,0,1,0,0,0,0,0,0,0,0),(116249,'2025-12-14',218,0,0,0,0,0,0,2,0,0,0,0,0),(116248,'2025-12-14',188,0,0,0,0,0,0,1,0,0,0,0,0),(116247,'2025-12-14',109,0,0,0,0,0,0,1,0,0,0,0,0),(116246,'2025-12-14',78,0,0,0,0,0,0,2,0,0,0,0,0),(116245,'2025-12-14',75,0,0,0,0,0,0,1,0,0,0,0,0),(116244,'2025-12-14',51,0,0,0,0,0,0,1,0,0,0,0,0),(116243,'2025-12-14',49,0,0,0,0,0,0,3,0,0,0,0,0),(116242,'2025-12-14',22,0,0,0,0,0,0,4,0,0,0,0,0),(116241,'2025-12-13',137,0,0,0,0,0,0,1,0,0,0,0,0),(116240,'2025-12-13',17,0,0,0,0,0,0,1,0,0,0,0,0),(116239,'2025-12-13',9,0,0,0,0,0,0,2,0,0,0,0,0),(116238,'2025-12-13',5,0,0,0,0,0,0,1,0,0,0,0,0),(116260,'2025-12-16',137,0,0,0,0,0,0,2,0,0,0,0,0),(116259,'2025-12-16',17,0,0,0,0,0,0,2,0,0,0,0,0),(116258,'2025-12-16',9,0,0,0,0,0,0,1,0,0,0,0,0),(116257,'2025-12-15',233,0,0,0,0,0,0,1,0,0,0,0,0),(116256,'2025-12-15',123,0,0,0,0,0,0,2,0,0,0,0,0),(116255,'2025-12-15',90,0,0,0,0,0,0,2,0,0,0,0,0),(116254,'2025-12-15',89,0,0,0,0,0,0,1,0,0,0,0,0),(116253,'2025-12-15',81,0,0,0,0,0,0,1,0,0,0,0,0),(116252,'2025-12-15',5,0,0,0,0,0,0,1,0,0,0,0,0),(116251,'2025-12-15',2,0,0,0,0,0,0,1,0,0,0,0,0),(116250,'2025-12-15',1,0,0,0,0,0,0,1,0,0,0,0,0),(116305,'2025-12-18',124,0,0,0,1,0,0,0,0,0,0,0,0),(116304,'2025-12-18',123,0,0,0,1,0,0,0,0,0,0,0,0),(116303,'2025-12-18',121,0,0,0,1,0,0,0,0,0,0,0,0),(116302,'2025-12-18',119,0,0,0,0,0,1,0,0,0,0,0,0),(116301,'2025-12-18',115,0,0,0,1,0,0,0,0,0,0,0,0),(116300,'2025-12-18',114,0,0,0,1,0,0,0,0,0,0,0,0),(116299,'2025-12-18',113,0,0,0,1,0,0,0,0,0,0,0,0),(116298,'2025-12-18',112,0,0,0,1,0,0,0,0,0,0,0,0),(116297,'2025-12-18',110,0,0,0,1,0,0,0,0,0,0,0,0),(116296,'2025-12-18',103,0,0,0,1,0,0,0,0,0,0,0,0),(116295,'2025-12-18',98,0,0,0,1,0,0,0,0,0,0,0,0),(116294,'2025-12-18',97,0,0,0,1,0,0,0,0,0,0,0,0),(116293,'2025-12-18',96,0,0,0,1,0,0,0,0,0,0,0,0),(116292,'2025-12-18',94,0,0,0,1,0,0,0,0,0,0,0,0),(116291,'2025-12-18',91,0,0,0,1,0,0,0,0,0,0,0,0),(116290,'2025-12-18',90,0,0,0,1,0,0,0,0,0,0,0,0),(116289,'2025-12-18',87,0,0,0,1,0,0,0,0,0,0,0,0),(116288,'2025-12-18',79,0,0,0,1,0,0,0,0,0,0,0,0),(116287,'2025-12-18',78,0,0,0,0,0,0,3,0,0,0,0,0),(116286,'2025-12-18',75,0,0,0,0,0,0,1,0,0,0,0,0),(116285,'2025-12-18',70,0,0,0,1,0,0,0,0,0,0,0,0),(116284,'2025-12-18',69,0,0,0,1,0,0,0,0,0,0,0,0),(116283,'2025-12-18',68,0,0,0,1,0,0,0,0,0,0,0,0),(116282,'2025-12-18',67,0,0,0,1,0,0,0,0,0,0,0,0),(116281,'2025-12-18',66,0,0,0,1,0,0,0,0,0,0,0,0),(116280,'2025-12-18',65,0,0,0,1,0,0,0,0,0,0,0,0),(116279,'2025-12-18',64,0,0,0,1,0,0,0,0,0,0,0,0),(116278,'2025-12-18',63,0,0,0,1,0,0,0,0,0,0,0,0),(116277,'2025-12-18',61,0,0,0,1,0,0,0,0,0,0,0,0),(116276,'2025-12-18',58,0,0,0,1,0,0,0,0,0,0,0,0),(116275,'2025-12-18',54,0,0,0,1,0,0,0,0,0,0,0,0),(116274,'2025-12-18',52,0,0,0,1,0,0,0,0,0,0,0,0),(116273,'2025-12-18',51,0,0,0,0,0,0,1,0,0,0,0,0),(116272,'2025-12-18',49,0,0,0,0,0,0,1,0,0,0,0,0),(116271,'2025-12-18',42,0,0,0,1,0,0,0,0,0,0,0,0),(116270,'2025-12-18',37,0,0,0,1,0,0,0,0,0,0,0,0),(116269,'2025-12-18',32,0,0,0,1,0,0,0,0,0,0,0,0),(116268,'2025-12-18',27,0,0,0,0,1,0,0,0,0,0,0,0),(116267,'2025-12-18',24,0,0,0,1,0,0,0,0,0,0,0,0),(116266,'2025-12-18',22,0,0,0,0,0,0,1,0,0,0,0,0),(116265,'2025-12-18',19,0,0,0,1,0,0,0,0,0,0,0,0),(116264,'2025-12-18',17,0,0,0,0,1,0,0,0,0,0,0,0),(116263,'2025-12-18',13,0,0,0,1,0,0,0,0,0,0,0,0),(116262,'2025-12-18',11,0,0,0,0,0,1,0,0,0,0,0,0),(116261,'2025-12-18',10,0,0,0,1,0,0,0,0,0,0,0,0),(116796,'2025-12-23',300,0,0,0,1,0,0,0,0,0,0,0,0),(116795,'2025-12-23',299,0,0,0,1,0,0,0,0,0,0,0,0),(116794,'2025-12-23',298,0,0,0,1,0,0,0,0,0,0,0,0),(116793,'2025-12-23',297,0,0,0,1,0,0,0,0,0,0,0,0),(116792,'2025-12-23',296,0,0,0,1,0,0,0,0,0,0,0,0),(116791,'2025-12-23',295,0,0,0,1,0,0,0,0,0,0,0,0),(116790,'2025-12-23',294,0,0,0,1,0,0,0,0,0,0,0,0),(116789,'2025-12-23',292,0,0,0,1,0,0,0,0,0,0,0,0),(116788,'2025-12-23',291,0,0,0,1,0,0,0,0,0,0,0,0),(116787,'2025-12-23',290,0,0,0,1,0,0,0,0,0,0,0,0),(116786,'2025-12-23',289,0,0,0,1,0,0,0,0,0,0,0,0),(116785,'2025-12-23',288,0,0,0,1,0,0,0,0,0,0,0,0),(116784,'2025-12-23',285,0,0,0,1,0,0,0,0,0,0,0,0),(116783,'2025-12-23',281,0,0,0,1,0,0,0,0,0,0,0,0),(116782,'2025-12-23',280,0,0,0,1,0,0,0,0,0,0,0,0),(116781,'2025-12-23',278,0,0,0,1,0,0,0,0,0,0,0,0),(116780,'2025-12-23',275,0,0,0,1,0,0,0,0,0,0,0,0),(116779,'2025-12-23',274,0,0,0,1,0,0,0,0,0,0,0,0),(116778,'2025-12-23',273,0,0,0,1,0,0,0,0,0,0,0,0),(116777,'2025-12-23',271,0,0,0,1,0,0,0,0,0,0,0,0),(116776,'2025-12-23',269,0,0,0,1,0,0,0,0,0,0,0,0),(116775,'2025-12-23',267,0,0,0,1,0,0,0,0,0,0,0,0),(116774,'2025-12-23',266,0,0,0,1,0,0,0,0,0,0,0,0),(116773,'2025-12-23',265,0,0,0,1,0,0,0,0,0,0,0,0),(116772,'2025-12-23',264,0,0,0,1,0,0,0,0,0,0,0,0),(116895,'2025-12-23',456,0,0,0,1,0,0,0,0,0,0,0,0),(116894,'2025-12-23',452,0,0,0,1,0,0,0,0,0,0,0,0),(116893,'2025-12-23',451,0,0,0,1,0,0,0,0,0,0,0,0),(116892,'2025-12-23',448,0,0,0,1,0,0,0,0,0,0,0,0),(116891,'2025-12-23',446,0,0,0,1,0,0,0,0,0,0,0,0),(116890,'2025-12-23',445,0,0,0,1,0,0,0,0,0,0,0,0),(116889,'2025-12-23',443,0,0,0,1,0,0,0,0,0,0,0,0),(116888,'2025-12-23',441,0,0,0,1,0,0,0,0,0,0,0,0),(116887,'2025-12-23',440,0,0,0,1,0,0,0,0,0,0,0,0),(116886,'2025-12-23',439,0,0,0,1,0,0,0,0,0,0,0,0),(116885,'2025-12-23',438,0,0,0,1,0,0,0,0,0,0,0,0),(116884,'2025-12-23',435,0,0,0,1,0,0,0,0,0,0,0,0),(116883,'2025-12-23',434,0,0,0,1,0,0,0,0,0,0,0,0),(116882,'2025-12-23',433,0,0,0,1,0,0,0,0,0,0,0,0),(116881,'2025-12-23',432,0,0,0,1,0,0,0,0,0,0,0,0),(116880,'2025-12-23',431,0,0,0,1,0,0,0,0,0,0,0,0),(116547,'2025-12-22',308,0,0,0,0,1,0,0,0,0,0,0,0),(116546,'2025-12-22',233,0,0,0,0,0,1,0,0,0,0,0,0),(116545,'2025-12-22',137,0,0,0,0,0,1,0,0,0,0,0,0),(116544,'2025-12-22',123,0,0,0,0,1,0,0,0,0,0,0,0),(116543,'2025-12-22',77,0,0,0,0,1,0,0,0,0,0,0,0),(116542,'2025-12-22',73,0,0,0,0,1,0,0,0,0,0,0,0),(116541,'2025-12-22',70,1,0,0,0,0,0,0,0,0,0,0,0),(116536,'2025-12-21',218,0,0,0,0,0,0,1,0,0,0,0,0),(116535,'2025-12-21',109,0,0,0,0,0,0,1,0,0,0,0,0),(116534,'2025-12-21',89,0,0,0,0,0,0,1,0,0,0,0,0),(116533,'2025-12-21',81,0,0,0,0,0,0,2,0,0,0,0,0),(116771,'2025-12-23',263,0,0,0,1,0,0,0,0,0,0,0,0),(116770,'2025-12-23',262,0,0,0,1,0,0,0,0,0,0,0,0),(116769,'2025-12-23',261,0,0,0,1,0,0,0,0,0,0,0,0),(116768,'2025-12-23',260,0,0,0,1,0,0,0,0,0,0,0,0),(116767,'2025-12-23',258,0,0,0,1,0,0,0,0,0,0,0,0),(116766,'2025-12-23',257,0,0,0,1,0,0,0,0,0,0,0,0),(116765,'2025-12-23',256,0,0,0,1,0,0,0,0,0,0,0,0),(116764,'2025-12-23',255,0,0,0,1,0,0,0,0,0,0,0,0),(116763,'2025-12-23',254,0,0,0,1,0,0,0,0,0,0,0,0),(116762,'2025-12-23',253,0,0,0,1,0,0,0,0,0,0,0,0),(116761,'2025-12-23',251,0,0,0,1,0,0,0,0,0,0,0,0),(116760,'2025-12-23',250,0,0,0,1,0,0,0,0,0,0,0,0),(116759,'2025-12-23',249,0,0,0,1,0,0,0,0,0,0,0,0),(116758,'2025-12-23',247,0,0,0,1,0,0,0,0,0,0,0,0),(116757,'2025-12-23',246,0,0,0,1,0,0,0,0,0,0,0,0),(116756,'2025-12-23',245,0,0,0,1,0,0,0,0,0,0,0,0),(116755,'2025-12-23',243,0,0,0,1,0,0,0,0,0,0,0,0),(116754,'2025-12-23',242,0,0,0,1,0,0,0,0,0,0,0,0),(116753,'2025-12-23',241,0,0,0,1,0,0,0,0,0,0,0,0),(116752,'2025-12-23',239,0,0,0,1,0,0,0,0,0,0,0,0),(116751,'2025-12-23',238,0,0,0,1,0,0,0,0,0,0,0,0),(116750,'2025-12-23',236,0,0,0,1,0,0,0,0,0,0,0,0),(116749,'2025-12-23',234,0,0,0,1,0,0,0,0,0,0,0,0),(116748,'2025-12-23',233,0,0,0,1,0,0,2,0,0,0,0,0),(116747,'2025-12-23',232,0,0,0,1,0,0,0,0,0,0,0,0),(116746,'2025-12-23',231,0,0,0,1,0,0,0,0,0,0,0,0),(116745,'2025-12-23',228,0,0,0,1,0,0,0,0,0,0,0,0),(116744,'2025-12-23',227,0,0,0,1,0,0,0,0,0,0,0,0),(116743,'2025-12-23',226,0,0,0,1,0,0,0,0,0,0,0,0),(116742,'2025-12-23',225,0,0,0,1,0,0,0,0,0,0,0,0),(116741,'2025-12-23',224,0,0,0,1,0,0,0,0,0,0,0,0),(116740,'2025-12-23',222,0,0,0,1,0,0,0,0,0,0,0,0),(116739,'2025-12-23',221,0,0,0,1,0,0,0,0,0,0,0,0),(116738,'2025-12-23',220,0,0,0,1,0,0,0,0,0,0,0,0),(116737,'2025-12-23',217,0,0,0,1,0,0,0,0,0,0,0,0),(116736,'2025-12-23',214,0,0,0,1,0,0,0,0,0,0,0,0),(116735,'2025-12-23',213,0,0,0,1,0,0,0,0,0,0,0,0),(116734,'2025-12-23',212,0,0,0,1,0,0,0,0,0,0,0,0),(116733,'2025-12-23',211,0,0,0,1,0,0,0,0,0,0,0,0),(116732,'2025-12-23',210,0,0,0,1,0,0,0,0,0,0,0,0),(116731,'2025-12-23',209,0,0,0,1,0,0,0,0,0,0,0,0),(116730,'2025-12-23',208,0,0,0,1,0,0,0,0,0,0,0,0),(116729,'2025-12-23',207,0,0,0,1,0,0,0,0,0,0,0,0),(116728,'2025-12-23',206,0,0,0,1,0,0,0,0,0,0,0,0),(116727,'2025-12-23',205,0,0,0,1,0,0,0,0,0,0,0,0),(116726,'2025-12-23',204,0,0,0,1,0,0,0,0,0,0,0,0),(116725,'2025-12-23',203,0,0,0,1,0,0,0,0,0,0,0,0),(116724,'2025-12-23',201,0,0,0,1,0,0,0,0,0,0,0,0),(116723,'2025-12-23',200,0,0,0,1,0,0,0,0,0,0,0,0),(116722,'2025-12-23',197,0,0,0,1,0,0,0,0,0,0,0,0),(116721,'2025-12-23',196,0,0,0,1,0,0,0,0,0,0,0,0),(116720,'2025-12-23',195,0,0,0,1,0,0,0,0,0,0,0,0),(116719,'2025-12-23',194,0,0,0,1,0,0,0,0,0,0,0,0),(116718,'2025-12-23',193,0,0,0,1,0,0,0,0,0,0,0,0),(116717,'2025-12-23',192,0,0,0,1,0,0,0,0,0,0,0,0),(116716,'2025-12-23',191,0,0,0,1,0,0,0,0,0,0,0,0),(116715,'2025-12-23',190,0,0,0,1,0,0,0,0,0,0,0,0),(116714,'2025-12-23',189,0,0,0,1,0,0,0,0,0,0,0,0),(116713,'2025-12-23',188,0,0,0,1,0,0,0,0,0,0,0,0),(116712,'2025-12-23',187,0,0,0,1,0,0,0,0,0,0,0,0),(116711,'2025-12-23',186,0,0,0,1,0,0,0,0,0,0,0,0),(116710,'2025-12-23',185,0,0,0,1,0,0,0,0,0,0,0,0),(116709,'2025-12-23',184,0,0,0,1,0,0,0,0,0,0,0,0),(116708,'2025-12-23',183,0,0,0,1,0,0,0,0,0,0,0,0),(116707,'2025-12-23',182,0,0,0,1,0,0,0,0,0,0,0,0),(116706,'2025-12-23',181,0,0,0,1,0,0,0,0,0,0,0,0),(116705,'2025-12-23',180,0,0,0,1,0,0,0,0,0,0,0,0),(116704,'2025-12-23',179,0,0,0,1,0,0,0,0,0,0,0,0),(116703,'2025-12-23',178,0,0,0,1,0,0,0,0,0,0,0,0),(116702,'2025-12-23',176,0,0,0,1,0,0,0,0,0,0,0,0),(116701,'2025-12-23',175,0,0,0,1,0,0,0,0,0,0,0,0),(116700,'2025-12-23',174,0,0,0,1,0,0,0,0,0,0,0,0),(116699,'2025-12-23',173,0,0,0,1,0,0,0,0,0,0,0,0),(116698,'2025-12-23',172,0,0,0,1,0,0,0,0,0,0,0,0),(116697,'2025-12-23',171,0,0,0,1,0,0,0,0,0,0,0,0),(116696,'2025-12-23',170,0,0,0,1,0,0,0,0,0,0,0,0),(116695,'2025-12-23',169,0,0,0,1,0,0,0,0,0,0,0,0),(116694,'2025-12-23',168,0,0,0,1,0,0,0,0,0,0,0,0),(116693,'2025-12-23',167,0,0,0,1,0,0,0,0,0,0,0,0),(116692,'2025-12-23',166,0,0,0,1,0,0,0,0,0,0,0,0),(116691,'2025-12-23',164,0,0,0,1,0,0,0,0,0,0,0,0),(116690,'2025-12-23',163,0,0,0,1,0,0,0,0,0,0,0,0),(116689,'2025-12-23',162,0,0,0,1,0,0,0,0,0,0,0,0),(116688,'2025-12-23',161,0,0,0,1,0,0,0,0,0,0,0,0),(116687,'2025-12-23',160,0,0,0,1,0,0,0,0,0,0,0,0),(116686,'2025-12-23',159,0,0,0,1,0,0,0,0,0,0,0,0),(116685,'2025-12-23',158,0,0,0,1,0,0,0,0,0,0,0,0),(116684,'2025-12-23',157,0,0,0,1,0,0,0,0,0,0,0,0),(116683,'2025-12-23',155,0,0,0,1,0,0,0,0,0,0,0,0),(116682,'2025-12-23',154,0,0,0,1,0,0,0,0,0,0,0,0),(116681,'2025-12-23',152,0,0,0,1,0,0,0,0,0,0,0,0),(116680,'2025-12-23',151,0,0,0,1,0,0,0,0,0,0,0,0),(116679,'2025-12-23',150,0,0,0,1,0,0,0,0,0,0,0,0),(116678,'2025-12-23',148,0,0,0,1,0,0,0,0,0,0,0,0),(116677,'2025-12-23',147,0,0,0,1,0,0,0,0,0,0,0,0),(116676,'2025-12-23',146,0,0,0,1,0,0,0,0,0,0,0,0),(116675,'2025-12-23',145,0,0,0,1,0,0,0,0,0,0,0,0),(116674,'2025-12-23',144,0,0,0,1,0,0,0,0,0,0,0,0),(116673,'2025-12-23',143,0,0,0,1,0,0,0,0,0,0,0,0),(116672,'2025-12-23',142,0,0,0,1,0,0,0,0,0,0,0,0),(116671,'2025-12-23',141,0,0,0,1,0,0,0,0,0,0,0,0),(116670,'2025-12-23',140,0,0,0,1,0,0,0,0,0,0,0,0),(116669,'2025-12-23',139,0,0,0,1,0,0,0,0,0,0,0,0),(116668,'2025-12-23',137,0,0,0,0,0,0,1,0,0,0,0,0),(116667,'2025-12-23',136,0,0,0,1,0,0,0,0,0,0,0,0),(116666,'2025-12-23',134,0,0,0,1,0,0,0,0,0,0,0,0),(116665,'2025-12-23',133,0,0,0,1,0,0,0,0,0,0,0,0),(116664,'2025-12-23',132,0,0,0,1,0,0,0,0,0,0,0,0),(116663,'2025-12-23',129,0,0,0,1,0,0,0,0,0,0,0,0),(116662,'2025-12-23',128,0,0,0,1,0,0,0,0,0,0,0,0),(116661,'2025-12-23',127,0,0,0,1,0,0,0,0,0,0,0,0),(116660,'2025-12-23',126,0,0,0,1,0,0,0,0,0,0,0,0),(116659,'2025-12-23',125,0,0,0,1,0,0,0,0,0,0,0,0),(116658,'2025-12-23',124,0,0,0,1,0,0,0,0,0,0,0,0),(116657,'2025-12-23',123,0,0,0,1,0,0,1,0,0,0,0,0),(116656,'2025-12-23',122,0,0,0,1,0,0,0,0,0,0,0,0),(116655,'2025-12-23',121,0,0,0,1,0,0,0,0,0,0,0,0),(116654,'2025-12-23',120,0,0,0,1,0,0,0,0,0,0,0,0),(116653,'2025-12-23',119,0,0,0,1,0,0,0,0,0,0,0,0),(116652,'2025-12-23',118,0,0,0,1,0,0,0,0,0,0,0,0),(116651,'2025-12-23',117,0,0,0,1,0,0,0,0,0,0,0,0),(116650,'2025-12-23',116,0,0,0,1,0,0,0,0,0,0,0,0),(116649,'2025-12-23',115,0,0,0,1,0,0,0,0,0,0,0,0),(116648,'2025-12-23',114,0,0,0,1,0,0,0,0,0,0,0,0),(116647,'2025-12-23',113,0,0,0,1,0,0,0,0,0,0,0,0),(116646,'2025-12-23',112,0,0,0,1,0,0,0,0,0,0,0,0),(116645,'2025-12-23',111,0,0,0,1,0,0,0,0,0,0,0,0),(116644,'2025-12-23',110,0,0,0,1,0,0,0,0,0,0,0,0),(116643,'2025-12-23',109,0,0,0,1,0,0,0,0,0,0,0,0),(116642,'2025-12-23',106,0,0,0,1,0,0,0,0,0,0,0,0),(116641,'2025-12-23',105,0,0,0,1,0,0,0,0,0,0,0,0),(116640,'2025-12-23',104,0,0,0,1,0,0,0,0,0,0,0,0),(116639,'2025-12-23',103,0,0,0,1,0,0,0,0,0,0,0,0),(116638,'2025-12-23',102,0,0,0,1,0,0,0,0,0,0,0,0),(116637,'2025-12-23',101,0,0,0,1,0,0,0,0,0,0,0,0),(116636,'2025-12-23',100,0,0,0,1,0,0,0,0,0,0,0,0),(116635,'2025-12-23',98,0,0,0,1,0,0,0,0,0,0,0,0),(116634,'2025-12-23',97,0,0,0,1,0,0,0,0,0,0,0,0),(116633,'2025-12-23',96,0,0,0,1,0,0,0,0,0,0,0,0),(116632,'2025-12-23',95,0,0,0,1,0,0,0,0,0,0,0,0),(116631,'2025-12-23',94,0,0,0,1,0,0,0,0,0,0,0,0),(116630,'2025-12-23',93,0,0,0,1,0,0,0,0,0,0,0,0),(116629,'2025-12-23',91,0,0,0,1,0,0,0,0,0,0,0,0),(116628,'2025-12-23',90,0,0,0,1,0,0,1,0,0,0,0,0),(116627,'2025-12-23',89,0,0,0,1,0,0,0,0,0,0,0,0),(116626,'2025-12-23',87,0,0,0,1,0,0,0,0,0,0,0,0),(116625,'2025-12-23',86,0,0,0,1,0,0,0,0,0,0,0,0),(116624,'2025-12-23',85,0,0,0,1,0,0,0,0,0,0,0,0),(116623,'2025-12-23',84,0,0,0,1,0,0,0,0,0,0,0,0),(116622,'2025-12-23',83,0,0,0,1,0,0,0,0,0,0,0,0),(116621,'2025-12-23',82,0,0,0,1,0,0,0,0,0,0,0,0),(116620,'2025-12-23',81,0,0,0,1,0,0,0,0,0,0,0,0),(116619,'2025-12-23',80,0,0,0,1,0,0,0,0,0,0,0,0),(116618,'2025-12-23',79,0,0,0,1,0,0,0,0,0,0,0,0),(116617,'2025-12-23',78,0,0,0,1,0,0,0,0,0,0,0,0),(116616,'2025-12-23',77,0,0,0,1,0,0,0,0,0,0,0,0),(116615,'2025-12-23',75,0,0,1,0,0,0,0,0,0,0,0,0),(116614,'2025-12-23',74,0,0,0,1,0,0,0,0,0,0,0,0),(116613,'2025-12-23',73,0,0,0,1,0,0,0,0,0,0,0,0),(116612,'2025-12-23',71,0,0,0,1,0,0,0,0,0,0,0,0),(116611,'2025-12-23',70,0,0,0,1,0,0,0,0,0,0,0,0),(116610,'2025-12-23',69,0,0,0,1,0,0,0,0,0,0,0,0),(116609,'2025-12-23',68,0,0,0,1,0,0,0,0,0,0,0,0),(116608,'2025-12-23',67,0,0,0,1,0,0,0,0,0,0,0,0),(116607,'2025-12-23',66,0,0,0,1,0,0,0,0,0,0,0,0),(116606,'2025-12-23',65,0,0,0,1,0,0,0,0,0,0,0,0),(116605,'2025-12-23',64,0,0,0,1,0,0,0,0,0,0,0,0),(116604,'2025-12-23',63,0,0,0,1,0,0,0,0,0,0,0,0),(116603,'2025-12-23',61,0,0,0,1,0,0,0,0,0,0,0,0),(116602,'2025-12-23',60,0,0,0,1,0,0,0,0,0,0,0,0),(116601,'2025-12-23',59,0,0,0,1,0,0,0,0,0,0,0,0),(116600,'2025-12-23',58,0,0,0,1,0,0,0,0,0,0,0,0),(116599,'2025-12-23',57,0,0,0,1,0,0,0,0,0,0,0,0),(116598,'2025-12-23',56,0,0,0,1,0,0,0,0,0,0,0,0),(116597,'2025-12-23',55,0,0,0,1,0,0,0,0,0,0,0,0),(116596,'2025-12-23',54,0,0,0,1,0,0,0,0,0,0,0,0),(116595,'2025-12-23',53,0,0,0,1,0,0,0,0,0,0,0,0),(116594,'2025-12-23',52,0,0,0,1,0,0,0,0,0,0,0,0),(116593,'2025-12-23',51,0,0,0,1,0,0,0,0,0,0,0,0),(116592,'2025-12-23',50,0,0,0,1,0,0,0,0,0,0,0,0),(116591,'2025-12-23',49,0,0,0,1,0,0,0,0,0,0,0,0),(116590,'2025-12-23',48,0,0,0,1,0,0,0,0,0,0,0,0),(116589,'2025-12-23',47,0,0,0,1,0,0,0,0,0,0,0,0),(116588,'2025-12-23',46,0,0,0,1,0,0,0,0,0,0,0,0),(116587,'2025-12-23',45,0,0,0,1,0,0,0,0,0,0,0,0),(116586,'2025-12-23',44,0,0,0,1,0,0,0,0,0,0,0,0),(116585,'2025-12-23',43,0,0,0,1,0,0,0,0,0,0,0,0),(116584,'2025-12-23',42,0,0,0,1,0,0,0,0,0,0,0,0),(116583,'2025-12-23',41,0,0,0,1,0,0,0,0,0,0,0,0),(116582,'2025-12-23',40,0,0,0,1,0,0,0,0,0,0,0,0),(116581,'2025-12-23',38,0,0,0,1,0,0,0,0,0,0,0,0),(116580,'2025-12-23',37,0,0,0,1,0,0,0,0,0,0,0,0),(116579,'2025-12-23',36,0,0,0,1,0,0,0,0,0,0,0,0),(116578,'2025-12-23',35,0,0,0,1,0,0,0,0,0,0,0,0),(116577,'2025-12-23',34,0,0,0,1,0,0,0,0,0,0,0,0),(116576,'2025-12-23',33,0,0,0,1,0,0,0,0,0,0,0,0),(116575,'2025-12-23',32,0,0,0,1,0,0,0,0,0,0,0,0),(116574,'2025-12-23',31,0,0,0,1,0,0,0,0,0,0,0,0),(116573,'2025-12-23',30,0,0,0,1,0,0,0,0,0,0,0,0),(116572,'2025-12-23',29,0,0,0,1,0,0,0,0,0,0,0,0),(116571,'2025-12-23',28,0,0,0,1,0,0,0,0,0,0,0,0),(116570,'2025-12-23',27,0,0,0,1,0,0,0,0,0,0,0,0),(116540,'2025-12-22',67,0,0,0,0,0,1,0,0,0,0,0,0),(116539,'2025-12-22',54,0,0,0,0,1,0,0,0,0,0,0,0),(116538,'2025-12-22',34,0,0,0,0,0,1,0,0,0,0,0,0),(116537,'2025-12-22',18,0,0,0,0,0,1,0,0,0,0,0,0),(116569,'2025-12-23',26,0,0,0,1,0,0,0,0,0,0,0,0),(116568,'2025-12-23',25,0,0,0,1,0,0,0,0,0,0,0,0),(116567,'2025-12-23',24,0,0,0,1,0,0,0,0,0,0,0,0),(116566,'2025-12-23',23,0,0,0,1,0,0,0,0,0,0,0,0),(116565,'2025-12-23',22,0,0,0,1,0,0,2,0,0,0,0,0),(116564,'2025-12-23',21,0,0,0,1,0,0,0,0,0,0,0,0),(116563,'2025-12-23',20,0,0,0,1,0,0,0,0,0,0,0,0),(116562,'2025-12-23',19,0,0,0,1,0,0,0,0,0,0,0,0),(116561,'2025-12-23',18,0,0,0,1,0,0,0,0,0,0,0,0),(116560,'2025-12-23',17,0,0,0,1,0,0,1,0,0,0,0,0),(116559,'2025-12-23',16,0,0,0,1,0,0,0,0,0,0,0,0),(116558,'2025-12-23',14,0,0,0,1,0,0,0,0,0,0,0,0),(116557,'2025-12-23',13,0,0,0,1,0,0,0,0,0,0,0,0),(116556,'2025-12-23',12,0,0,0,1,0,0,0,0,0,0,0,0),(116555,'2025-12-23',11,0,0,0,1,0,0,0,0,0,0,0,0),(116554,'2025-12-23',10,0,0,0,1,0,0,0,0,0,0,0,0),(116553,'2025-12-23',9,0,0,0,1,0,0,1,0,0,0,0,0),(116552,'2025-12-23',8,0,0,0,1,0,0,0,0,0,0,0,0),(116551,'2025-12-23',5,0,0,0,1,0,0,3,0,0,0,0,0),(116550,'2025-12-23',3,0,0,0,1,0,0,0,0,0,0,0,0),(116549,'2025-12-23',2,0,0,0,1,0,0,2,0,0,0,0,0),(116548,'2025-12-23',1,0,0,0,1,0,0,1,0,0,0,0,0),(118540,'2026-02-26',352,0,0,0,1,0,0,0,0,0,0,0,0),(118539,'2026-02-26',351,0,0,0,1,0,0,0,0,0,0,0,0),(118538,'2026-02-26',348,0,0,0,1,0,0,0,0,0,0,0,0),(118537,'2026-02-26',347,0,0,0,1,0,0,0,0,0,0,0,0),(118536,'2026-02-26',346,0,0,0,1,0,0,0,0,0,0,0,0),(118535,'2026-02-26',345,0,0,0,1,0,0,0,0,0,0,0,0),(118534,'2026-02-26',344,0,0,0,1,0,0,0,0,0,0,0,0),(118533,'2026-02-26',341,0,0,0,1,0,0,0,0,0,0,0,0),(118532,'2026-02-26',340,0,0,0,1,0,0,0,0,0,0,0,0),(118531,'2026-02-26',339,0,0,0,1,0,0,0,0,0,0,0,0),(118530,'2026-02-26',338,0,0,0,1,0,0,0,0,0,0,0,0),(118529,'2026-02-26',337,0,0,0,1,0,0,0,0,0,0,0,0),(118528,'2026-02-26',336,0,0,0,1,0,0,0,0,0,0,0,0),(118527,'2026-02-26',335,0,0,0,1,0,0,0,0,0,0,0,0),(118526,'2026-02-26',334,0,0,0,1,0,0,0,0,0,0,0,0),(118525,'2026-02-26',333,0,0,0,1,0,0,0,0,0,0,0,0),(118524,'2026-02-26',332,0,0,0,1,0,0,0,0,0,0,0,0),(118523,'2026-02-26',331,0,0,0,1,0,0,0,0,0,0,0,0),(118522,'2026-02-26',330,0,0,0,1,0,0,0,0,0,0,0,0),(118521,'2026-02-26',329,0,0,0,1,0,0,0,0,0,0,0,0),(118520,'2026-02-26',328,0,0,0,1,0,0,0,0,0,0,0,0),(118519,'2026-02-26',327,0,0,0,1,0,0,0,0,0,0,0,0),(118518,'2026-02-26',326,0,0,0,1,0,0,0,0,0,0,0,0),(118517,'2026-02-26',324,0,0,0,1,0,0,0,0,0,0,0,0),(118516,'2026-02-26',323,0,0,0,1,0,0,0,0,0,0,0,0),(118515,'2026-02-26',322,0,0,0,0,0,1,0,0,0,0,0,0),(118514,'2026-02-26',321,0,0,0,1,0,0,0,0,0,0,0,0),(118513,'2026-02-26',320,0,0,0,1,1,0,0,0,0,0,0,0),(118512,'2026-02-26',319,0,0,0,1,0,0,0,0,0,0,0,0),(118511,'2026-02-26',317,0,0,0,1,0,0,0,0,0,0,0,0),(118510,'2026-02-26',316,0,0,0,1,0,0,0,0,0,0,0,0),(118509,'2026-02-26',314,0,0,0,1,0,0,0,0,0,0,0,0),(118508,'2026-02-26',313,0,0,0,1,0,0,0,0,0,0,0,0),(118507,'2026-02-26',310,0,0,0,1,0,0,0,0,0,0,0,0),(118506,'2026-02-26',309,0,0,0,1,0,0,0,0,0,0,0,0),(118505,'2026-02-26',308,0,0,0,1,0,0,0,0,0,0,0,0),(118504,'2026-02-26',307,0,0,0,1,0,0,0,0,0,0,0,0),(118503,'2026-02-26',304,0,0,0,1,0,0,0,0,0,0,0,0),(118502,'2026-02-26',303,0,0,0,1,0,0,0,0,0,0,0,0),(118501,'2026-02-26',302,0,0,0,1,0,0,0,0,0,0,0,0),(118500,'2026-02-26',301,0,0,0,1,1,0,0,0,0,0,0,0),(118499,'2026-02-26',300,0,0,0,1,0,0,0,0,0,0,0,0),(118498,'2026-02-26',299,0,0,0,1,0,0,0,0,0,0,0,0),(118497,'2026-02-26',298,0,0,0,1,0,0,0,0,0,0,0,0),(118496,'2026-02-26',297,0,0,0,0,1,0,0,0,0,0,0,0),(118495,'2026-02-26',296,0,0,0,1,0,0,0,0,0,0,0,0),(118494,'2026-02-26',295,0,0,0,1,0,0,0,0,0,0,0,0),(118493,'2026-02-26',294,0,0,0,1,0,0,0,0,0,0,0,0),(118492,'2026-02-26',292,0,0,0,1,0,0,0,0,0,0,0,0),(118491,'2026-02-26',291,0,0,0,1,0,0,0,0,0,0,0,0),(118490,'2026-02-26',290,0,0,0,1,0,0,0,0,0,0,0,0),(118489,'2026-02-26',289,0,0,0,1,0,0,0,0,0,0,0,0),(118488,'2026-02-26',288,0,0,0,1,0,0,0,0,0,0,0,0),(118487,'2026-02-26',285,0,0,0,1,0,0,0,0,0,0,0,0),(118486,'2026-02-26',281,0,0,0,1,0,0,0,0,0,0,0,0),(118485,'2026-02-26',280,0,0,0,1,0,0,0,0,0,0,0,0),(118484,'2026-02-26',278,0,0,0,1,0,0,0,0,0,0,0,0),(118483,'2026-02-26',275,0,0,0,1,0,0,0,0,0,0,0,0),(118482,'2026-02-26',274,0,0,0,1,0,0,0,0,0,0,0,0),(118481,'2026-02-26',273,0,0,0,1,0,0,0,0,0,0,0,0),(118480,'2026-02-26',271,0,0,0,1,0,0,0,0,0,0,0,0),(118479,'2026-02-26',269,0,0,0,1,0,0,0,0,0,0,0,0),(118478,'2026-02-26',268,0,0,0,1,0,0,0,0,0,0,0,0),(118477,'2026-02-26',266,0,0,0,1,0,0,0,0,0,0,0,0),(118476,'2026-02-26',265,0,0,0,1,0,0,0,0,0,0,0,0),(118475,'2026-02-26',264,0,0,0,1,0,0,0,0,0,0,0,0),(118474,'2026-02-26',263,0,0,0,1,0,1,0,0,0,0,0,0),(118473,'2026-02-26',262,0,0,0,1,0,0,0,0,0,0,0,0),(118472,'2026-02-26',261,0,0,0,1,0,0,0,0,0,0,0,0),(118471,'2026-02-26',260,0,0,0,1,0,0,0,0,0,0,0,0),(118470,'2026-02-26',258,0,0,0,1,0,0,0,0,0,0,0,0),(118469,'2026-02-26',257,0,0,0,1,0,0,0,0,0,0,0,0),(118468,'2026-02-26',256,0,0,0,1,0,0,0,0,0,0,0,0),(118467,'2026-02-26',255,0,0,0,1,0,0,0,0,0,0,0,0),(118466,'2026-02-26',254,0,0,0,1,0,0,0,0,0,0,0,0),(118465,'2026-02-26',253,0,0,0,1,0,0,0,0,0,0,0,0),(118464,'2026-02-26',251,0,0,0,1,0,0,0,0,0,0,0,0),(118463,'2026-02-26',250,0,0,0,1,0,0,0,0,0,0,0,0),(118462,'2026-02-26',249,0,0,0,1,0,0,0,0,0,0,0,0),(118461,'2026-02-26',247,0,0,0,1,0,0,0,0,0,0,0,0),(118460,'2026-02-26',246,0,0,0,1,0,0,0,0,0,0,0,0),(118459,'2026-02-26',245,0,0,0,1,0,0,0,0,0,0,0,0),(118458,'2026-02-26',243,0,0,0,1,0,0,0,0,0,0,0,0),(118457,'2026-02-26',242,0,0,0,1,0,0,0,0,0,0,0,0),(118456,'2026-02-26',241,0,0,0,1,0,0,0,0,0,0,0,0),(118455,'2026-02-26',239,0,0,0,1,0,0,0,0,0,0,0,0),(118454,'2026-02-26',238,0,0,0,1,0,0,0,0,0,0,0,0),(118453,'2026-02-26',236,0,0,0,1,0,0,0,0,0,0,0,0),(118452,'2026-02-26',234,0,0,0,1,0,0,0,0,0,0,0,0),(118451,'2026-02-26',233,0,0,0,1,0,0,0,0,0,0,0,0),(118450,'2026-02-26',232,0,0,0,1,0,0,0,0,0,0,0,0),(118449,'2026-02-26',231,0,0,0,1,0,0,0,0,0,0,0,0),(118448,'2026-02-26',228,0,0,0,1,0,0,0,0,0,0,0,0),(118447,'2026-02-26',227,0,0,0,1,0,0,0,0,0,0,0,0),(118446,'2026-02-26',226,0,0,0,1,0,0,0,0,0,0,0,0),(118445,'2026-02-26',225,0,0,0,1,0,0,0,0,0,0,0,0),(118444,'2026-02-26',224,0,0,0,1,0,0,0,0,0,0,0,0),(118443,'2026-02-26',222,0,0,0,1,0,0,0,0,0,0,0,0),(118442,'2026-02-26',221,0,0,0,1,0,0,0,0,0,0,0,0),(118441,'2026-02-26',220,0,0,0,1,0,0,0,0,0,0,0,0),(118440,'2026-02-26',218,0,0,0,0,1,0,0,0,0,0,0,0),(118439,'2026-02-26',217,0,0,0,1,0,0,0,0,0,0,0,0),(118438,'2026-02-26',214,0,0,0,1,0,0,0,0,0,0,0,0),(118437,'2026-02-26',213,0,0,0,1,0,0,0,0,0,0,0,0),(118436,'2026-02-26',212,0,0,0,1,0,0,0,0,0,0,0,0),(118435,'2026-02-26',211,0,0,0,1,0,0,0,0,0,0,0,0),(118434,'2026-02-26',210,0,0,0,1,0,0,0,0,0,0,0,0),(118433,'2026-02-26',209,0,0,0,1,0,0,0,0,0,0,0,0),(118432,'2026-02-26',208,0,0,0,1,0,0,0,0,0,0,0,0),(118431,'2026-02-26',207,0,0,0,1,0,0,0,0,0,0,0,0),(118430,'2026-02-26',206,0,0,0,1,0,0,0,0,0,0,0,0),(118429,'2026-02-26',205,0,0,0,1,0,0,0,0,0,0,0,0),(118428,'2026-02-26',204,0,0,0,1,0,0,0,0,0,0,0,0),(118427,'2026-02-26',203,0,0,0,1,0,0,0,0,0,0,0,0),(118426,'2026-02-26',201,0,0,0,1,0,0,0,0,0,0,0,0),(118425,'2026-02-26',200,0,0,0,1,0,0,0,0,0,0,0,0),(118424,'2026-02-26',197,0,0,0,1,0,0,0,0,0,0,0,0),(118423,'2026-02-26',196,0,0,0,1,0,0,0,0,0,0,0,0),(118422,'2026-02-26',195,0,0,0,1,0,0,0,0,0,0,0,0),(118421,'2026-02-26',194,0,0,0,1,0,0,0,0,0,0,0,0),(118420,'2026-02-26',193,0,0,0,1,0,0,0,0,0,0,0,0),(118419,'2026-02-26',192,0,0,0,1,0,0,0,0,0,0,0,0),(118418,'2026-02-26',191,0,0,0,1,0,0,0,0,0,0,0,0),(118417,'2026-02-26',190,0,0,0,1,0,0,0,0,0,0,0,0),(118416,'2026-02-26',189,0,0,0,1,0,0,0,0,0,0,0,0),(118415,'2026-02-26',188,0,0,0,1,0,0,0,0,0,0,0,0),(118414,'2026-02-26',187,0,0,0,1,0,0,0,0,0,0,0,0),(118413,'2026-02-26',186,0,0,0,1,0,0,0,0,0,0,0,0),(118412,'2026-02-26',185,0,0,0,1,0,0,0,0,0,0,0,0),(118411,'2026-02-26',184,0,0,0,1,0,0,0,0,0,0,0,0),(118410,'2026-02-26',183,0,0,0,1,0,0,0,0,0,0,0,0),(118409,'2026-02-26',182,0,0,0,1,0,0,0,0,0,0,0,0),(118408,'2026-02-26',181,0,0,0,1,0,0,0,0,0,0,0,0),(118407,'2026-02-26',180,0,0,0,1,0,0,0,0,0,0,0,0),(118406,'2026-02-26',179,0,0,0,1,0,0,0,0,0,0,0,0),(118405,'2026-02-26',176,0,0,0,1,1,0,0,0,0,0,0,0),(118404,'2026-02-26',175,0,0,0,1,0,0,0,0,0,0,0,0),(118403,'2026-02-26',174,0,0,0,1,0,0,0,0,0,0,0,0),(118402,'2026-02-26',173,0,0,0,1,0,0,0,0,0,0,0,0),(118401,'2026-02-26',172,0,0,0,1,0,0,0,0,0,0,0,0),(118400,'2026-02-26',170,0,0,0,1,0,0,0,0,0,0,0,0),(118399,'2026-02-26',168,0,0,0,1,0,0,0,0,0,0,0,0),(118398,'2026-02-26',167,0,0,0,1,0,0,0,0,0,0,0,0),(118397,'2026-02-26',166,0,0,0,1,0,0,0,0,0,0,0,0),(118396,'2026-02-26',164,0,0,0,1,0,0,0,0,0,0,0,0),(118395,'2026-02-26',163,0,0,0,1,0,0,0,0,0,0,0,0),(118394,'2026-02-26',161,0,0,0,1,0,0,0,0,0,0,0,0),(118393,'2026-02-26',160,0,0,0,1,0,0,0,0,0,0,0,0),(118392,'2026-02-26',159,0,0,0,1,0,0,0,0,0,0,0,0),(118391,'2026-02-26',158,0,0,0,1,0,0,0,0,0,0,0,0),(118390,'2026-02-26',157,0,0,0,1,0,0,0,0,0,0,0,0),(118389,'2026-02-26',154,0,0,0,1,0,0,0,0,0,0,0,0),(118388,'2026-02-26',152,0,0,0,1,0,0,0,0,0,0,0,0),(118387,'2026-02-26',151,0,0,0,1,0,1,0,0,0,0,0,0),(118386,'2026-02-26',150,0,0,0,0,0,1,0,0,0,0,0,0),(118385,'2026-02-26',148,0,0,0,1,0,0,0,0,0,0,0,0),(118384,'2026-02-26',147,0,0,0,1,0,0,0,0,0,0,0,0),(118383,'2026-02-26',146,0,0,0,1,0,0,0,0,0,0,0,0),(118382,'2026-02-26',145,0,0,0,1,0,0,0,0,0,0,0,0),(118381,'2026-02-26',144,0,0,0,1,0,0,0,0,0,0,0,0),(118380,'2026-02-26',143,0,0,0,1,0,0,0,0,0,0,0,0),(118379,'2026-02-26',141,0,0,0,1,0,1,0,0,0,0,0,0),(118378,'2026-02-26',140,0,0,0,1,0,1,0,0,0,0,0,0),(118377,'2026-02-26',136,0,0,0,1,0,0,0,0,0,0,0,0),(118376,'2026-02-26',132,0,0,0,1,1,0,0,0,0,0,0,0),(118375,'2026-02-26',128,0,0,0,1,0,0,0,0,0,0,0,0),(118374,'2026-02-26',127,0,0,0,1,0,0,0,0,0,0,0,0),(118633,'2026-02-28',300,1,0,0,0,0,0,0,0,0,0,0,0),(118632,'2026-02-28',233,0,0,0,0,0,0,1,0,0,0,0,0),(118631,'2026-02-28',192,0,0,0,0,0,1,0,0,0,0,0,0),(118630,'2026-02-28',188,0,0,0,0,0,0,1,0,0,0,0,0),(118629,'2026-02-28',176,0,0,0,0,0,1,0,0,0,0,0,0),(118628,'2026-02-28',140,0,0,0,0,1,0,0,0,0,0,0,0),(118627,'2026-02-28',137,0,0,0,0,0,0,1,0,0,0,0,0),(118626,'2026-02-28',123,0,0,0,0,0,0,1,0,0,0,0,0),(118625,'2026-02-28',109,0,0,0,0,0,0,2,0,0,0,0,0),(118624,'2026-02-28',91,0,0,0,0,0,1,0,0,0,0,0,0),(118623,'2026-02-28',90,0,0,0,0,0,0,1,0,0,0,0,0),(118622,'2026-02-28',89,0,0,0,0,0,0,1,0,0,0,0,0),(118621,'2026-02-28',81,0,0,0,0,0,0,1,0,0,0,0,0),(118620,'2026-02-28',78,0,0,0,0,1,0,2,0,0,0,0,0),(118619,'2026-02-28',75,0,0,0,0,0,0,2,0,0,0,0,0),(118618,'2026-02-28',51,0,0,0,0,0,0,2,0,0,0,0,0),(118617,'2026-02-28',49,0,0,0,0,0,0,1,0,0,0,0,0),(118612,'2026-02-27',218,0,0,0,0,0,0,1,0,0,0,0,0),(116901,'2025-12-24',405,0,0,0,0,0,1,0,0,0,0,0,0),(116900,'2025-12-24',388,1,0,1,0,0,0,0,0,0,0,0,0),(116899,'2025-12-24',311,0,0,0,0,1,0,0,0,0,0,0,0),(116898,'2025-12-24',201,0,0,0,1,0,0,0,0,0,0,0,0),(116897,'2025-12-24',161,0,0,0,0,1,0,0,0,0,0,0,0),(116896,'2025-12-24',9,0,0,0,0,0,1,0,0,0,0,0,0),(118373,'2026-02-26',126,0,0,0,1,0,0,0,0,0,0,0,0),(118372,'2026-02-26',124,0,0,0,1,0,0,0,0,0,0,0,0),(118371,'2026-02-26',123,0,0,0,1,0,1,2,0,0,0,0,0),(118370,'2026-02-26',121,0,0,0,1,0,0,0,0,0,0,0,0),(118369,'2026-02-26',115,0,0,0,1,0,0,0,0,0,0,0,0),(118368,'2026-02-26',114,0,0,0,1,0,0,0,0,0,0,0,0),(118367,'2026-02-26',113,0,0,0,1,0,0,0,0,0,0,0,0),(118366,'2026-02-26',112,0,0,0,1,0,0,0,0,0,0,0,0),(118365,'2026-02-26',111,0,0,0,0,1,0,0,0,0,0,0,0),(118364,'2026-02-26',110,0,0,0,1,0,0,0,0,0,0,0,0),(118363,'2026-02-26',109,0,0,0,0,0,0,1,0,0,0,0,0),(118362,'2026-02-26',103,0,0,0,1,0,0,0,0,0,0,0,0),(118361,'2026-02-26',98,0,0,0,1,0,0,0,0,0,0,0,0),(118360,'2026-02-26',97,0,0,0,1,0,0,0,0,0,0,0,0),(118359,'2026-02-26',96,0,0,0,1,0,0,0,0,0,0,0,0),(118358,'2026-02-26',94,0,0,0,1,0,0,0,0,0,0,0,0),(118357,'2026-02-26',91,0,0,1,0,0,0,0,0,0,0,0,0),(116904,'2025-12-25',188,0,0,0,0,0,0,3,0,0,0,0,0),(116903,'2025-12-25',51,0,0,0,0,0,0,1,0,0,0,0,0),(116902,'2025-12-25',49,0,0,0,0,0,0,1,0,0,0,0,0),(117195,'2026-01-17',54,0,0,0,1,0,0,0,0,0,0,0,0),(117194,'2026-01-17',52,0,0,0,1,0,0,0,0,0,0,0,0),(117193,'2026-01-17',42,0,0,0,1,0,0,0,0,0,0,0,0),(117192,'2026-01-17',37,0,0,0,1,0,0,0,0,0,0,0,0),(117191,'2026-01-17',32,0,0,0,1,0,0,0,0,0,0,0,0),(117190,'2026-01-17',24,0,0,0,1,0,0,0,0,0,0,0,0),(117189,'2026-01-17',19,0,0,0,1,0,0,0,0,0,0,0,0),(117178,'2026-01-12',137,0,0,0,0,0,0,1,0,0,0,0,0),(117177,'2026-01-12',22,0,0,0,0,0,0,2,0,0,0,0,0),(117176,'2026-01-12',17,0,0,0,0,0,0,2,0,0,0,0,0),(117188,'2026-01-17',13,0,0,0,1,0,0,0,0,0,0,0,0),(117187,'2026-01-17',10,0,0,0,1,0,0,0,0,0,0,0,0),(117186,'2026-01-17',2,0,0,0,0,0,0,1,0,0,0,0,0),(117185,'2026-01-13',188,0,0,0,0,0,0,1,0,0,0,0,0),(117184,'2026-01-13',89,0,0,0,0,0,0,2,0,0,0,0,0),(117183,'2026-01-13',81,0,0,0,0,0,0,2,0,0,0,0,0),(117182,'2026-01-13',78,0,0,0,0,0,0,1,0,0,0,0,0),(117181,'2026-01-13',75,0,0,0,0,0,0,2,0,0,0,0,0),(117180,'2026-01-13',51,0,0,0,0,0,0,1,0,0,0,0,0),(117179,'2026-01-13',49,0,0,0,0,0,0,1,0,0,0,0,0),(117530,'2026-02-05',157,0,0,0,1,0,0,0,0,0,0,0,0),(117529,'2026-02-05',154,0,0,0,1,0,0,0,0,0,0,0,0),(117528,'2026-02-05',152,0,0,0,1,0,0,0,0,0,0,0,0),(117527,'2026-02-05',151,0,0,0,1,0,0,0,0,0,0,0,0),(117526,'2026-02-05',148,0,0,0,1,0,0,0,0,0,0,0,0),(117525,'2026-02-05',147,0,0,0,1,0,0,0,0,0,0,0,0),(117524,'2026-02-05',146,0,0,0,1,0,0,0,0,0,0,0,0),(117523,'2026-02-05',145,0,0,0,1,0,0,0,0,0,0,0,0),(117522,'2026-02-05',144,0,0,0,1,0,0,0,0,0,0,0,0),(117521,'2026-02-05',143,0,0,0,1,0,0,0,0,0,0,0,0),(117520,'2026-02-05',141,0,0,0,1,0,0,0,0,0,0,0,0),(117519,'2026-02-05',140,0,0,0,1,0,0,0,0,0,0,0,0),(117518,'2026-02-05',136,0,0,0,1,0,0,0,0,0,0,0,0),(117517,'2026-02-05',132,0,0,0,1,0,0,0,0,0,0,0,0),(117516,'2026-02-05',128,0,0,0,1,0,0,0,0,0,0,0,0),(117864,'2026-02-11',227,0,0,0,1,0,0,0,0,0,0,0,0),(117863,'2026-02-11',226,0,0,0,1,0,0,0,0,0,0,0,0),(117862,'2026-02-11',225,0,0,0,1,0,0,0,0,0,0,0,0),(117861,'2026-02-11',224,0,0,0,1,0,0,0,0,0,0,0,0),(117860,'2026-02-11',222,0,0,0,1,0,0,0,0,0,0,0,0),(117859,'2026-02-11',221,0,0,0,1,0,0,0,0,0,0,0,0),(117858,'2026-02-11',220,0,0,0,1,0,0,0,0,0,0,0,0),(117857,'2026-02-11',217,0,0,0,1,0,0,0,0,0,0,0,0),(117856,'2026-02-11',214,0,0,0,1,0,0,0,0,0,0,0,0),(117855,'2026-02-11',213,0,0,0,1,0,0,0,0,0,0,0,0),(117854,'2026-02-11',212,0,0,0,1,0,0,0,0,0,0,0,0),(117853,'2026-02-11',211,0,0,0,1,0,0,0,0,0,0,0,0),(117852,'2026-02-11',210,0,0,0,1,0,0,0,0,0,0,0,0),(117851,'2026-02-11',209,0,0,0,1,0,0,0,0,0,0,0,0),(117850,'2026-02-11',208,0,0,0,1,0,0,0,0,0,0,0,0),(117849,'2026-02-11',207,0,0,0,1,0,0,0,0,0,0,0,0),(117848,'2026-02-11',206,0,0,0,1,0,0,0,0,0,0,0,0),(117847,'2026-02-11',205,0,0,0,1,0,0,0,0,0,0,0,0),(117846,'2026-02-11',204,0,0,0,1,0,0,0,0,0,0,0,0),(117845,'2026-02-11',203,0,0,0,1,0,0,0,0,0,0,0,0),(117844,'2026-02-11',201,0,0,0,1,0,0,0,0,0,0,0,0),(117843,'2026-02-11',200,0,0,0,1,0,0,0,0,0,0,0,0),(117842,'2026-02-11',197,0,0,0,1,0,0,0,0,0,0,0,0),(117841,'2026-02-11',196,0,0,0,1,0,0,0,0,0,0,0,0),(117840,'2026-02-11',195,0,0,0,1,0,0,0,0,0,0,0,0),(117839,'2026-02-11',194,0,0,0,1,0,0,0,0,0,0,0,0),(117838,'2026-02-11',193,0,0,0,1,0,0,0,0,0,0,0,0),(117837,'2026-02-11',192,0,0,0,1,0,0,0,0,0,0,0,0),(117836,'2026-02-11',191,0,0,0,1,0,0,0,0,0,0,0,0),(117835,'2026-02-11',190,0,0,0,1,0,0,0,0,0,0,0,0),(117834,'2026-02-11',189,0,0,0,1,0,0,0,0,0,0,0,0),(117833,'2026-02-11',188,0,0,0,1,0,0,0,0,0,0,0,0),(117832,'2026-02-11',187,0,0,0,1,0,0,0,0,0,0,0,0),(117831,'2026-02-11',186,0,0,0,1,0,0,0,0,0,0,0,0),(117830,'2026-02-11',185,0,0,0,1,0,0,0,0,0,0,0,0),(117829,'2026-02-11',184,0,0,0,1,0,0,0,0,0,0,0,0),(117828,'2026-02-11',183,0,0,0,1,0,0,0,0,0,0,0,0),(117827,'2026-02-11',182,0,0,0,1,0,0,0,0,0,0,0,0),(117826,'2026-02-11',181,0,0,0,1,0,0,0,0,0,0,0,0),(117825,'2026-02-11',180,0,0,0,1,0,0,0,0,0,0,0,0),(117824,'2026-02-11',179,0,0,0,1,0,0,0,0,0,0,0,0),(117823,'2026-02-11',176,0,0,0,1,0,0,0,0,0,0,0,0),(117822,'2026-02-11',175,0,0,0,1,0,0,0,0,0,0,0,0),(117821,'2026-02-11',174,0,0,0,1,0,0,0,0,0,0,0,0),(117820,'2026-02-11',173,0,0,0,1,0,0,0,0,0,0,0,0),(117819,'2026-02-11',172,0,0,0,1,0,0,0,0,0,0,0,0),(117818,'2026-02-11',170,0,0,0,1,0,0,0,0,0,0,0,0),(117817,'2026-02-11',168,0,0,0,1,0,0,0,0,0,0,0,0),(117816,'2026-02-11',167,0,0,0,1,0,0,0,0,0,0,0,0),(117815,'2026-02-11',166,0,0,0,1,0,0,0,0,0,0,0,0),(117814,'2026-02-11',164,0,0,0,1,0,0,0,0,0,0,0,0),(117813,'2026-02-11',163,0,0,0,1,0,0,0,0,0,0,0,0),(117812,'2026-02-11',161,0,0,0,1,0,0,0,0,0,0,0,0),(117811,'2026-02-11',160,0,0,0,1,0,0,0,0,0,0,0,0),(117810,'2026-02-11',159,0,0,0,1,0,0,0,0,0,0,0,0),(117809,'2026-02-11',158,0,0,0,1,0,0,0,0,0,0,0,0),(117808,'2026-02-11',157,0,0,0,1,0,0,0,0,0,0,0,0),(117807,'2026-02-11',154,0,0,0,1,0,0,0,0,0,0,0,0),(117806,'2026-02-11',152,0,0,0,1,0,0,0,0,0,0,0,0),(117805,'2026-02-11',151,0,0,0,1,0,0,0,0,0,0,0,0),(117804,'2026-02-11',148,0,0,0,1,0,0,0,0,0,0,0,0),(117803,'2026-02-11',147,0,0,0,1,0,0,0,0,0,0,0,0),(117802,'2026-02-11',146,0,0,0,1,0,0,0,0,0,0,0,0),(117801,'2026-02-11',145,0,0,0,1,0,0,0,0,0,0,0,0),(117800,'2026-02-11',144,0,0,0,1,0,0,0,0,0,0,0,0),(117799,'2026-02-11',143,0,0,0,1,0,0,0,0,0,0,0,0),(117798,'2026-02-11',141,0,0,0,1,0,0,0,0,0,0,0,0),(117797,'2026-02-11',140,0,0,0,1,0,0,0,0,0,0,0,0),(117796,'2026-02-11',139,0,0,0,0,0,1,0,0,0,0,0,0),(117795,'2026-02-11',137,0,0,0,0,1,0,0,0,0,0,0,0),(117794,'2026-02-11',136,0,0,0,1,0,0,0,0,0,0,0,0),(117793,'2026-02-11',132,0,0,0,1,0,0,0,0,0,0,0,0),(117792,'2026-02-11',128,0,0,0,1,0,0,0,0,0,0,0,0),(117791,'2026-02-11',127,0,0,0,1,0,0,0,0,0,0,0,0),(117790,'2026-02-11',126,0,0,0,1,0,0,0,0,0,0,0,0),(117789,'2026-02-11',124,0,0,0,1,0,0,0,0,0,0,0,0),(117788,'2026-02-11',123,0,0,0,1,0,0,0,0,0,0,0,0),(117787,'2026-02-11',121,0,0,0,1,0,0,0,0,0,0,0,0),(117786,'2026-02-11',115,0,0,0,1,0,0,0,0,0,0,0,0),(117785,'2026-02-11',114,0,0,0,1,0,0,0,0,0,0,0,0),(117784,'2026-02-11',113,0,0,0,1,0,0,0,0,0,0,0,0),(117783,'2026-02-11',112,0,0,0,1,0,0,0,0,0,0,0,0),(117782,'2026-02-11',110,0,0,0,1,0,0,0,0,0,0,0,0),(117781,'2026-02-11',103,0,0,0,1,0,0,0,0,0,0,0,0),(117780,'2026-02-11',98,0,0,0,1,0,0,0,0,0,0,0,0),(117779,'2026-02-11',97,0,0,0,1,0,0,0,0,0,0,0,0),(117778,'2026-02-11',96,0,0,0,1,0,0,0,0,0,0,0,0),(117777,'2026-02-11',94,0,0,0,1,0,0,0,0,0,0,0,0),(117776,'2026-02-11',91,0,0,1,0,0,0,0,0,0,0,0,0),(117775,'2026-02-11',90,0,0,0,1,0,0,0,0,0,0,0,0),(117774,'2026-02-11',87,0,0,0,1,0,0,0,0,0,0,0,0),(117773,'2026-02-11',79,0,0,0,1,0,0,0,0,0,0,0,0),(117772,'2026-02-11',75,0,0,0,0,1,0,0,0,0,0,0,0),(117771,'2026-02-11',70,0,0,0,1,0,0,0,0,0,0,0,0),(117770,'2026-02-11',69,0,0,0,1,0,0,0,0,0,0,0,0),(117769,'2026-02-11',68,0,0,0,1,0,0,0,0,0,0,0,0),(117768,'2026-02-11',67,0,0,0,1,0,0,0,0,0,0,0,0),(117767,'2026-02-11',66,0,0,0,1,0,0,0,0,0,0,0,0),(117766,'2026-02-11',65,0,0,0,1,0,0,0,0,0,0,0,0),(117765,'2026-02-11',64,0,0,0,1,0,0,0,0,0,0,0,0),(117764,'2026-02-11',63,0,0,0,1,0,0,0,0,0,0,0,0),(117449,'2026-01-18',1,0,0,0,0,1,0,0,0,0,0,0,0),(117763,'2026-02-11',61,0,0,0,1,0,0,0,0,0,0,0,0),(117762,'2026-02-11',58,0,0,0,1,0,0,0,0,0,0,0,0),(117761,'2026-02-11',54,0,0,0,1,0,0,0,0,0,0,0,0),(117760,'2026-02-11',52,0,0,0,1,0,0,0,0,0,0,0,0),(117759,'2026-02-11',42,0,0,0,1,0,0,0,0,0,0,0,0),(117758,'2026-02-11',37,0,0,0,1,0,0,0,0,0,0,0,0),(117757,'2026-02-11',32,0,0,0,1,0,0,0,0,0,0,0,0),(117756,'2026-02-11',24,0,0,0,1,0,0,0,0,0,0,0,0),(117755,'2026-02-11',20,0,0,0,0,0,1,0,0,0,0,0,0),(117754,'2026-02-11',19,0,0,0,1,0,0,0,0,0,0,0,0),(117753,'2026-02-11',13,0,0,0,1,0,0,0,0,0,0,0,0),(117749,'2026-02-06',281,0,0,0,0,0,1,0,0,0,0,0,0),(117748,'2026-02-06',120,0,0,0,0,0,1,0,0,0,0,0,0),(117747,'2026-02-06',54,1,0,0,0,0,0,0,0,0,0,0,0),(117746,'2026-02-06',5,0,0,0,0,1,0,0,0,0,0,0,0),(117745,'2026-02-06',2,0,0,0,0,1,0,0,0,0,0,0,0),(117744,'2026-02-05',628,0,0,0,1,0,0,0,0,0,0,0,0),(117743,'2026-02-05',621,0,0,0,1,0,0,0,0,0,0,0,0),(117742,'2026-02-05',584,0,0,0,1,0,0,0,0,0,0,0,0),(117868,'2026-02-11',233,0,0,0,1,0,0,0,0,0,0,0,0),(117867,'2026-02-11',232,0,0,0,1,0,0,0,0,0,0,0,0),(117866,'2026-02-11',231,0,0,0,1,0,0,0,0,0,0,0,0),(117865,'2026-02-11',228,0,0,0,1,0,0,0,0,0,0,0,0),(117741,'2026-02-05',560,0,0,0,1,0,0,0,0,0,0,0,0),(117740,'2026-02-05',539,0,0,0,1,0,0,0,0,0,0,0,0),(117739,'2026-02-05',537,0,0,0,1,0,0,0,0,0,0,0,0),(117738,'2026-02-05',536,0,0,0,1,0,0,0,0,0,0,0,0),(117737,'2026-02-05',456,0,0,0,1,0,0,0,0,0,0,0,0),(117736,'2026-02-05',452,0,0,0,1,0,0,0,0,0,0,0,0),(117735,'2026-02-05',451,0,0,0,1,0,0,0,0,0,0,0,0),(117734,'2026-02-05',448,0,0,0,1,0,0,0,0,0,0,0,0),(117733,'2026-02-05',446,0,0,0,1,0,0,0,0,0,0,0,0),(117732,'2026-02-05',445,0,0,0,1,0,0,0,0,0,0,0,0),(117731,'2026-02-05',443,0,0,0,1,0,0,0,0,0,0,0,0),(117730,'2026-02-05',441,0,0,0,1,0,0,0,0,0,0,0,0),(117729,'2026-02-05',440,0,0,0,1,0,0,0,0,0,0,0,0),(117728,'2026-02-05',439,0,0,0,1,0,0,0,0,0,0,0,0),(117727,'2026-02-05',438,0,0,0,1,0,0,0,0,0,0,0,0),(117726,'2026-02-05',435,0,0,0,1,0,0,0,0,0,0,0,0),(117725,'2026-02-05',434,0,0,0,1,0,0,0,0,0,0,0,0),(117724,'2026-02-05',433,0,0,0,1,0,0,0,0,0,0,0,0),(117723,'2026-02-05',432,0,0,0,1,0,0,0,0,0,0,0,0),(117722,'2026-02-05',431,0,0,0,1,0,0,0,0,0,0,0,0),(117721,'2026-02-05',430,0,0,0,1,0,0,0,0,0,0,0,0),(117720,'2026-02-05',428,0,0,0,1,0,0,0,0,0,0,0,0),(117719,'2026-02-05',426,0,0,0,1,0,0,0,0,0,0,0,0),(117718,'2026-02-05',423,0,0,0,1,0,0,0,0,0,0,0,0),(117717,'2026-02-05',422,0,0,0,1,0,0,0,0,0,0,0,0),(117716,'2026-02-05',420,0,0,0,1,0,0,0,0,0,0,0,0),(117715,'2026-02-05',417,0,0,0,1,0,0,0,0,0,0,0,0),(117714,'2026-02-05',414,0,0,0,1,0,0,0,0,0,0,0,0),(117713,'2026-02-05',413,0,0,0,1,0,0,0,0,0,0,0,0),(117712,'2026-02-05',412,0,0,0,1,0,0,0,0,0,0,0,0),(117711,'2026-02-05',410,0,0,0,1,0,0,0,0,0,0,0,0),(117710,'2026-02-05',408,0,0,0,1,0,0,0,0,0,0,0,0),(117709,'2026-02-05',407,0,0,0,1,0,0,0,0,0,0,0,0),(117708,'2026-02-05',405,0,0,0,1,0,0,0,0,0,0,0,0),(117707,'2026-02-05',403,0,0,0,1,0,0,0,0,0,0,0,0),(117706,'2026-02-05',401,0,0,0,1,0,0,0,0,0,0,0,0),(117705,'2026-02-05',400,0,0,0,1,0,0,0,0,0,0,0,0),(117704,'2026-02-05',396,0,0,0,1,0,0,0,0,0,0,0,0),(117703,'2026-02-05',395,0,0,0,1,0,0,0,0,0,0,0,0),(117702,'2026-02-05',393,0,0,0,1,0,0,0,0,0,0,0,0),(117701,'2026-02-05',392,0,0,0,1,0,0,0,0,0,0,0,0),(117700,'2026-02-05',391,0,0,0,1,0,0,0,0,0,0,0,0),(117699,'2026-02-05',390,0,0,0,1,0,0,0,0,0,0,0,0),(117698,'2026-02-05',388,0,0,0,1,0,0,0,0,0,0,0,0),(117697,'2026-02-05',387,0,0,0,1,0,0,0,0,0,0,0,0),(117696,'2026-02-05',385,0,0,0,1,0,0,0,0,0,0,0,0),(117695,'2026-02-05',384,0,0,0,1,0,0,0,0,0,0,0,0),(117694,'2026-02-05',382,0,0,0,1,0,0,0,0,0,0,0,0),(117693,'2026-02-05',381,0,0,0,1,0,0,0,0,0,0,0,0),(117692,'2026-02-05',378,0,0,0,1,0,0,0,0,0,0,0,0),(117691,'2026-02-05',377,0,0,0,1,0,0,0,0,0,0,0,0),(117690,'2026-02-05',376,0,0,0,1,0,0,0,0,0,0,0,0),(117689,'2026-02-05',375,0,0,0,1,0,0,0,0,0,0,0,0),(117688,'2026-02-05',372,0,0,0,1,0,0,0,0,0,0,0,0),(117687,'2026-02-05',371,0,0,0,1,0,0,0,0,0,0,0,0),(117686,'2026-02-05',367,0,0,0,1,0,0,0,0,0,0,0,0),(117685,'2026-02-05',365,0,0,0,1,0,0,0,0,0,0,0,0),(117684,'2026-02-05',364,0,0,0,1,0,0,0,0,0,0,0,0),(117683,'2026-02-05',363,0,0,0,1,0,0,0,0,0,0,0,0),(117682,'2026-02-05',361,0,0,0,1,0,0,0,0,0,0,0,0),(117681,'2026-02-05',360,0,0,0,1,0,0,0,0,0,0,0,0),(117680,'2026-02-05',359,0,0,0,1,0,0,0,0,0,0,0,0),(117679,'2026-02-05',357,0,0,0,1,0,0,0,0,0,0,0,0),(117678,'2026-02-05',353,0,0,0,1,0,0,0,0,0,0,0,0),(117677,'2026-02-05',352,0,0,0,1,0,0,0,0,0,0,0,0),(117676,'2026-02-05',351,0,0,0,1,0,0,0,0,0,0,0,0),(117675,'2026-02-05',348,0,0,0,1,0,0,0,0,0,0,0,0),(117674,'2026-02-05',347,0,0,0,1,0,0,0,0,0,0,0,0),(117673,'2026-02-05',346,0,0,0,1,0,0,0,0,0,0,0,0),(117672,'2026-02-05',345,0,0,0,1,0,0,0,0,0,0,0,0),(117671,'2026-02-05',344,0,0,0,1,0,0,0,0,0,0,0,0),(117670,'2026-02-05',341,0,0,0,1,0,0,0,0,0,0,0,0),(117669,'2026-02-05',340,0,0,0,1,0,0,0,0,0,0,0,0),(117668,'2026-02-05',339,0,0,0,1,0,0,0,0,0,0,0,0),(117667,'2026-02-05',338,0,0,0,1,0,0,0,0,0,0,0,0),(117666,'2026-02-05',337,0,0,0,1,0,0,0,0,0,0,0,0),(117665,'2026-02-05',336,0,0,0,1,0,0,0,0,0,0,0,0),(117664,'2026-02-05',335,0,0,0,1,0,0,0,0,0,0,0,0),(117663,'2026-02-05',334,0,0,0,1,0,0,0,0,0,0,0,0),(117662,'2026-02-05',333,0,0,0,1,0,0,0,0,0,0,0,0),(117661,'2026-02-05',332,0,0,0,1,0,0,0,0,0,0,0,0),(117660,'2026-02-05',331,0,0,0,1,0,0,0,0,0,0,0,0),(117659,'2026-02-05',330,0,0,0,1,0,0,0,0,0,0,0,0),(117658,'2026-02-05',329,0,0,0,1,0,0,0,0,0,0,0,0),(117657,'2026-02-05',328,0,0,0,1,0,0,0,0,0,0,0,0),(117656,'2026-02-05',327,0,0,1,0,0,0,0,0,0,0,0,0),(117655,'2026-02-05',326,0,0,0,1,0,0,0,0,0,0,0,0),(117654,'2026-02-05',324,0,0,0,1,0,0,0,0,0,0,0,0),(117653,'2026-02-05',323,0,0,0,1,0,0,0,0,0,0,0,0),(117652,'2026-02-05',321,0,0,0,1,0,0,0,0,0,0,0,0),(117651,'2026-02-05',320,0,0,0,1,0,0,0,0,0,0,0,0),(117650,'2026-02-05',319,0,0,0,1,0,0,0,0,0,0,0,0),(117649,'2026-02-05',317,0,0,0,1,0,0,0,0,0,0,0,0),(117648,'2026-02-05',316,0,0,0,1,0,0,0,0,0,0,0,0),(117647,'2026-02-05',314,0,0,0,1,0,0,0,0,0,0,0,0),(117646,'2026-02-05',313,0,0,0,1,0,0,0,0,0,0,0,0),(117645,'2026-02-05',310,0,0,0,1,0,0,0,0,0,0,0,0),(117644,'2026-02-05',309,0,0,0,1,0,0,0,0,0,0,0,0),(117643,'2026-02-05',308,0,0,0,1,0,0,0,0,0,0,0,0),(117642,'2026-02-05',307,0,0,0,1,0,0,0,0,0,0,0,0),(117641,'2026-02-05',304,0,0,0,1,0,0,0,0,0,0,0,0),(117640,'2026-02-05',303,0,0,0,1,0,0,0,0,0,0,0,0),(117639,'2026-02-05',302,0,0,0,1,0,0,0,0,0,0,0,0),(117638,'2026-02-05',301,0,0,0,1,0,0,0,0,0,0,0,0),(117637,'2026-02-05',300,0,0,0,1,0,0,0,0,0,0,0,0),(117636,'2026-02-05',299,0,0,0,1,0,0,0,0,0,0,0,0),(117635,'2026-02-05',298,0,0,0,1,0,0,0,0,0,0,0,0),(117634,'2026-02-05',296,0,0,0,1,0,0,0,0,0,0,0,0),(117633,'2026-02-05',295,0,0,0,1,0,0,0,0,0,0,0,0),(117632,'2026-02-05',294,0,0,0,1,0,0,0,0,0,0,0,0),(117631,'2026-02-05',292,0,0,0,1,0,0,0,0,0,0,0,0),(117630,'2026-02-05',291,0,0,0,1,0,0,0,0,0,0,0,0),(117629,'2026-02-05',290,0,0,0,1,0,0,0,0,0,0,0,0),(117628,'2026-02-05',289,0,0,0,1,0,0,0,0,0,0,0,0),(117627,'2026-02-05',288,0,0,0,1,0,0,0,0,0,0,0,0),(117626,'2026-02-05',285,0,0,0,1,0,0,0,0,0,0,0,0),(117625,'2026-02-05',281,0,0,0,1,0,0,0,0,0,0,0,0),(117624,'2026-02-05',280,0,0,0,1,0,0,0,0,0,0,0,0),(117623,'2026-02-05',278,0,0,0,1,0,0,0,0,0,0,0,0),(117622,'2026-02-05',275,0,0,0,1,0,0,0,0,0,0,0,0),(117621,'2026-02-05',274,0,0,0,1,0,0,0,0,0,0,0,0),(117620,'2026-02-05',273,0,0,0,1,0,0,0,0,0,0,0,0),(117619,'2026-02-05',271,0,0,0,1,0,0,0,0,0,0,0,0),(117618,'2026-02-05',269,0,0,0,1,0,0,0,0,0,0,0,0),(117617,'2026-02-05',268,0,0,0,1,0,0,0,0,0,0,0,0),(117616,'2026-02-05',266,0,0,0,1,0,0,0,0,0,0,0,0),(117615,'2026-02-05',265,0,0,0,1,0,0,0,0,0,0,0,0),(117614,'2026-02-05',264,0,0,0,1,0,0,0,0,0,0,0,0),(117613,'2026-02-05',263,0,0,0,1,0,0,0,0,0,0,0,0),(117612,'2026-02-05',262,0,0,0,1,0,0,0,0,0,0,0,0),(117611,'2026-02-05',261,0,0,0,1,0,0,0,0,0,0,0,0),(117610,'2026-02-05',260,0,0,0,1,0,0,0,0,0,0,0,0),(117609,'2026-02-05',258,0,0,0,1,0,0,0,0,0,0,0,0),(117608,'2026-02-05',257,0,0,0,1,0,0,0,0,0,0,0,0),(117607,'2026-02-05',256,0,0,0,1,0,0,0,0,0,0,0,0),(117606,'2026-02-05',255,0,0,0,1,0,0,0,0,0,0,0,0),(117605,'2026-02-05',254,0,0,0,1,0,0,0,0,0,0,0,0),(117604,'2026-02-05',253,0,0,0,1,0,0,0,0,0,0,0,0),(117603,'2026-02-05',251,0,0,0,1,0,0,0,0,0,0,0,0),(117602,'2026-02-05',250,0,0,0,1,0,0,0,0,0,0,0,0),(117601,'2026-02-05',249,0,0,0,1,0,0,0,0,0,0,0,0),(117600,'2026-02-05',247,0,0,0,1,0,0,0,0,0,0,0,0),(117599,'2026-02-05',246,0,0,0,1,0,0,0,0,0,0,0,0),(117598,'2026-02-05',245,0,0,0,1,0,0,0,0,0,0,0,0),(117597,'2026-02-05',243,0,0,0,1,0,0,0,0,0,0,0,0),(117596,'2026-02-05',242,0,0,0,1,0,0,0,0,0,0,0,0),(117595,'2026-02-05',241,0,0,0,1,0,0,0,0,0,0,0,0),(117594,'2026-02-05',239,0,0,0,1,0,0,0,0,0,0,0,0),(117593,'2026-02-05',238,0,0,0,1,0,0,0,0,0,0,0,0),(117592,'2026-02-05',236,0,0,0,1,0,0,0,0,0,0,0,0),(117591,'2026-02-05',234,0,0,0,1,0,0,0,0,0,0,0,0),(117590,'2026-02-05',233,0,0,0,1,0,0,0,0,0,0,0,0),(117589,'2026-02-05',232,0,0,0,1,0,0,0,0,0,0,0,0),(117588,'2026-02-05',231,0,0,0,1,0,0,0,0,0,0,0,0),(117587,'2026-02-05',228,0,0,0,1,0,0,0,0,0,0,0,0),(117586,'2026-02-05',227,0,0,0,1,0,0,0,0,0,0,0,0),(117585,'2026-02-05',226,0,0,0,1,0,0,0,0,0,0,0,0),(117584,'2026-02-05',225,0,0,0,1,0,0,0,0,0,0,0,0),(117583,'2026-02-05',224,0,0,0,1,0,0,0,0,0,0,0,0),(117582,'2026-02-05',222,0,0,0,1,0,0,0,0,0,0,0,0),(117581,'2026-02-05',221,0,0,0,1,0,0,0,0,0,0,0,0),(117580,'2026-02-05',220,0,0,0,1,0,0,0,0,0,0,0,0),(117579,'2026-02-05',217,0,0,0,1,0,0,0,0,0,0,0,0),(117578,'2026-02-05',214,0,0,0,1,0,0,0,0,0,0,0,0),(117577,'2026-02-05',213,0,0,0,1,0,0,0,0,0,0,0,0),(117576,'2026-02-05',212,0,0,0,1,0,0,0,0,0,0,0,0),(117575,'2026-02-05',211,0,0,0,1,0,0,0,0,0,0,0,0),(117574,'2026-02-05',210,0,0,0,1,0,0,0,0,0,0,0,0),(117573,'2026-02-05',209,0,0,0,1,0,0,0,0,0,0,0,0),(117572,'2026-02-05',208,0,0,0,1,0,0,0,0,0,0,0,0),(117571,'2026-02-05',207,0,0,0,1,0,0,0,0,0,0,0,0),(117570,'2026-02-05',206,0,0,0,1,0,0,0,0,0,0,0,0),(117569,'2026-02-05',205,0,0,0,1,0,0,0,0,0,0,0,0),(117568,'2026-02-05',204,0,0,0,1,0,0,0,0,0,0,0,0),(117567,'2026-02-05',203,0,0,0,1,0,0,0,0,0,0,0,0),(117566,'2026-02-05',201,0,0,0,1,0,0,0,0,0,0,0,0),(117565,'2026-02-05',200,0,0,0,1,0,0,0,0,0,0,0,0),(117564,'2026-02-05',197,0,0,0,1,0,0,0,0,0,0,0,0),(117563,'2026-02-05',196,0,0,0,1,0,0,0,0,0,0,0,0),(117562,'2026-02-05',195,0,0,0,1,0,0,0,0,0,0,0,0),(117561,'2026-02-05',194,0,0,0,1,0,0,0,0,0,0,0,0),(117560,'2026-02-05',193,0,0,0,1,0,0,0,0,0,0,0,0),(117559,'2026-02-05',192,0,0,0,1,0,0,0,0,0,0,0,0),(117558,'2026-02-05',191,0,0,0,1,0,0,0,0,0,0,0,0),(117557,'2026-02-05',190,0,0,0,1,0,0,0,0,0,0,0,0),(117556,'2026-02-05',189,0,0,0,1,0,0,0,0,0,0,0,0),(117555,'2026-02-05',188,0,0,0,1,0,0,0,0,0,0,0,0),(117554,'2026-02-05',187,0,0,0,1,0,0,0,0,0,0,0,0),(117553,'2026-02-05',186,0,0,0,1,0,0,0,0,0,0,0,0),(117552,'2026-02-05',185,0,0,0,1,0,0,0,0,0,0,0,0),(117551,'2026-02-05',184,0,0,0,1,0,0,0,0,0,0,0,0),(117550,'2026-02-05',183,0,0,0,1,0,0,0,0,0,0,0,0),(117549,'2026-02-05',182,0,0,0,1,0,0,0,0,0,0,0,0),(117548,'2026-02-05',181,0,0,0,1,0,0,0,0,0,0,0,0),(117547,'2026-02-05',180,0,0,0,1,0,0,0,0,0,0,0,0),(117546,'2026-02-05',179,0,0,0,1,0,0,0,0,0,0,0,0),(117545,'2026-02-05',176,0,0,0,1,0,0,0,0,0,0,0,0),(117544,'2026-02-05',175,0,0,0,1,0,0,0,0,0,0,0,0),(117543,'2026-02-05',174,0,0,0,1,0,0,0,0,0,0,0,0),(117542,'2026-02-05',173,0,0,0,1,0,0,0,0,0,0,0,0),(117541,'2026-02-05',172,0,0,0,1,0,0,0,0,0,0,0,0),(117540,'2026-02-05',170,0,0,0,1,0,0,0,0,0,0,0,0),(117539,'2026-02-05',168,0,0,0,1,0,0,0,0,0,0,0,0),(117538,'2026-02-05',167,0,0,0,1,0,0,0,0,0,0,0,0),(117537,'2026-02-05',166,0,0,0,1,0,0,0,0,0,0,0,0),(117536,'2026-02-05',164,0,0,0,1,0,0,0,0,0,0,0,0),(117535,'2026-02-05',163,0,0,0,1,0,0,0,0,0,0,0,0),(117534,'2026-02-05',161,0,0,0,1,0,0,0,0,0,0,0,0),(117533,'2026-02-05',160,0,0,0,1,0,0,0,0,0,0,0,0),(117532,'2026-02-05',159,0,0,0,1,0,0,0,0,0,0,0,0),(117531,'2026-02-05',158,0,0,0,1,0,0,0,0,0,0,0,0),(117457,'2026-01-20',9,0,0,0,0,0,0,2,0,0,0,0,0),(117456,'2026-01-20',5,0,0,0,0,0,0,2,0,0,0,0,0),(117455,'2026-01-20',1,0,0,0,0,0,0,1,0,0,0,0,0),(117515,'2026-02-05',127,0,0,0,1,0,0,0,0,0,0,0,0),(117514,'2026-02-05',126,0,0,0,1,0,0,0,0,0,0,0,0),(117513,'2026-02-05',124,0,0,0,1,0,0,0,0,0,0,0,0),(117512,'2026-02-05',123,0,0,0,1,0,0,0,0,0,0,0,0),(117511,'2026-02-05',121,0,0,0,1,0,0,0,0,0,0,0,0),(117510,'2026-02-05',115,0,0,0,1,0,0,0,0,0,0,0,0),(117509,'2026-02-05',114,0,0,0,1,0,0,0,0,0,0,0,0),(117508,'2026-02-05',113,0,0,0,1,0,0,0,0,0,0,0,0),(117507,'2026-02-05',112,0,0,0,1,0,0,0,0,0,0,0,0),(117506,'2026-02-05',110,0,0,0,1,0,0,0,0,0,0,0,0),(117505,'2026-02-05',103,0,0,0,1,0,0,0,0,0,0,0,0),(117462,'2026-01-21',137,0,0,0,0,0,0,1,0,0,0,0,0),(117461,'2026-01-21',90,0,0,0,0,0,0,1,0,0,0,0,0),(117460,'2026-01-21',49,0,0,0,0,0,0,1,0,0,0,0,0),(117459,'2026-01-21',22,0,0,0,0,0,0,1,0,0,0,0,0),(117458,'2026-01-21',17,0,0,0,0,0,0,1,0,0,0,0,0),(117504,'2026-02-05',98,0,0,0,1,0,0,0,0,0,0,0,0),(117503,'2026-02-05',97,0,0,0,1,0,0,0,0,0,0,0,0),(117502,'2026-02-05',96,0,0,0,1,0,0,0,0,0,0,0,0),(117501,'2026-02-05',94,0,0,0,1,0,0,0,0,0,0,0,0),(117500,'2026-02-05',91,0,0,0,1,0,0,0,0,0,0,0,0),(117499,'2026-02-05',90,0,0,0,1,0,0,0,0,0,0,0,0),(117498,'2026-02-05',87,0,0,0,1,0,0,0,0,0,0,0,0),(117497,'2026-02-05',79,0,0,0,1,0,0,0,0,0,0,0,0),(117492,'2026-02-05',66,0,0,0,1,0,0,0,0,0,0,0,0),(117496,'2026-02-05',70,0,0,0,1,0,0,0,0,0,0,0,0),(117495,'2026-02-05',69,0,0,0,1,0,0,0,0,0,0,0,0),(117494,'2026-02-05',68,0,0,0,1,0,0,0,0,0,0,0,0),(117493,'2026-02-05',67,0,0,0,1,0,0,0,0,0,0,0,0),(117491,'2026-02-05',65,0,0,0,1,0,0,0,0,0,0,0,0),(117490,'2026-02-05',64,0,0,0,1,0,0,0,0,0,0,0,0),(117489,'2026-02-05',63,0,0,0,1,0,0,0,0,0,0,0,0),(117464,'2026-01-24',75,0,0,0,0,0,0,1,0,0,0,0,0),(117463,'2026-01-24',51,0,0,0,0,0,0,4,0,0,0,0,0),(117483,'2026-02-05',37,0,0,0,1,0,0,0,0,0,0,0,0),(117482,'2026-02-05',32,0,0,0,1,0,0,0,0,0,0,0,0),(117481,'2026-02-05',24,0,0,0,1,0,0,0,0,0,0,0,0),(117480,'2026-02-05',19,0,0,0,1,0,0,0,0,0,0,0,0),(117479,'2026-02-05',17,0,0,0,0,0,0,2,0,0,0,0,0),(117468,'2026-01-26',188,0,0,0,0,0,0,1,0,0,0,0,0),(117467,'2026-01-26',89,0,0,0,0,0,0,1,0,0,0,0,0),(117466,'2026-01-26',81,0,0,0,0,0,0,2,0,0,0,0,0),(117465,'2026-01-26',78,0,0,0,0,0,0,1,0,0,0,0,0),(117485,'2026-02-05',52,0,0,0,1,0,0,0,0,0,0,0,0),(117484,'2026-02-05',42,0,0,0,1,0,0,0,0,0,0,0,0),(117473,'2026-01-31',218,0,0,0,0,0,0,5,0,0,0,0,0),(117488,'2026-02-05',61,0,0,0,1,0,0,0,0,0,0,0,0),(117487,'2026-02-05',58,0,0,0,1,0,0,0,0,0,0,0,0),(117486,'2026-02-05',54,0,0,0,1,0,0,0,0,0,0,0,0),(117472,'2026-01-28',233,0,0,0,0,0,0,2,0,0,0,0,0),(117471,'2026-01-28',123,0,0,0,0,0,0,1,0,0,0,0,0),(117470,'2026-01-28',109,0,0,0,0,0,0,1,0,0,0,0,0),(117469,'2026-01-28',2,0,0,0,0,0,0,1,0,0,0,0,0),(117475,'2026-02-05',5,0,0,0,0,0,0,1,0,0,0,0,0),(117474,'2026-02-05',1,0,0,0,0,0,0,1,0,0,0,0,0),(117478,'2026-02-05',13,0,0,0,1,0,0,0,0,0,0,0,0),(117477,'2026-02-05',10,0,0,0,1,0,0,0,0,0,0,0,0),(117476,'2026-02-05',9,0,0,0,0,0,0,1,0,0,0,0,0),(117752,'2026-02-11',10,0,0,0,1,0,0,0,0,0,0,0,0),(117751,'2026-02-11',9,0,0,0,0,1,0,0,0,0,0,0,0),(117750,'2026-02-11',8,0,0,0,0,1,0,0,0,0,0,0,0),(119562,'2026-04-05',90,0,0,0,1,0,0,0,0,0,0,0,0),(119561,'2026-04-05',87,0,0,0,1,0,0,0,0,0,0,0,0),(119560,'2026-04-05',79,0,0,0,1,0,0,0,0,0,0,0,0),(119559,'2026-04-05',70,0,0,0,1,0,0,0,0,0,0,0,0),(119558,'2026-04-05',69,0,0,0,1,0,0,0,0,0,0,0,0),(119557,'2026-04-05',68,0,0,0,1,0,0,0,0,0,0,0,0),(119556,'2026-04-05',67,0,0,0,1,0,1,0,0,0,0,0,0),(119555,'2026-04-05',66,0,0,0,1,0,0,0,0,0,0,0,0),(119554,'2026-04-05',65,0,0,0,1,0,0,0,0,0,0,0,0),(119553,'2026-04-05',64,0,0,0,1,0,0,0,0,0,0,0,0),(119552,'2026-04-05',63,0,0,0,1,0,0,0,0,0,0,0,0),(119551,'2026-04-05',61,0,0,0,1,0,0,0,0,0,0,0,0),(119534,'2026-04-01',218,0,0,0,0,0,0,1,0,0,0,0,0),(119533,'2026-04-01',89,0,0,0,0,0,0,2,0,0,0,0,0),(120020,'2026-04-11',347,0,0,0,1,0,0,0,0,0,0,0,0),(120019,'2026-04-11',346,0,0,0,1,0,0,0,0,0,0,0,0),(120018,'2026-04-11',345,0,0,0,1,0,0,0,0,0,0,0,0),(120017,'2026-04-11',344,0,0,0,1,0,0,0,0,0,0,0,0),(120016,'2026-04-11',341,0,0,0,1,0,0,0,0,0,0,0,0),(120015,'2026-04-11',340,0,0,0,1,0,0,0,0,0,0,0,0),(120014,'2026-04-11',339,0,0,0,1,0,0,0,0,0,0,0,0),(120013,'2026-04-11',338,0,0,0,1,0,0,0,0,0,0,0,0),(120012,'2026-04-11',337,0,0,0,1,0,0,0,0,0,0,0,0),(120011,'2026-04-11',336,0,0,0,1,0,0,0,0,0,0,0,0),(120010,'2026-04-11',335,0,0,0,1,0,0,0,0,0,0,0,0),(120009,'2026-04-11',334,0,0,0,1,0,0,0,0,0,0,0,0),(120008,'2026-04-11',333,0,0,0,1,0,0,0,0,0,0,0,0),(120007,'2026-04-11',332,0,0,0,1,0,0,0,0,0,0,0,0),(120006,'2026-04-11',331,0,0,0,1,0,0,0,0,0,0,0,0),(120005,'2026-04-11',330,0,0,0,1,0,0,0,0,0,0,0,0),(120004,'2026-04-11',329,0,0,0,1,0,0,0,0,0,0,0,0),(120003,'2026-04-11',328,0,0,0,1,0,0,0,0,0,0,0,0),(120002,'2026-04-11',327,0,0,0,1,0,0,0,0,0,0,0,0),(120001,'2026-04-11',326,0,0,0,1,0,0,0,0,0,0,0,0),(120000,'2026-04-11',324,0,0,0,1,0,0,0,0,0,0,0,0),(119999,'2026-04-11',323,0,0,0,1,0,0,0,0,0,0,0,0),(119998,'2026-04-11',321,0,0,0,1,0,0,0,0,0,0,0,0),(119997,'2026-04-11',320,0,0,0,1,0,0,0,0,0,0,0,0),(119996,'2026-04-11',319,0,0,0,1,0,0,0,0,0,0,0,0),(119995,'2026-04-11',317,0,0,0,1,0,0,0,0,0,0,0,0),(119994,'2026-04-11',316,0,0,0,1,0,0,0,0,0,0,0,0),(119993,'2026-04-11',314,0,0,0,1,0,0,0,0,0,0,0,0),(119992,'2026-04-11',313,0,0,0,1,0,0,0,0,0,0,0,0),(119991,'2026-04-11',310,0,0,0,1,0,0,0,0,0,0,0,0),(119990,'2026-04-11',309,0,0,0,1,0,0,0,0,0,0,0,0),(119989,'2026-04-11',308,0,0,0,1,0,0,0,0,0,0,0,0),(119988,'2026-04-11',307,0,0,0,1,0,0,0,0,0,0,0,0),(119987,'2026-04-11',304,0,0,0,1,0,0,0,0,0,0,0,0),(119986,'2026-04-11',303,0,0,0,1,0,0,0,0,0,0,0,0),(119985,'2026-04-11',302,0,0,0,1,0,0,0,0,0,0,0,0),(119984,'2026-04-11',301,0,0,0,1,0,0,0,0,0,0,0,0),(119983,'2026-04-11',300,0,0,0,1,0,0,0,0,0,0,0,0),(119982,'2026-04-11',299,0,0,0,1,0,0,0,0,0,0,0,0),(119981,'2026-04-11',298,0,0,0,1,0,0,0,0,0,0,0,0),(119980,'2026-04-11',297,0,0,0,0,1,0,0,0,0,0,0,0),(119979,'2026-04-11',296,0,0,0,1,0,0,0,0,0,0,0,0),(119978,'2026-04-11',295,0,0,0,1,0,0,0,0,0,0,0,0),(119977,'2026-04-11',294,0,0,0,1,0,0,0,0,0,0,0,0),(119976,'2026-04-11',292,0,0,0,1,0,0,0,0,0,0,0,0),(119975,'2026-04-11',291,0,0,0,1,0,0,0,0,0,0,0,0),(119974,'2026-04-11',290,0,0,0,1,0,0,0,0,0,0,0,0),(119973,'2026-04-11',289,0,0,0,1,0,0,0,0,0,0,0,0),(119972,'2026-04-11',288,0,0,0,1,0,0,0,0,0,0,0,0),(119971,'2026-04-11',285,0,0,0,1,0,0,0,0,0,0,0,0),(119970,'2026-04-11',281,0,0,0,1,0,0,0,0,0,0,0,0),(119969,'2026-04-11',280,0,0,0,1,0,0,0,0,0,0,0,0),(119968,'2026-04-11',278,0,0,0,1,0,0,0,0,0,0,0,0),(119967,'2026-04-11',275,0,0,0,1,0,0,0,0,0,0,0,0),(119966,'2026-04-11',274,0,0,0,1,0,0,0,0,0,0,0,0),(119965,'2026-04-11',273,0,0,0,1,0,0,0,0,0,0,0,0),(119964,'2026-04-11',271,0,0,0,1,0,0,0,0,0,0,0,0),(119963,'2026-04-11',269,0,0,0,1,0,0,0,0,0,0,0,0),(119962,'2026-04-11',268,0,0,0,1,0,0,0,0,0,0,0,0),(119961,'2026-04-11',266,0,0,0,1,0,0,0,0,0,0,0,0),(119960,'2026-04-11',265,0,0,0,1,0,0,0,0,0,0,0,0),(119959,'2026-04-11',264,0,0,0,1,0,0,0,0,0,0,0,0),(119958,'2026-04-11',263,0,0,0,1,0,0,0,0,0,0,0,0),(119957,'2026-04-11',262,0,0,0,1,0,0,0,0,0,0,0,0),(119956,'2026-04-11',261,0,0,0,1,0,0,0,0,0,0,0,0),(119955,'2026-04-11',260,0,0,0,1,0,0,0,0,0,0,0,0),(119954,'2026-04-11',258,0,0,0,1,0,0,0,0,0,0,0,0),(119953,'2026-04-11',257,0,0,0,1,0,0,0,0,0,0,0,0),(119952,'2026-04-11',256,0,0,0,1,0,0,0,0,0,0,0,0),(119951,'2026-04-11',255,0,0,0,1,0,0,0,0,0,0,0,0),(119950,'2026-04-11',254,0,0,0,1,0,0,0,0,0,0,0,0),(119949,'2026-04-11',253,0,0,0,1,0,0,0,0,0,0,0,0),(119948,'2026-04-11',251,0,0,0,1,0,0,0,0,0,0,0,0),(119947,'2026-04-11',250,0,0,0,1,0,0,0,0,0,0,0,0),(119946,'2026-04-11',249,0,0,0,1,0,0,0,0,0,0,0,0),(119945,'2026-04-11',247,0,0,0,1,0,0,0,0,0,0,0,0),(119944,'2026-04-11',246,0,0,0,1,0,0,0,0,0,0,0,0),(119943,'2026-04-11',245,0,0,0,1,0,0,0,0,0,0,0,0),(119942,'2026-04-11',243,0,0,0,1,0,0,0,0,0,0,0,0),(119941,'2026-04-11',242,0,0,0,1,0,0,0,0,0,0,0,0),(119940,'2026-04-11',241,0,0,0,1,0,0,0,0,0,0,0,0),(119939,'2026-04-11',239,0,0,0,1,0,0,0,0,0,0,0,0),(119938,'2026-04-11',238,0,0,0,1,0,0,0,0,0,0,0,0),(119937,'2026-04-11',236,0,0,0,1,0,0,0,0,0,0,0,0),(119936,'2026-04-11',234,0,0,0,1,0,0,0,0,0,0,0,0),(119935,'2026-04-11',233,0,0,0,1,0,0,0,0,0,0,0,0),(119934,'2026-04-11',232,0,0,0,1,0,0,0,0,0,0,0,0),(119933,'2026-04-11',231,0,0,0,1,0,0,0,0,0,0,0,0),(119814,'2026-04-05',675,0,0,0,1,0,0,0,0,0,0,0,0),(119813,'2026-04-05',673,0,0,0,1,0,0,0,0,0,0,0,0),(119812,'2026-04-05',670,0,0,0,1,0,0,0,0,0,0,0,0),(119811,'2026-04-05',628,0,0,0,1,0,0,0,0,0,0,0,0),(119810,'2026-04-05',621,0,0,0,1,0,0,0,0,0,0,0,0),(119809,'2026-04-05',584,0,0,0,1,0,0,0,0,0,0,0,0),(119808,'2026-04-05',560,0,0,0,1,0,0,0,0,0,0,0,0),(119807,'2026-04-05',539,0,0,0,1,0,0,0,0,0,0,0,0),(119806,'2026-04-05',537,0,0,0,1,0,0,0,0,0,0,0,0),(119805,'2026-04-05',536,0,0,0,1,0,0,0,0,0,0,0,0),(119804,'2026-04-05',456,0,0,0,1,0,0,0,0,0,0,0,0),(119803,'2026-04-05',452,0,0,0,1,0,0,0,0,0,0,0,0),(119802,'2026-04-05',451,0,0,0,1,0,0,0,0,0,0,0,0),(119801,'2026-04-05',448,0,0,0,1,0,0,0,0,0,0,0,0),(119800,'2026-04-05',446,0,0,0,1,0,0,0,0,0,0,0,0),(119799,'2026-04-05',445,0,0,0,1,0,0,0,0,0,0,0,0),(119798,'2026-04-05',443,0,0,0,1,0,0,0,0,0,0,0,0),(119797,'2026-04-05',441,0,0,0,1,0,0,0,0,0,0,0,0),(119796,'2026-04-05',440,0,0,0,1,0,0,0,0,0,0,0,0),(119795,'2026-04-05',439,0,0,0,1,0,0,0,0,0,0,0,0),(119794,'2026-04-05',438,0,0,0,1,0,0,0,0,0,0,0,0),(119793,'2026-04-05',435,0,0,0,1,0,0,0,0,0,0,0,0),(119792,'2026-04-05',434,0,0,0,1,0,0,0,0,0,0,0,0),(119791,'2026-04-05',433,0,0,0,1,0,0,0,0,0,0,0,0),(119790,'2026-04-05',432,0,0,0,1,0,0,0,0,0,0,0,0),(119789,'2026-04-05',431,0,0,0,1,0,0,0,0,0,0,0,0),(119788,'2026-04-05',430,0,0,0,1,0,0,0,0,0,0,0,0),(119787,'2026-04-05',428,0,0,0,1,0,0,0,0,0,0,0,0),(119786,'2026-04-05',426,0,0,0,1,0,0,0,0,0,0,0,0),(119785,'2026-04-05',423,0,0,0,1,0,0,0,0,0,0,0,0),(119784,'2026-04-05',422,0,0,0,1,0,0,0,0,0,0,0,0),(118038,'2026-02-18',1,0,0,0,0,0,1,3,0,0,0,0,0),(120102,'2026-04-12',405,0,0,0,0,0,1,0,0,0,0,0,0),(120101,'2026-04-12',301,0,0,0,0,1,1,0,0,0,0,0,0),(120100,'2026-04-12',281,0,0,0,0,0,1,0,0,0,0,0,0),(120099,'2026-04-12',280,0,0,0,0,0,1,0,0,0,0,0,0),(120098,'2026-04-12',218,0,0,0,0,1,0,0,0,0,0,0,0),(120097,'2026-04-12',176,0,0,0,0,1,0,0,0,0,0,0,0),(120093,'2026-04-11',675,0,0,0,1,0,0,0,0,0,0,0,0),(120092,'2026-04-11',673,0,0,0,1,0,0,0,0,0,0,0,0),(120091,'2026-04-11',670,0,0,0,1,0,0,0,0,0,0,0,0),(120090,'2026-04-11',628,0,0,0,1,0,0,0,0,0,0,0,0),(120089,'2026-04-11',621,0,0,0,1,0,0,0,0,0,0,0,0),(120088,'2026-04-11',584,0,0,0,1,0,0,0,0,0,0,0,0),(120087,'2026-04-11',560,0,0,0,1,0,0,0,0,0,0,0,0),(120086,'2026-04-11',539,0,0,0,1,0,0,0,0,0,0,0,0),(120085,'2026-04-11',537,0,0,0,1,0,0,0,0,0,0,0,0),(120084,'2026-04-11',536,0,0,0,1,0,0,0,0,0,0,0,0),(120083,'2026-04-11',456,0,0,0,1,0,0,0,0,0,0,0,0),(120082,'2026-04-11',452,0,0,0,1,0,0,0,0,0,0,0,0),(120081,'2026-04-11',451,0,0,0,1,0,0,0,0,0,0,0,0),(120080,'2026-04-11',448,0,0,0,1,0,0,0,0,0,0,0,0),(120079,'2026-04-11',446,0,0,0,1,0,0,0,0,0,0,0,0),(120078,'2026-04-11',445,0,0,0,1,0,0,0,0,0,0,0,0),(120077,'2026-04-11',443,0,0,0,1,0,0,0,0,0,0,0,0),(120076,'2026-04-11',441,0,0,0,1,0,0,0,0,0,0,0,0),(120075,'2026-04-11',440,0,0,0,1,0,0,0,0,0,0,0,0),(120074,'2026-04-11',439,0,0,0,1,0,0,0,0,0,0,0,0),(120073,'2026-04-11',438,0,0,0,1,0,0,0,0,0,0,0,0),(120072,'2026-04-11',435,0,0,0,1,0,0,0,0,0,0,0,0),(120071,'2026-04-11',434,0,0,0,1,0,0,0,0,0,0,0,0),(120070,'2026-04-11',433,0,0,0,1,0,0,0,0,0,0,0,0),(120069,'2026-04-11',432,0,0,0,1,0,0,0,0,0,0,0,0),(120068,'2026-04-11',431,0,0,0,1,0,0,0,0,0,0,0,0),(120067,'2026-04-11',430,0,0,0,1,0,0,0,0,0,0,0,0),(120066,'2026-04-11',428,0,0,0,1,0,0,0,0,0,0,0,0),(120065,'2026-04-11',426,0,0,0,1,0,0,0,0,0,0,0,0),(120064,'2026-04-11',423,0,0,0,1,0,0,0,0,0,0,0,0),(120063,'2026-04-11',422,0,0,0,1,0,0,0,0,0,0,0,0),(120062,'2026-04-11',420,0,0,0,1,0,0,0,0,0,0,0,0),(120061,'2026-04-11',417,0,0,0,1,0,0,0,0,0,0,0,0),(120060,'2026-04-11',414,0,0,0,1,0,0,0,0,0,0,0,0),(120059,'2026-04-11',413,0,0,0,1,0,0,0,0,0,0,0,0),(120058,'2026-04-11',412,0,0,0,1,0,0,0,0,0,0,0,0),(120057,'2026-04-11',410,0,0,0,1,0,0,0,0,0,0,0,0),(120056,'2026-04-11',408,0,0,0,1,0,0,0,0,0,0,0,0),(120055,'2026-04-11',407,0,0,0,1,0,0,0,0,0,0,0,0),(120054,'2026-04-11',405,0,0,0,1,0,0,0,0,0,0,0,0),(120053,'2026-04-11',403,0,0,0,1,0,0,0,0,0,0,0,0),(120052,'2026-04-11',401,0,0,0,1,0,0,0,0,0,0,0,0),(120051,'2026-04-11',400,0,0,0,1,0,0,0,0,0,0,0,0),(118325,'2026-02-25',233,0,0,0,0,0,0,2,0,0,0,0,0),(118315,'2026-02-21',49,0,0,0,0,0,0,2,0,0,0,0,0),(118314,'2026-02-21',22,0,0,0,0,0,0,1,0,0,0,0,0),(118313,'2026-02-21',17,0,0,0,0,0,0,1,0,0,0,0,0),(118312,'2026-02-21',9,0,0,0,0,0,0,1,0,0,0,0,0),(118329,'2026-02-26',13,0,0,0,1,0,0,0,0,0,0,0,0),(118328,'2026-02-26',10,0,0,0,1,0,0,0,0,0,0,0,0),(118327,'2026-02-26',5,0,0,0,0,0,0,1,0,0,0,0,0),(118326,'2026-02-26',1,0,0,0,0,0,0,1,0,0,0,0,0),(118335,'2026-02-26',32,0,0,0,1,0,0,0,0,0,0,0,0),(118334,'2026-02-26',24,0,0,0,1,0,0,0,0,0,0,0,0),(118333,'2026-02-26',22,0,0,0,0,1,1,0,0,0,0,0,0),(118332,'2026-02-26',19,0,0,0,1,0,0,0,0,0,0,0,0),(118331,'2026-02-26',18,0,0,0,0,1,0,0,0,0,0,0,0),(118330,'2026-02-26',17,0,0,0,0,0,1,0,0,0,0,0,0),(120050,'2026-04-11',396,0,0,0,1,0,0,0,0,0,0,0,0),(120049,'2026-04-11',395,0,0,0,1,0,0,0,0,0,0,0,0),(120048,'2026-04-11',393,0,0,0,1,0,0,0,0,0,0,0,0),(120047,'2026-04-11',392,0,0,0,1,0,0,0,0,0,0,0,0),(120046,'2026-04-11',391,0,0,0,1,0,0,0,0,0,0,0,0),(120045,'2026-04-11',390,0,0,0,1,0,0,0,0,0,0,0,0),(120044,'2026-04-11',388,0,0,0,1,0,0,0,0,0,0,0,0),(120043,'2026-04-11',387,0,0,0,1,0,0,0,0,0,0,0,0),(120042,'2026-04-11',385,0,0,0,1,0,0,0,0,0,0,0,0),(120041,'2026-04-11',384,0,0,0,1,0,0,0,0,0,0,0,0),(120040,'2026-04-11',382,0,0,0,1,0,0,0,0,0,0,0,0),(120039,'2026-04-11',381,0,0,0,1,0,0,0,0,0,0,0,0),(120038,'2026-04-11',378,0,0,0,1,0,0,0,0,0,0,0,0),(120037,'2026-04-11',377,0,0,0,1,0,0,0,0,0,0,0,0),(120036,'2026-04-11',376,0,0,0,1,0,0,0,0,0,0,0,0),(120035,'2026-04-11',375,0,0,0,1,0,0,0,0,0,0,0,0),(120034,'2026-04-11',372,0,0,0,1,0,0,0,0,0,0,0,0),(120033,'2026-04-11',371,0,0,0,1,0,0,0,0,0,0,0,0),(120032,'2026-04-11',367,0,0,0,1,0,0,0,0,0,0,0,0),(120031,'2026-04-11',365,0,0,0,1,0,0,0,0,0,0,0,0),(120030,'2026-04-11',364,0,0,0,1,0,0,0,0,0,0,0,0),(120029,'2026-04-11',363,0,0,0,1,0,0,0,0,0,0,0,0),(120028,'2026-04-11',361,0,0,0,1,0,0,0,0,0,0,0,0),(120027,'2026-04-11',360,0,0,0,1,0,0,0,0,0,0,0,0),(119515,'2026-03-17',233,0,0,0,0,0,0,2,0,0,0,0,0),(119512,'2026-03-15',218,0,0,0,0,0,0,1,0,0,0,0,0),(119511,'2026-03-15',178,0,0,0,0,0,1,0,0,0,0,0,0),(119510,'2026-03-15',145,1,0,0,0,0,0,0,0,0,0,0,0),(119509,'2026-03-15',119,0,0,0,0,0,1,0,0,0,0,0,0),(119508,'2026-03-15',78,0,0,0,0,0,0,1,0,0,0,0,0),(119507,'2026-03-15',75,0,0,0,0,0,0,1,0,0,0,0,0),(119506,'2026-03-15',51,0,0,0,0,0,0,1,0,0,0,0,0),(119505,'2026-03-15',49,0,0,0,0,0,0,1,0,0,0,0,0),(119504,'2026-03-15',45,0,0,0,0,1,0,0,0,0,0,0,0),(119503,'2026-03-15',9,0,0,0,0,1,0,0,0,0,0,0,0),(119485,'2026-03-14',440,0,0,0,2,0,0,0,0,0,0,0,0),(119484,'2026-03-14',439,0,0,0,2,0,0,0,0,0,0,0,0),(119483,'2026-03-14',438,0,0,0,2,0,0,0,0,0,0,0,0),(119482,'2026-03-14',435,0,0,0,2,0,0,0,0,0,0,0,0),(119481,'2026-03-14',434,0,0,0,2,0,0,0,0,0,0,0,0),(119480,'2026-03-14',433,0,0,0,2,0,0,0,0,0,0,0,0),(119479,'2026-03-14',432,0,0,0,2,0,0,0,0,0,0,0,0),(119478,'2026-03-14',431,0,0,0,2,0,0,0,0,0,0,0,0),(119477,'2026-03-14',430,0,0,0,2,0,0,0,0,0,0,0,0),(119476,'2026-03-14',428,0,0,0,2,0,0,0,0,0,0,0,0),(119475,'2026-03-14',426,0,0,0,2,0,0,0,0,0,0,0,0),(119474,'2026-03-14',423,0,0,0,2,0,0,0,0,0,0,0,0),(119473,'2026-03-14',422,0,0,0,2,0,0,0,0,0,0,0,0),(119472,'2026-03-14',420,0,0,0,2,0,0,0,0,0,0,0,0),(119471,'2026-03-14',417,0,0,0,2,0,0,0,0,0,0,0,0),(119470,'2026-03-14',414,0,0,0,2,0,0,0,0,0,0,0,0),(119469,'2026-03-14',413,0,0,0,2,0,0,0,0,0,0,0,0),(119468,'2026-03-14',412,0,0,0,2,0,0,0,0,0,0,0,0),(119467,'2026-03-14',410,0,0,0,2,0,0,0,0,0,0,0,0),(119466,'2026-03-14',408,0,0,0,2,0,0,0,0,0,0,0,0),(119465,'2026-03-14',407,0,0,0,2,0,0,0,0,0,0,0,0),(119464,'2026-03-14',405,0,0,0,2,0,0,0,0,0,0,0,0),(119463,'2026-03-14',403,0,0,0,2,0,0,0,0,0,0,0,0),(119462,'2026-03-14',401,0,0,0,2,0,0,0,0,0,0,0,0),(119461,'2026-03-14',400,0,0,0,2,0,0,0,0,0,0,0,0),(119460,'2026-03-14',396,0,0,0,2,0,0,0,0,0,0,0,0),(119459,'2026-03-14',395,0,0,0,2,0,0,0,0,0,0,0,0),(119458,'2026-03-14',393,0,0,0,2,0,0,0,0,0,0,0,0),(119457,'2026-03-14',392,0,0,0,2,0,0,0,0,0,0,0,0),(119456,'2026-03-14',391,0,0,0,2,0,0,0,0,0,0,0,0),(119455,'2026-03-14',390,0,0,0,2,0,0,0,0,0,0,0,0),(119454,'2026-03-14',388,0,0,0,2,0,0,0,0,0,0,0,0),(119453,'2026-03-14',387,0,0,0,2,0,0,0,0,0,0,0,0),(119452,'2026-03-14',385,0,0,0,2,0,0,0,0,0,0,0,0),(119451,'2026-03-14',384,0,0,0,2,0,0,0,0,0,0,0,0),(119450,'2026-03-14',382,0,0,0,2,0,0,0,0,0,0,0,0),(119449,'2026-03-14',381,0,0,0,2,0,0,0,0,0,0,0,0),(119448,'2026-03-14',378,0,0,0,2,0,0,0,0,0,0,0,0),(119447,'2026-03-14',377,0,0,0,2,0,0,0,0,0,0,0,0),(119446,'2026-03-14',376,0,0,0,2,0,0,0,0,0,0,0,0),(119445,'2026-03-14',375,0,0,0,2,0,0,0,0,0,0,0,0),(119444,'2026-03-14',372,0,0,0,2,0,0,0,0,0,0,0,0),(119443,'2026-03-14',371,0,0,0,2,0,0,0,0,0,0,0,0),(119442,'2026-03-14',367,0,0,0,2,0,0,0,0,0,0,0,0),(119441,'2026-03-14',365,0,0,0,2,0,0,0,0,0,0,0,0),(119440,'2026-03-14',364,0,0,0,2,0,0,0,0,0,0,0,0),(119439,'2026-03-14',363,0,0,0,2,0,0,0,0,0,0,0,0),(119438,'2026-03-14',361,0,0,0,2,0,0,0,0,0,0,0,0),(119437,'2026-03-14',360,0,0,0,2,0,0,0,0,0,0,0,0),(119436,'2026-03-14',359,0,0,0,2,0,0,0,0,0,0,0,0),(119435,'2026-03-14',357,0,0,0,2,0,0,0,0,0,0,0,0),(119434,'2026-03-14',353,0,0,0,2,0,0,0,0,0,0,0,0),(119433,'2026-03-14',352,0,0,0,2,0,0,0,0,0,0,0,0),(119432,'2026-03-14',351,0,0,0,2,0,0,0,0,0,0,0,0),(119431,'2026-03-14',348,0,0,0,2,0,0,0,0,0,0,0,0),(119430,'2026-03-14',347,0,0,0,2,0,0,0,0,0,0,0,0),(119429,'2026-03-14',346,0,0,0,2,0,0,0,0,0,0,0,0),(119428,'2026-03-14',345,0,0,0,2,0,0,0,0,0,0,0,0),(119427,'2026-03-14',344,0,0,0,2,0,0,0,0,0,0,0,0),(119426,'2026-03-14',341,0,0,0,2,0,0,0,0,0,0,0,0),(119425,'2026-03-14',340,0,0,0,2,0,0,0,0,0,0,0,0),(119424,'2026-03-14',339,0,0,0,2,0,0,0,0,0,0,0,0),(119423,'2026-03-14',338,0,0,0,2,0,0,0,0,0,0,0,0),(119422,'2026-03-14',337,0,0,0,2,0,0,0,0,0,0,0,0),(119421,'2026-03-14',336,0,0,0,2,0,0,0,0,0,0,0,0),(119420,'2026-03-14',335,0,0,0,2,0,0,0,0,0,0,0,0),(119419,'2026-03-14',334,0,0,0,2,0,0,0,0,0,0,0,0),(119418,'2026-03-14',333,0,0,0,2,0,0,0,0,0,0,0,0),(119417,'2026-03-14',332,0,0,0,2,0,0,0,0,0,0,0,0),(119416,'2026-03-14',331,0,0,0,2,0,0,0,0,0,0,0,0),(119415,'2026-03-14',330,0,0,0,2,0,0,0,0,0,0,0,0),(118957,'2026-03-10',64,0,0,0,1,0,0,0,0,0,0,0,0),(118956,'2026-03-10',63,0,0,0,1,0,0,0,0,0,0,0,0),(118964,'2026-03-10',79,0,0,0,1,0,0,0,0,0,0,0,0),(118963,'2026-03-10',70,0,0,0,1,0,0,0,0,0,0,0,0),(118962,'2026-03-10',69,0,0,0,1,0,0,0,0,0,0,0,0),(118961,'2026-03-10',68,0,0,0,1,0,0,0,0,0,0,0,0),(118960,'2026-03-10',67,0,0,0,1,0,0,0,0,0,0,0,0),(118959,'2026-03-10',66,0,0,0,1,0,0,0,0,0,0,0,0),(118940,'2026-03-08',131,0,0,0,0,0,0,0,0,0,0,0,1),(118939,'2026-03-08',123,0,0,0,0,0,0,2,0,0,0,0,0),(119217,'2026-03-11',233,0,0,0,0,0,0,2,0,0,0,0,0),(119216,'2026-03-11',89,0,0,0,0,0,0,2,0,0,0,0,0),(119215,'2026-03-11',81,0,0,0,0,0,0,1,0,0,0,0,0),(119214,'2026-03-10',673,0,0,0,1,0,0,0,0,0,0,0,0),(119213,'2026-03-10',670,0,0,0,1,0,0,0,0,0,0,0,0),(119212,'2026-03-10',628,0,0,0,1,0,0,0,0,0,0,0,0),(119211,'2026-03-10',621,0,0,0,1,0,0,0,0,0,0,0,0),(119210,'2026-03-10',584,0,0,0,1,0,0,0,0,0,0,0,0),(119209,'2026-03-10',560,0,0,0,1,0,0,0,0,0,0,0,0),(119208,'2026-03-10',539,0,0,0,1,0,0,0,0,0,0,0,0),(119207,'2026-03-10',537,0,0,0,1,0,0,0,0,0,0,0,0),(119206,'2026-03-10',536,0,0,0,1,0,0,0,0,0,0,0,0),(119205,'2026-03-10',456,0,0,0,1,0,0,0,0,0,0,0,0),(119204,'2026-03-10',452,0,0,0,1,0,0,0,0,0,0,0,0),(119203,'2026-03-10',451,0,0,0,1,0,0,0,0,0,0,0,0),(118322,'2026-02-24',137,0,0,0,0,0,0,1,0,0,0,0,0),(118321,'2026-02-24',89,0,0,0,0,0,0,1,0,0,0,0,0),(118320,'2026-02-24',81,0,0,0,0,0,0,2,0,0,0,0,0),(118319,'2026-02-24',78,0,0,0,0,0,0,1,0,0,0,0,0),(118324,'2026-02-25',188,0,0,0,0,0,0,1,0,0,0,0,0),(118318,'2026-02-22',90,0,0,0,0,0,0,1,0,0,0,0,0),(118317,'2026-02-22',75,0,0,0,0,0,0,2,0,0,0,0,0),(118316,'2026-02-22',51,0,0,0,0,0,0,2,0,0,0,0,0),(118323,'2026-02-25',2,0,0,0,0,0,0,2,0,0,0,0,0),(118922,'2026-03-03',670,0,0,0,2,0,0,0,0,0,0,0,0),(118921,'2026-03-03',628,0,0,0,2,0,0,0,0,0,0,0,0),(118920,'2026-03-03',621,0,0,0,2,0,0,0,0,0,0,0,0),(118919,'2026-03-03',584,0,0,0,2,0,0,0,0,0,0,0,0),(118918,'2026-03-03',560,0,0,0,2,0,0,0,0,0,0,0,0),(118917,'2026-03-03',539,0,0,0,2,0,0,0,0,0,0,0,0),(118916,'2026-03-03',537,0,0,0,2,0,0,0,0,0,0,0,0),(118915,'2026-03-03',536,0,0,0,2,0,0,0,0,0,0,0,0),(118914,'2026-03-03',456,0,0,0,2,0,0,0,0,0,0,0,0),(118913,'2026-03-03',452,0,0,0,2,0,0,0,0,0,0,0,0),(118912,'2026-03-03',451,0,0,0,2,0,0,0,0,0,0,0,0),(118911,'2026-03-03',448,1,0,1,1,0,0,0,0,0,0,0,0),(118910,'2026-03-03',446,0,0,0,2,0,0,0,0,0,0,0,0),(118909,'2026-03-03',445,0,0,0,2,0,0,0,0,0,0,0,0),(118908,'2026-03-03',443,0,0,0,2,0,0,0,0,0,0,0,0),(118907,'2026-03-03',441,0,0,0,2,0,1,0,0,0,0,0,0),(118906,'2026-03-03',440,0,0,0,2,0,0,0,0,0,0,0,0),(118905,'2026-03-03',439,0,0,0,2,0,0,0,0,0,0,0,0),(118904,'2026-03-03',438,0,0,0,2,0,0,0,0,0,0,0,0),(118903,'2026-03-03',435,0,0,0,2,0,0,0,0,0,0,0,0),(118902,'2026-03-03',434,0,0,0,2,0,0,0,0,0,0,0,0),(118901,'2026-03-03',433,0,0,0,2,0,0,0,0,0,0,0,0),(118900,'2026-03-03',432,0,0,0,2,0,0,0,0,0,0,0,0),(118899,'2026-03-03',431,0,0,0,2,0,0,0,0,0,0,0,0),(118898,'2026-03-03',430,0,0,0,2,0,0,0,0,0,0,0,0),(118897,'2026-03-03',428,0,0,0,2,1,0,0,0,0,0,0,0),(118896,'2026-03-03',426,0,0,0,2,0,0,0,0,0,0,0,0),(118895,'2026-03-03',423,0,0,0,2,0,0,0,0,0,0,0,0),(118894,'2026-03-03',422,0,0,0,2,0,0,0,0,0,0,0,0),(118893,'2026-03-03',420,0,0,0,2,0,0,0,0,0,0,0,0),(118892,'2026-03-03',417,0,0,0,2,0,0,0,0,0,0,0,0),(118891,'2026-03-03',414,0,0,0,2,0,0,0,0,0,0,0,0),(118890,'2026-03-03',413,0,0,0,2,0,0,0,0,0,0,0,0),(118889,'2026-03-03',412,0,0,0,2,0,0,0,0,0,0,0,0),(118888,'2026-03-03',410,0,0,0,2,0,0,0,0,0,0,0,0),(118887,'2026-03-03',408,0,0,0,2,0,0,0,0,0,0,0,0),(118886,'2026-03-03',407,0,0,0,2,0,0,0,0,0,0,0,0),(118885,'2026-03-03',405,0,0,0,2,1,0,0,0,0,0,0,0),(118884,'2026-03-03',403,0,0,0,2,0,0,0,0,0,0,0,0),(118883,'2026-03-03',401,0,0,0,2,0,0,0,0,0,0,0,0),(118882,'2026-03-03',400,0,0,0,2,0,0,0,0,0,0,0,0),(118881,'2026-03-03',396,0,0,0,2,0,0,0,0,0,0,0,0),(118880,'2026-03-03',395,0,0,0,2,0,0,0,0,0,0,0,0),(118879,'2026-03-03',393,0,0,0,2,1,0,0,0,0,0,0,0),(118878,'2026-03-03',392,0,0,0,2,0,0,0,0,0,0,0,0),(118877,'2026-03-03',391,0,0,0,2,0,0,0,0,0,0,0,0),(118876,'2026-03-03',390,0,0,0,2,0,0,0,0,0,0,0,0),(118875,'2026-03-03',388,0,0,0,2,0,0,0,0,0,0,0,0),(118874,'2026-03-03',387,0,0,0,2,0,0,0,0,0,0,0,0),(118873,'2026-03-03',385,0,0,0,2,0,0,0,0,0,0,0,0),(118872,'2026-03-03',384,0,0,0,2,0,0,0,0,0,0,0,0),(118871,'2026-03-03',382,0,0,0,2,0,0,0,0,0,0,0,0),(118870,'2026-03-03',381,0,0,0,2,0,0,0,0,0,0,0,0),(118869,'2026-03-03',378,0,0,0,2,0,0,0,0,0,0,0,0),(118868,'2026-03-03',377,0,0,0,2,0,0,0,0,0,0,0,0),(118867,'2026-03-03',376,0,0,0,2,0,0,0,0,0,0,0,0),(118866,'2026-03-03',375,0,0,0,2,0,0,0,0,0,0,0,0),(118865,'2026-03-03',372,0,0,0,2,0,0,0,0,0,0,0,0),(118864,'2026-03-03',371,0,0,0,2,0,0,0,0,0,0,0,0),(118863,'2026-03-03',367,0,0,0,2,0,0,0,0,0,0,0,0),(118862,'2026-03-03',365,0,0,0,2,0,0,0,0,0,0,0,0),(118861,'2026-03-03',364,0,0,0,2,0,0,0,0,0,0,0,0),(118634,'2026-03-01',9,0,0,0,0,0,0,5,0,0,0,0,0),(118616,'2026-02-28',35,0,0,0,0,1,0,0,0,0,0,0,0),(118615,'2026-02-28',5,0,0,0,0,0,0,1,0,0,0,0,0),(118614,'2026-02-28',2,0,0,0,0,0,0,2,0,0,0,0,0),(118613,'2026-02-28',1,0,0,0,0,0,0,1,0,0,0,0,0),(118860,'2026-03-03',363,0,0,0,2,0,0,0,0,0,0,0,0),(118859,'2026-03-03',361,0,0,0,2,0,0,0,0,0,0,0,0),(118858,'2026-03-03',360,0,0,0,2,0,0,0,0,0,0,0,0),(118857,'2026-03-03',359,0,0,0,2,0,0,0,0,0,0,0,0),(118856,'2026-03-03',357,0,0,0,2,0,0,0,0,0,0,0,0),(118855,'2026-03-03',353,0,0,0,2,0,0,0,0,0,0,0,0),(118854,'2026-03-03',352,0,0,0,2,0,0,0,0,0,0,0,0),(118853,'2026-03-03',351,0,0,0,2,0,0,0,0,0,0,0,0),(118852,'2026-03-03',348,0,0,0,2,0,0,0,0,0,0,0,0),(118851,'2026-03-03',347,0,0,0,2,0,0,0,0,0,0,0,0),(118850,'2026-03-03',346,0,0,0,2,0,0,0,0,0,0,0,0),(118849,'2026-03-03',345,0,0,0,2,0,0,0,0,0,0,0,0),(118848,'2026-03-03',344,0,0,0,2,0,0,0,0,0,0,0,0),(118847,'2026-03-03',341,0,0,0,2,0,0,0,0,0,0,0,0),(118846,'2026-03-03',340,0,0,0,2,0,0,0,0,0,0,0,0),(118845,'2026-03-03',339,0,0,0,2,0,0,0,0,0,0,0,0),(118844,'2026-03-03',338,0,0,0,2,0,0,0,0,0,0,0,0),(118843,'2026-03-03',337,0,0,0,2,0,0,0,0,0,0,0,0),(118842,'2026-03-03',336,0,0,0,2,0,0,0,0,0,0,0,0),(118841,'2026-03-03',335,0,0,0,2,0,0,0,0,0,0,0,0),(118840,'2026-03-03',334,0,0,0,2,0,0,0,0,0,0,0,0),(118839,'2026-03-03',333,0,0,0,2,0,0,0,0,0,0,0,0),(118838,'2026-03-03',332,0,0,0,2,0,0,0,0,0,0,0,0),(118837,'2026-03-03',331,0,0,0,2,0,0,0,0,0,0,0,0),(118836,'2026-03-03',330,0,0,0,2,0,0,0,0,0,0,0,0),(118835,'2026-03-03',329,0,0,0,2,0,0,0,0,0,0,0,0),(118834,'2026-03-03',328,0,0,0,2,0,0,0,0,0,0,0,0),(118833,'2026-03-03',327,0,0,1,1,0,0,0,0,0,0,0,0),(118832,'2026-03-03',326,0,0,0,2,0,0,0,0,0,0,0,0),(118831,'2026-03-03',324,0,0,0,2,0,0,0,0,0,0,0,0),(118830,'2026-03-03',323,0,0,0,2,0,0,0,0,0,0,0,0),(118829,'2026-03-03',321,0,0,0,2,0,0,0,0,0,0,0,0),(118828,'2026-03-03',320,0,0,0,2,0,0,0,0,0,0,0,0),(118827,'2026-03-03',319,0,0,0,2,0,0,0,0,0,0,0,0),(118826,'2026-03-03',317,0,0,0,2,0,1,0,0,0,0,0,0),(118825,'2026-03-03',316,0,0,0,2,0,1,0,0,0,0,0,0),(118824,'2026-03-03',314,0,0,0,2,0,0,0,0,0,0,0,0),(118823,'2026-03-03',313,0,0,0,2,0,0,0,0,0,0,0,0),(118822,'2026-03-03',310,0,0,0,2,0,0,0,0,0,0,0,0),(118821,'2026-03-03',309,0,0,0,2,0,0,0,0,0,0,0,0),(118820,'2026-03-03',308,0,0,0,2,1,0,0,0,0,0,0,0),(118819,'2026-03-03',307,0,0,0,2,0,0,0,0,0,0,0,0),(118818,'2026-03-03',304,0,0,0,2,1,0,0,0,0,0,0,0),(118817,'2026-03-03',303,0,0,0,2,0,0,0,0,0,0,0,0),(118816,'2026-03-03',302,0,0,0,2,0,0,0,0,0,0,0,0),(118815,'2026-03-03',301,0,0,0,2,0,0,0,0,0,0,0,0),(118814,'2026-03-03',300,0,0,0,2,0,0,0,0,0,0,0,0),(118813,'2026-03-03',299,0,0,0,2,0,0,0,0,0,0,0,0),(118812,'2026-03-03',298,0,0,0,2,0,0,0,0,0,0,0,0),(118811,'2026-03-03',296,0,0,0,2,0,0,0,0,0,0,0,0),(118810,'2026-03-03',295,0,0,0,2,0,0,0,0,0,0,0,0),(118809,'2026-03-03',294,0,0,0,2,0,0,0,0,0,0,0,0),(118808,'2026-03-03',292,0,0,0,2,0,0,0,0,0,0,0,0),(118807,'2026-03-03',291,0,0,0,2,0,0,0,0,0,0,0,0),(118806,'2026-03-03',290,0,0,0,2,0,0,0,0,0,0,0,0),(118805,'2026-03-03',289,0,0,0,2,0,0,0,0,0,0,0,0),(118804,'2026-03-03',288,0,0,0,2,0,0,0,0,0,0,0,0),(118803,'2026-03-03',285,0,0,0,2,0,0,0,0,0,0,0,0),(118802,'2026-03-03',281,0,0,0,2,0,0,0,0,0,0,0,0),(118801,'2026-03-03',280,0,0,0,2,0,0,0,0,0,0,0,0),(118800,'2026-03-03',278,0,0,0,2,0,0,0,0,0,0,0,0),(118799,'2026-03-03',275,0,0,0,2,0,0,0,0,0,0,0,0),(118798,'2026-03-03',274,0,0,0,2,0,0,0,0,0,0,0,0),(118797,'2026-03-03',273,0,0,0,2,0,0,0,0,0,0,0,0),(118796,'2026-03-03',271,0,0,0,2,0,0,0,0,0,0,0,0),(118795,'2026-03-03',269,0,0,0,2,0,0,0,0,0,0,0,0),(118794,'2026-03-03',268,0,0,0,2,0,0,0,0,0,0,0,0),(118793,'2026-03-03',266,0,0,0,2,0,0,0,0,0,0,0,0),(118792,'2026-03-03',265,0,0,0,2,0,0,0,0,0,0,0,0),(118791,'2026-03-03',264,0,0,0,2,0,0,0,0,0,0,0,0),(118790,'2026-03-03',263,0,0,0,2,1,0,0,0,0,0,0,0),(118789,'2026-03-03',262,0,0,0,2,0,0,0,0,0,0,0,0),(118788,'2026-03-03',261,0,0,0,2,0,0,0,0,0,0,0,0),(118787,'2026-03-03',260,0,0,0,2,0,0,0,0,0,0,0,0),(118786,'2026-03-03',258,0,0,0,2,0,0,0,0,0,0,0,0),(118785,'2026-03-03',257,0,0,0,2,0,0,0,0,0,0,0,0),(118784,'2026-03-03',256,0,0,0,2,0,0,0,0,0,0,0,0),(118783,'2026-03-03',255,0,0,0,2,0,0,0,0,0,0,0,0),(118782,'2026-03-03',254,0,0,0,2,0,0,0,0,0,0,0,0),(118781,'2026-03-03',253,0,0,0,2,0,0,0,0,0,0,0,0),(118780,'2026-03-03',251,0,0,0,2,0,0,0,0,0,0,0,0),(118779,'2026-03-03',250,0,0,0,2,0,0,0,0,0,0,0,0),(118778,'2026-03-03',249,0,0,0,2,0,0,0,0,0,0,0,0),(118777,'2026-03-03',247,0,0,0,2,0,0,0,0,0,0,0,0),(118776,'2026-03-03',246,0,0,0,2,0,0,0,0,0,0,0,0),(118775,'2026-03-03',245,0,0,0,2,0,0,0,0,0,0,0,0),(118774,'2026-03-03',243,0,0,0,2,0,0,0,0,0,0,0,0),(118773,'2026-03-03',242,0,0,0,2,0,0,0,0,0,0,0,0),(118772,'2026-03-03',241,0,0,0,2,0,0,0,0,0,0,0,0),(118771,'2026-03-03',239,0,0,0,2,0,0,0,0,0,0,0,0),(118770,'2026-03-03',238,0,0,0,2,0,0,0,0,0,0,0,0),(118769,'2026-03-03',236,0,0,0,2,0,0,0,0,0,0,0,0),(118768,'2026-03-03',234,0,0,0,2,0,0,0,0,0,0,0,0),(118767,'2026-03-03',233,0,0,0,2,0,0,3,0,0,0,0,0),(118766,'2026-03-03',232,0,0,0,2,0,0,0,0,0,0,0,0),(118765,'2026-03-03',231,0,0,0,2,0,0,0,0,0,0,0,0),(118764,'2026-03-03',228,0,0,0,2,0,0,0,0,0,0,0,0),(118763,'2026-03-03',227,0,0,0,2,0,0,0,0,0,0,0,0),(118762,'2026-03-03',226,0,0,0,2,0,0,0,0,0,0,0,0),(118761,'2026-03-03',225,0,0,0,2,0,0,0,0,0,0,0,0),(118760,'2026-03-03',224,0,0,0,2,0,0,0,0,0,0,0,0),(118759,'2026-03-03',222,0,0,0,2,0,0,0,0,0,0,0,0),(118758,'2026-03-03',221,0,0,0,2,0,0,0,0,0,0,0,0),(118757,'2026-03-03',220,0,0,0,2,0,0,0,0,0,0,0,0),(118756,'2026-03-03',218,0,0,0,0,0,0,1,0,0,0,0,0),(118755,'2026-03-03',217,0,0,0,2,0,0,0,0,0,0,0,0),(118754,'2026-03-03',214,0,0,0,2,0,0,0,0,0,0,0,0),(118753,'2026-03-03',213,0,0,0,2,0,0,0,0,0,0,0,0),(118752,'2026-03-03',212,0,0,0,2,0,1,0,0,0,0,0,0),(118751,'2026-03-03',211,0,0,0,2,0,0,0,0,0,0,0,0),(118750,'2026-03-03',210,0,0,0,2,0,0,0,0,0,0,0,0),(118749,'2026-03-03',209,0,0,0,2,0,0,0,0,0,0,0,0),(118748,'2026-03-03',208,0,0,0,2,0,0,0,0,0,0,0,0),(118747,'2026-03-03',207,0,0,0,2,0,0,0,0,0,0,0,0),(118746,'2026-03-03',206,0,0,0,2,0,0,0,0,0,0,0,0),(118745,'2026-03-03',205,0,0,0,2,0,0,0,0,0,0,0,0),(118744,'2026-03-03',204,0,0,0,2,0,0,0,0,0,0,0,0),(118743,'2026-03-03',203,0,0,0,2,0,0,0,0,0,0,0,0),(118742,'2026-03-03',201,0,0,0,2,0,0,0,0,0,0,0,0),(118741,'2026-03-03',200,0,0,0,2,0,0,0,0,0,0,0,0),(118740,'2026-03-03',197,0,0,0,2,0,0,0,0,0,0,0,0),(118739,'2026-03-03',196,0,0,0,2,0,0,0,0,0,0,0,0),(118738,'2026-03-03',195,0,0,0,2,0,0,0,0,0,0,0,0),(118737,'2026-03-03',194,0,0,0,2,0,0,0,0,0,0,0,0),(118736,'2026-03-03',193,0,0,0,2,0,0,0,0,0,0,0,0),(118735,'2026-03-03',192,0,0,0,2,0,0,0,0,0,0,0,0),(118734,'2026-03-03',191,0,0,0,2,0,0,0,0,0,0,0,0),(118733,'2026-03-03',190,0,0,0,2,0,0,0,0,0,0,0,0),(118732,'2026-03-03',189,0,0,0,2,0,0,0,0,0,0,0,0),(118731,'2026-03-03',188,0,0,0,2,0,0,0,0,0,0,0,0),(118730,'2026-03-03',187,0,0,0,2,0,0,0,0,0,0,0,0),(118729,'2026-03-03',186,0,0,0,2,0,0,0,0,0,0,0,0),(118728,'2026-03-03',185,0,0,0,2,0,0,0,0,0,0,0,0),(118727,'2026-03-03',184,0,0,0,2,0,0,0,0,0,0,0,0),(118726,'2026-03-03',183,0,0,0,2,0,0,0,0,0,0,0,0),(118725,'2026-03-03',182,0,0,0,2,0,0,0,0,0,0,0,0),(118724,'2026-03-03',181,0,0,0,2,0,0,0,0,0,0,0,0),(118723,'2026-03-03',180,0,0,0,2,0,0,0,0,0,0,0,0),(118722,'2026-03-03',179,0,0,0,2,0,0,0,0,0,0,0,0),(118721,'2026-03-03',176,0,0,0,2,0,0,0,0,0,0,0,0),(118720,'2026-03-03',175,0,0,0,2,0,0,0,0,0,0,0,0),(118719,'2026-03-03',174,0,0,0,2,0,0,0,0,0,0,0,0),(118718,'2026-03-03',173,0,0,0,2,0,0,0,0,0,0,0,0),(118717,'2026-03-03',172,0,0,0,2,0,0,0,0,0,0,0,0),(118716,'2026-03-03',170,0,0,0,2,0,0,0,0,0,0,0,0),(118715,'2026-03-03',168,0,0,0,2,0,0,0,0,0,0,0,0),(118714,'2026-03-03',167,0,0,0,2,0,0,0,0,0,0,0,0),(118713,'2026-03-03',166,0,0,0,2,0,0,0,0,0,0,0,0),(118712,'2026-03-03',164,0,0,0,2,0,0,0,0,0,0,0,0),(118711,'2026-03-03',163,0,0,0,2,0,0,0,0,0,0,0,0),(118710,'2026-03-03',162,0,0,0,0,1,0,0,0,0,0,0,0),(118709,'2026-03-03',161,0,0,0,2,0,0,0,0,0,0,0,0),(118708,'2026-03-03',160,0,0,0,2,0,0,0,0,0,0,0,0),(118707,'2026-03-03',159,0,0,0,2,0,0,0,0,0,0,0,0),(118706,'2026-03-03',158,0,0,0,2,0,0,0,0,0,0,0,0),(118705,'2026-03-03',157,0,0,0,2,0,0,0,0,0,0,0,0),(118704,'2026-03-03',154,0,0,0,2,0,0,0,0,0,0,0,0),(118703,'2026-03-03',152,0,0,0,2,0,0,0,0,0,0,0,0),(118702,'2026-03-03',151,0,0,0,2,0,0,0,0,0,0,0,0),(118701,'2026-03-03',148,0,0,0,2,0,0,0,0,0,0,0,0),(118700,'2026-03-03',147,0,0,0,2,0,0,0,0,0,0,0,0),(118699,'2026-03-03',146,0,0,0,2,0,0,0,0,0,0,0,0),(118698,'2026-03-03',145,2,69,0,2,0,0,0,0,0,0,0,0),(118697,'2026-03-03',144,0,0,0,2,0,0,0,0,0,0,0,0),(118696,'2026-03-03',143,0,0,0,2,0,0,0,0,0,0,0,0),(118695,'2026-03-03',141,0,0,0,2,1,0,0,0,0,0,0,0),(118694,'2026-03-03',140,0,0,0,2,0,0,0,0,0,0,0,0),(118693,'2026-03-03',136,0,0,0,2,0,0,0,0,0,0,0,0),(118692,'2026-03-03',132,0,0,0,2,0,0,0,0,0,0,0,0),(118691,'2026-03-03',128,0,0,0,2,0,0,0,0,0,0,0,0),(118690,'2026-03-03',127,0,0,0,2,0,0,0,0,0,0,0,0),(118689,'2026-03-03',126,0,0,0,2,0,0,0,0,0,0,0,0),(118688,'2026-03-03',124,0,0,0,2,0,0,0,0,0,0,0,0),(118687,'2026-03-03',123,0,0,0,2,1,0,0,0,0,0,0,0),(118686,'2026-03-03',121,0,0,0,2,0,0,0,0,0,0,0,0),(118685,'2026-03-03',115,0,0,0,2,0,0,0,0,0,0,0,0),(118684,'2026-03-03',114,0,0,0,2,0,0,0,0,0,0,0,0),(118683,'2026-03-03',113,0,0,0,2,0,0,0,0,0,0,0,0),(118682,'2026-03-03',112,0,0,0,2,0,0,0,0,0,0,0,0),(118681,'2026-03-03',111,0,0,0,0,0,1,0,0,0,0,0,0),(118680,'2026-03-03',110,0,0,0,2,0,0,0,0,0,0,0,0),(118679,'2026-03-03',104,0,0,0,0,0,1,0,0,0,0,0,0),(118678,'2026-03-03',103,0,0,0,2,0,0,0,0,0,0,0,0),(118677,'2026-03-03',98,0,0,0,2,0,0,0,0,0,0,0,0),(118676,'2026-03-03',97,1,0,0,2,0,0,0,0,0,0,0,0),(118675,'2026-03-03',96,0,0,0,2,0,0,0,0,0,0,0,0),(118674,'2026-03-03',94,0,0,0,2,0,0,0,0,0,0,0,0),(118673,'2026-03-03',91,0,0,0,2,0,0,0,0,0,0,0,0),(118672,'2026-03-03',90,0,0,0,2,0,0,1,0,0,0,0,0),(118671,'2026-03-03',89,0,0,0,0,0,0,1,0,0,0,0,0),(118670,'2026-03-03',87,0,0,0,2,0,0,0,0,0,0,0,0),(118669,'2026-03-03',81,0,0,0,0,1,1,2,0,0,0,0,0),(118668,'2026-03-03',79,0,0,0,2,0,0,0,0,0,0,0,0),(118667,'2026-03-03',78,0,0,0,0,0,1,1,0,0,0,0,0),(118666,'2026-03-03',77,0,0,0,0,1,0,0,0,0,0,0,0),(118665,'2026-03-03',75,0,0,0,0,0,1,1,0,0,0,0,0),(118664,'2026-03-03',73,0,0,0,0,1,0,0,0,0,0,0,0),(118663,'2026-03-03',70,0,0,0,2,0,0,0,0,0,0,0,0),(118662,'2026-03-03',69,0,0,0,2,0,0,0,0,0,0,0,0),(118661,'2026-03-03',68,0,0,0,2,0,0,0,0,0,0,0,0),(118660,'2026-03-03',67,0,0,0,2,0,0,0,0,0,0,0,0),(118659,'2026-03-03',66,0,0,0,2,0,0,0,0,0,0,0,0),(118658,'2026-03-03',65,0,0,0,2,0,0,0,0,0,0,0,0),(118657,'2026-03-03',64,0,0,0,2,0,0,0,0,0,0,0,0),(118656,'2026-03-03',63,0,0,0,2,0,0,0,0,0,0,0,0),(118655,'2026-03-03',61,0,0,0,2,0,0,0,0,0,0,0,0),(118654,'2026-03-03',58,0,0,0,2,0,0,0,0,0,0,0,0),(118653,'2026-03-03',54,1,0,0,2,0,0,0,0,0,0,0,0),(118652,'2026-03-03',52,0,0,0,2,0,0,0,0,0,0,0,0),(118651,'2026-03-03',51,0,0,0,0,0,0,1,0,0,0,0,0),(118650,'2026-03-03',49,0,0,0,0,0,0,1,0,0,0,0,0),(118649,'2026-03-03',42,0,0,0,2,0,0,0,0,0,0,0,0),(118648,'2026-03-03',40,0,0,0,0,0,1,0,0,0,0,0,0),(118647,'2026-03-03',37,0,0,0,2,0,0,0,0,0,0,0,0),(118646,'2026-03-03',36,0,0,0,0,0,1,0,0,0,0,0,0),(118645,'2026-03-03',33,0,0,0,0,0,1,0,0,0,0,0,0),(118644,'2026-03-03',32,0,0,0,2,0,0,0,0,0,0,0,0),(118643,'2026-03-03',28,0,0,0,0,0,1,0,0,0,0,0,0),(118642,'2026-03-03',27,0,0,0,0,1,1,0,0,0,0,0,0),(118641,'2026-03-03',24,0,0,0,2,0,0,0,0,0,0,0,0),(118640,'2026-03-03',22,0,0,0,0,0,0,1,0,0,0,0,0),(118639,'2026-03-03',19,0,0,0,2,0,0,0,0,0,0,0,0),(118638,'2026-03-03',17,0,0,0,0,1,0,1,0,0,0,0,0),(118637,'2026-03-03',13,0,0,0,2,0,0,0,0,0,0,0,0),(118636,'2026-03-03',10,0,0,0,2,0,0,0,0,0,0,0,0),(118635,'2026-03-03',2,0,0,0,0,0,0,1,0,0,0,0,0),(118928,'2026-03-04',448,0,0,0,0,0,1,0,0,0,0,0,0),(118927,'2026-03-04',388,1,0,1,0,0,0,0,0,0,0,0,0),(118926,'2026-03-04',176,0,0,0,1,0,0,0,0,0,0,0,0),(118925,'2026-03-04',161,0,0,0,0,1,0,0,0,0,0,0,0),(118924,'2026-03-04',54,0,0,0,0,1,0,0,0,0,0,0,0),(118923,'2026-03-04',2,0,0,0,0,0,1,0,0,0,0,0,0),(119202,'2026-03-10',448,0,0,0,1,0,0,0,0,0,0,0,0),(119201,'2026-03-10',446,0,0,0,1,0,0,0,0,0,0,0,0),(119200,'2026-03-10',445,0,0,0,1,0,0,0,0,0,0,0,0),(119199,'2026-03-10',443,0,0,0,1,0,0,0,0,0,0,0,0),(119198,'2026-03-10',441,0,0,0,1,0,0,0,0,0,0,0,0),(119197,'2026-03-10',440,0,0,0,1,0,0,0,0,0,0,0,0),(119196,'2026-03-10',439,0,0,0,1,0,0,0,0,0,0,0,0),(119195,'2026-03-10',438,0,0,0,1,0,0,0,0,0,0,0,0),(119194,'2026-03-10',435,0,0,0,1,0,0,0,0,0,0,0,0),(119193,'2026-03-10',434,0,0,0,1,0,0,0,0,0,0,0,0),(119192,'2026-03-10',433,0,0,0,1,0,0,0,0,0,0,0,0),(119191,'2026-03-10',432,0,0,0,1,0,0,0,0,0,0,0,0),(119190,'2026-03-10',431,0,0,0,1,0,0,0,0,0,0,0,0),(119189,'2026-03-10',430,0,0,0,1,0,0,0,0,0,0,0,0),(119188,'2026-03-10',428,0,0,0,1,0,0,0,0,0,0,0,0),(119187,'2026-03-10',426,0,0,0,1,0,0,0,0,0,0,0,0),(119186,'2026-03-10',423,0,0,0,1,0,0,0,0,0,0,0,0),(119185,'2026-03-10',422,0,0,0,1,0,0,0,0,0,0,0,0),(119184,'2026-03-10',420,0,0,0,1,0,0,0,0,0,0,0,0),(119183,'2026-03-10',417,0,0,0,1,0,0,0,0,0,0,0,0),(119182,'2026-03-10',414,0,0,0,1,0,0,0,0,0,0,0,0),(119181,'2026-03-10',413,0,0,0,1,0,0,0,0,0,0,0,0),(119180,'2026-03-10',412,0,0,0,1,0,0,0,0,0,0,0,0),(119179,'2026-03-10',410,0,0,0,1,0,0,0,0,0,0,0,0),(119178,'2026-03-10',408,0,0,0,1,0,0,0,0,0,0,0,0),(119177,'2026-03-10',407,0,0,0,1,0,0,0,0,0,0,0,0),(119176,'2026-03-10',405,0,0,0,1,0,0,0,0,0,0,0,0),(119175,'2026-03-10',403,0,0,0,1,0,0,0,0,0,0,0,0),(119174,'2026-03-10',401,0,0,0,1,0,0,0,0,0,0,0,0),(119173,'2026-03-10',400,0,0,0,1,0,0,0,0,0,0,0,0),(119172,'2026-03-10',396,0,0,0,1,0,0,0,0,0,0,0,0),(119171,'2026-03-10',395,0,0,0,1,0,0,0,0,0,0,0,0),(119170,'2026-03-10',393,0,0,0,1,0,0,0,0,0,0,0,0),(119169,'2026-03-10',392,0,0,0,1,0,0,0,0,0,0,0,0),(119168,'2026-03-10',391,0,0,0,1,0,0,0,0,0,0,0,0),(119167,'2026-03-10',390,0,0,0,1,0,0,0,0,0,0,0,0),(119166,'2026-03-10',388,0,0,0,1,0,0,0,0,0,0,0,0),(119165,'2026-03-10',387,0,0,0,1,0,0,0,0,0,0,0,0),(119164,'2026-03-10',385,0,0,0,1,0,0,0,0,0,0,0,0),(119163,'2026-03-10',384,0,0,0,1,0,0,0,0,0,0,0,0),(119162,'2026-03-10',382,0,0,0,1,0,0,0,0,0,0,0,0),(119161,'2026-03-10',381,0,0,0,1,0,0,0,0,0,0,0,0),(119160,'2026-03-10',378,0,0,0,1,0,0,0,0,0,0,0,0),(119159,'2026-03-10',377,0,0,0,1,0,0,0,0,0,0,0,0),(119158,'2026-03-10',376,0,0,0,1,0,0,0,0,0,0,0,0),(119157,'2026-03-10',375,0,0,0,1,0,0,0,0,0,0,0,0),(119156,'2026-03-10',372,0,0,0,1,0,0,0,0,0,0,0,0),(119155,'2026-03-10',371,0,0,0,1,0,0,0,0,0,0,0,0),(119154,'2026-03-10',367,0,0,0,1,0,0,0,0,0,0,0,0),(119153,'2026-03-10',365,0,0,0,1,0,0,0,0,0,0,0,0),(119152,'2026-03-10',364,0,0,0,1,0,0,0,0,0,0,0,0),(119151,'2026-03-10',363,0,0,0,1,0,0,0,0,0,0,0,0),(119150,'2026-03-10',361,0,0,0,1,0,0,0,0,0,0,0,0),(119149,'2026-03-10',360,0,0,0,1,0,0,0,0,0,0,0,0),(119148,'2026-03-10',359,0,0,0,1,0,0,0,0,0,0,0,0),(119147,'2026-03-10',357,0,0,0,1,0,0,0,0,0,0,0,0),(119146,'2026-03-10',353,0,0,0,1,0,0,0,0,0,0,0,0),(119145,'2026-03-10',352,0,0,0,1,0,0,0,0,0,0,0,0),(119144,'2026-03-10',351,0,0,0,1,0,0,0,0,0,0,0,0),(119143,'2026-03-10',348,0,0,0,1,0,0,0,0,0,0,0,0),(119142,'2026-03-10',347,0,0,0,1,0,0,0,0,0,0,0,0),(119141,'2026-03-10',346,0,0,0,1,0,0,0,0,0,0,0,0),(119140,'2026-03-10',345,0,0,0,1,0,0,0,0,0,0,0,0),(119139,'2026-03-10',344,0,0,0,1,0,0,0,0,0,0,0,0),(119138,'2026-03-10',341,0,0,0,1,0,0,0,0,0,0,0,0),(119137,'2026-03-10',340,0,0,0,1,0,0,0,0,0,0,0,0),(119136,'2026-03-10',339,0,0,0,1,0,0,0,0,0,0,0,0),(119135,'2026-03-10',338,0,0,0,1,0,0,0,0,0,0,0,0),(119134,'2026-03-10',337,0,0,0,1,0,0,0,0,0,0,0,0),(119133,'2026-03-10',336,0,0,0,1,0,0,0,0,0,0,0,0),(119132,'2026-03-10',335,0,0,0,1,0,0,0,0,0,0,0,0),(119131,'2026-03-10',334,0,0,0,1,0,0,0,0,0,0,0,0),(119130,'2026-03-10',333,0,0,0,1,0,0,0,0,0,0,0,0),(119129,'2026-03-10',332,0,0,0,1,0,0,0,0,0,0,0,0),(119128,'2026-03-10',331,0,0,0,1,0,0,0,0,0,0,0,0),(119127,'2026-03-10',330,0,0,0,1,0,0,0,0,0,0,0,0),(119126,'2026-03-10',329,0,0,0,1,0,0,0,0,0,0,0,0),(119125,'2026-03-10',328,0,0,0,1,0,0,0,0,0,0,0,0),(119124,'2026-03-10',327,0,0,0,1,0,0,0,0,0,0,0,0),(119123,'2026-03-10',326,0,0,0,1,0,0,0,0,0,0,0,0),(119122,'2026-03-10',324,0,0,0,1,0,0,0,0,0,0,0,0),(119121,'2026-03-10',323,0,0,0,1,0,0,0,0,0,0,0,0),(119120,'2026-03-10',321,0,0,0,1,0,0,0,0,0,0,0,0),(119119,'2026-03-10',320,0,0,0,1,0,0,0,0,0,0,0,0),(119118,'2026-03-10',319,0,0,0,1,0,0,0,0,0,0,0,0),(119117,'2026-03-10',317,0,0,0,1,0,0,0,0,0,0,0,0),(119116,'2026-03-10',316,0,0,0,1,0,0,0,0,0,0,0,0),(119115,'2026-03-10',314,0,0,0,1,0,0,0,0,0,0,0,0),(119114,'2026-03-10',313,0,0,0,1,0,0,0,0,0,0,0,0),(119113,'2026-03-10',311,0,0,0,0,1,0,0,0,0,0,0,0),(119112,'2026-03-10',310,0,0,0,1,0,0,0,0,0,0,0,0),(119111,'2026-03-10',309,0,0,0,1,0,0,0,0,0,0,0,0),(119110,'2026-03-10',308,0,0,0,1,0,0,0,0,0,0,0,0),(119109,'2026-03-10',307,0,0,0,1,0,0,0,0,0,0,0,0),(119108,'2026-03-10',304,0,0,0,1,0,0,0,0,0,0,0,0),(119107,'2026-03-10',303,0,0,0,1,0,0,0,0,0,0,0,0),(119106,'2026-03-10',302,0,0,0,1,0,0,0,0,0,0,0,0),(119105,'2026-03-10',301,0,0,0,1,0,0,0,0,0,0,0,0),(119104,'2026-03-10',300,0,0,0,1,0,0,0,0,0,0,0,0),(119103,'2026-03-10',299,0,0,0,1,0,0,0,0,0,0,0,0),(119102,'2026-03-10',298,0,0,0,1,0,0,0,0,0,0,0,0),(119101,'2026-03-10',296,0,0,0,1,0,0,0,0,0,0,0,0),(119100,'2026-03-10',295,0,0,0,1,0,0,0,0,0,0,0,0),(119099,'2026-03-10',294,0,0,0,1,0,0,0,0,0,0,0,0),(119098,'2026-03-10',292,0,0,0,1,0,0,0,0,0,0,0,0),(119097,'2026-03-10',291,0,0,0,1,0,0,0,0,0,0,0,0),(119096,'2026-03-10',290,0,0,0,1,0,0,0,0,0,0,0,0),(119095,'2026-03-10',289,0,0,0,1,0,0,0,0,0,0,0,0),(119094,'2026-03-10',288,0,0,0,1,0,0,0,0,0,0,0,0),(119093,'2026-03-10',285,0,0,0,1,0,0,0,0,0,0,0,0),(119092,'2026-03-10',281,0,0,0,1,0,0,0,0,0,0,0,0),(119091,'2026-03-10',280,0,0,0,1,0,0,0,0,0,0,0,0),(119090,'2026-03-10',278,0,0,0,1,0,0,0,0,0,0,0,0),(119089,'2026-03-10',275,0,0,0,1,0,0,0,0,0,0,0,0),(119088,'2026-03-10',274,0,0,0,1,0,0,0,0,0,0,0,0),(119087,'2026-03-10',273,0,0,0,1,0,0,0,0,0,0,0,0),(119086,'2026-03-10',271,0,0,0,1,0,0,0,0,0,0,0,0),(119085,'2026-03-10',269,0,0,0,1,0,0,0,0,0,0,0,0),(119084,'2026-03-10',268,0,0,0,1,0,0,0,0,0,0,0,0),(119083,'2026-03-10',266,0,0,0,1,0,0,0,0,0,0,0,0),(119082,'2026-03-10',265,0,0,0,1,0,0,0,0,0,0,0,0),(119081,'2026-03-10',264,0,0,0,1,0,0,0,0,0,0,0,0),(119080,'2026-03-10',263,0,0,0,1,0,0,0,0,0,0,0,0),(119079,'2026-03-10',262,0,0,0,1,0,0,0,0,0,0,0,0),(119078,'2026-03-10',261,0,0,0,1,0,0,0,0,0,0,0,0),(119077,'2026-03-10',260,0,0,0,1,0,0,0,0,0,0,0,0),(119076,'2026-03-10',258,0,0,0,1,0,0,0,0,0,0,0,0),(119075,'2026-03-10',257,0,0,0,1,0,0,0,0,0,0,0,0),(119074,'2026-03-10',256,0,0,0,1,0,0,0,0,0,0,0,0),(119073,'2026-03-10',255,0,0,0,1,0,0,0,0,0,0,0,0),(119072,'2026-03-10',254,0,0,0,1,0,0,0,0,0,0,0,0),(119071,'2026-03-10',253,0,0,0,1,0,0,0,0,0,0,0,0),(119070,'2026-03-10',251,0,0,0,1,0,0,0,0,0,0,0,0),(119069,'2026-03-10',250,0,0,0,1,0,0,0,0,0,0,0,0),(119068,'2026-03-10',249,0,0,0,1,0,0,0,0,0,0,0,0),(119067,'2026-03-10',247,0,0,0,1,0,0,0,0,0,0,0,0),(119066,'2026-03-10',246,0,0,0,1,0,0,0,0,0,0,0,0),(119065,'2026-03-10',245,0,0,0,1,0,0,0,0,0,0,0,0),(119064,'2026-03-10',243,0,0,0,1,0,0,0,0,0,0,0,0),(119063,'2026-03-10',242,0,0,0,1,0,0,0,0,0,0,0,0),(119062,'2026-03-10',241,0,0,0,1,0,0,0,0,0,0,0,0),(119061,'2026-03-10',239,0,0,0,1,0,0,0,0,0,0,0,0),(119060,'2026-03-10',238,0,0,0,1,0,0,0,0,0,0,0,0),(119059,'2026-03-10',236,0,0,0,1,0,0,0,0,0,0,0,0),(119058,'2026-03-10',234,0,0,0,1,0,0,0,0,0,0,0,0),(119057,'2026-03-10',233,0,0,0,1,0,0,0,0,0,0,0,0),(119056,'2026-03-10',232,0,0,0,1,0,0,0,0,0,0,0,0),(119055,'2026-03-10',231,0,0,0,1,0,0,0,0,0,0,0,0),(119054,'2026-03-10',228,0,0,0,1,0,0,0,0,0,0,0,0),(119053,'2026-03-10',227,0,0,0,1,0,0,0,0,0,0,0,0),(119052,'2026-03-10',226,0,0,0,1,0,0,0,0,0,0,0,0),(119051,'2026-03-10',225,0,0,0,1,0,0,0,0,0,0,0,0),(119050,'2026-03-10',224,0,0,0,1,0,0,0,0,0,0,0,0),(119049,'2026-03-10',222,0,0,0,1,0,0,0,0,0,0,0,0),(119048,'2026-03-10',221,0,0,0,1,0,0,0,0,0,0,0,0),(119047,'2026-03-10',220,0,0,0,1,0,0,0,0,0,0,0,0),(119046,'2026-03-10',217,0,0,0,1,0,0,0,0,0,0,0,0),(119045,'2026-03-10',214,0,0,0,1,0,0,0,0,0,0,0,0),(119044,'2026-03-10',213,0,0,0,1,0,0,0,0,0,0,0,0),(119043,'2026-03-10',212,0,0,0,1,0,0,0,0,0,0,0,0),(119042,'2026-03-10',211,0,0,0,1,0,0,0,0,0,0,0,0),(119041,'2026-03-10',210,0,0,0,1,0,0,0,0,0,0,0,0),(119040,'2026-03-10',209,0,0,0,1,0,0,0,0,0,0,0,0),(119039,'2026-03-10',208,0,0,0,1,0,0,0,0,0,0,0,0),(119038,'2026-03-10',207,0,0,0,1,0,0,0,0,0,0,0,0),(119037,'2026-03-10',206,0,0,0,1,0,0,0,0,0,0,0,0),(119036,'2026-03-10',205,0,0,0,1,0,0,0,0,0,0,0,0),(119035,'2026-03-10',204,0,0,0,1,0,0,0,0,0,0,0,0),(119034,'2026-03-10',203,0,0,0,1,0,0,0,0,0,0,0,0),(119033,'2026-03-10',201,0,0,0,1,0,0,0,0,0,0,0,0),(119032,'2026-03-10',200,0,0,0,1,0,0,0,0,0,0,0,0),(119031,'2026-03-10',197,0,0,0,1,0,0,0,0,0,0,0,0),(119030,'2026-03-10',196,0,0,0,1,0,0,0,0,0,0,0,0),(119029,'2026-03-10',195,0,0,0,1,0,0,0,0,0,0,0,0),(119028,'2026-03-10',194,0,0,0,1,0,0,0,0,0,0,0,0),(119027,'2026-03-10',193,0,0,0,1,0,0,0,0,0,0,0,0),(119026,'2026-03-10',192,0,0,0,1,0,0,0,0,0,0,0,0),(119025,'2026-03-10',191,0,0,0,1,0,0,0,0,0,0,0,0),(119024,'2026-03-10',190,0,0,0,1,0,0,0,0,0,0,0,0),(119023,'2026-03-10',189,0,0,0,1,0,0,0,0,0,0,0,0),(119022,'2026-03-10',188,0,0,0,1,0,0,0,0,0,0,0,0),(119021,'2026-03-10',187,0,0,0,1,0,0,0,0,0,0,0,0),(119020,'2026-03-10',186,0,0,0,1,0,0,0,0,0,0,0,0),(119019,'2026-03-10',185,0,0,0,1,0,0,0,0,0,0,0,0),(119018,'2026-03-10',184,0,0,0,1,0,0,0,0,0,0,0,0),(119017,'2026-03-10',183,0,0,0,1,0,0,0,0,0,0,0,0),(119016,'2026-03-10',182,0,0,0,1,0,0,0,0,0,0,0,0),(119015,'2026-03-10',181,0,0,0,1,0,0,0,0,0,0,0,0),(119014,'2026-03-10',180,0,0,0,1,0,0,0,0,0,0,0,0),(119013,'2026-03-10',179,0,0,0,1,0,0,0,0,0,0,0,0),(119012,'2026-03-10',176,0,0,0,1,0,0,0,0,0,0,0,0),(119011,'2026-03-10',175,0,0,0,1,0,0,0,0,0,0,0,0),(119010,'2026-03-10',174,0,0,0,1,0,0,0,0,0,0,0,0),(119009,'2026-03-10',173,0,0,0,1,0,0,0,0,0,0,0,0),(119008,'2026-03-10',172,0,0,0,1,0,0,0,0,0,0,0,0),(119007,'2026-03-10',170,0,0,0,1,0,0,0,0,0,0,0,0),(119006,'2026-03-10',168,0,0,0,1,0,0,0,0,0,0,0,0),(119005,'2026-03-10',167,0,0,0,1,0,0,0,0,0,0,0,0),(119004,'2026-03-10',166,0,0,0,1,0,0,0,0,0,0,0,0),(119003,'2026-03-10',164,0,0,0,1,0,0,0,0,0,0,0,0),(119002,'2026-03-10',163,0,0,0,1,0,0,0,0,0,0,0,0),(119001,'2026-03-10',161,0,0,0,1,0,0,0,0,0,0,0,0),(119000,'2026-03-10',160,0,0,0,1,0,0,0,0,0,0,0,0),(118999,'2026-03-10',159,0,0,0,1,0,0,0,0,0,0,0,0),(118998,'2026-03-10',158,0,0,0,1,0,0,0,0,0,0,0,0),(118997,'2026-03-10',157,0,0,0,1,0,0,0,0,0,0,0,0),(118996,'2026-03-10',154,0,0,0,1,0,0,0,0,0,0,0,0),(118995,'2026-03-10',152,0,0,0,1,0,0,0,0,0,0,0,0),(118994,'2026-03-10',151,0,0,0,1,0,0,0,0,0,0,0,0),(118993,'2026-03-10',148,0,0,0,1,0,0,0,0,0,0,0,0),(118992,'2026-03-10',147,0,0,0,1,0,0,0,0,0,0,0,0),(118991,'2026-03-10',146,0,0,0,1,0,0,0,0,0,0,0,0),(118990,'2026-03-10',145,0,0,0,1,0,0,0,0,0,0,0,0),(118989,'2026-03-10',144,0,0,0,1,0,0,0,0,0,0,0,0),(118988,'2026-03-10',143,0,0,0,1,0,0,0,0,0,0,0,0),(118987,'2026-03-10',141,0,0,0,1,0,0,0,0,0,0,0,0),(118986,'2026-03-10',140,0,0,0,1,0,0,0,0,0,0,0,0),(118985,'2026-03-10',136,0,0,0,1,0,0,0,0,0,0,0,0),(118984,'2026-03-10',132,0,0,0,1,0,0,0,0,0,0,0,0),(118983,'2026-03-10',128,0,0,0,1,0,0,0,0,0,0,0,0),(118982,'2026-03-10',127,0,0,0,1,0,0,0,0,0,0,0,0),(118981,'2026-03-10',126,0,0,0,1,0,0,0,0,0,0,0,0),(118980,'2026-03-10',124,0,0,0,1,0,0,0,0,0,0,0,0),(118979,'2026-03-10',123,0,0,0,1,0,0,0,0,0,0,0,0),(118978,'2026-03-10',121,0,0,0,1,0,0,0,0,0,0,0,0),(118977,'2026-03-10',115,0,0,0,1,0,0,0,0,0,0,0,0),(118976,'2026-03-10',114,0,0,0,1,0,0,0,0,0,0,0,0),(118975,'2026-03-10',113,0,0,0,1,0,0,0,0,0,0,0,0),(118974,'2026-03-10',112,0,0,0,1,0,0,0,0,0,0,0,0),(118973,'2026-03-10',110,0,0,0,1,0,0,0,0,0,0,0,0),(118972,'2026-03-10',103,0,0,0,1,0,0,0,0,0,0,0,0),(118971,'2026-03-10',98,0,0,0,1,0,0,0,0,0,0,0,0),(118970,'2026-03-10',97,0,0,0,1,0,0,0,0,0,0,0,0),(118969,'2026-03-10',96,0,0,0,1,0,0,0,0,0,0,0,0),(118968,'2026-03-10',94,0,0,0,1,0,0,0,0,0,0,0,0),(118967,'2026-03-10',91,0,0,1,0,0,0,0,0,0,0,0,0),(118966,'2026-03-10',90,0,0,0,1,0,0,0,0,0,0,0,0),(118965,'2026-03-10',87,0,0,0,1,0,0,0,0,0,0,0,0),(118931,'2026-03-07',188,0,0,0,0,0,0,1,0,0,0,0,0),(118930,'2026-03-07',137,0,0,0,0,0,0,1,0,0,0,0,0),(118929,'2026-03-07',1,0,0,0,0,0,0,3,0,0,0,0,0),(118938,'2026-03-08',109,0,0,0,0,0,0,1,0,0,0,0,0),(118937,'2026-03-08',51,0,0,0,0,0,0,2,0,0,0,0,0),(118936,'2026-03-08',49,0,0,0,0,0,0,3,0,0,0,0,0),(118935,'2026-03-08',22,0,0,0,0,0,0,1,0,0,0,0,0),(118934,'2026-03-08',17,0,0,0,0,0,0,4,0,0,0,0,0),(118933,'2026-03-08',9,0,0,0,0,0,0,1,0,0,0,0,0),(118932,'2026-03-08',5,0,0,0,0,0,0,1,0,0,0,0,0),(118955,'2026-03-10',61,0,0,0,1,0,0,0,0,0,0,0,0),(118954,'2026-03-10',58,0,0,0,1,0,0,0,0,0,0,0,0),(118953,'2026-03-10',54,0,0,0,1,0,0,0,0,0,0,0,0),(118952,'2026-03-10',52,0,0,0,1,0,0,0,0,0,0,0,0),(118951,'2026-03-10',49,0,0,0,0,0,1,0,0,0,0,0,0),(118950,'2026-03-10',42,0,0,0,1,0,0,0,0,0,0,0,0),(118949,'2026-03-10',37,0,0,0,1,0,0,0,0,0,0,0,0),(118948,'2026-03-10',32,0,0,0,1,0,0,0,0,0,0,0,0),(118958,'2026-03-10',65,0,0,0,1,0,0,0,0,0,0,0,0),(118943,'2026-03-09',218,0,0,0,0,0,0,1,0,0,0,0,0),(118942,'2026-03-09',78,0,0,0,0,0,0,2,0,0,0,0,0),(118941,'2026-03-09',75,0,0,0,0,0,0,2,0,0,0,0,0),(118947,'2026-03-10',24,0,0,0,1,0,0,0,0,0,0,0,0),(118946,'2026-03-10',19,0,0,0,1,0,0,0,0,0,0,0,0),(118945,'2026-03-10',13,0,0,0,1,0,0,0,0,0,0,0,0),(118944,'2026-03-10',10,0,0,0,1,0,0,0,0,0,0,0,0),(119414,'2026-03-14',329,0,0,0,2,0,0,0,0,0,0,0,0),(119413,'2026-03-14',328,0,0,0,2,0,0,0,0,0,0,0,0),(119412,'2026-03-14',327,0,0,1,1,0,0,0,0,0,0,0,0),(119411,'2026-03-14',326,0,0,0,2,0,0,0,0,0,0,0,0),(119410,'2026-03-14',324,0,0,0,2,0,0,0,0,0,0,0,0),(119409,'2026-03-14',323,0,0,0,2,0,0,0,0,0,0,0,0),(119408,'2026-03-14',321,0,0,0,2,0,0,0,0,0,0,0,0),(119407,'2026-03-14',320,0,0,0,2,0,0,0,0,0,0,0,0),(119406,'2026-03-14',319,0,0,0,2,0,0,0,0,0,0,0,0),(119405,'2026-03-14',317,0,0,0,2,0,0,0,0,0,0,0,0),(119404,'2026-03-14',316,0,0,0,2,0,0,0,0,0,0,0,0),(119403,'2026-03-14',314,0,0,0,2,0,0,0,0,0,0,0,0),(119402,'2026-03-14',313,0,0,0,2,0,0,0,0,0,0,0,0),(119401,'2026-03-14',310,0,0,0,2,0,0,0,0,0,0,0,0),(119400,'2026-03-14',309,0,0,0,2,0,0,0,0,0,0,0,0),(119399,'2026-03-14',308,0,0,0,2,0,0,0,0,0,0,0,0),(119398,'2026-03-14',307,0,0,0,2,0,0,0,0,0,0,0,0),(119397,'2026-03-14',304,0,0,0,2,0,0,0,0,0,0,0,0),(119396,'2026-03-14',303,0,0,0,2,0,0,0,0,0,0,0,0),(119395,'2026-03-14',302,0,0,0,2,0,0,0,0,0,0,0,0),(119394,'2026-03-14',301,0,0,0,2,0,0,0,0,0,0,0,0),(119393,'2026-03-14',300,0,0,0,2,0,0,0,0,0,0,0,0),(119392,'2026-03-14',299,0,0,0,2,0,0,0,0,0,0,0,0),(119391,'2026-03-14',298,0,0,0,2,0,1,0,0,0,0,0,0),(119390,'2026-03-14',296,0,0,0,2,0,0,0,0,0,0,0,0),(119389,'2026-03-14',295,0,0,0,2,0,0,0,0,0,0,0,0),(119388,'2026-03-14',294,0,0,0,2,0,0,0,0,0,0,0,0),(119387,'2026-03-14',292,0,0,0,2,0,0,0,0,0,0,0,0),(119386,'2026-03-14',291,0,0,0,2,0,0,0,0,0,0,0,0),(119385,'2026-03-14',290,0,0,0,2,0,0,0,0,0,0,0,0),(119384,'2026-03-14',289,0,0,0,2,0,0,0,0,0,0,0,0),(119383,'2026-03-14',288,0,0,0,2,0,0,0,0,0,0,0,0),(119382,'2026-03-14',285,0,0,0,2,0,0,0,0,0,0,0,0),(119381,'2026-03-14',281,0,0,0,2,0,0,0,0,0,0,0,0),(119380,'2026-03-14',280,0,0,0,2,0,0,0,0,0,0,0,0),(119379,'2026-03-14',278,0,0,0,2,0,0,0,0,0,0,0,0),(119378,'2026-03-14',275,0,0,0,2,0,0,0,0,0,0,0,0),(119377,'2026-03-14',274,0,0,0,2,0,0,0,0,0,0,0,0),(119376,'2026-03-14',273,0,0,0,2,0,0,0,0,0,0,0,0),(119375,'2026-03-14',271,0,0,0,2,0,0,0,0,0,0,0,0),(119374,'2026-03-14',269,0,0,0,2,0,0,0,0,0,0,0,0),(119373,'2026-03-14',268,0,0,0,2,0,0,0,0,0,0,0,0),(119372,'2026-03-14',266,0,0,0,2,0,0,0,0,0,0,0,0),(119371,'2026-03-14',265,0,0,0,2,0,0,0,0,0,0,0,0),(119370,'2026-03-14',264,0,0,0,2,0,0,0,0,0,0,0,0),(119369,'2026-03-14',263,0,0,0,2,0,0,0,0,0,0,0,0),(119368,'2026-03-14',262,0,0,0,2,0,0,0,0,0,0,0,0),(119367,'2026-03-14',261,0,0,0,2,0,0,0,0,0,0,0,0),(119366,'2026-03-14',260,0,0,0,2,0,0,0,0,0,0,0,0),(119365,'2026-03-14',258,0,0,0,2,0,0,0,0,0,0,0,0),(119364,'2026-03-14',257,0,0,0,2,0,0,0,0,0,0,0,0),(119363,'2026-03-14',256,0,0,0,2,0,0,0,0,0,0,0,0),(119362,'2026-03-14',255,0,0,0,2,0,0,0,0,0,0,0,0),(119361,'2026-03-14',254,0,0,0,2,0,0,0,0,0,0,0,0),(119360,'2026-03-14',253,0,0,0,2,0,0,0,0,0,0,0,0),(119359,'2026-03-14',251,0,0,0,2,0,0,0,0,0,0,0,0),(119358,'2026-03-14',250,0,0,0,2,0,0,0,0,0,0,0,0),(119357,'2026-03-14',249,0,0,0,2,0,0,0,0,0,0,0,0),(119356,'2026-03-14',247,0,0,0,2,0,0,0,0,0,0,0,0),(119355,'2026-03-14',246,0,0,0,2,0,0,0,0,0,0,0,0),(119354,'2026-03-14',245,0,0,0,2,0,0,0,0,0,0,0,0),(119353,'2026-03-14',243,0,0,0,2,0,0,0,0,0,0,0,0),(119352,'2026-03-14',242,0,0,0,2,0,0,0,0,0,0,0,0),(119351,'2026-03-14',241,0,0,0,2,0,0,0,0,0,0,0,0),(119350,'2026-03-14',239,0,0,0,2,0,1,0,0,0,0,0,0),(119349,'2026-03-14',238,0,0,0,2,0,0,0,0,0,0,0,0),(119348,'2026-03-14',236,0,0,0,2,0,0,0,0,0,0,0,0),(119347,'2026-03-14',234,0,0,0,2,0,0,0,0,0,0,0,0),(119346,'2026-03-14',233,0,0,0,2,0,0,0,0,0,0,0,0),(119345,'2026-03-14',232,0,0,0,2,0,0,0,0,0,0,0,0),(119344,'2026-03-14',231,0,0,0,2,0,0,0,0,0,0,0,0),(119343,'2026-03-14',228,0,0,0,2,0,0,0,0,0,0,0,0),(119342,'2026-03-14',227,0,0,0,2,0,0,0,0,0,0,0,0),(119341,'2026-03-14',226,0,0,0,2,0,0,0,0,0,0,0,0),(119340,'2026-03-14',225,0,0,0,2,0,0,0,0,0,0,0,0),(119339,'2026-03-14',224,0,0,0,2,0,0,0,0,0,0,0,0),(119338,'2026-03-14',222,0,0,0,2,0,0,0,0,0,0,0,0),(119337,'2026-03-14',221,0,0,0,2,0,0,0,0,0,0,0,0),(119336,'2026-03-14',220,0,0,0,2,0,0,0,0,0,0,0,0),(119335,'2026-03-14',217,0,0,0,2,0,0,0,0,0,0,0,0),(119334,'2026-03-14',214,0,0,0,2,0,0,0,0,0,0,0,0),(119333,'2026-03-14',213,0,0,0,2,0,0,0,0,0,0,0,0),(119332,'2026-03-14',212,0,0,0,2,0,0,0,0,0,0,0,0),(119331,'2026-03-14',211,0,0,0,2,0,0,0,0,0,0,0,0),(119330,'2026-03-14',210,0,0,0,2,0,0,0,0,0,0,0,0),(119329,'2026-03-14',209,0,0,0,2,0,0,0,0,0,0,0,0),(119328,'2026-03-14',208,0,0,0,2,0,0,0,0,0,0,0,0),(119327,'2026-03-14',207,0,0,0,2,0,0,0,0,0,0,0,0),(119326,'2026-03-14',206,0,0,0,2,0,0,0,0,0,0,0,0),(119325,'2026-03-14',205,0,0,0,2,0,0,0,0,0,0,0,0),(119324,'2026-03-14',204,0,0,0,2,0,0,0,0,0,0,0,0),(119323,'2026-03-14',203,0,0,0,2,0,1,0,0,0,0,0,0),(119322,'2026-03-14',201,0,0,0,2,0,0,0,0,0,0,0,0),(119321,'2026-03-14',200,0,0,0,2,0,0,0,0,0,0,0,0),(119320,'2026-03-14',197,0,0,0,2,0,0,0,0,0,0,0,0),(119319,'2026-03-14',196,0,0,0,2,0,0,0,0,0,0,0,0),(119318,'2026-03-14',195,0,0,0,2,0,0,0,0,0,0,0,0),(119317,'2026-03-14',194,0,0,0,2,0,0,0,0,0,0,0,0),(119316,'2026-03-14',193,0,0,0,2,0,0,0,0,0,0,0,0),(119315,'2026-03-14',192,0,0,0,2,0,0,0,0,0,0,0,0),(119314,'2026-03-14',191,0,0,0,2,0,0,0,0,0,0,0,0),(119313,'2026-03-14',190,0,0,0,2,0,0,0,0,0,0,0,0),(119312,'2026-03-14',189,0,0,0,2,0,0,0,0,0,0,0,0),(119311,'2026-03-14',188,0,0,0,2,0,0,1,0,0,0,0,0),(119310,'2026-03-14',187,0,0,0,2,0,0,0,0,0,0,0,0),(119309,'2026-03-14',186,0,0,0,2,0,0,0,0,0,0,0,0),(119308,'2026-03-14',185,0,0,0,2,0,0,0,0,0,0,0,0),(119307,'2026-03-14',184,0,0,0,2,0,0,0,0,0,0,0,0),(119306,'2026-03-14',183,0,0,0,2,0,0,0,0,0,0,0,0),(119305,'2026-03-14',182,0,0,0,2,0,0,0,0,0,0,0,0),(119304,'2026-03-14',181,0,0,0,2,0,0,0,0,0,0,0,0),(119303,'2026-03-14',180,0,0,0,2,0,0,0,0,0,0,0,0),(119302,'2026-03-14',179,0,0,0,2,0,0,0,0,0,0,0,0),(119301,'2026-03-14',176,0,0,0,2,0,0,0,0,0,0,0,0),(119300,'2026-03-14',175,0,0,0,2,0,0,0,0,0,0,0,0),(119299,'2026-03-14',174,0,0,0,2,0,0,0,0,0,0,0,0),(119298,'2026-03-14',173,0,0,0,2,0,0,0,0,0,0,0,0),(119297,'2026-03-14',172,0,0,0,2,0,0,0,0,0,0,0,0),(119296,'2026-03-14',170,0,0,0,2,0,0,0,0,0,0,0,0),(119295,'2026-03-14',168,0,0,0,2,0,0,0,0,0,0,0,0),(119294,'2026-03-14',167,0,0,0,2,0,0,0,0,0,0,0,0),(119293,'2026-03-14',166,0,0,0,2,0,0,0,0,0,0,0,0),(119292,'2026-03-14',164,0,0,0,2,0,0,0,0,0,0,0,0),(119291,'2026-03-14',163,0,0,0,2,0,0,0,0,0,0,0,0),(119290,'2026-03-14',161,0,0,0,2,0,0,0,0,0,0,0,0),(119289,'2026-03-14',160,0,0,0,2,0,0,0,0,0,0,0,0),(119288,'2026-03-14',159,0,0,0,2,0,0,0,0,0,0,0,0),(119287,'2026-03-14',158,0,0,0,2,0,0,0,0,0,0,0,0),(119286,'2026-03-14',157,0,0,0,2,0,0,0,0,0,0,0,0),(119285,'2026-03-14',154,0,0,0,2,0,0,0,0,0,0,0,0),(119284,'2026-03-14',152,0,0,0,2,0,0,0,0,0,0,0,0),(119283,'2026-03-14',151,0,0,0,2,0,0,0,0,0,0,0,0),(119282,'2026-03-14',148,0,0,0,2,0,0,0,0,0,0,0,0),(119281,'2026-03-14',147,0,0,0,2,0,0,0,0,0,0,0,0),(119280,'2026-03-14',146,0,0,0,2,0,0,0,0,0,0,0,0),(119279,'2026-03-14',145,0,0,0,2,0,0,0,0,0,0,0,0),(119278,'2026-03-14',144,0,0,0,2,0,0,0,0,0,0,0,0),(119277,'2026-03-14',143,0,0,0,2,0,0,0,0,0,0,0,0),(119276,'2026-03-14',141,0,0,0,2,0,0,0,0,0,0,0,0),(119275,'2026-03-14',140,0,0,0,2,0,0,0,0,0,0,0,0),(119274,'2026-03-14',137,0,0,0,0,1,0,0,0,0,0,0,0),(119273,'2026-03-14',136,0,0,0,2,0,0,0,0,0,0,0,0),(119272,'2026-03-14',132,0,0,0,2,0,0,0,0,0,0,0,0),(119271,'2026-03-14',128,0,0,0,2,0,0,0,0,0,0,0,0),(119270,'2026-03-14',127,0,0,0,2,0,0,0,0,0,0,0,0),(119269,'2026-03-14',126,0,0,0,2,0,0,0,0,0,0,0,0),(119268,'2026-03-14',124,0,0,0,2,0,0,0,0,0,0,0,0),(119267,'2026-03-14',123,0,0,0,2,0,0,1,0,0,0,0,0),(119266,'2026-03-14',121,0,0,0,2,0,0,0,0,0,0,0,0),(119265,'2026-03-14',115,0,0,0,2,0,0,0,0,0,0,0,0),(119264,'2026-03-14',114,0,0,0,2,0,0,0,0,0,0,0,0),(119263,'2026-03-14',113,0,0,0,2,0,0,0,0,0,0,0,0),(119262,'2026-03-14',112,0,0,0,2,0,0,0,0,0,0,0,0),(119261,'2026-03-14',110,0,0,0,2,0,0,0,0,0,0,0,0),(119260,'2026-03-14',109,0,0,0,0,1,1,1,0,0,0,0,0),(119259,'2026-03-14',103,0,0,0,2,0,0,0,0,0,0,0,0),(119258,'2026-03-14',98,0,0,0,2,0,0,0,0,0,0,0,0),(119257,'2026-03-14',97,0,0,0,2,0,0,0,0,0,0,0,0),(119256,'2026-03-14',96,0,0,0,2,0,0,0,0,0,0,0,0),(119255,'2026-03-14',94,0,0,0,2,0,0,0,0,0,0,0,0),(119254,'2026-03-14',91,0,0,1,1,0,0,0,0,0,0,0,0),(119253,'2026-03-14',90,0,0,0,2,0,0,0,0,0,0,0,0),(119252,'2026-03-14',87,0,0,0,2,0,0,0,0,0,0,0,0),(119251,'2026-03-14',79,0,0,0,2,0,0,0,0,0,0,0,0),(119250,'2026-03-14',75,0,0,0,0,1,0,0,0,0,0,0,0),(119249,'2026-03-14',70,0,0,0,2,0,0,0,0,0,0,0,0),(119248,'2026-03-14',69,0,0,0,2,0,0,0,0,0,0,0,0),(119247,'2026-03-14',68,0,0,0,2,0,0,0,0,0,0,0,0),(119246,'2026-03-14',67,0,0,0,2,0,0,0,0,0,0,0,0),(119245,'2026-03-14',66,0,0,0,2,0,0,0,0,0,0,0,0),(119244,'2026-03-14',65,0,0,0,2,0,0,0,0,0,0,0,0),(119243,'2026-03-14',64,0,0,0,2,0,0,0,0,0,0,0,0),(119242,'2026-03-14',63,0,0,0,2,0,0,0,0,0,0,0,0),(119241,'2026-03-14',61,0,0,0,2,0,0,0,0,0,0,0,0),(119240,'2026-03-14',58,0,0,0,2,0,0,0,0,0,0,0,0),(119239,'2026-03-14',54,0,0,0,2,0,0,0,0,0,0,0,0),(119238,'2026-03-14',53,0,0,0,0,0,1,0,0,0,0,0,0),(119237,'2026-03-14',52,0,0,0,2,0,0,0,0,0,0,0,0),(119236,'2026-03-14',47,0,0,0,0,0,1,0,0,0,0,0,0),(119235,'2026-03-14',42,0,0,0,2,0,0,0,0,0,0,0,0),(119234,'2026-03-14',37,1,0,0,2,0,0,0,0,0,0,0,0),(119233,'2026-03-14',32,0,0,0,2,0,0,0,0,0,0,0,0),(119232,'2026-03-14',24,0,0,0,2,0,0,0,0,0,0,0,0),(119231,'2026-03-14',22,0,0,0,0,0,0,2,0,0,0,0,0),(119230,'2026-03-14',19,0,0,0,2,0,0,0,0,0,0,0,0),(119229,'2026-03-14',17,0,0,0,0,0,0,1,0,0,0,0,0),(119228,'2026-03-14',13,0,0,0,2,0,0,0,0,0,0,0,0),(119227,'2026-03-14',10,0,0,0,2,0,0,0,0,0,0,0,0),(119226,'2026-03-14',9,0,0,0,0,0,0,1,0,0,0,0,0),(119225,'2026-03-14',8,0,0,0,0,1,0,0,0,0,0,0,0),(119224,'2026-03-14',5,0,0,0,0,1,1,3,0,0,0,0,0),(119223,'2026-03-14',2,0,0,0,0,1,0,0,0,0,0,0,0),(119222,'2026-03-14',1,0,0,0,0,1,0,0,0,0,0,0,0),(119496,'2026-03-14',539,0,0,0,2,0,0,0,0,0,0,0,0),(119495,'2026-03-14',537,0,0,0,2,0,0,0,0,0,0,0,0),(119494,'2026-03-14',536,0,0,0,2,0,0,0,0,0,0,0,0),(119493,'2026-03-14',456,0,0,0,2,0,0,0,0,0,0,0,0),(119492,'2026-03-14',452,0,0,0,2,0,0,0,0,0,0,0,0),(119491,'2026-03-14',451,0,0,0,2,0,0,0,0,0,0,0,0),(119490,'2026-03-14',448,0,0,0,2,0,0,0,0,0,0,0,0),(119489,'2026-03-14',446,0,0,0,2,0,0,0,0,0,0,0,0),(119488,'2026-03-14',445,0,0,0,2,0,0,0,0,0,0,0,0),(119487,'2026-03-14',443,0,0,0,2,0,0,0,0,0,0,0,0),(119486,'2026-03-14',441,0,0,0,2,0,0,0,0,0,0,0,0),(119221,'2026-03-13',137,0,0,0,0,0,0,1,0,0,0,0,0),(119220,'2026-03-13',90,0,0,0,0,0,0,1,0,0,0,0,0),(119219,'2026-03-13',2,0,0,0,0,0,0,1,0,0,0,0,0),(119218,'2026-03-13',1,0,0,0,0,0,0,2,0,0,0,0,0),(119502,'2026-03-14',673,0,0,0,2,0,0,0,0,0,0,0,0),(119501,'2026-03-14',670,0,0,0,2,0,0,0,0,0,0,0,0),(119500,'2026-03-14',628,0,0,0,2,0,0,0,0,0,0,0,0),(119499,'2026-03-14',621,0,0,0,2,0,0,0,0,0,0,0,0),(119498,'2026-03-14',584,0,0,0,2,0,0,0,0,0,0,0,0),(119497,'2026-03-14',560,0,0,0,2,0,0,0,0,0,0,0,0),(119514,'2026-03-17',89,0,0,0,0,0,0,2,0,0,0,0,0),(119513,'2026-03-17',81,0,0,0,0,0,0,1,0,0,0,0,0),(119783,'2026-04-05',420,0,0,0,1,0,0,0,0,0,0,0,0),(119782,'2026-04-05',417,0,0,0,1,0,0,0,0,0,0,0,0),(119781,'2026-04-05',414,0,0,0,1,0,0,0,0,0,0,0,0),(119780,'2026-04-05',413,0,0,0,1,1,0,0,0,0,0,0,0),(119779,'2026-04-05',412,0,0,0,1,0,0,0,0,0,0,0,0),(119778,'2026-04-05',410,0,0,0,1,0,0,0,0,0,0,0,0),(119777,'2026-04-05',408,0,0,0,1,0,0,0,0,0,0,0,0),(119776,'2026-04-05',407,0,0,0,1,0,0,0,0,0,0,0,0),(119775,'2026-04-05',405,0,0,0,1,0,0,0,0,0,0,0,0),(119774,'2026-04-05',403,0,0,0,1,0,0,0,0,0,0,0,0),(119773,'2026-04-05',401,0,0,0,1,0,0,0,0,0,0,0,0),(119772,'2026-04-05',400,0,0,0,1,0,0,0,0,0,0,0,0),(119771,'2026-04-05',396,0,0,0,1,0,0,0,0,0,0,0,0),(119770,'2026-04-05',395,0,0,0,1,0,0,0,0,0,0,0,0),(119769,'2026-04-05',393,0,0,0,1,0,0,0,0,0,0,0,0),(119768,'2026-04-05',392,0,0,0,1,0,0,0,0,0,0,0,0),(119767,'2026-04-05',391,0,0,0,1,0,0,0,0,0,0,0,0),(119766,'2026-04-05',390,0,0,0,1,0,0,0,0,0,0,0,0),(119765,'2026-04-05',388,0,0,0,1,0,0,0,0,0,0,0,0),(119764,'2026-04-05',387,0,0,0,1,0,0,0,0,0,0,0,0),(119763,'2026-04-05',385,0,0,0,1,0,0,0,0,0,0,0,0),(119762,'2026-04-05',384,0,0,0,1,0,0,0,0,0,0,0,0),(119761,'2026-04-05',382,0,0,0,1,0,0,0,0,0,0,0,0),(119760,'2026-04-05',381,0,0,0,1,0,0,0,0,0,0,0,0),(119759,'2026-04-05',378,0,0,0,1,0,0,0,0,0,0,0,0),(119758,'2026-04-05',377,0,0,0,1,0,0,0,0,0,0,0,0),(119757,'2026-04-05',376,0,0,0,1,0,0,0,0,0,0,0,0),(119756,'2026-04-05',375,0,0,0,1,0,0,0,0,0,0,0,0),(119755,'2026-04-05',372,0,0,0,1,0,0,0,0,0,0,0,0),(119754,'2026-04-05',371,0,0,0,1,0,0,0,0,0,0,0,0),(119753,'2026-04-05',367,0,0,0,1,0,0,0,0,0,0,0,0),(119752,'2026-04-05',365,0,0,0,1,0,0,0,0,0,0,0,0),(119751,'2026-04-05',364,0,0,0,1,0,0,0,0,0,0,0,0),(119750,'2026-04-05',363,0,0,0,1,0,0,0,0,0,0,0,0),(119749,'2026-04-05',361,0,0,0,1,0,0,0,0,0,0,0,0),(119748,'2026-04-05',360,0,0,0,1,0,0,0,0,0,0,0,0),(119747,'2026-04-05',359,0,0,0,1,0,0,0,0,0,0,0,0),(119746,'2026-04-05',357,0,0,0,1,0,0,0,0,0,0,0,0),(119745,'2026-04-05',353,0,0,0,1,0,0,0,0,0,0,0,0),(119744,'2026-04-05',352,0,0,0,1,0,0,0,0,0,0,0,0),(119743,'2026-04-05',351,0,0,0,1,0,0,0,0,0,0,0,0),(119742,'2026-04-05',348,0,0,0,1,0,0,0,0,0,0,0,0),(119741,'2026-04-05',347,0,0,0,1,0,0,0,0,0,0,0,0),(119740,'2026-04-05',346,0,0,0,1,0,0,0,0,0,0,0,0),(119739,'2026-04-05',345,0,0,0,1,0,0,0,0,0,0,0,0),(119738,'2026-04-05',344,0,0,0,1,0,0,0,0,0,0,0,0),(119737,'2026-04-05',341,0,0,0,1,0,0,0,0,0,0,0,0),(119736,'2026-04-05',340,0,0,0,1,0,0,0,0,0,0,0,0),(119735,'2026-04-05',339,0,0,0,1,0,0,0,0,0,0,0,0),(119734,'2026-04-05',338,0,0,0,1,0,0,0,0,0,0,0,0),(119733,'2026-04-05',337,0,0,0,1,0,0,0,0,0,0,0,0),(119732,'2026-04-05',336,0,0,0,1,0,0,0,0,0,0,0,0),(119731,'2026-04-05',335,0,0,0,1,0,0,0,0,0,0,0,0),(119730,'2026-04-05',334,0,0,0,1,0,0,0,0,0,0,0,0),(119729,'2026-04-05',333,0,0,0,1,0,0,0,0,0,0,0,0),(119728,'2026-04-05',332,0,0,0,1,0,0,0,0,0,0,0,0),(119727,'2026-04-05',331,0,0,0,1,0,0,0,0,0,0,0,0),(119726,'2026-04-05',330,0,0,0,1,0,0,0,0,0,0,0,0),(119725,'2026-04-05',329,0,0,0,1,0,0,0,0,0,0,0,0),(119724,'2026-04-05',328,0,0,0,1,0,0,0,0,0,0,0,0),(119723,'2026-04-05',327,1,0,0,1,0,0,0,0,0,0,0,0),(119722,'2026-04-05',326,0,0,0,1,0,0,0,0,0,0,0,0),(119721,'2026-04-05',324,0,0,0,1,0,0,0,0,0,0,0,0),(119720,'2026-04-05',323,0,0,0,1,0,0,0,0,0,0,0,0),(119719,'2026-04-05',321,0,0,0,1,0,0,0,0,0,0,0,0),(119718,'2026-04-05',320,0,0,0,1,1,0,0,0,0,0,0,0),(119717,'2026-04-05',319,0,0,0,1,0,0,0,0,0,0,0,0),(119716,'2026-04-05',317,0,0,0,1,0,0,0,0,0,0,0,0),(119715,'2026-04-05',316,0,0,0,1,0,0,0,0,0,0,0,0),(119714,'2026-04-05',314,0,0,0,1,0,0,0,0,0,0,0,0),(119713,'2026-04-05',313,0,0,0,1,0,0,0,0,0,0,0,0),(119712,'2026-04-05',310,0,0,0,1,1,0,0,0,0,0,0,0),(119711,'2026-04-05',309,0,0,0,1,0,0,0,0,0,0,0,0),(119710,'2026-04-05',308,0,0,0,1,0,1,0,0,0,0,0,0),(119709,'2026-04-05',307,0,0,0,1,0,0,0,0,0,0,0,0),(119708,'2026-04-05',304,0,0,0,1,0,0,0,0,0,0,0,0),(119707,'2026-04-05',303,0,0,0,1,0,0,0,0,0,0,0,0),(119706,'2026-04-05',302,0,0,0,1,0,0,0,0,0,0,0,0),(119705,'2026-04-05',301,0,0,0,1,0,0,0,0,0,0,0,0),(119704,'2026-04-05',300,0,0,0,1,0,0,0,0,0,0,0,0),(119703,'2026-04-05',299,0,0,0,1,0,0,0,0,0,0,0,0),(119702,'2026-04-05',298,0,0,0,1,0,0,0,0,0,0,0,0),(119701,'2026-04-05',296,0,0,0,1,0,0,0,0,0,0,0,0),(119700,'2026-04-05',295,0,0,0,1,0,0,0,0,0,0,0,0),(119699,'2026-04-05',294,0,0,0,1,0,0,0,0,0,0,0,0),(119698,'2026-04-05',292,0,0,0,1,0,0,0,0,0,0,0,0),(119697,'2026-04-05',291,0,0,0,1,0,0,0,0,0,0,0,0),(119696,'2026-04-05',290,0,0,0,1,0,0,0,0,0,0,0,0),(119695,'2026-04-05',289,0,0,0,1,0,0,0,0,0,0,0,0),(119694,'2026-04-05',288,0,0,0,1,0,0,0,0,0,0,0,0),(119693,'2026-04-05',285,0,0,0,1,0,0,0,0,0,0,0,0),(119692,'2026-04-05',281,0,0,0,1,0,0,0,0,0,0,0,0),(119691,'2026-04-05',280,0,0,0,1,0,0,0,0,0,0,0,0),(119690,'2026-04-05',278,0,0,0,1,0,0,0,0,0,0,0,0),(119689,'2026-04-05',275,0,0,0,1,0,0,0,0,0,0,0,0),(119688,'2026-04-05',274,0,0,0,1,0,0,0,0,0,0,0,0),(119687,'2026-04-05',273,0,0,0,1,0,0,0,0,0,0,0,0),(119686,'2026-04-05',271,0,0,0,1,0,0,0,0,0,0,0,0),(119685,'2026-04-05',269,0,0,0,1,0,0,0,0,0,0,0,0),(119684,'2026-04-05',268,0,0,0,1,0,0,0,0,0,0,0,0),(119683,'2026-04-05',266,0,0,0,1,0,0,0,0,0,0,0,0),(119682,'2026-04-05',265,0,0,0,1,0,0,0,0,0,0,0,0),(119681,'2026-04-05',264,0,0,0,1,0,0,0,0,0,0,0,0),(119680,'2026-04-05',263,0,0,0,1,0,0,0,0,0,0,0,0),(119679,'2026-04-05',262,0,0,0,1,0,0,0,0,0,0,0,0),(119678,'2026-04-05',261,0,0,0,1,0,0,0,0,0,0,0,0),(119677,'2026-04-05',260,0,0,0,1,0,0,0,0,0,0,0,0),(119676,'2026-04-05',258,0,0,0,1,0,0,0,0,0,0,0,0),(119675,'2026-04-05',257,0,0,0,1,0,0,0,0,0,0,0,0),(119674,'2026-04-05',256,0,0,0,1,0,0,0,0,0,0,0,0),(119673,'2026-04-05',255,0,0,0,1,0,0,0,0,0,0,0,0),(119672,'2026-04-05',254,0,0,0,1,0,0,0,0,0,0,0,0),(119671,'2026-04-05',253,0,0,0,1,0,0,0,0,0,0,0,0),(119670,'2026-04-05',251,0,0,0,1,0,0,0,0,0,0,0,0),(119669,'2026-04-05',250,0,0,0,1,0,0,0,0,0,0,0,0),(119668,'2026-04-05',249,0,0,0,1,0,0,0,0,0,0,0,0),(119667,'2026-04-05',247,0,0,0,1,0,0,0,0,0,0,0,0),(119666,'2026-04-05',246,0,0,0,1,0,0,0,0,0,0,0,0),(119665,'2026-04-05',245,0,0,0,1,0,0,0,0,0,0,0,0),(119664,'2026-04-05',243,0,0,0,1,0,0,0,0,0,0,0,0),(119663,'2026-04-05',242,0,0,0,1,0,0,0,0,0,0,0,0),(119662,'2026-04-05',241,0,0,0,1,0,0,0,0,0,0,0,0),(119661,'2026-04-05',239,0,0,0,1,0,0,0,0,0,0,0,0),(119660,'2026-04-05',238,0,0,0,1,0,0,0,0,0,0,0,0),(119659,'2026-04-05',236,0,0,0,1,0,0,0,0,0,0,0,0),(119658,'2026-04-05',234,0,0,0,1,0,0,0,0,0,0,0,0),(119657,'2026-04-05',233,0,0,0,1,0,1,0,0,0,0,0,0),(119656,'2026-04-05',232,0,0,0,1,0,0,0,0,0,0,0,0),(119655,'2026-04-05',231,0,0,0,1,0,0,0,0,0,0,0,0),(119654,'2026-04-05',230,0,0,0,0,0,1,0,0,0,0,0,0),(119653,'2026-04-05',228,0,0,0,1,0,0,0,0,0,0,0,0),(119652,'2026-04-05',227,0,0,0,1,0,0,0,0,0,0,0,0),(119651,'2026-04-05',226,0,0,0,1,0,0,0,0,0,0,0,0),(119650,'2026-04-05',225,0,0,0,1,0,0,0,0,0,0,0,0),(119649,'2026-04-05',224,0,0,0,1,0,0,0,0,0,0,0,0),(119648,'2026-04-05',222,0,0,0,1,0,0,0,0,0,0,0,0),(119647,'2026-04-05',221,0,0,0,1,0,0,0,0,0,0,0,0),(119646,'2026-04-05',220,0,0,0,1,0,0,0,0,0,0,0,0),(119645,'2026-04-05',217,0,0,0,1,0,0,0,0,0,0,0,0),(119644,'2026-04-05',214,0,0,0,1,0,0,0,0,0,0,0,0),(119643,'2026-04-05',213,0,0,0,1,0,0,0,0,0,0,0,0),(119642,'2026-04-05',212,0,0,0,1,0,0,0,0,0,0,0,0),(119641,'2026-04-05',211,0,0,0,1,0,0,0,0,0,0,0,0),(119640,'2026-04-05',210,0,0,0,1,0,0,0,0,0,0,0,0),(119639,'2026-04-05',209,0,0,0,1,0,0,0,0,0,0,0,0),(119638,'2026-04-05',208,0,0,0,1,0,0,0,0,0,0,0,0),(119637,'2026-04-05',207,0,0,0,1,0,0,0,0,0,0,0,0),(119636,'2026-04-05',206,0,0,0,1,0,0,0,0,0,0,0,0),(119635,'2026-04-05',205,0,0,0,1,0,0,0,0,0,0,0,0),(119634,'2026-04-05',204,0,0,0,1,0,0,0,0,0,0,0,0),(119633,'2026-04-05',203,0,0,0,1,0,0,0,0,0,0,0,0),(119632,'2026-04-05',201,0,0,0,1,0,0,0,0,0,0,0,0),(119631,'2026-04-05',200,0,0,0,1,0,0,0,0,0,0,0,0),(119630,'2026-04-05',197,0,0,0,1,0,0,0,0,0,0,0,0),(119629,'2026-04-05',196,0,0,0,1,0,0,0,0,0,0,0,0),(119628,'2026-04-05',195,0,0,0,1,0,0,0,0,0,0,0,0),(119627,'2026-04-05',194,0,0,0,1,0,0,0,0,0,0,0,0),(119626,'2026-04-05',193,0,0,0,1,0,0,0,0,0,0,0,0),(119625,'2026-04-05',192,0,0,0,1,0,0,0,0,0,0,0,0),(119624,'2026-04-05',191,0,0,0,1,0,0,0,0,0,0,0,0),(119623,'2026-04-05',190,0,0,0,1,0,0,0,0,0,0,0,0),(119622,'2026-04-05',189,0,0,0,1,0,0,0,0,0,0,0,0),(119621,'2026-04-05',188,0,0,0,1,0,0,0,0,0,0,0,0),(119620,'2026-04-05',187,0,0,0,1,0,0,0,0,0,0,0,0),(119619,'2026-04-05',186,0,0,0,1,0,0,0,0,0,0,0,0),(119618,'2026-04-05',185,0,0,0,1,0,0,0,0,0,0,0,0),(119617,'2026-04-05',184,0,0,0,1,0,0,0,0,0,0,0,0),(119616,'2026-04-05',183,0,0,0,1,0,0,0,0,0,0,0,0),(119615,'2026-04-05',182,0,0,0,1,0,0,0,0,0,0,0,0),(119614,'2026-04-05',181,0,0,0,1,0,0,0,0,0,0,0,0),(119613,'2026-04-05',180,0,0,0,1,0,0,0,0,0,0,0,0),(119612,'2026-04-05',179,0,0,0,1,0,0,0,0,0,0,0,0),(119611,'2026-04-05',176,0,0,0,1,0,0,0,0,0,0,0,0),(119610,'2026-04-05',175,0,0,0,1,0,0,0,0,0,0,0,0),(119609,'2026-04-05',174,0,0,0,1,0,0,0,0,0,0,0,0),(119608,'2026-04-05',173,0,0,0,1,0,0,0,0,0,0,0,0),(119607,'2026-04-05',172,0,0,0,1,0,0,0,0,0,0,0,0),(119606,'2026-04-05',170,0,0,0,1,0,0,0,0,0,0,0,0),(119605,'2026-04-05',168,0,0,0,1,0,0,0,0,0,0,0,0),(119604,'2026-04-05',167,0,0,0,1,0,0,0,0,0,0,0,0),(119603,'2026-04-05',166,0,0,0,1,0,0,0,0,0,0,0,0),(119602,'2026-04-05',164,1,0,0,1,0,0,0,0,0,0,0,0),(119601,'2026-04-05',163,0,0,0,1,0,0,0,0,0,0,0,0),(119600,'2026-04-05',162,0,0,0,0,0,1,0,0,0,0,0,0),(119599,'2026-04-05',161,0,0,0,1,0,0,0,0,0,0,0,0),(119598,'2026-04-05',160,0,0,0,1,0,0,0,0,0,0,0,0),(119597,'2026-04-05',159,0,0,0,1,0,0,0,0,0,0,0,0),(119596,'2026-04-05',158,0,0,0,1,0,0,0,0,0,0,0,0),(119595,'2026-04-05',157,0,0,0,1,0,0,0,0,0,0,0,0),(119594,'2026-04-05',154,0,0,0,1,0,0,0,0,0,0,0,0),(119593,'2026-04-05',152,0,0,0,1,0,0,0,0,0,0,0,0),(119592,'2026-04-05',151,0,0,0,1,0,0,0,0,0,0,0,0),(119591,'2026-04-05',148,0,0,0,1,0,0,0,0,0,0,0,0),(119518,'2026-03-18',90,0,0,0,0,0,0,2,0,0,0,0,0),(119517,'2026-03-18',2,0,0,0,0,0,0,1,0,0,0,0,0),(119516,'2026-03-18',1,0,0,0,0,0,0,2,0,0,0,0,0),(119590,'2026-04-05',147,0,0,0,1,0,0,0,0,0,0,0,0),(119589,'2026-04-05',146,0,0,0,1,0,0,0,0,0,0,0,0),(119588,'2026-04-05',145,0,0,0,1,0,0,0,0,0,0,0,0),(119587,'2026-04-05',144,0,0,0,1,0,0,0,0,0,0,0,0),(119586,'2026-04-05',143,0,0,0,1,0,0,0,0,0,0,0,0),(119585,'2026-04-05',141,0,0,0,1,0,0,0,0,0,0,0,0),(119584,'2026-04-05',140,0,0,0,1,0,0,0,0,0,0,0,0),(119583,'2026-04-05',137,0,0,0,0,0,1,0,0,0,0,0,0),(119582,'2026-04-05',136,0,0,0,1,0,0,0,0,0,0,0,0),(119581,'2026-04-05',132,0,0,0,1,0,0,0,0,0,0,0,0),(119580,'2026-04-05',128,0,0,0,1,0,0,0,0,0,0,0,0),(119579,'2026-04-05',127,0,0,0,1,0,0,0,0,0,0,0,0),(119578,'2026-04-05',126,0,0,0,1,0,0,0,0,0,0,0,0),(119577,'2026-04-05',124,0,0,0,1,0,0,0,0,0,0,0,0),(119576,'2026-04-05',123,0,0,0,1,0,0,0,0,0,0,0,0),(119575,'2026-04-05',121,0,0,0,1,0,0,0,0,0,0,0,0),(119574,'2026-04-05',115,0,0,0,1,0,0,0,0,0,0,0,0),(119573,'2026-04-05',114,0,0,0,1,0,0,0,0,0,0,0,0),(119572,'2026-04-05',113,0,0,0,1,0,0,0,0,0,0,0,0),(119571,'2026-04-05',112,0,0,0,1,0,0,0,0,0,0,0,0),(120026,'2026-04-11',359,0,0,0,1,0,0,0,0,0,0,0,0),(120025,'2026-04-11',357,0,0,0,1,0,0,0,0,0,0,0,0),(120024,'2026-04-11',353,0,0,0,1,0,0,0,0,0,0,0,0),(120023,'2026-04-11',352,0,0,0,1,0,0,0,0,0,0,0,0),(120022,'2026-04-11',351,0,0,0,1,0,0,0,0,0,0,0,0),(120021,'2026-04-11',348,0,0,0,1,0,0,0,0,0,0,0,0),(119523,'2026-03-21',188,0,0,0,0,0,0,1,0,0,0,0,0),(119522,'2026-03-21',137,0,0,0,0,0,0,1,0,0,0,0,0),(119521,'2026-03-21',9,0,0,0,0,0,0,2,0,0,0,0,0),(119520,'2026-03-21',5,0,0,0,0,0,0,1,0,0,0,0,0),(119519,'2026-03-20',22,0,0,0,0,0,0,0,0,0,0,0,1),(119570,'2026-04-05',111,0,0,0,0,1,0,0,0,0,0,0,0),(119569,'2026-04-05',110,0,0,0,1,0,0,0,0,0,0,0,0),(119568,'2026-04-05',103,0,0,0,1,0,0,0,0,0,0,0,0),(119567,'2026-04-05',98,0,0,0,1,0,0,0,0,0,0,0,0),(119566,'2026-04-05',97,0,0,0,1,0,0,0,0,0,0,0,0),(119565,'2026-04-05',96,0,0,0,1,0,0,0,0,0,0,0,0),(119564,'2026-04-05',94,0,0,0,1,0,0,0,0,0,0,0,0),(119563,'2026-04-05',91,0,0,1,0,1,0,0,0,0,0,0,0),(119527,'2026-03-23',123,0,0,0,0,0,0,1,0,0,0,0,0),(119526,'2026-03-23',109,0,0,0,0,0,0,1,0,0,0,0,0),(119525,'2026-03-23',22,0,0,0,0,0,0,2,0,0,0,0,0),(119524,'2026-03-23',17,0,0,0,0,0,0,1,0,0,0,0,0),(119532,'2026-04-01',81,0,0,0,0,0,0,2,0,0,0,0,0),(119531,'2026-03-28',78,0,0,0,0,0,0,1,0,0,0,0,0),(119530,'2026-03-28',75,0,0,0,0,0,0,1,0,0,0,0,0),(119529,'2026-03-28',51,0,0,0,0,0,0,2,0,0,0,0,0),(119528,'2026-03-28',49,0,0,0,0,0,0,1,0,0,0,0,0),(119537,'2026-04-05',13,0,0,0,1,0,0,0,0,0,0,0,0),(119536,'2026-04-05',11,0,0,0,0,0,1,0,0,0,0,0,0),(119535,'2026-04-05',10,0,0,0,1,0,0,0,0,0,0,0,0),(119550,'2026-04-05',58,0,0,0,1,0,0,0,0,0,0,0,0),(119549,'2026-04-05',54,0,0,0,1,0,0,0,0,0,0,0,0),(119548,'2026-04-05',52,0,0,0,1,0,0,0,0,0,0,0,0),(119547,'2026-04-05',51,0,0,0,0,1,0,0,0,0,0,0,0),(119546,'2026-04-05',50,0,0,0,0,1,0,0,0,0,0,0,0),(119545,'2026-04-05',42,0,0,0,1,0,0,0,0,0,0,0,0),(119544,'2026-04-05',37,0,0,0,1,0,0,0,0,0,0,0,0),(119543,'2026-04-05',36,0,0,0,0,1,0,0,0,0,0,0,0),(119542,'2026-04-05',34,0,0,0,0,0,1,0,0,0,0,0,0),(119541,'2026-04-05',32,0,0,0,1,0,0,0,0,0,0,0,0),(119540,'2026-04-05',24,0,0,0,1,0,0,0,0,0,0,0,0),(119539,'2026-04-05',19,0,0,0,1,0,0,0,0,0,0,0,0),(119538,'2026-04-05',18,0,0,0,0,1,1,0,0,0,0,0,0),(119927,'2026-04-11',222,0,0,0,1,0,0,0,0,0,0,0,0),(119926,'2026-04-11',221,0,0,0,1,0,0,0,0,0,0,0,0),(119925,'2026-04-11',220,0,0,0,1,0,0,0,0,0,0,0,0),(119924,'2026-04-11',217,0,0,0,1,0,0,0,0,0,0,0,0),(119923,'2026-04-11',214,0,0,0,1,0,0,0,0,0,0,0,0),(119922,'2026-04-11',213,0,0,0,1,0,0,0,0,0,0,0,0),(119921,'2026-04-11',212,0,0,0,1,0,0,0,0,0,0,0,0),(119920,'2026-04-11',211,0,0,0,1,0,0,0,0,0,0,0,0),(119919,'2026-04-11',210,0,0,0,1,0,0,0,0,0,0,0,0),(119918,'2026-04-11',209,0,0,0,1,0,0,0,0,0,0,0,0),(119917,'2026-04-11',208,0,0,0,1,0,0,0,0,0,0,0,0),(119916,'2026-04-11',207,0,0,0,1,0,0,0,0,0,0,0,0),(119915,'2026-04-11',206,0,0,0,1,0,0,0,0,0,0,0,0),(119914,'2026-04-11',205,0,0,0,1,0,0,0,0,0,0,0,0),(119913,'2026-04-11',204,0,0,0,1,0,0,0,0,0,0,0,0),(119912,'2026-04-11',203,0,0,0,1,0,0,0,0,0,0,0,0),(119911,'2026-04-11',201,0,0,0,1,0,0,0,0,0,0,0,0),(119910,'2026-04-11',200,0,0,0,1,0,0,0,0,0,0,0,0),(119909,'2026-04-11',197,0,0,0,1,0,0,0,0,0,0,0,0),(119908,'2026-04-11',196,0,0,0,1,0,0,0,0,0,0,0,0),(119907,'2026-04-11',195,0,0,0,1,0,0,0,0,0,0,0,0),(119906,'2026-04-11',194,0,0,0,1,0,0,0,0,0,0,0,0),(119905,'2026-04-11',193,0,0,0,1,0,0,0,0,0,0,0,0),(119904,'2026-04-11',192,0,0,0,1,0,0,0,0,0,0,0,0),(119903,'2026-04-11',191,0,0,0,1,0,0,0,0,0,0,0,0),(119902,'2026-04-11',190,0,0,0,1,0,0,0,0,0,0,0,0),(119901,'2026-04-11',189,0,0,0,1,0,0,0,0,0,0,0,0),(119900,'2026-04-11',188,0,0,0,1,0,0,1,0,0,0,0,0),(119899,'2026-04-11',187,0,0,0,1,0,0,0,0,0,0,0,0),(119898,'2026-04-11',186,0,0,0,1,0,0,0,0,0,0,0,0),(119897,'2026-04-11',185,0,0,0,1,0,0,0,0,0,0,0,0),(119896,'2026-04-11',184,0,0,0,1,0,0,0,0,0,0,0,0),(119895,'2026-04-11',183,0,0,0,1,0,0,0,0,0,0,0,0),(119894,'2026-04-11',182,0,0,0,1,0,0,0,0,0,0,0,0),(119893,'2026-04-11',181,0,0,0,1,0,0,0,0,0,0,0,0),(119892,'2026-04-11',180,0,0,0,1,0,0,0,0,0,0,0,0),(119891,'2026-04-11',179,0,0,0,1,0,0,0,0,0,0,0,0),(119890,'2026-04-11',176,0,0,1,0,0,0,0,0,0,0,0,0),(119889,'2026-04-11',175,0,0,0,1,0,0,0,0,0,0,0,0),(119888,'2026-04-11',174,0,0,0,1,0,0,0,0,0,0,0,0),(119887,'2026-04-11',173,0,0,0,1,0,0,0,0,0,0,0,0),(119886,'2026-04-11',172,0,0,0,1,0,0,0,0,0,0,0,0),(119885,'2026-04-11',170,0,0,0,1,0,0,0,0,0,0,0,0),(119884,'2026-04-11',168,0,0,0,1,0,0,0,0,0,0,0,0),(119883,'2026-04-11',167,0,0,0,1,0,0,0,0,0,0,0,0),(119882,'2026-04-11',166,0,0,0,1,0,0,0,0,0,0,0,0),(119881,'2026-04-11',164,0,0,0,1,0,0,0,0,0,0,0,0),(119880,'2026-04-11',163,0,0,0,1,0,0,0,0,0,0,0,0),(119879,'2026-04-11',161,0,0,0,1,0,0,0,0,0,0,0,0),(119878,'2026-04-11',160,0,0,0,1,0,0,0,0,0,0,0,0),(119877,'2026-04-11',159,0,0,0,1,0,0,0,0,0,0,0,0),(119876,'2026-04-11',158,0,0,0,1,0,0,0,0,0,0,0,0),(119875,'2026-04-11',157,0,0,0,1,0,0,0,0,0,0,0,0),(119874,'2026-04-11',154,0,0,0,1,0,0,0,0,0,0,0,0),(119873,'2026-04-11',152,0,0,0,1,0,0,0,0,0,0,0,0),(119872,'2026-04-11',151,0,0,0,1,0,0,0,0,0,0,0,0),(119871,'2026-04-11',148,0,0,0,1,0,0,0,0,0,0,0,0),(119870,'2026-04-11',147,0,0,0,1,0,0,0,0,0,0,0,0),(119869,'2026-04-11',146,0,0,0,1,0,0,0,0,0,0,0,0),(119868,'2026-04-11',145,0,0,0,1,0,0,0,0,0,0,0,0),(119867,'2026-04-11',144,0,0,0,1,0,0,0,0,0,0,0,0),(119866,'2026-04-11',143,0,0,0,1,0,0,0,0,0,0,0,0),(119865,'2026-04-11',141,0,0,0,1,0,0,0,0,0,0,0,0),(119864,'2026-04-11',140,0,0,0,1,0,0,0,0,0,0,0,0),(119863,'2026-04-11',137,0,0,0,0,0,0,1,0,0,0,0,0),(119862,'2026-04-11',136,0,0,0,1,0,0,0,0,0,0,0,0),(119861,'2026-04-11',132,0,0,0,1,0,0,0,0,0,0,0,0),(119860,'2026-04-11',128,0,0,0,1,0,0,0,0,0,0,0,0),(119859,'2026-04-11',127,0,0,0,1,0,0,0,0,0,0,0,0),(119858,'2026-04-11',126,0,0,0,1,0,0,0,0,0,0,0,0),(119857,'2026-04-11',124,0,0,0,1,0,0,0,0,0,0,0,0),(119856,'2026-04-11',123,0,0,0,1,0,0,0,0,0,0,0,0),(119855,'2026-04-11',121,0,0,0,1,0,0,0,0,0,0,0,0),(119854,'2026-04-11',115,0,0,0,1,0,0,0,0,0,0,0,0),(119853,'2026-04-11',114,0,0,0,1,0,0,0,0,0,0,0,0),(119852,'2026-04-11',113,0,0,0,1,0,0,0,0,0,0,0,0),(119851,'2026-04-11',112,0,0,0,1,0,0,0,0,0,0,0,0),(119850,'2026-04-11',110,0,0,0,1,0,0,0,0,0,0,0,0),(119849,'2026-04-11',103,0,0,0,1,0,0,0,0,0,0,0,0),(119848,'2026-04-11',98,0,0,0,1,0,0,0,0,0,0,0,0),(119847,'2026-04-11',97,0,0,0,1,0,0,0,0,0,0,0,0),(119846,'2026-04-11',96,0,0,0,1,0,0,0,0,0,0,0,0),(119845,'2026-04-11',94,0,0,0,1,0,0,0,0,0,0,0,0),(119844,'2026-04-11',91,0,0,0,1,0,0,0,0,0,0,0,0),(119843,'2026-04-11',90,0,0,0,1,0,0,1,0,0,0,0,0),(119842,'2026-04-11',87,0,0,0,1,0,0,0,0,0,0,0,0),(119841,'2026-04-11',79,0,0,0,1,0,0,0,0,0,0,0,0),(119840,'2026-04-11',70,0,0,0,1,0,0,0,0,0,0,0,0),(119839,'2026-04-11',69,0,0,0,1,0,0,0,0,0,0,0,0),(119838,'2026-04-11',68,0,0,0,1,0,0,0,0,0,0,0,0),(119837,'2026-04-11',67,0,0,0,1,0,0,0,0,0,0,0,0),(119836,'2026-04-11',66,0,0,0,1,0,0,0,0,0,0,0,0),(119835,'2026-04-11',65,0,0,0,1,0,0,0,0,0,0,0,0),(119834,'2026-04-11',64,0,0,0,1,0,0,0,0,0,0,0,0),(119833,'2026-04-11',63,0,0,0,1,0,0,0,0,0,0,0,0),(119832,'2026-04-11',61,0,0,0,1,0,0,0,0,0,0,0,0),(119831,'2026-04-11',58,0,0,0,1,0,0,0,0,0,0,0,0),(119830,'2026-04-11',54,0,0,0,1,0,0,0,0,0,0,0,0),(119829,'2026-04-11',52,0,0,0,1,0,0,0,0,0,0,0,0),(119828,'2026-04-11',42,0,0,0,1,0,0,0,0,0,0,0,0),(119827,'2026-04-11',37,0,0,0,1,0,0,0,0,0,0,0,0),(119826,'2026-04-11',32,0,0,0,1,0,0,0,0,0,0,0,0),(119825,'2026-04-11',24,0,0,0,1,0,0,0,0,0,0,0,0),(119824,'2026-04-11',22,0,0,0,0,0,0,4,0,0,0,0,0),(119823,'2026-04-11',19,0,0,0,1,0,0,0,0,0,0,0,0),(119822,'2026-04-11',17,0,0,0,0,0,0,1,0,0,0,0,0),(119821,'2026-04-11',13,0,0,0,1,0,0,0,0,0,0,0,0),(119820,'2026-04-11',10,0,0,0,1,0,0,0,0,0,0,0,0),(119819,'2026-04-11',9,0,0,0,0,0,1,1,0,0,0,0,0),(119818,'2026-04-11',5,0,0,0,0,0,0,1,0,0,0,0,0),(119817,'2026-04-09',233,0,0,0,0,0,0,1,0,0,0,0,0),(119816,'2026-04-09',2,0,0,0,0,0,0,3,0,0,0,0,0),(119815,'2026-04-09',1,0,0,0,0,0,0,1,0,0,0,0,0),(119932,'2026-04-11',228,0,0,0,1,0,0,0,0,0,0,0,0),(119931,'2026-04-11',227,0,0,0,1,0,0,0,0,0,0,0,0),(119930,'2026-04-11',226,0,0,0,1,0,0,0,0,0,0,0,0),(119929,'2026-04-11',225,0,0,0,1,0,0,0,0,0,0,0,0),(119928,'2026-04-11',224,0,0,0,1,0,0,0,0,0,0,0,0),(120096,'2026-04-12',91,1,0,0,0,0,0,0,0,0,0,0,0),(120095,'2026-04-12',54,1,0,0,0,0,0,0,0,0,0,0,0),(120094,'2026-04-12',22,0,0,0,0,1,0,0,0,0,0,0,0),(120109,'2026-04-14',401,0,0,0,0,1,0,0,0,0,0,0,0),(120104,'2026-04-13',123,0,0,0,0,0,0,4,0,0,0,0,0),(120103,'2026-04-13',109,0,0,0,0,0,0,1,0,0,0,0,0),(120108,'2026-04-14',283,0,0,0,0,0,1,0,0,0,0,0,0),(120107,'2026-04-14',120,0,0,0,0,0,1,0,0,0,0,0,0),(120106,'2026-04-14',89,0,0,0,0,1,0,0,0,0,0,0,0),(120105,'2026-04-14',37,1,0,0,0,0,0,0,0,0,0,0,0),(120116,'2026-04-21',218,0,0,0,0,0,0,2,0,0,0,0,0),(120115,'2026-04-21',89,0,0,0,0,0,0,2,0,0,0,0,0),(120114,'2026-04-21',81,0,0,0,0,0,0,1,0,0,0,0,0),(120113,'2026-04-20',78,0,0,0,0,0,0,1,0,0,0,0,0),(120112,'2026-04-20',75,0,0,0,0,0,0,1,0,0,0,0,0),(120111,'2026-04-20',51,0,0,0,0,0,0,2,0,0,0,0,0),(120110,'2026-04-20',49,0,0,0,0,0,0,1,0,0,0,0,0),(110222,'2025-07-18',294,0,0,0,1,0,0,0,0,0,0,0,0),(110221,'2025-07-18',292,0,0,0,1,0,0,0,0,0,0,0,0),(110220,'2025-07-18',291,0,0,0,1,0,0,0,0,0,0,0,0),(110219,'2025-07-18',290,0,0,0,1,0,0,0,0,0,0,0,0),(110218,'2025-07-18',289,0,0,0,1,0,0,0,0,0,0,0,0),(110217,'2025-07-18',288,0,0,0,1,0,0,0,0,0,0,0,0),(110216,'2025-07-18',285,0,0,0,1,0,0,0,0,0,0,0,0),(110215,'2025-07-18',281,0,0,0,1,0,0,0,0,0,0,0,0),(110214,'2025-07-18',280,0,0,0,1,0,0,0,0,0,0,0,0),(110213,'2025-07-18',278,0,0,0,1,0,0,0,0,0,0,0,0),(110212,'2025-07-18',275,0,0,0,1,0,0,0,0,0,0,0,0),(110211,'2025-07-18',274,0,0,0,1,0,0,0,0,0,0,0,0),(110210,'2025-07-18',273,0,0,0,1,0,0,0,0,0,0,0,0),(110209,'2025-07-18',271,0,0,0,1,0,0,0,0,0,0,0,0),(110208,'2025-07-18',269,0,0,0,1,0,0,0,0,0,0,0,0),(110207,'2025-07-18',268,0,0,0,1,0,0,0,0,0,0,0,0),(110206,'2025-07-18',266,0,0,0,1,0,0,0,0,0,0,0,0),(110205,'2025-07-18',265,0,0,0,1,0,0,0,0,0,0,0,0),(110204,'2025-07-18',264,0,0,0,1,0,0,0,0,0,0,0,0),(110203,'2025-07-18',263,0,0,0,1,0,0,0,0,0,0,0,0),(110202,'2025-07-18',262,0,0,0,1,0,0,0,0,0,0,0,0),(110201,'2025-07-18',261,0,0,0,1,0,0,0,0,0,0,0,0),(110200,'2025-07-18',260,0,0,0,1,0,0,0,0,0,0,0,0),(110199,'2025-07-18',258,0,0,0,1,0,0,0,0,0,0,0,0),(110198,'2025-07-18',257,0,0,0,1,0,0,0,0,0,0,0,0),(110197,'2025-07-18',256,0,0,0,1,0,0,0,0,0,0,0,0),(110196,'2025-07-18',255,0,0,0,1,0,0,0,0,0,0,0,0),(110195,'2025-07-18',254,0,0,0,1,0,0,0,0,0,0,0,0),(110194,'2025-07-18',253,0,0,0,1,0,0,0,0,0,0,0,0),(110193,'2025-07-18',251,0,0,0,1,0,0,0,0,0,0,0,0),(110192,'2025-07-18',250,0,0,0,1,0,0,0,0,0,0,0,0),(110191,'2025-07-18',249,0,0,0,1,0,0,0,0,0,0,0,0),(110190,'2025-07-18',247,0,0,0,1,0,0,0,0,0,0,0,0),(110850,'2025-07-26',273,0,0,0,1,0,0,0,0,0,0,0,0),(110849,'2025-07-26',271,0,0,0,1,0,0,0,0,0,0,0,0),(110848,'2025-07-26',269,0,0,0,1,0,0,0,0,0,0,0,0),(110847,'2025-07-26',268,0,0,0,1,0,0,0,0,0,0,0,0),(110846,'2025-07-26',267,0,0,0,1,0,0,0,0,0,0,0,0),(110845,'2025-07-26',266,0,0,0,1,0,0,0,0,0,0,0,0),(110844,'2025-07-26',265,0,0,0,1,0,0,0,0,0,0,0,0),(110843,'2025-07-26',264,0,0,0,1,0,0,0,0,0,0,0,0),(110842,'2025-07-26',263,0,0,0,1,0,0,0,0,0,0,0,0),(110841,'2025-07-26',262,0,0,0,1,0,0,0,0,0,0,0,0),(110840,'2025-07-26',261,0,0,0,1,0,0,0,0,0,0,0,0),(110839,'2025-07-26',260,0,0,0,1,0,0,0,0,0,0,0,0),(110838,'2025-07-26',258,0,0,0,1,0,0,0,0,0,0,0,0),(110837,'2025-07-26',257,0,0,0,1,0,0,0,0,0,0,0,0),(110836,'2025-07-26',256,0,0,0,1,0,0,0,0,0,0,0,0),(110835,'2025-07-26',255,0,0,0,1,0,0,0,0,0,0,0,0),(110834,'2025-07-26',254,0,0,0,1,0,0,0,0,0,0,0,0),(110833,'2025-07-26',253,0,0,0,1,0,0,0,0,0,0,0,0),(110832,'2025-07-26',251,0,0,0,1,0,0,0,0,0,0,0,0),(110831,'2025-07-26',250,0,0,0,1,0,0,0,0,0,0,0,0),(110189,'2025-07-18',246,0,0,0,1,0,0,0,0,0,0,0,0),(110188,'2025-07-18',245,0,0,0,1,0,0,0,0,0,0,0,0),(110187,'2025-07-18',243,0,0,0,1,0,0,0,0,0,0,0,0),(110186,'2025-07-18',242,0,0,0,1,0,0,0,0,0,0,0,0),(110185,'2025-07-18',241,0,0,0,1,0,0,0,0,0,0,0,0),(110184,'2025-07-18',239,0,0,0,1,0,1,0,0,0,0,0,0),(110183,'2025-07-18',238,0,0,0,1,0,0,0,0,0,0,0,0),(110182,'2025-07-18',236,0,0,0,1,0,0,0,0,0,0,0,0),(110181,'2025-07-18',234,0,0,0,1,0,0,0,0,0,0,0,0),(110180,'2025-07-18',233,0,0,0,1,0,0,0,0,0,0,0,0),(110179,'2025-07-18',232,0,0,0,1,0,0,0,0,0,0,0,0),(110178,'2025-07-18',231,0,0,0,1,0,0,0,0,0,0,0,0),(110177,'2025-07-18',228,0,0,0,1,0,0,0,0,0,0,0,0),(110176,'2025-07-18',227,0,0,0,1,0,0,0,0,0,0,0,0),(110175,'2025-07-18',226,0,0,0,1,0,0,0,0,0,0,0,0),(110174,'2025-07-18',225,0,0,0,1,0,0,0,0,0,0,0,0),(110173,'2025-07-18',224,0,0,0,1,0,0,0,0,0,0,0,0),(110172,'2025-07-18',222,0,0,0,1,0,0,0,0,0,0,0,0),(110171,'2025-07-18',221,0,0,0,1,0,0,0,0,0,0,0,0),(110170,'2025-07-18',220,0,0,0,1,0,0,0,0,0,0,0,0),(110169,'2025-07-18',218,0,0,0,0,0,0,1,0,0,0,0,0),(110168,'2025-07-18',217,0,0,0,1,0,0,0,0,0,0,0,0),(110167,'2025-07-18',214,0,0,0,1,0,0,0,0,0,0,0,0),(110166,'2025-07-18',213,0,0,0,1,0,0,0,0,0,0,0,0),(110165,'2025-07-18',212,0,0,0,1,0,0,0,0,0,0,0,0),(110164,'2025-07-18',211,0,0,0,1,0,0,0,0,0,0,0,0),(110163,'2025-07-18',210,0,0,0,1,0,0,0,0,0,0,0,0),(110162,'2025-07-18',209,0,0,0,1,0,0,0,0,0,0,0,0),(110161,'2025-07-18',208,0,0,0,1,0,0,0,0,0,0,0,0),(110160,'2025-07-18',207,0,0,0,1,0,0,0,0,0,0,0,0),(110159,'2025-07-18',206,0,0,0,1,0,0,0,0,0,0,0,0),(110158,'2025-07-18',205,0,0,0,1,0,0,0,0,0,0,0,0),(110157,'2025-07-18',204,0,0,0,1,0,0,0,0,0,0,0,0),(110156,'2025-07-18',203,0,0,0,1,0,1,0,0,0,0,0,0),(110155,'2025-07-18',201,0,0,0,1,0,0,0,0,0,0,0,0),(110154,'2025-07-18',200,0,0,0,1,0,0,0,0,0,0,0,0),(110153,'2025-07-18',197,0,0,0,1,0,0,0,0,0,0,0,0),(110152,'2025-07-18',196,0,0,0,1,0,0,0,0,0,0,0,0),(110151,'2025-07-18',195,0,0,0,1,0,0,0,0,0,0,0,0),(110150,'2025-07-18',194,0,0,0,1,0,0,0,0,0,0,0,0),(110149,'2025-07-18',193,0,0,0,1,0,0,0,0,0,0,0,0),(110148,'2025-07-18',192,0,0,0,1,0,0,0,0,0,0,0,0),(110147,'2025-07-18',191,0,0,0,1,0,0,0,0,0,0,0,0),(110146,'2025-07-18',190,0,0,0,1,0,0,0,0,0,0,0,0),(110145,'2025-07-18',189,0,0,0,1,0,0,0,0,0,0,0,0),(110144,'2025-07-18',188,0,0,0,1,0,0,1,0,0,0,0,0),(110143,'2025-07-18',187,0,0,0,1,0,0,0,0,0,0,0,0),(110142,'2025-07-18',186,0,0,0,1,0,0,0,0,0,0,0,0),(110141,'2025-07-18',185,0,0,0,1,0,0,0,0,0,0,0,0),(110140,'2025-07-18',184,0,0,0,1,0,0,0,0,0,0,0,0),(110139,'2025-07-18',183,0,0,0,1,0,0,0,0,0,0,0,0),(110138,'2025-07-18',182,0,0,0,1,0,0,0,0,0,0,0,0),(110137,'2025-07-18',181,0,0,0,1,0,0,0,0,0,0,0,0),(110136,'2025-07-18',180,0,0,0,1,0,0,0,0,0,0,0,0),(110135,'2025-07-18',179,0,0,0,1,0,0,0,0,0,0,0,0),(110134,'2025-07-18',178,0,0,0,0,0,1,0,0,0,0,0,0),(110133,'2025-07-18',176,0,0,0,1,1,0,0,0,0,0,0,0),(110132,'2025-07-18',175,0,0,0,1,0,0,0,0,0,0,0,0),(110131,'2025-07-18',174,0,0,0,1,0,0,0,0,0,0,0,0),(110130,'2025-07-18',173,0,0,0,1,0,0,0,0,0,0,0,0),(110129,'2025-07-18',172,0,0,0,1,0,0,0,0,0,0,0,0),(110128,'2025-07-18',170,0,0,0,1,0,0,0,0,0,0,0,0),(110127,'2025-07-18',168,0,0,0,1,0,0,0,0,0,0,0,0),(110126,'2025-07-18',167,0,0,0,1,0,0,0,0,0,0,0,0),(110125,'2025-07-18',166,0,0,0,1,0,0,0,0,0,0,0,0),(110124,'2025-07-18',164,0,0,0,1,0,0,0,0,0,0,0,0),(110123,'2025-07-18',163,0,0,0,1,0,0,0,0,0,0,0,0),(110122,'2025-07-18',161,0,0,0,1,0,0,0,0,0,0,0,0),(110121,'2025-07-18',160,0,0,0,1,0,0,0,0,0,0,0,0),(110120,'2025-07-18',159,0,0,0,1,0,0,0,0,0,0,0,0),(110119,'2025-07-18',158,0,0,0,1,0,0,0,0,0,0,0,0),(110118,'2025-07-18',157,0,0,0,1,0,0,0,0,0,0,0,0),(110117,'2025-07-18',154,0,0,0,1,0,0,0,0,0,0,0,0),(110116,'2025-07-18',152,0,0,0,1,0,0,0,0,0,0,0,0),(110115,'2025-07-18',151,0,0,0,1,0,0,0,0,0,0,0,0),(110114,'2025-07-18',148,0,0,0,1,0,0,0,0,0,0,0,0),(110113,'2025-07-18',147,0,0,0,1,0,0,0,0,0,0,0,0),(110112,'2025-07-18',146,0,0,0,1,0,0,0,0,0,0,0,0),(110111,'2025-07-18',145,0,0,0,1,0,0,0,0,0,0,0,0),(110110,'2025-07-18',144,0,0,0,1,0,0,0,0,0,0,0,0),(110109,'2025-07-18',143,0,0,0,1,0,0,0,0,0,0,0,0),(110108,'2025-07-18',141,0,0,0,1,0,0,0,0,0,0,0,0),(110107,'2025-07-18',140,0,0,0,1,0,0,0,0,0,0,0,0),(110106,'2025-07-18',136,0,0,0,1,0,0,0,0,0,0,0,0),(110105,'2025-07-18',132,0,0,0,1,0,0,0,0,0,0,0,0),(110104,'2025-07-18',128,0,0,0,1,0,0,0,0,0,0,0,0),(110103,'2025-07-18',127,0,0,0,1,0,0,0,0,0,0,0,0),(110102,'2025-07-18',126,0,0,0,1,0,0,0,0,0,0,0,0),(110101,'2025-07-18',124,0,0,0,1,0,0,0,0,0,0,0,0),(110100,'2025-07-18',123,0,0,0,1,0,0,0,0,0,0,0,0),(110099,'2025-07-18',121,0,0,0,1,0,0,0,0,0,0,0,0),(110098,'2025-07-18',119,0,0,0,0,0,1,0,0,0,0,0,0),(110097,'2025-07-18',115,0,0,0,1,0,0,0,0,0,0,0,0),(110096,'2025-07-18',114,0,0,0,1,0,0,0,0,0,0,0,0),(110095,'2025-07-18',113,0,0,0,1,0,0,0,0,0,0,0,0),(110094,'2025-07-18',112,0,0,0,1,0,0,0,0,0,0,0,0),(110093,'2025-07-18',111,0,0,0,0,1,0,0,0,0,0,0,0),(110092,'2025-07-18',110,0,0,0,1,0,0,0,0,0,0,0,0),(110091,'2025-07-18',109,0,0,0,0,0,1,0,0,0,0,0,0),(110090,'2025-07-18',103,0,0,0,1,0,0,0,0,0,0,0,0),(110089,'2025-07-18',98,0,0,0,1,0,0,0,0,0,0,0,0),(110088,'2025-07-18',97,0,0,0,1,0,0,0,0,0,0,0,0),(110087,'2025-07-18',96,0,0,0,1,0,0,0,0,0,0,0,0),(110086,'2025-07-18',94,0,0,0,1,0,0,0,0,0,0,0,0),(110085,'2025-07-18',91,0,0,1,0,0,0,0,0,0,0,0,0),(110084,'2025-07-18',90,0,0,0,1,0,0,0,0,0,0,0,0),(110083,'2025-07-18',89,0,0,0,0,0,0,2,0,0,0,0,0),(110082,'2025-07-18',87,0,0,0,1,0,0,0,0,0,0,0,0),(110081,'2025-07-18',79,0,0,0,1,0,0,0,0,0,0,0,0),(110080,'2025-07-18',78,0,0,0,0,0,0,1,0,0,0,0,0),(110079,'2025-07-18',75,0,0,0,0,0,0,1,0,0,0,0,0),(110078,'2025-07-18',70,0,0,0,1,0,0,0,0,0,0,0,0),(110077,'2025-07-18',69,0,0,0,1,0,0,0,0,0,0,0,0),(110076,'2025-07-18',68,0,0,0,1,0,0,0,0,0,0,0,0),(110075,'2025-07-18',67,0,0,0,1,0,0,0,0,0,0,0,0),(110074,'2025-07-18',66,0,0,0,1,0,0,0,0,0,0,0,0),(110073,'2025-07-18',65,0,0,0,1,0,0,0,0,0,0,0,0),(110072,'2025-07-18',64,0,0,0,1,0,0,0,0,0,0,0,0),(110071,'2025-07-18',63,0,0,0,1,0,0,0,0,0,0,0,0),(110070,'2025-07-18',61,0,0,0,1,0,0,0,0,0,0,0,0),(110069,'2025-07-18',58,0,0,0,1,0,0,0,0,0,0,0,0),(110068,'2025-07-18',54,1,0,0,1,0,0,0,0,0,0,0,0),(110067,'2025-07-18',53,0,0,0,0,0,1,0,0,0,0,0,0),(110066,'2025-07-18',52,0,0,0,1,0,0,0,0,0,0,0,0),(110065,'2025-07-18',50,0,0,0,0,1,0,0,0,0,0,0,0),(110064,'2025-07-18',47,0,0,0,0,0,1,0,0,0,0,0,0),(110063,'2025-07-18',42,0,0,0,1,0,0,0,0,0,0,0,0),(110062,'2025-07-18',37,1,0,0,1,0,0,0,0,0,0,0,0),(110061,'2025-07-18',36,0,0,0,0,1,0,0,0,0,0,0,0),(110060,'2025-07-18',32,0,0,0,1,0,0,0,0,0,0,0,0),(110059,'2025-07-18',24,0,0,0,1,0,0,0,0,0,0,0,0),(110058,'2025-07-18',22,0,0,0,0,0,0,1,0,0,0,0,0),(110057,'2025-07-18',19,0,0,0,1,0,0,0,0,0,0,0,0),(110056,'2025-07-18',18,0,0,0,0,1,0,0,0,0,0,0,0),(110055,'2025-07-18',17,0,0,0,0,0,0,1,0,0,0,0,0),(110054,'2025-07-18',13,0,0,0,1,0,0,0,0,0,0,0,0),(110053,'2025-07-18',10,0,0,0,1,0,0,0,0,0,0,0,0),(110052,'2025-07-18',9,0,0,0,0,0,0,1,0,0,0,0,0),(110051,'2025-07-18',5,0,0,0,0,0,1,1,0,0,0,0,0),(110050,'2025-07-15',233,0,0,0,0,0,0,2,0,0,0,0,0),(110049,'2025-07-15',137,0,0,0,0,0,0,1,0,0,0,0,0),(110048,'2025-07-15',2,0,0,0,0,0,0,1,0,0,0,0,0),(110047,'2025-07-15',1,0,0,0,0,0,0,1,0,0,0,0,0),(110046,'2025-07-14',441,0,0,0,0,0,1,0,0,0,0,0,0),(110045,'2025-07-14',297,1,0,0,0,0,0,0,0,0,0,0,0),(110044,'2025-07-14',123,0,0,0,0,0,0,3,0,0,0,0,0),(110043,'2025-07-14',109,0,0,0,0,0,0,1,0,0,0,0,0),(110042,'2025-07-14',91,0,0,0,0,1,0,0,0,0,0,0,0),(110041,'2025-07-14',81,0,0,0,0,0,0,1,0,0,0,0,0),(110036,'2025-07-13',90,0,0,0,0,0,0,1,0,0,0,0,0),(110035,'2025-07-13',51,0,0,0,0,0,0,1,0,0,0,0,0),(110034,'2025-07-13',49,0,0,0,0,0,0,2,0,0,0,0,0),(110033,'2025-07-13',22,0,0,0,0,0,0,1,0,0,0,0,0),(111069,'2025-07-27',117,0,0,0,1,0,0,0,0,0,0,0,0),(111068,'2025-07-27',116,0,0,0,1,0,0,0,0,0,0,0,0),(111067,'2025-07-27',115,0,0,0,1,0,0,0,0,0,0,0,0),(111066,'2025-07-27',114,0,0,0,1,0,0,0,0,0,0,0,0),(111065,'2025-07-27',113,0,0,0,1,0,0,0,0,0,0,0,0),(111064,'2025-07-27',112,0,0,0,1,0,0,0,0,0,0,0,0),(111063,'2025-07-27',111,0,0,0,1,1,1,0,0,0,0,0,0),(111062,'2025-07-27',110,0,0,0,1,0,0,0,0,0,0,0,0),(111061,'2025-07-27',109,0,0,0,1,1,0,1,0,0,0,0,0),(111060,'2025-07-27',106,0,0,0,1,0,0,0,0,0,0,0,0),(111059,'2025-07-27',105,0,0,0,1,0,0,0,0,0,0,0,0),(111058,'2025-07-27',104,0,0,0,1,0,1,0,0,0,0,0,0),(111057,'2025-07-27',103,0,0,0,1,0,0,0,0,0,0,0,0),(111056,'2025-07-27',102,0,0,0,1,0,0,0,0,0,0,0,0),(111055,'2025-07-27',101,0,0,0,1,0,0,0,0,0,0,0,0),(111054,'2025-07-27',100,0,0,0,1,0,0,0,0,0,0,0,0),(111053,'2025-07-27',98,0,0,0,1,0,0,0,0,0,0,0,0),(111052,'2025-07-27',97,0,0,0,1,0,0,0,0,0,0,0,0),(111051,'2025-07-27',96,0,0,0,1,0,0,0,0,0,0,0,0),(111050,'2025-07-27',95,0,0,0,1,0,0,0,0,0,0,0,0),(111049,'2025-07-27',94,0,0,0,1,0,0,0,0,0,0,0,0),(111048,'2025-07-27',93,0,0,0,1,0,0,0,0,0,0,0,0),(111047,'2025-07-27',91,2,0,0,1,1,1,0,0,0,0,0,0),(111046,'2025-07-27',90,0,0,0,1,0,1,1,0,0,0,0,0),(111045,'2025-07-27',89,0,0,0,1,0,1,0,0,0,0,0,0),(111044,'2025-07-27',87,0,0,0,1,0,0,0,0,0,0,0,0),(111043,'2025-07-27',86,0,0,0,1,0,0,0,0,0,0,0,0),(111042,'2025-07-27',85,0,0,0,1,0,0,0,0,0,0,0,0),(111041,'2025-07-27',84,0,0,0,1,0,0,0,0,0,0,0,0),(111040,'2025-07-27',83,0,0,0,1,0,0,0,0,0,0,0,0),(111039,'2025-07-27',82,0,0,0,1,0,0,0,0,0,0,0,0),(111038,'2025-07-27',81,0,0,0,1,0,0,1,0,0,0,0,0),(111037,'2025-07-27',80,0,0,0,1,0,0,0,0,0,0,0,0),(111036,'2025-07-27',79,0,0,0,1,0,0,0,0,0,0,0,0),(111035,'2025-07-27',78,0,0,0,1,0,0,0,0,0,0,0,0),(111034,'2025-07-27',77,0,0,0,1,1,0,0,0,0,0,0,0),(111033,'2025-07-27',75,1,0,1,0,1,0,0,0,0,0,0,0),(111032,'2025-07-27',74,0,0,0,1,0,0,0,0,0,0,0,0),(111031,'2025-07-27',73,0,0,0,1,1,0,0,0,0,0,0,0),(111030,'2025-07-27',71,0,0,0,1,0,0,0,0,0,0,0,0),(111029,'2025-07-27',70,0,0,0,1,0,0,0,0,0,0,0,0),(111028,'2025-07-27',69,0,0,0,1,0,0,0,0,0,0,0,0),(111027,'2025-07-27',68,0,0,0,1,0,0,0,0,0,0,0,0),(111026,'2025-07-27',67,0,0,0,1,0,0,0,0,0,0,0,0),(111025,'2025-07-27',66,0,0,0,1,0,0,0,0,0,0,0,0),(111024,'2025-07-27',65,0,0,0,1,0,0,0,0,0,0,0,0),(111023,'2025-07-27',64,0,0,0,1,0,1,0,0,0,0,0,0),(111022,'2025-07-27',63,0,0,0,1,0,0,0,0,0,0,0,0),(111021,'2025-07-27',61,0,0,0,1,0,0,0,0,0,0,0,0),(111020,'2025-07-27',60,0,0,0,1,0,0,0,0,0,0,0,0),(111019,'2025-07-27',59,0,0,0,1,0,0,0,0,0,0,0,0),(111018,'2025-07-27',58,0,0,0,1,0,0,0,0,0,0,0,0),(111017,'2025-07-27',57,0,0,0,1,0,0,0,0,0,0,0,0),(111016,'2025-07-27',56,0,0,0,1,0,0,0,0,0,0,0,0),(111015,'2025-07-27',55,0,0,0,1,0,0,0,0,0,0,0,0),(111014,'2025-07-27',54,1,0,0,1,1,0,0,0,0,0,0,0),(111013,'2025-07-27',53,0,0,0,1,0,0,0,0,0,0,0,0),(111012,'2025-07-27',52,0,0,0,1,0,0,0,0,0,0,0,0),(111011,'2025-07-27',51,0,0,0,1,1,1,0,0,0,0,0,0),(111010,'2025-07-27',50,0,0,0,1,1,0,0,0,0,0,0,0),(111009,'2025-07-27',49,0,0,0,1,0,0,0,0,0,0,0,0),(111008,'2025-07-27',48,0,0,0,1,0,0,0,0,0,0,0,0),(111007,'2025-07-27',47,0,0,0,1,0,0,0,0,0,0,0,0),(111006,'2025-07-27',46,0,0,0,1,0,1,0,0,0,0,0,0),(111005,'2025-07-27',45,0,0,0,1,1,0,0,0,0,0,0,0),(111004,'2025-07-27',44,0,0,0,1,0,0,0,0,0,0,0,0),(111003,'2025-07-27',43,2,4,0,1,0,0,0,0,0,0,0,0),(111002,'2025-07-27',42,0,0,0,1,0,0,0,0,0,0,0,0),(111001,'2025-07-27',41,0,0,0,1,0,0,0,0,0,0,0,0),(111000,'2025-07-27',40,0,0,0,1,0,0,0,0,0,0,0,0),(110999,'2025-07-27',38,0,0,0,1,0,0,0,0,0,0,0,0),(110998,'2025-07-27',37,2,0,0,1,0,0,0,0,0,0,0,0),(110997,'2025-07-27',36,0,0,0,1,1,0,0,0,0,0,0,0),(110996,'2025-07-27',35,0,0,0,1,0,0,0,0,0,0,0,0),(110995,'2025-07-27',34,0,0,0,1,0,0,0,0,0,0,0,0),(110994,'2025-07-27',33,0,0,0,1,0,1,0,0,0,0,0,0),(110993,'2025-07-27',32,0,0,0,1,0,0,0,0,0,0,0,0),(110992,'2025-07-27',31,0,0,0,1,0,0,0,0,0,0,0,0),(110991,'2025-07-27',30,0,0,0,1,0,0,0,0,0,0,0,0),(110990,'2025-07-27',29,0,0,0,1,0,0,0,0,0,0,0,0),(110989,'2025-07-27',28,0,0,0,1,0,1,0,0,0,0,0,0),(110988,'2025-07-27',27,0,0,0,1,1,0,0,0,0,0,0,0),(110987,'2025-07-27',26,0,0,0,1,0,0,0,0,0,0,0,0),(110986,'2025-07-27',25,0,0,0,1,0,0,0,0,0,0,0,0),(110985,'2025-07-27',24,0,0,0,1,0,0,0,0,0,0,0,0),(110984,'2025-07-27',23,0,0,0,1,0,1,0,0,0,0,0,0),(110983,'2025-07-27',22,0,0,0,1,0,1,0,0,0,0,0,0),(110982,'2025-07-27',21,0,0,0,1,0,0,0,0,0,0,0,0),(110981,'2025-07-27',20,0,0,0,1,0,1,0,0,0,0,0,0),(110980,'2025-07-27',19,0,0,0,1,0,0,0,0,0,0,0,0),(110979,'2025-07-27',18,0,0,0,1,1,0,0,0,0,0,0,0),(110978,'2025-07-27',17,0,0,0,1,0,1,0,0,0,0,0,0),(110977,'2025-07-27',16,0,0,0,1,0,0,0,0,0,0,0,0),(110976,'2025-07-27',14,0,0,0,1,0,0,0,0,0,0,0,0),(110975,'2025-07-27',13,0,0,0,1,0,0,0,0,0,0,0,0),(110974,'2025-07-27',12,0,0,0,1,0,0,0,0,0,0,0,0),(110973,'2025-07-27',11,0,0,0,1,0,0,0,0,0,0,0,0),(110972,'2025-07-27',10,0,0,0,1,0,0,0,0,0,0,0,0),(110971,'2025-07-27',9,0,0,0,1,1,0,0,0,0,0,0,0),(110970,'2025-07-27',8,0,0,0,1,1,0,0,0,0,0,0,0),(110969,'2025-07-27',5,0,0,0,1,1,0,0,0,0,0,0,0),(110968,'2025-07-27',3,0,0,0,1,0,0,0,0,0,0,0,0),(110967,'2025-07-27',2,0,0,0,1,1,0,0,0,0,0,0,0),(110966,'2025-07-27',1,0,0,0,1,1,1,0,0,0,0,0,0),(111606,'2025-08-07',446,0,0,0,1,0,0,0,0,0,0,0,0),(111605,'2025-08-07',445,0,0,0,1,0,0,0,0,0,0,0,0),(111604,'2025-08-07',443,0,0,0,1,0,0,0,0,0,0,0,0),(111603,'2025-08-07',441,0,0,0,1,0,0,0,0,0,0,0,0),(111602,'2025-08-07',440,0,0,0,1,0,0,0,0,0,0,0,0),(111601,'2025-08-07',439,0,0,0,1,0,0,0,0,0,0,0,0),(111600,'2025-08-07',438,0,0,0,1,0,0,0,0,0,0,0,0),(111599,'2025-08-07',435,0,0,0,1,0,0,0,0,0,0,0,0),(111598,'2025-08-07',434,0,0,0,1,0,0,0,0,0,0,0,0),(111597,'2025-08-07',433,0,0,0,1,0,0,0,0,0,0,0,0),(111596,'2025-08-07',432,0,0,0,1,0,0,0,0,0,0,0,0),(111595,'2025-08-07',431,0,0,0,1,0,0,0,0,0,0,0,0),(111594,'2025-08-07',430,0,0,0,1,0,0,0,0,0,0,0,0),(111593,'2025-08-07',428,0,0,0,1,0,0,0,0,0,0,0,0),(111592,'2025-08-07',426,0,0,0,1,0,0,0,0,0,0,0,0),(111591,'2025-08-07',423,0,0,0,1,0,0,0,0,0,0,0,0),(111338,'2025-07-30',75,0,0,0,0,0,0,1,0,0,0,0,0),(111337,'2025-07-30',17,0,0,0,0,0,0,2,0,0,0,0,0),(111336,'2025-07-30',9,0,0,0,0,0,0,1,0,0,0,0,0),(111335,'2025-07-30',5,0,0,0,0,0,0,1,0,0,0,0,0),(111585,'2025-08-07',412,0,0,0,1,0,0,0,0,0,0,0,0),(111584,'2025-08-07',410,0,0,0,1,0,0,0,0,0,0,0,0),(111583,'2025-08-07',408,0,0,0,1,0,0,0,0,0,0,0,0),(111440,'2025-08-07',203,0,0,0,1,0,0,0,0,0,0,0,0),(111439,'2025-08-07',201,0,0,0,1,0,0,0,0,0,0,0,0),(111438,'2025-08-07',200,0,0,0,1,0,0,0,0,0,0,0,0),(111437,'2025-08-07',197,0,0,0,1,0,0,0,0,0,0,0,0),(111436,'2025-08-07',196,0,0,0,1,0,0,0,0,0,0,0,0),(111435,'2025-08-07',195,0,0,0,1,0,0,0,0,0,0,0,0),(111434,'2025-08-07',194,0,0,0,1,0,0,0,0,0,0,0,0),(111433,'2025-08-07',193,0,0,0,1,0,0,0,0,0,0,0,0),(111432,'2025-08-07',192,0,0,0,1,0,0,0,0,0,0,0,0),(111431,'2025-08-07',191,0,0,0,1,0,0,0,0,0,0,0,0),(111430,'2025-08-07',190,0,0,0,1,0,0,0,0,0,0,0,0),(111429,'2025-08-07',189,0,0,0,1,0,0,0,0,0,0,0,0),(111428,'2025-08-07',188,0,0,0,1,0,0,0,0,0,0,0,0),(111427,'2025-08-07',187,0,0,0,1,0,0,0,0,0,0,0,0),(111426,'2025-08-07',186,0,0,0,1,0,0,0,0,0,0,0,0),(111425,'2025-08-07',185,0,0,0,1,0,0,0,0,0,0,0,0),(111424,'2025-08-07',184,0,0,0,1,0,0,0,0,0,0,0,0),(111423,'2025-08-07',183,0,0,0,1,0,0,0,0,0,0,0,0),(111422,'2025-08-07',182,0,0,0,1,0,0,0,0,0,0,0,0),(111421,'2025-08-07',181,0,0,0,1,0,0,0,0,0,0,0,0),(111420,'2025-08-07',180,0,0,0,1,0,0,0,0,0,0,0,0),(111419,'2025-08-07',179,0,0,0,1,0,0,0,0,0,0,0,0),(111418,'2025-08-07',176,0,0,0,1,0,0,0,0,0,0,0,0),(111417,'2025-08-07',175,0,0,0,1,0,0,0,0,0,0,0,0),(111416,'2025-08-07',174,0,0,0,1,0,0,0,0,0,0,0,0),(111415,'2025-08-07',173,0,0,0,1,0,0,0,0,0,0,0,0),(111414,'2025-08-07',172,0,0,0,1,0,0,0,0,0,0,0,0),(111413,'2025-08-07',170,0,0,0,1,0,0,0,0,0,0,0,0),(111412,'2025-08-07',168,0,0,0,1,0,0,0,0,0,0,0,0),(111411,'2025-08-07',167,0,0,0,1,0,0,0,0,0,0,0,0),(111410,'2025-08-07',166,0,0,0,1,0,0,0,0,0,0,0,0),(111409,'2025-08-07',164,0,0,0,1,0,0,0,0,0,0,0,0),(111408,'2025-08-07',163,0,0,0,1,0,0,0,0,0,0,0,0),(111407,'2025-08-07',161,0,0,0,1,0,0,0,0,0,0,0,0),(111406,'2025-08-07',160,0,0,0,1,0,0,0,0,0,0,0,0),(111405,'2025-08-07',159,0,0,0,1,0,0,0,0,0,0,0,0),(111404,'2025-08-07',158,0,0,0,1,0,0,0,0,0,0,0,0),(111403,'2025-08-07',157,0,0,0,1,0,0,0,0,0,0,0,0),(111402,'2025-08-07',154,0,0,0,1,0,0,0,0,0,0,0,0),(111401,'2025-08-07',152,0,0,0,1,0,0,0,0,0,0,0,0),(111400,'2025-08-07',151,0,0,0,1,0,0,0,0,0,0,0,0),(111399,'2025-08-07',148,0,0,0,1,0,0,0,0,0,0,0,0),(111398,'2025-08-07',147,0,0,0,1,0,0,0,0,0,0,0,0),(111397,'2025-08-07',146,0,0,0,1,0,0,0,0,0,0,0,0),(111396,'2025-08-07',145,0,0,0,1,0,0,0,0,0,0,0,0),(111395,'2025-08-07',144,0,0,0,1,0,0,0,0,0,0,0,0),(111394,'2025-08-07',143,0,0,0,1,0,0,0,0,0,0,0,0),(111393,'2025-08-07',141,0,0,0,1,0,0,0,0,0,0,0,0),(111392,'2025-08-07',140,0,0,0,1,0,0,0,0,0,0,0,0),(111391,'2025-08-07',136,0,0,0,1,0,0,0,0,0,0,0,0),(111390,'2025-08-07',132,0,0,0,1,0,0,0,0,0,0,0,0),(111389,'2025-08-07',128,0,0,0,1,0,0,0,0,0,0,0,0),(111388,'2025-08-07',127,0,0,0,1,0,0,0,0,0,0,0,0),(111387,'2025-08-07',126,0,0,0,1,0,0,0,0,0,0,0,0),(111386,'2025-08-07',124,0,0,0,1,0,0,0,0,0,0,0,0),(111385,'2025-08-07',123,0,0,0,1,0,0,1,0,0,0,0,0),(111384,'2025-08-07',121,0,0,0,1,0,0,0,0,0,0,0,0),(111383,'2025-08-07',115,0,0,0,1,0,0,0,0,0,0,0,0),(111382,'2025-08-07',114,0,0,0,1,0,0,0,0,0,0,0,0),(111381,'2025-08-07',113,0,0,0,1,0,0,0,0,0,0,0,0),(111380,'2025-08-07',112,0,0,0,1,0,0,0,0,0,0,0,0),(111379,'2025-08-07',110,0,0,0,1,0,0,0,0,0,0,0,0),(111378,'2025-08-07',109,0,0,0,0,0,0,1,0,0,0,0,0),(111377,'2025-08-07',103,0,0,0,1,0,0,0,0,0,0,0,0),(111376,'2025-08-07',98,0,0,0,1,0,0,0,0,0,0,0,0),(111375,'2025-08-07',97,0,0,0,1,0,0,0,0,0,0,0,0),(111374,'2025-08-07',96,0,0,0,1,0,0,0,0,0,0,0,0),(111373,'2025-08-07',94,0,0,0,1,0,0,0,0,0,0,0,0),(111372,'2025-08-07',91,0,0,0,1,0,0,0,0,0,0,0,0),(111371,'2025-08-07',90,0,0,0,1,0,0,0,0,0,0,0,0),(111370,'2025-08-07',87,0,0,0,1,0,0,0,0,0,0,0,0),(111369,'2025-08-07',79,0,0,0,1,0,0,0,0,0,0,0,0),(111368,'2025-08-07',70,0,0,0,1,0,0,0,0,0,0,0,0),(111367,'2025-08-07',69,0,0,0,1,0,0,0,0,0,0,0,0),(111366,'2025-08-07',68,0,0,0,1,0,0,0,0,0,0,0,0),(111365,'2025-08-07',67,0,0,0,1,0,0,0,0,0,0,0,0),(111364,'2025-08-07',66,0,0,0,1,0,0,0,0,0,0,0,0),(111363,'2025-08-07',65,0,0,0,1,0,0,0,0,0,0,0,0),(111362,'2025-08-07',64,0,0,0,1,0,0,0,0,0,0,0,0),(111361,'2025-08-07',63,0,0,0,1,0,0,0,0,0,0,0,0),(111360,'2025-08-07',61,0,0,0,1,0,0,0,0,0,0,0,0),(111359,'2025-08-07',58,0,0,0,1,0,0,0,0,0,0,0,0),(111358,'2025-08-07',54,0,0,0,1,0,0,0,0,0,0,0,0),(111357,'2025-08-07',52,0,0,0,1,0,0,0,0,0,0,0,0),(111356,'2025-08-07',42,0,0,0,1,0,0,0,0,0,0,0,0),(111355,'2025-08-07',37,0,0,0,1,0,0,0,0,0,0,0,0),(111354,'2025-08-07',32,0,0,0,1,0,0,0,0,0,0,0,0),(111353,'2025-08-07',24,0,0,0,1,0,0,0,0,0,0,0,0),(111352,'2025-08-07',19,0,0,0,1,0,0,0,0,0,0,0,0),(111351,'2025-08-07',13,0,0,0,1,0,0,0,0,0,0,0,0),(111350,'2025-08-07',10,0,0,0,1,0,0,0,0,0,0,0,0),(111349,'2025-08-07',2,0,0,0,0,0,0,1,0,0,0,0,0),(111348,'2025-08-07',1,0,0,0,0,0,0,1,0,0,0,0,0),(111347,'2025-08-05',218,0,0,0,0,0,0,2,0,0,0,0,0),(111346,'2025-08-05',90,0,0,0,0,0,0,1,0,0,0,0,0),(111345,'2025-08-05',89,0,0,0,0,0,0,1,0,0,0,0,0),(111344,'2025-08-05',81,0,0,0,0,0,0,1,0,0,0,0,0),(111615,'2025-08-09',78,0,0,0,0,0,0,1,0,0,0,0,0),(111610,'2025-08-08',137,0,0,0,0,0,0,1,0,0,0,0,0),(111609,'2025-08-08',17,0,0,0,0,0,0,1,0,0,0,0,0),(111608,'2025-08-08',9,0,0,0,0,0,0,1,0,0,0,0,0),(111607,'2025-08-08',5,0,0,0,0,0,0,2,0,0,0,0,0),(113242,'2025-09-10',262,0,0,0,1,0,0,0,0,0,0,0,0),(113241,'2025-09-10',261,0,0,0,1,0,0,0,0,0,0,0,0),(113240,'2025-09-10',260,0,0,0,1,0,0,0,0,0,0,0,0),(113239,'2025-09-10',258,0,0,0,1,0,0,0,0,0,0,0,0),(113238,'2025-09-10',257,0,0,0,1,0,0,0,0,0,0,0,0),(113237,'2025-09-10',256,0,0,0,1,0,0,0,0,0,0,0,0),(113236,'2025-09-10',255,0,0,0,1,0,0,0,0,0,0,0,0),(113235,'2025-09-10',254,0,0,0,1,0,0,0,0,0,0,0,0),(113234,'2025-09-10',253,0,0,0,1,0,0,0,0,0,0,0,0),(113233,'2025-09-10',251,0,0,0,1,0,0,0,0,0,0,0,0),(113232,'2025-09-10',250,0,0,0,1,0,0,0,0,0,0,0,0),(113231,'2025-09-10',249,0,0,0,1,0,0,0,0,0,0,0,0),(113230,'2025-09-10',247,0,0,0,1,0,0,0,0,0,0,0,0),(113229,'2025-09-10',246,0,0,0,1,0,0,0,0,0,0,0,0),(113228,'2025-09-10',245,0,0,0,1,0,0,0,0,0,0,0,0),(113227,'2025-09-10',243,0,0,0,1,0,0,0,0,0,0,0,0),(111614,'2025-08-09',75,0,0,0,0,0,0,1,0,0,0,0,0),(111613,'2025-08-09',51,0,0,0,0,0,0,1,0,0,0,0,0),(111612,'2025-08-09',49,0,0,0,0,0,0,1,0,0,0,0,0),(111611,'2025-08-09',22,0,0,0,0,0,0,1,0,0,0,0,0),(111620,'2025-08-11',218,0,0,0,0,0,0,1,0,0,0,0,0),(111619,'2025-08-11',188,0,0,0,0,0,0,1,0,0,0,0,0),(111618,'2025-08-11',90,0,0,0,0,0,0,1,0,0,0,0,0),(111617,'2025-08-11',89,0,0,0,0,0,0,1,0,0,0,0,0),(111616,'2025-08-11',81,0,0,0,0,0,0,1,0,0,0,0,0),(113226,'2025-09-10',242,0,0,0,1,0,0,0,0,0,0,0,0),(113225,'2025-09-10',241,0,0,0,1,0,0,0,0,0,0,0,0),(113224,'2025-09-10',239,0,0,0,1,0,0,0,0,0,0,0,0),(113223,'2025-09-10',238,0,0,0,1,0,0,0,0,0,0,0,0),(113222,'2025-09-10',236,0,0,0,1,0,0,0,0,0,0,0,0),(113221,'2025-09-10',234,0,0,0,1,0,0,0,0,0,0,0,0),(113220,'2025-09-10',233,0,0,0,1,0,0,1,0,0,0,0,0),(113219,'2025-09-10',232,0,0,0,1,0,0,0,0,0,0,0,0),(113218,'2025-09-10',231,0,0,0,1,0,0,0,0,0,0,0,0),(113217,'2025-09-10',228,0,0,0,1,0,0,0,0,0,0,0,0),(113216,'2025-09-10',227,0,0,0,1,0,0,0,0,0,0,0,0),(113215,'2025-09-10',226,0,0,0,1,0,0,0,0,0,0,0,0),(113214,'2025-09-10',225,0,0,0,1,0,0,0,0,0,0,0,0),(113213,'2025-09-10',224,0,0,0,1,0,0,0,0,0,0,0,0),(113212,'2025-09-10',222,0,0,0,1,0,0,0,0,0,0,0,0),(113211,'2025-09-10',221,0,0,0,1,0,0,0,0,0,0,0,0),(113210,'2025-09-10',220,0,0,0,1,0,0,0,0,0,0,0,0),(113209,'2025-09-10',218,0,0,0,0,0,0,1,0,0,0,0,0),(113208,'2025-09-10',217,0,0,0,1,0,0,0,0,0,0,0,0),(113207,'2025-09-10',214,0,0,0,1,0,0,0,0,0,0,0,0),(113206,'2025-09-10',213,0,0,0,1,0,0,0,0,0,0,0,0),(113205,'2025-09-10',212,0,0,0,1,0,0,0,0,0,0,0,0),(113204,'2025-09-10',211,0,0,0,1,0,0,0,0,0,0,0,0),(113203,'2025-09-10',210,0,0,0,1,0,0,0,0,0,0,0,0),(113202,'2025-09-10',209,0,0,0,1,0,0,0,0,0,0,0,0),(113201,'2025-09-10',208,0,0,0,1,0,0,0,0,0,0,0,0),(113200,'2025-09-10',207,0,0,0,1,0,0,0,0,0,0,0,0),(113199,'2025-09-10',206,0,0,0,1,0,0,0,0,0,0,0,0),(113198,'2025-09-10',205,0,0,0,1,0,0,0,0,0,0,0,0),(113197,'2025-09-10',204,0,0,0,1,0,0,0,0,0,0,0,0),(113196,'2025-09-10',203,0,0,0,1,0,0,0,0,0,0,0,0),(113195,'2025-09-10',201,0,0,0,1,0,0,0,0,0,0,0,0),(113194,'2025-09-10',200,0,0,0,1,0,0,0,0,0,0,0,0),(113193,'2025-09-10',197,0,0,0,1,0,0,0,0,0,0,0,0),(113192,'2025-09-10',196,0,0,0,1,0,0,0,0,0,0,0,0),(113191,'2025-09-10',195,0,0,0,1,0,0,0,0,0,0,0,0),(113190,'2025-09-10',194,0,0,0,1,0,0,0,0,0,0,0,0),(113189,'2025-09-10',193,0,0,0,1,0,0,0,0,0,0,0,0),(113188,'2025-09-10',192,0,0,0,1,0,0,0,0,0,0,0,0),(113187,'2025-09-10',191,0,0,0,1,0,0,0,0,0,0,0,0),(113186,'2025-09-10',190,0,0,0,1,0,0,0,0,0,0,0,0),(113185,'2025-09-10',189,0,0,0,1,0,0,0,0,0,0,0,0),(113184,'2025-09-10',188,0,0,0,1,0,0,1,0,0,0,0,0),(113183,'2025-09-10',187,0,0,0,1,0,0,0,0,0,0,0,0),(113182,'2025-09-10',186,0,0,0,1,0,0,0,0,0,0,0,0),(113181,'2025-09-10',185,0,0,0,1,0,0,0,0,0,0,0,0),(113180,'2025-09-10',184,0,0,0,1,0,0,0,0,0,0,0,0),(113179,'2025-09-10',183,0,0,0,1,0,0,0,0,0,0,0,0),(113178,'2025-09-10',182,0,0,0,1,0,0,0,0,0,0,0,0),(113177,'2025-09-10',181,0,0,0,1,0,0,0,0,0,0,0,0),(113176,'2025-09-10',180,0,0,0,1,0,0,0,0,0,0,0,0),(113175,'2025-09-10',179,0,0,0,1,0,0,0,0,0,0,0,0),(113174,'2025-09-10',178,0,0,0,1,0,0,0,0,0,0,0,0),(113173,'2025-09-10',176,0,0,0,1,0,0,0,0,0,0,0,0),(113172,'2025-09-10',175,0,0,0,1,0,0,0,0,0,0,0,0),(113171,'2025-09-10',174,0,0,0,1,0,0,0,0,0,0,0,0),(113170,'2025-09-10',173,0,0,0,1,0,0,0,0,0,0,0,0),(113169,'2025-09-10',172,0,0,0,1,0,0,0,0,0,0,0,0),(113168,'2025-09-10',171,0,0,0,1,0,0,0,0,0,0,0,0),(113167,'2025-09-10',170,0,0,0,1,0,0,0,0,0,0,0,0),(113166,'2025-09-10',169,0,0,0,1,0,0,0,0,0,0,0,0),(113165,'2025-09-10',168,0,0,0,1,0,0,0,0,0,0,0,0),(113164,'2025-09-10',167,0,0,0,1,0,0,0,0,0,0,0,0),(113163,'2025-09-10',166,0,0,0,1,0,0,0,0,0,0,0,0),(113162,'2025-09-10',164,0,0,0,1,0,0,0,0,0,0,0,0),(113161,'2025-09-10',163,0,0,0,1,0,0,0,0,0,0,0,0),(113160,'2025-09-10',162,0,0,0,1,0,0,0,0,0,0,0,0),(113159,'2025-09-10',161,0,0,0,1,0,0,0,0,0,0,0,0),(113158,'2025-09-10',160,0,0,0,1,0,0,0,0,0,0,0,0),(113157,'2025-09-10',159,0,0,0,1,0,0,0,0,0,0,0,0),(113156,'2025-09-10',158,0,0,0,1,0,0,0,0,0,0,0,0),(113155,'2025-09-10',157,0,0,0,1,0,0,0,0,0,0,0,0),(113154,'2025-09-10',155,0,0,0,1,0,0,0,0,0,0,0,0),(113153,'2025-09-10',154,0,0,0,1,0,0,0,0,0,0,0,0),(113152,'2025-09-10',152,0,0,0,1,0,0,0,0,0,0,0,0),(113151,'2025-09-10',151,0,0,0,1,0,1,0,0,0,0,0,0),(113150,'2025-09-10',150,0,0,0,1,0,0,0,0,0,0,0,0),(113149,'2025-09-10',148,0,0,0,1,0,0,0,0,0,0,0,0),(113148,'2025-09-10',147,0,0,0,1,0,0,0,0,0,0,0,0),(113147,'2025-09-10',146,0,0,0,1,0,0,0,0,0,0,0,0),(113146,'2025-09-10',145,0,0,0,1,0,0,0,0,0,0,0,0),(113145,'2025-09-10',144,0,0,0,1,0,0,0,0,0,0,0,0),(113144,'2025-09-10',143,0,0,0,1,0,0,0,0,0,0,0,0),(113143,'2025-09-10',142,0,0,0,1,0,0,0,0,0,0,0,0),(113142,'2025-09-10',141,0,0,0,1,0,1,0,0,0,0,0,0),(113141,'2025-09-10',140,0,0,0,1,1,0,0,0,0,0,0,0),(113140,'2025-09-10',139,0,0,0,1,0,0,0,0,0,0,0,0),(113139,'2025-09-10',136,0,0,0,1,0,0,0,0,0,0,0,0),(113138,'2025-09-10',134,0,0,0,1,0,0,0,0,0,0,0,0),(113137,'2025-09-10',133,0,0,0,1,0,0,0,0,0,0,0,0),(113136,'2025-09-10',132,0,0,0,1,0,0,0,0,0,0,0,0),(113135,'2025-09-10',129,0,0,0,1,0,0,0,0,0,0,0,0),(113134,'2025-09-10',128,0,0,0,1,0,0,0,0,0,0,0,0),(113133,'2025-09-10',127,0,0,0,1,0,0,0,0,0,0,0,0),(113132,'2025-09-10',126,0,0,0,1,0,0,0,0,0,0,0,0),(113131,'2025-09-10',125,0,0,0,1,0,0,0,0,0,0,0,0),(113130,'2025-09-10',124,0,0,0,1,0,0,0,0,0,0,0,0),(113129,'2025-09-10',123,0,0,0,1,0,0,1,0,0,0,0,0),(113128,'2025-09-10',122,0,0,0,1,0,0,0,0,0,0,0,0),(113127,'2025-09-10',121,0,0,0,1,0,0,0,0,0,0,0,0),(113126,'2025-09-10',120,0,0,0,1,0,0,0,0,0,0,0,0),(113125,'2025-09-10',119,0,0,0,1,0,0,0,0,0,0,0,0),(113124,'2025-09-10',118,0,0,0,1,0,0,0,0,0,0,0,0),(113123,'2025-09-10',117,0,0,0,1,0,0,0,0,0,0,0,0),(113122,'2025-09-10',116,0,0,0,1,0,0,0,0,0,0,0,0),(113121,'2025-09-10',115,0,0,0,1,0,0,0,0,0,0,0,0),(113120,'2025-09-10',114,0,0,0,1,0,0,0,0,0,0,0,0),(113119,'2025-09-10',113,0,0,0,1,0,0,0,0,0,0,0,0),(113118,'2025-09-10',112,0,0,0,1,0,0,0,0,0,0,0,0),(113117,'2025-09-10',111,0,0,0,1,0,0,0,0,0,0,0,0),(113116,'2025-09-10',110,0,0,0,1,0,0,0,0,0,0,0,0),(113115,'2025-09-10',109,0,0,0,1,0,0,2,0,0,0,0,0),(113114,'2025-09-10',106,0,0,0,1,0,0,0,0,0,0,0,0),(113113,'2025-09-10',105,0,0,0,1,0,0,0,0,0,0,0,0),(113112,'2025-09-10',104,0,0,0,1,0,0,0,0,0,0,0,0),(113111,'2025-09-10',103,0,0,0,1,0,0,0,0,0,0,0,0),(113110,'2025-09-10',102,0,0,0,1,0,0,0,0,0,0,0,0),(113109,'2025-09-10',101,0,0,0,1,0,0,0,0,0,0,0,0),(113108,'2025-09-10',100,0,0,0,1,0,0,0,0,0,0,0,0),(113107,'2025-09-10',98,0,0,0,1,0,0,0,0,0,0,0,0),(113106,'2025-09-10',97,0,0,0,1,0,0,0,0,0,0,0,0),(113105,'2025-09-10',96,0,0,0,1,0,0,0,0,0,0,0,0),(113104,'2025-09-10',95,0,0,0,1,0,0,0,0,0,0,0,0),(113103,'2025-09-10',94,0,0,0,1,0,0,0,0,0,0,0,0),(113102,'2025-09-10',93,0,0,0,1,0,0,0,0,0,0,0,0),(113101,'2025-09-10',91,1,0,0,1,0,0,0,0,0,0,0,0),(113100,'2025-09-10',90,0,0,0,1,0,0,1,0,0,0,0,0),(113099,'2025-09-10',89,0,0,0,1,0,0,0,0,0,0,0,0),(113098,'2025-09-10',87,0,0,0,1,0,0,0,0,0,0,0,0),(113097,'2025-09-10',86,0,0,0,1,0,0,0,0,0,0,0,0),(113096,'2025-09-10',85,0,0,0,1,0,0,0,0,0,0,0,0),(113095,'2025-09-10',84,0,0,0,1,0,0,0,0,0,0,0,0),(113094,'2025-09-10',83,0,0,0,1,0,0,0,0,0,0,0,0),(113093,'2025-09-10',82,0,0,0,1,0,0,0,0,0,0,0,0),(113092,'2025-09-10',81,0,0,0,1,1,0,0,0,0,0,0,0),(113091,'2025-09-10',80,0,0,0,1,0,0,0,0,0,0,0,0),(111721,'2025-08-17',448,0,0,1,0,0,0,0,0,0,0,0,0),(111720,'2025-08-17',445,0,0,0,1,0,0,0,0,0,0,0,0),(111719,'2025-08-17',441,0,0,0,1,0,0,0,0,0,0,0,0),(111718,'2025-08-17',440,0,0,0,1,0,0,0,0,0,0,0,0),(111717,'2025-08-17',439,0,0,0,1,0,0,0,0,0,0,0,0),(111716,'2025-08-17',438,0,0,0,1,0,0,0,0,0,0,0,0),(111715,'2025-08-17',431,0,0,0,1,0,0,0,0,0,0,0,0),(111714,'2025-08-17',428,0,0,0,1,1,0,0,0,0,0,0,0),(111713,'2025-08-17',422,0,0,0,1,0,0,0,0,0,0,0,0),(111712,'2025-08-17',417,0,0,0,1,0,0,0,0,0,0,0,0),(111711,'2025-08-17',408,0,0,0,1,0,0,0,0,0,0,0,0),(111710,'2025-08-17',407,0,0,0,1,0,0,0,0,0,0,0,0),(111709,'2025-08-17',405,0,0,0,1,0,0,0,0,0,0,0,0),(111708,'2025-08-17',395,0,0,0,1,0,0,0,0,0,0,0,0),(111707,'2025-08-17',388,0,0,0,1,0,0,0,0,0,0,0,0),(111706,'2025-08-17',387,0,0,0,1,0,0,0,0,0,0,0,0),(111705,'2025-08-17',377,0,0,0,1,0,0,0,0,0,0,0,0),(111704,'2025-08-17',372,0,0,0,1,0,0,0,0,0,0,0,0),(111703,'2025-08-17',363,0,0,0,1,0,0,0,0,0,0,0,0),(111702,'2025-08-17',348,0,0,0,1,0,0,0,0,0,0,0,0),(111701,'2025-08-17',341,0,0,0,1,0,0,0,0,0,0,0,0),(111700,'2025-08-17',338,0,0,0,1,0,0,0,0,0,0,0,0),(111699,'2025-08-17',335,0,0,0,1,0,0,0,0,0,0,0,0),(111698,'2025-08-17',324,0,0,0,1,0,0,0,0,0,0,0,0),(111697,'2025-08-17',323,0,0,0,1,0,0,0,0,0,0,0,0),(111696,'2025-08-17',321,0,0,0,1,0,0,0,0,0,0,0,0),(111695,'2025-08-17',319,0,0,0,1,0,0,0,0,0,0,0,0),(111694,'2025-08-17',313,0,0,0,1,0,0,0,0,0,0,0,0),(111693,'2025-08-17',304,0,0,0,1,0,0,0,0,0,0,0,0),(111692,'2025-08-17',300,1,0,0,1,0,0,0,0,0,0,0,0),(111691,'2025-08-17',296,0,0,0,1,0,0,0,0,0,0,0,0),(111690,'2025-08-17',291,0,0,0,1,0,0,0,0,0,0,0,0),(111689,'2025-08-17',290,0,0,0,1,0,0,0,0,0,0,0,0),(111688,'2025-08-17',289,0,0,0,1,0,0,0,0,0,0,0,0),(111687,'2025-08-17',288,0,0,0,1,0,0,0,0,0,0,0,0),(111686,'2025-08-17',285,0,0,0,1,0,0,0,0,0,0,0,0),(111685,'2025-08-17',281,0,0,0,1,0,0,0,0,0,0,0,0),(111684,'2025-08-17',268,0,0,0,1,0,0,0,0,0,0,0,0),(111683,'2025-08-17',266,0,0,0,1,0,0,0,0,0,0,0,0),(111682,'2025-08-17',265,0,0,0,1,0,0,0,0,0,0,0,0),(111681,'2025-08-17',264,0,0,0,1,0,0,0,0,0,0,0,0),(111680,'2025-08-17',263,0,0,0,0,1,0,0,0,0,0,0,0),(111679,'2025-08-17',262,0,0,0,1,0,0,0,0,0,0,0,0),(111678,'2025-08-17',258,0,0,0,1,0,0,0,0,0,0,0,0),(111677,'2025-08-17',251,0,0,0,1,0,0,0,0,0,0,0,0),(111676,'2025-08-17',250,0,0,0,1,0,0,0,0,0,0,0,0),(111675,'2025-08-17',245,0,0,0,1,0,0,0,0,0,0,0,0),(111674,'2025-08-17',243,0,0,0,1,0,0,0,0,0,0,0,0),(111673,'2025-08-17',236,0,0,0,1,0,0,0,0,0,0,0,0),(111672,'2025-08-17',234,0,0,0,1,0,0,0,0,0,0,0,0),(111671,'2025-08-17',228,0,0,0,1,0,0,0,0,0,0,0,0),(111670,'2025-08-17',226,0,0,0,1,0,0,0,0,0,0,0,0),(111669,'2025-08-17',220,0,0,0,1,0,0,0,0,0,0,0,0),(111668,'2025-08-17',210,0,0,0,1,0,0,0,0,0,0,0,0),(111667,'2025-08-17',207,0,0,0,1,0,0,0,0,0,0,0,0),(111666,'2025-08-17',204,0,0,0,1,0,0,0,0,0,0,0,0),(111665,'2025-08-17',203,0,0,0,0,0,1,0,0,0,0,0,0),(111664,'2025-08-17',200,0,0,0,1,0,0,0,0,0,0,0,0),(111663,'2025-08-17',194,0,0,0,1,0,0,0,0,0,0,0,0),(111662,'2025-08-17',190,0,0,0,1,0,0,0,0,0,0,0,0),(111661,'2025-08-17',189,0,0,0,1,0,0,0,0,0,0,0,0),(111660,'2025-08-17',188,0,0,0,0,0,0,1,0,0,0,0,0),(111659,'2025-08-17',187,0,0,0,1,0,0,0,0,0,0,0,0),(111658,'2025-08-17',185,0,0,0,1,0,0,0,0,0,0,0,0),(111657,'2025-08-17',184,0,0,0,1,0,0,0,0,0,0,0,0),(111656,'2025-08-17',183,0,0,0,1,0,0,0,0,0,0,0,0),(111655,'2025-08-17',182,0,0,0,1,0,0,0,0,0,0,0,0),(111654,'2025-08-17',180,0,0,0,1,0,0,0,0,0,0,0,0),(111653,'2025-08-17',179,0,0,0,1,0,0,0,0,0,0,0,0),(111652,'2025-08-17',167,0,0,0,1,0,0,0,0,0,0,0,0),(111651,'2025-08-17',160,0,0,0,1,0,0,0,0,0,0,0,0),(111650,'2025-08-17',148,0,0,0,1,0,0,0,0,0,0,0,0),(111649,'2025-08-17',147,0,0,0,1,0,0,0,0,0,0,0,0),(111648,'2025-08-17',144,0,0,0,1,0,0,0,0,0,0,0,0),(111647,'2025-08-17',137,0,0,0,0,0,0,2,0,0,0,0,0),(111646,'2025-08-17',136,0,0,0,1,0,0,0,0,0,0,0,0),(111645,'2025-08-17',124,0,0,0,1,0,0,0,0,0,0,0,0),(111644,'2025-08-17',123,0,0,0,1,0,0,0,0,0,0,0,0),(111643,'2025-08-17',113,0,0,0,1,0,0,0,0,0,0,0,0),(111642,'2025-08-17',89,0,0,0,0,0,0,1,0,0,0,0,0),(111641,'2025-08-17',81,0,0,0,0,1,0,2,0,0,0,0,0),(111640,'2025-08-17',79,0,0,0,1,0,0,0,0,0,0,0,0),(111639,'2025-08-17',78,0,0,0,0,0,0,1,0,0,0,0,0),(111638,'2025-08-17',75,0,0,0,0,0,0,1,0,0,0,0,0),(111637,'2025-08-17',69,0,0,0,1,0,0,0,0,0,0,0,0),(111636,'2025-08-17',63,0,0,0,1,0,0,0,0,0,0,0,0),(111635,'2025-08-17',51,0,0,0,0,0,0,1,0,0,0,0,0),(111634,'2025-08-17',49,0,0,0,0,0,1,2,0,0,0,0,0),(111633,'2025-08-17',32,0,0,0,1,0,0,0,0,0,0,0,0),(111632,'2025-08-17',22,0,0,0,0,0,0,1,0,0,0,0,0),(111631,'2025-08-17',19,0,0,0,1,0,0,0,0,0,0,0,0),(111630,'2025-08-17',17,0,0,0,0,0,0,1,0,0,0,0,0),(111629,'2025-08-17',10,0,0,0,1,0,0,0,0,0,0,0,0),(111628,'2025-08-17',9,0,0,0,0,0,0,1,0,0,0,0,0),(111627,'2025-08-17',5,0,0,0,0,0,0,1,0,0,0,0,1),(111626,'2025-08-17',2,0,0,0,0,0,1,0,0,0,0,0,0),(111625,'2025-08-14',233,0,0,0,0,0,0,1,0,0,0,0,0),(111624,'2025-08-14',123,0,0,0,0,0,0,1,0,0,0,0,0),(111623,'2025-08-14',109,0,0,0,0,0,0,1,0,0,0,0,0),(111622,'2025-08-14',2,0,0,0,0,0,0,1,0,0,0,0,0),(111621,'2025-08-14',1,0,0,0,0,0,0,1,0,0,0,0,0),(113371,'2025-09-11',43,1,0,0,0,0,0,0,0,0,0,0,0),(113370,'2025-09-11',28,0,0,0,0,0,1,0,0,0,0,0,0),(113369,'2025-09-11',27,0,0,0,0,1,0,0,0,0,0,0,0),(113368,'2025-09-11',17,0,0,0,0,1,0,0,0,0,0,0,0),(113367,'2025-09-10',448,0,0,0,1,0,0,0,0,0,0,0,0),(113366,'2025-09-10',446,0,0,0,1,0,0,0,0,0,0,0,0),(113365,'2025-09-10',445,0,0,0,1,0,0,0,0,0,0,0,0),(113364,'2025-09-10',443,0,0,0,1,0,0,0,0,0,0,0,0),(113363,'2025-09-10',441,0,0,0,1,0,0,0,0,0,0,0,0),(113362,'2025-09-10',440,0,0,0,1,0,0,0,0,0,0,0,0),(113361,'2025-09-10',439,0,0,0,1,0,0,0,0,0,0,0,0),(113360,'2025-09-10',438,0,0,0,1,0,0,0,0,0,0,0,0),(113359,'2025-09-10',435,0,0,0,1,0,0,0,0,0,0,0,0),(113358,'2025-09-10',434,0,0,0,1,0,0,0,0,0,0,0,0),(113357,'2025-09-10',433,0,0,0,1,0,0,0,0,0,0,0,0),(113356,'2025-09-10',432,0,0,0,1,0,0,0,0,0,0,0,0),(113355,'2025-09-10',431,0,0,0,1,0,0,0,0,0,0,0,0),(113354,'2025-09-10',430,0,0,0,1,0,0,0,0,0,0,0,0),(113353,'2025-09-10',428,0,0,0,1,0,0,0,0,0,0,0,0),(113352,'2025-09-10',426,0,0,0,1,0,0,0,0,0,0,0,0),(113351,'2025-09-10',423,0,0,0,1,0,0,0,0,0,0,0,0),(113350,'2025-09-10',422,0,0,0,1,0,0,0,0,0,0,0,0),(113349,'2025-09-10',420,0,0,0,1,0,0,0,0,0,0,0,0),(113348,'2025-09-10',417,0,0,0,1,0,0,0,0,0,0,0,0),(113347,'2025-09-10',414,0,0,0,1,0,0,0,0,0,0,0,0),(113346,'2025-09-10',413,0,0,0,1,0,0,0,0,0,0,0,0),(113345,'2025-09-10',412,0,0,0,1,0,0,0,0,0,0,0,0),(113344,'2025-09-10',410,0,0,0,1,0,0,0,0,0,0,0,0),(113343,'2025-09-10',408,0,0,0,1,0,0,0,0,0,0,0,0),(113342,'2025-09-10',407,0,0,0,1,0,0,0,0,0,0,0,0),(113341,'2025-09-10',405,0,0,0,1,0,0,0,0,0,0,0,0),(113340,'2025-09-10',403,0,0,0,1,0,0,0,0,0,0,0,0),(113339,'2025-09-10',401,0,0,0,1,0,1,0,0,0,0,0,0),(113338,'2025-09-10',400,0,0,0,1,0,0,0,0,0,0,0,0),(113337,'2025-09-10',396,0,0,0,1,0,0,0,0,0,0,0,0),(113336,'2025-09-10',395,0,0,0,1,0,0,0,0,0,0,0,0),(113335,'2025-09-10',393,0,0,0,1,0,0,0,0,0,0,0,0),(113334,'2025-09-10',392,0,0,0,1,0,0,0,0,0,0,0,0),(113333,'2025-09-10',391,0,0,0,1,0,0,0,0,0,0,0,0),(113332,'2025-09-10',390,0,0,0,1,0,0,0,0,0,0,0,0),(113331,'2025-09-10',388,0,0,0,1,0,0,0,0,0,0,0,0),(113330,'2025-09-10',387,0,0,0,1,0,0,0,0,0,0,0,0),(113329,'2025-09-10',385,0,0,0,1,0,0,0,0,0,0,0,0),(113328,'2025-09-10',384,0,0,0,1,0,0,0,0,0,0,0,0),(113327,'2025-09-10',382,0,0,0,1,0,0,0,0,0,0,0,0),(113326,'2025-09-10',381,0,0,0,1,0,0,0,0,0,0,0,0),(113325,'2025-09-10',378,0,0,0,1,0,0,0,0,0,0,0,0),(113324,'2025-09-10',377,0,0,0,1,0,0,0,0,0,0,0,0),(113323,'2025-09-10',376,0,0,0,1,0,0,0,0,0,0,0,0),(113322,'2025-09-10',375,0,0,0,1,0,0,0,0,0,0,0,0),(113321,'2025-09-10',372,0,0,0,1,0,0,0,0,0,0,0,0),(111977,'2025-08-25',264,0,0,0,1,0,0,0,0,0,0,0,0),(111976,'2025-08-25',263,0,0,0,1,0,0,0,0,0,0,0,0),(111975,'2025-08-25',262,0,0,0,1,0,0,0,0,0,0,0,0),(111974,'2025-08-25',261,0,0,0,1,0,0,0,0,0,0,0,0),(111973,'2025-08-25',260,0,0,0,1,0,0,0,0,0,0,0,0),(111972,'2025-08-25',258,0,0,0,1,0,0,0,0,0,0,0,0),(111971,'2025-08-25',257,0,0,0,1,0,0,0,0,0,0,0,0),(111970,'2025-08-25',256,0,0,0,1,0,0,0,0,0,0,0,0),(111969,'2025-08-25',255,0,0,0,1,0,0,0,0,0,0,0,0),(111968,'2025-08-25',254,0,0,0,1,0,0,0,0,0,0,0,0),(111967,'2025-08-25',253,0,0,0,1,0,0,0,0,0,0,0,0),(111966,'2025-08-25',251,0,0,0,1,0,0,0,0,0,0,0,0),(111965,'2025-08-25',250,0,0,0,1,0,0,0,0,0,0,0,0),(111964,'2025-08-25',249,0,0,0,1,0,0,0,0,0,0,0,0),(111963,'2025-08-25',247,0,0,0,1,0,0,0,0,0,0,0,0),(111962,'2025-08-25',246,0,0,0,1,0,0,0,0,0,0,0,0),(111961,'2025-08-25',245,0,0,0,1,0,0,0,0,0,0,0,0),(111960,'2025-08-25',243,0,0,0,1,0,0,0,0,0,0,0,0),(111959,'2025-08-25',242,0,0,0,1,0,0,0,0,0,0,0,0),(111958,'2025-08-25',241,0,0,0,1,0,0,0,0,0,0,0,0),(111957,'2025-08-25',239,0,0,0,1,0,0,0,0,0,0,0,0),(111956,'2025-08-25',238,0,0,0,1,0,0,0,0,0,0,0,0),(111955,'2025-08-25',236,0,0,0,1,0,0,0,0,0,0,0,0),(111954,'2025-08-25',234,0,0,0,1,0,0,0,0,0,0,0,0),(111953,'2025-08-25',233,0,0,0,1,0,0,0,0,0,0,0,0),(111952,'2025-08-25',232,0,0,0,1,0,0,0,0,0,0,0,0),(111951,'2025-08-25',231,0,0,0,1,0,0,0,0,0,0,0,0),(111950,'2025-08-25',228,0,0,0,1,0,0,0,0,0,0,0,0),(111949,'2025-08-25',227,0,0,0,1,0,0,0,0,0,0,0,0),(111948,'2025-08-25',226,0,0,0,1,0,0,0,0,0,0,0,0),(111947,'2025-08-25',225,0,0,0,1,0,0,0,0,0,0,0,0),(111946,'2025-08-25',224,0,0,0,1,0,0,0,0,0,0,0,0),(111945,'2025-08-25',222,0,0,0,1,0,0,0,0,0,0,0,0),(111944,'2025-08-25',221,0,0,0,1,0,0,0,0,0,0,0,0),(111943,'2025-08-25',220,0,0,0,1,0,0,0,0,0,0,0,0),(111942,'2025-08-25',217,0,0,0,1,0,0,0,0,0,0,0,0),(111941,'2025-08-25',214,0,0,0,1,0,0,0,0,0,0,0,0),(111940,'2025-08-25',213,0,0,0,1,0,0,0,0,0,0,0,0),(111939,'2025-08-25',212,0,0,0,1,0,0,0,0,0,0,0,0),(111938,'2025-08-25',211,0,0,0,1,0,0,0,0,0,0,0,0),(111937,'2025-08-25',210,0,0,0,1,0,0,0,0,0,0,0,0),(111936,'2025-08-25',209,0,0,0,1,0,0,0,0,0,0,0,0),(111935,'2025-08-25',208,0,0,0,1,0,0,0,0,0,0,0,0),(111934,'2025-08-25',207,0,0,0,1,0,0,0,0,0,0,0,0),(111933,'2025-08-25',206,0,0,0,1,0,0,0,0,0,0,0,0),(111932,'2025-08-25',205,0,0,0,1,0,0,0,0,0,0,0,0),(111931,'2025-08-25',204,0,0,0,1,0,0,0,0,0,0,0,0),(111930,'2025-08-25',203,0,0,0,1,0,0,0,0,0,0,0,0),(111929,'2025-08-25',201,0,0,0,1,0,0,0,0,0,0,0,0),(111928,'2025-08-25',200,0,0,0,1,0,0,0,0,0,0,0,0),(111927,'2025-08-25',197,0,0,0,1,0,0,0,0,0,0,0,0),(111926,'2025-08-25',196,0,0,0,1,0,0,0,0,0,0,0,0),(111925,'2025-08-25',195,0,0,0,1,0,0,0,0,0,0,0,0),(111924,'2025-08-25',194,0,0,0,1,0,0,0,0,0,0,0,0),(111923,'2025-08-25',193,0,0,0,1,0,0,0,0,0,0,0,0),(111922,'2025-08-25',192,0,0,0,1,0,0,0,0,0,0,0,0),(111921,'2025-08-25',191,0,0,0,1,0,0,0,0,0,0,0,0),(111920,'2025-08-25',190,0,0,0,1,0,0,0,0,0,0,0,0),(111919,'2025-08-25',189,0,0,0,1,0,0,0,0,0,0,0,0),(111918,'2025-08-25',188,0,0,0,1,0,0,0,0,0,0,0,0),(111917,'2025-08-25',187,0,0,0,1,0,0,0,0,0,0,0,0),(111916,'2025-08-25',186,0,0,0,1,0,0,0,0,0,0,0,0),(111915,'2025-08-25',185,0,0,0,1,0,0,0,0,0,0,0,0),(111914,'2025-08-25',184,0,0,0,1,0,0,0,0,0,0,0,0),(111913,'2025-08-25',183,0,0,0,1,0,0,0,0,0,0,0,0),(111912,'2025-08-25',182,0,0,0,1,0,0,0,0,0,0,0,0),(111911,'2025-08-25',181,0,0,0,1,0,0,0,0,0,0,0,0),(111910,'2025-08-25',180,0,0,0,1,0,0,0,0,0,0,0,0),(111909,'2025-08-25',179,0,0,0,1,0,0,0,0,0,0,0,0),(111908,'2025-08-25',178,0,0,0,1,0,0,0,0,0,0,0,0),(111907,'2025-08-25',176,0,0,0,1,0,0,0,0,0,0,0,0),(111906,'2025-08-25',175,0,0,0,1,0,0,0,0,0,0,0,0),(111905,'2025-08-25',174,0,0,0,1,0,0,0,0,0,0,0,0),(111904,'2025-08-25',173,0,0,0,1,0,0,0,0,0,0,0,0),(111903,'2025-08-25',172,0,0,0,1,0,0,0,0,0,0,0,0),(111902,'2025-08-25',171,0,0,0,1,0,0,0,0,0,0,0,0),(111901,'2025-08-25',170,0,0,0,1,0,0,0,0,0,0,0,0),(111900,'2025-08-25',169,0,0,0,1,0,0,0,0,0,0,0,0),(111899,'2025-08-25',168,0,0,0,1,0,0,0,0,0,0,0,0),(111898,'2025-08-25',167,0,0,0,1,0,0,0,0,0,0,0,0),(111897,'2025-08-25',166,0,0,0,1,0,0,0,0,0,0,0,0),(111896,'2025-08-25',164,0,0,0,1,0,0,0,0,0,0,0,0),(111895,'2025-08-25',163,0,0,0,1,0,0,0,0,0,0,0,0),(111894,'2025-08-25',162,0,0,0,1,0,0,0,0,0,0,0,0),(111893,'2025-08-25',161,0,0,0,1,0,0,0,0,0,0,0,0),(111892,'2025-08-25',160,0,0,0,1,0,0,0,0,0,0,0,0),(111891,'2025-08-25',159,0,0,0,1,0,0,0,0,0,0,0,0),(111890,'2025-08-25',158,0,0,0,1,0,0,0,0,0,0,0,0),(111889,'2025-08-25',157,0,0,0,1,0,0,0,0,0,0,0,0),(111888,'2025-08-25',155,0,0,0,1,0,0,0,0,0,0,0,0),(111887,'2025-08-25',154,0,0,0,1,0,0,0,0,0,0,0,0),(111886,'2025-08-25',152,0,0,0,1,0,0,0,0,0,0,0,0),(111885,'2025-08-25',151,0,0,0,1,0,0,0,0,0,0,0,0),(111884,'2025-08-25',150,0,0,0,1,0,0,0,0,0,0,0,0),(111883,'2025-08-25',148,0,0,0,1,0,0,0,0,0,0,0,0),(111882,'2025-08-25',147,0,0,0,1,0,0,0,0,0,0,0,0),(111881,'2025-08-25',146,0,0,0,1,0,0,0,0,0,0,0,0),(111880,'2025-08-25',145,0,0,0,1,0,0,0,0,0,0,0,0),(111879,'2025-08-25',144,0,0,0,1,0,0,0,0,0,0,0,0),(111878,'2025-08-25',143,0,0,0,1,0,0,0,0,0,0,0,0),(111877,'2025-08-25',142,0,0,0,1,0,0,0,0,0,0,0,0),(111876,'2025-08-25',141,0,0,0,1,0,0,0,0,0,0,0,0),(111875,'2025-08-25',140,0,0,0,1,0,0,0,0,0,0,0,0),(111874,'2025-08-25',139,0,0,0,1,0,0,0,0,0,0,0,0),(111873,'2025-08-25',136,0,0,0,1,0,0,0,0,0,0,0,0),(111872,'2025-08-25',134,0,0,0,1,0,0,0,0,0,0,0,0),(111871,'2025-08-25',133,0,0,0,1,0,0,0,0,0,0,0,0),(111870,'2025-08-25',132,0,0,0,1,0,0,0,0,0,0,0,0),(111869,'2025-08-25',129,0,0,0,1,0,0,0,0,0,0,0,0),(111868,'2025-08-25',128,0,0,0,1,0,0,0,0,0,0,0,0),(111867,'2025-08-25',127,0,0,0,1,0,0,0,0,0,0,0,0),(111866,'2025-08-25',126,0,0,0,1,0,0,0,0,0,0,0,0),(111865,'2025-08-25',125,0,0,0,1,0,0,0,0,0,0,0,0),(111864,'2025-08-25',124,0,0,0,1,0,0,0,0,0,0,0,0),(111863,'2025-08-25',123,0,0,0,1,0,0,0,0,0,0,0,0),(111862,'2025-08-25',122,0,0,0,1,0,0,0,0,0,0,0,0),(111861,'2025-08-25',121,0,0,0,1,0,0,0,0,0,0,0,0),(111860,'2025-08-25',120,0,0,0,1,0,0,0,0,0,0,0,0),(111859,'2025-08-25',119,0,0,0,1,0,0,0,0,0,0,0,0),(111858,'2025-08-25',118,0,0,0,1,0,0,0,0,0,0,0,0),(111857,'2025-08-25',117,0,0,0,1,0,0,0,0,0,0,0,0),(111856,'2025-08-25',116,0,0,0,1,0,0,0,0,0,0,0,0),(111855,'2025-08-25',115,0,0,0,1,0,0,0,0,0,0,0,0),(111854,'2025-08-25',114,0,0,0,1,0,0,0,0,0,0,0,0),(111853,'2025-08-25',113,0,0,0,1,0,0,0,0,0,0,0,0),(111852,'2025-08-25',112,0,0,0,1,0,0,0,0,0,0,0,0),(111851,'2025-08-25',111,0,0,0,1,0,0,0,0,0,0,0,0),(111850,'2025-08-25',110,0,0,0,1,0,0,0,0,0,0,0,0),(111849,'2025-08-25',109,0,0,0,1,0,0,0,0,0,0,0,0),(111848,'2025-08-25',106,0,0,0,1,0,0,0,0,0,0,0,0),(111847,'2025-08-25',105,0,0,0,1,0,0,0,0,0,0,0,0),(111846,'2025-08-25',104,0,0,0,1,0,0,0,0,0,0,0,0),(111845,'2025-08-25',103,0,0,0,1,0,0,0,0,0,0,0,0),(111844,'2025-08-25',102,0,0,0,1,0,0,0,0,0,0,0,0),(111843,'2025-08-25',101,0,0,0,1,0,0,0,0,0,0,0,0),(111842,'2025-08-25',100,0,0,0,1,0,0,0,0,0,0,0,0),(111841,'2025-08-25',98,0,0,0,1,0,0,0,0,0,0,0,0),(111840,'2025-08-25',97,0,0,0,1,0,0,0,0,0,0,0,0),(111839,'2025-08-25',96,0,0,0,1,0,0,0,0,0,0,0,0),(111838,'2025-08-25',95,0,0,0,1,0,0,0,0,0,0,0,0),(111837,'2025-08-25',94,0,0,0,1,0,0,0,0,0,0,0,0),(111836,'2025-08-25',93,0,0,0,1,0,0,0,0,0,0,0,0),(111835,'2025-08-25',91,0,0,0,1,0,0,0,0,0,0,0,0),(111834,'2025-08-25',90,0,0,0,1,0,0,0,0,0,0,0,0),(111833,'2025-08-25',89,0,0,0,1,0,0,0,0,0,0,0,0),(111832,'2025-08-25',87,0,0,0,1,0,0,0,0,0,0,0,0),(111831,'2025-08-25',86,0,0,0,1,0,0,0,0,0,0,0,0),(111830,'2025-08-25',85,0,0,0,1,0,0,0,0,0,0,0,0),(111829,'2025-08-25',84,0,0,0,1,0,0,0,0,0,0,0,0),(111828,'2025-08-25',83,0,0,0,1,0,0,0,0,0,0,0,0),(111827,'2025-08-25',82,0,0,0,1,0,0,0,0,0,0,0,0),(111826,'2025-08-25',81,0,0,0,1,0,0,0,0,0,0,0,0),(111825,'2025-08-25',80,0,0,0,1,0,0,0,0,0,0,0,0),(111824,'2025-08-25',79,0,0,0,1,0,0,0,0,0,0,0,0),(111823,'2025-08-25',78,0,0,0,1,0,0,0,0,0,0,0,0),(111822,'2025-08-25',77,0,0,0,1,0,0,0,0,0,0,0,0),(111821,'2025-08-25',75,0,0,0,1,0,0,0,0,0,0,0,0),(111820,'2025-08-25',74,0,0,0,1,0,0,0,0,0,0,0,0),(111819,'2025-08-25',73,0,0,0,1,0,0,0,0,0,0,0,0),(111818,'2025-08-25',71,0,0,0,1,0,0,0,0,0,0,0,0),(111817,'2025-08-25',70,0,0,0,1,0,0,0,0,0,0,0,0),(111816,'2025-08-25',69,0,0,0,1,0,0,0,0,0,0,0,0),(111815,'2025-08-25',68,0,0,0,1,0,0,0,0,0,0,0,0),(111814,'2025-08-25',67,0,0,0,1,0,0,0,0,0,0,0,0),(111813,'2025-08-25',66,0,0,0,1,0,0,0,0,0,0,0,0),(111812,'2025-08-25',65,0,0,0,1,0,0,0,0,0,0,0,0),(111811,'2025-08-25',64,0,0,0,1,0,0,0,0,0,0,0,0),(111810,'2025-08-25',63,0,0,0,1,0,0,0,0,0,0,0,0),(111809,'2025-08-25',61,0,0,0,1,0,0,0,0,0,0,0,0),(111808,'2025-08-25',60,0,0,0,1,0,0,0,0,0,0,0,0),(111807,'2025-08-25',59,0,0,0,1,0,0,0,0,0,0,0,0),(111806,'2025-08-25',58,0,0,0,1,0,0,0,0,0,0,0,0),(111805,'2025-08-25',57,0,0,0,1,0,0,0,0,0,0,0,0),(111804,'2025-08-25',56,0,0,0,1,0,0,0,0,0,0,0,0),(111803,'2025-08-25',55,0,0,0,1,0,0,0,0,0,0,0,0),(111802,'2025-08-25',54,0,0,0,1,0,0,0,0,0,0,0,0),(111801,'2025-08-25',53,0,0,1,0,0,1,0,0,0,0,0,0),(111800,'2025-08-25',52,0,0,0,1,0,0,0,0,0,0,0,0),(111799,'2025-08-25',51,0,0,0,1,0,0,0,0,0,0,0,0),(111798,'2025-08-25',50,0,0,0,1,0,0,0,0,0,0,0,0),(111797,'2025-08-25',49,0,0,0,1,0,0,0,0,0,0,0,0),(111796,'2025-08-25',48,0,0,0,1,0,0,0,0,0,0,0,0),(111795,'2025-08-25',47,0,0,0,1,0,0,0,0,0,0,0,0),(111794,'2025-08-25',46,0,0,0,1,0,0,0,0,0,0,0,0),(111793,'2025-08-25',45,0,0,0,1,0,0,0,0,0,0,0,0),(111792,'2025-08-25',44,0,0,0,1,0,0,0,0,0,0,0,0),(111791,'2025-08-25',43,0,0,0,1,0,0,0,0,0,0,0,0),(111790,'2025-08-25',42,0,0,0,1,0,0,0,0,0,0,0,0),(111789,'2025-08-25',41,0,0,0,1,0,0,0,0,0,0,0,0),(111788,'2025-08-25',40,0,0,0,1,0,0,0,0,0,0,0,0),(111787,'2025-08-25',38,0,0,0,1,0,0,0,0,0,0,0,0),(111786,'2025-08-25',37,0,0,0,1,0,0,0,0,0,0,0,0),(111785,'2025-08-25',36,0,0,0,1,0,0,0,0,0,0,0,0),(111784,'2025-08-25',35,0,0,0,1,0,0,0,0,0,0,0,0),(111783,'2025-08-25',34,0,0,0,1,0,0,0,0,0,0,0,0),(112848,'2025-09-04',227,0,0,0,1,0,0,0,0,0,0,0,0),(112847,'2025-09-04',226,0,0,0,1,0,0,0,0,0,0,0,0),(112846,'2025-09-04',225,0,0,0,1,0,0,0,0,0,0,0,0),(112845,'2025-09-04',224,0,0,0,1,0,0,0,0,0,0,0,0),(112844,'2025-09-04',222,0,0,0,1,0,0,0,0,0,0,0,0),(112843,'2025-09-04',221,0,0,0,1,0,0,0,0,0,0,0,0),(112842,'2025-09-04',220,0,0,0,1,0,0,0,0,0,0,0,0),(112841,'2025-09-04',218,0,0,0,0,1,0,0,0,0,0,0,0),(112840,'2025-09-04',217,0,0,0,1,0,0,0,0,0,0,0,0),(112839,'2025-09-04',214,0,0,0,1,0,0,0,0,0,0,0,0),(112838,'2025-09-04',213,0,0,0,1,0,0,0,0,0,0,0,0),(112837,'2025-09-04',212,0,0,0,1,0,0,0,0,0,0,0,0),(111741,'2025-08-19',137,0,0,0,0,0,0,1,0,0,0,0,0),(111740,'2025-08-19',51,0,0,0,0,0,0,1,0,0,0,0,0),(111739,'2025-08-19',49,0,0,0,0,0,0,2,0,0,0,0,0),(111738,'2025-08-19',22,0,0,0,0,0,0,1,0,0,0,0,0),(112136,'2025-08-31',78,0,0,0,0,0,0,1,0,0,0,0,0),(112109,'2025-08-28',22,0,0,0,0,0,0,1,0,0,0,0,0),(112108,'2025-08-28',17,0,0,0,0,0,0,1,0,0,0,0,0),(112107,'2025-08-28',9,0,0,0,0,0,0,2,0,0,0,0,0),(112106,'2025-08-28',5,0,0,0,0,0,0,1,0,0,0,0,0),(112135,'2025-08-31',77,0,0,0,0,1,0,0,0,0,0,0,0),(112134,'2025-08-31',75,0,0,0,0,0,0,1,0,0,0,0,0),(112133,'2025-08-31',73,0,0,0,0,1,0,0,0,0,0,0,0),(112132,'2025-08-31',70,0,0,0,1,0,0,0,0,0,0,0,0),(112131,'2025-08-31',69,0,0,0,1,0,0,0,0,0,0,0,0),(112130,'2025-08-31',68,0,0,0,1,0,0,0,0,0,0,0,0),(112129,'2025-08-31',67,0,0,0,1,0,0,0,0,0,0,0,0),(112128,'2025-08-31',66,0,0,0,1,0,0,0,0,0,0,0,0),(112127,'2025-08-31',65,0,0,0,1,0,0,0,0,0,0,0,0),(112126,'2025-08-31',64,0,0,0,1,0,0,0,0,0,0,0,0),(112125,'2025-08-31',63,0,0,0,1,0,0,0,0,0,0,0,0),(112124,'2025-08-31',61,0,0,0,1,0,0,0,0,0,0,0,0),(112123,'2025-08-31',58,0,0,0,1,0,0,0,0,0,0,0,0),(112122,'2025-08-31',54,1,0,0,1,1,0,0,0,0,0,0,0),(112121,'2025-08-31',52,0,0,0,1,0,0,0,0,0,0,0,0),(112120,'2025-08-31',51,0,0,0,0,0,0,2,0,0,0,0,0),(112119,'2025-08-31',49,0,0,0,0,0,0,1,0,0,0,0,0),(112118,'2025-08-31',42,0,0,0,1,0,0,0,0,0,0,0,0),(112117,'2025-08-31',37,0,0,0,1,0,0,0,0,0,0,0,0),(112116,'2025-08-31',32,0,0,0,1,0,0,0,0,0,0,0,0),(112115,'2025-08-31',24,0,0,0,1,0,0,0,0,0,0,0,0),(112114,'2025-08-31',19,0,0,0,1,0,0,0,0,0,0,0,0),(112113,'2025-08-31',18,0,0,0,0,0,1,0,0,0,0,0,0),(112112,'2025-08-31',13,0,0,0,1,0,0,0,0,0,0,0,0),(112111,'2025-08-31',11,0,0,0,0,0,1,0,0,0,0,0,0),(112110,'2025-08-31',10,0,0,0,1,0,0,0,0,0,0,0,0),(112715,'2025-09-04',71,0,0,0,1,0,0,0,0,0,0,0,0),(112714,'2025-09-04',70,0,0,0,1,0,0,0,0,0,0,0,0),(112713,'2025-09-04',69,0,0,0,1,0,0,0,0,0,0,0,0),(112712,'2025-09-04',68,0,0,0,1,0,0,0,0,0,0,0,0),(112711,'2025-09-04',67,0,0,0,1,0,0,0,0,0,0,0,0),(112710,'2025-09-04',66,0,0,0,1,0,0,0,0,0,0,0,0),(112709,'2025-09-04',65,0,0,0,1,0,0,0,0,0,0,0,0),(112708,'2025-09-04',64,0,0,0,1,0,1,0,0,0,0,0,0),(112707,'2025-09-04',63,0,0,0,1,0,0,0,0,0,0,0,0),(112706,'2025-09-04',61,0,0,0,1,0,0,0,0,0,0,0,0),(112705,'2025-09-04',60,0,0,0,1,0,0,0,0,0,0,0,0),(112704,'2025-09-04',59,0,0,0,1,0,0,0,0,0,0,0,0),(112703,'2025-09-04',58,0,0,0,1,0,0,0,0,0,0,0,0),(112702,'2025-09-04',57,0,0,0,1,0,0,0,0,0,0,0,0),(112701,'2025-09-04',56,0,0,0,1,0,0,0,0,0,0,0,0),(112700,'2025-09-04',55,0,0,0,1,0,0,0,0,0,0,0,0),(112699,'2025-09-04',54,0,0,0,1,0,0,0,0,0,0,0,0),(112698,'2025-09-04',53,0,0,1,0,0,0,0,0,0,0,0,0),(112697,'2025-09-04',52,0,0,0,1,0,0,0,0,0,0,0,0),(112696,'2025-09-04',51,1,0,0,1,1,1,0,0,0,0,0,0),(112695,'2025-09-04',50,0,0,0,1,1,0,0,0,0,0,0,0),(112694,'2025-09-04',49,0,0,0,1,0,0,0,0,0,0,0,0),(112693,'2025-09-04',48,0,0,0,1,0,0,0,0,0,0,0,0),(112692,'2025-09-04',47,0,0,0,1,0,0,0,0,0,0,0,0),(112691,'2025-09-04',46,0,0,0,1,0,1,0,0,0,0,0,0),(112690,'2025-09-04',45,0,0,0,1,1,0,0,0,0,0,0,0),(112689,'2025-09-04',44,0,0,0,1,0,0,0,0,0,0,0,0),(112688,'2025-09-04',43,1,0,0,1,0,0,0,0,0,0,0,0),(112687,'2025-09-04',42,0,0,0,1,0,0,0,0,0,0,0,0),(112686,'2025-09-04',41,0,0,0,1,0,0,0,0,0,0,0,0),(112685,'2025-09-04',40,0,0,0,1,0,0,0,0,0,0,0,0),(112684,'2025-09-04',38,0,0,0,1,0,0,0,0,0,0,0,0),(112683,'2025-09-04',37,1,0,0,1,0,0,0,0,0,0,0,0),(112682,'2025-09-04',36,0,0,0,1,1,0,0,0,0,0,0,0),(112681,'2025-09-04',35,0,0,0,1,0,0,0,0,0,0,0,0),(112680,'2025-09-04',34,0,0,0,1,0,0,0,0,0,0,0,0),(112679,'2025-09-04',33,0,0,0,1,0,0,0,0,0,0,0,0),(112678,'2025-09-04',32,0,0,0,1,0,0,0,0,0,0,0,0),(112677,'2025-09-04',31,0,0,0,1,0,0,0,0,0,0,0,0),(112676,'2025-09-04',30,0,0,0,1,0,0,0,0,0,0,0,0),(112675,'2025-09-04',29,0,0,0,1,0,0,0,0,0,0,0,0),(112674,'2025-09-04',28,0,0,0,1,0,0,0,0,0,0,0,0),(112673,'2025-09-04',27,0,0,0,1,0,0,0,0,0,0,0,0),(112672,'2025-09-04',26,0,0,0,1,0,0,0,0,0,0,0,0),(112671,'2025-09-04',25,0,0,0,1,0,0,0,0,0,0,0,0),(112670,'2025-09-04',24,0,0,0,1,0,0,0,0,0,0,0,0),(112669,'2025-09-04',23,0,0,0,1,0,1,0,0,0,0,0,0),(112668,'2025-09-04',22,0,0,0,1,1,0,0,0,0,0,0,0),(112667,'2025-09-04',21,0,0,0,1,0,0,0,0,0,0,0,0),(112666,'2025-09-04',20,0,0,0,1,0,1,0,0,0,0,0,0),(112665,'2025-09-04',19,0,0,0,1,0,0,0,0,0,0,0,0),(112664,'2025-09-04',18,0,0,0,1,1,0,0,0,0,0,0,0),(112663,'2025-09-04',17,0,0,0,1,0,1,0,0,0,0,0,0),(112725,'2025-09-04',83,0,0,0,1,0,0,0,0,0,0,0,0),(112724,'2025-09-04',82,0,0,0,1,0,0,0,0,0,0,0,0),(112723,'2025-09-04',81,0,0,0,1,0,0,0,0,0,0,0,0),(112722,'2025-09-04',80,0,0,0,1,0,0,0,0,0,0,0,0),(112390,'2025-09-01',233,0,0,0,0,0,1,0,0,0,0,0,0),(112389,'2025-09-01',109,0,0,0,0,1,0,0,0,0,0,0,0),(112388,'2025-09-01',67,0,0,0,0,0,1,0,0,0,0,0,0),(112387,'2025-09-01',34,0,0,0,0,0,1,0,0,0,0,0,0),(112386,'2025-09-01',9,0,0,0,0,0,1,0,0,0,0,0,0),(112385,'2025-09-01',5,0,0,0,0,1,0,0,0,0,0,0,0),(112384,'2025-09-01',2,0,0,0,0,1,0,0,0,0,0,0,0),(112383,'2025-09-01',1,0,0,0,0,1,0,0,0,0,0,0,0),(112662,'2025-09-04',16,0,0,0,1,0,0,0,0,0,0,0,0),(112661,'2025-09-04',14,0,0,0,1,0,0,0,0,0,0,0,0),(112660,'2025-09-04',13,0,0,0,1,0,0,0,0,0,0,0,0),(112659,'2025-09-04',12,0,0,0,1,0,0,0,0,0,0,0,0),(112658,'2025-09-04',11,0,0,0,1,0,0,0,0,0,0,0,0),(112657,'2025-09-04',10,0,0,0,1,0,0,0,0,0,0,0,0),(112650,'2025-09-02',448,0,0,0,1,0,0,0,0,0,0,0,0),(112649,'2025-09-02',446,0,0,0,1,0,0,0,0,0,0,0,0),(112648,'2025-09-02',445,0,0,0,1,0,0,0,0,0,0,0,0),(112647,'2025-09-02',443,0,0,0,1,0,0,0,0,0,0,0,0),(112646,'2025-09-02',441,0,0,0,1,0,0,0,0,0,0,0,0),(112645,'2025-09-02',440,0,0,0,1,0,0,0,0,0,0,0,0),(112644,'2025-09-02',439,0,0,0,1,0,0,0,0,0,0,0,0),(112643,'2025-09-02',438,0,0,0,1,0,0,0,0,0,0,0,0),(112642,'2025-09-02',435,0,0,0,1,0,0,0,0,0,0,0,0),(112641,'2025-09-02',434,0,0,0,1,0,0,0,0,0,0,0,0),(112640,'2025-09-02',433,0,0,0,1,0,0,0,0,0,0,0,0),(112639,'2025-09-02',432,0,0,0,1,0,0,0,0,0,0,0,0),(112638,'2025-09-02',431,0,0,0,1,0,0,0,0,0,0,0,0),(112637,'2025-09-02',430,0,0,0,1,0,0,0,0,0,0,0,0),(112636,'2025-09-02',428,0,0,0,1,0,0,0,0,0,0,0,0),(112635,'2025-09-02',426,0,0,0,1,0,0,0,0,0,0,0,0),(112634,'2025-09-02',423,0,0,0,1,0,0,0,0,0,0,0,0),(112633,'2025-09-02',422,0,0,0,1,0,0,0,0,0,0,0,0),(112632,'2025-09-02',420,0,0,0,1,0,0,0,0,0,0,0,0),(112631,'2025-09-02',417,0,0,0,1,0,0,0,0,0,0,0,0),(112630,'2025-09-02',414,0,0,0,1,0,0,0,0,0,0,0,0),(112629,'2025-09-02',413,0,0,0,1,0,0,0,0,0,0,0,0),(112628,'2025-09-02',412,0,0,0,1,0,0,0,0,0,0,0,0),(112627,'2025-09-02',410,0,0,0,1,0,0,0,0,0,0,0,0),(112626,'2025-09-02',408,0,0,0,1,0,0,0,0,0,0,0,0),(112625,'2025-09-02',407,0,0,0,1,0,0,0,0,0,0,0,0),(112624,'2025-09-02',405,0,0,0,1,0,1,0,0,0,0,0,0),(112623,'2025-09-02',403,0,0,0,1,0,0,0,0,0,0,0,0),(112622,'2025-09-02',401,0,0,0,1,0,0,0,0,0,0,0,0),(112621,'2025-09-02',400,0,0,0,1,0,0,0,0,0,0,0,0),(112620,'2025-09-02',396,0,0,0,1,0,0,0,0,0,0,0,0),(112619,'2025-09-02',395,0,0,0,1,0,0,0,0,0,0,0,0),(112618,'2025-09-02',393,0,0,0,1,0,0,0,0,0,0,0,0),(112617,'2025-09-02',392,0,0,0,1,0,0,0,0,0,0,0,0),(112616,'2025-09-02',391,0,0,0,1,0,0,0,0,0,0,0,0),(112615,'2025-09-02',390,0,0,0,1,0,0,0,0,0,0,0,0),(112614,'2025-09-02',388,0,0,0,1,0,0,0,0,0,0,0,0),(112613,'2025-09-02',387,0,0,0,1,0,0,0,0,0,0,0,0),(112612,'2025-09-02',385,0,0,0,1,0,0,0,0,0,0,0,0),(112611,'2025-09-02',384,0,0,0,1,0,0,0,0,0,0,0,0),(112610,'2025-09-02',382,0,0,0,1,0,0,0,0,0,0,0,0),(112609,'2025-09-02',381,0,0,0,1,0,0,0,0,0,0,0,0),(112608,'2025-09-02',378,0,0,0,1,0,0,0,0,0,0,0,0),(112607,'2025-09-02',377,0,0,0,1,0,0,0,0,0,0,0,0),(112606,'2025-09-02',376,0,0,0,1,0,0,0,0,0,0,0,0),(112605,'2025-09-02',375,0,0,0,1,0,0,0,0,0,0,0,0),(112604,'2025-09-02',372,0,0,0,1,0,0,0,0,0,0,0,0),(112603,'2025-09-02',371,0,0,0,1,0,0,0,0,0,0,0,0),(112602,'2025-09-02',367,0,0,0,1,0,0,0,0,0,0,0,0),(112601,'2025-09-02',365,0,0,0,1,0,0,0,0,0,0,0,0),(112600,'2025-09-02',364,0,0,0,1,0,0,0,0,0,0,0,0),(112599,'2025-09-02',363,0,0,0,1,0,0,0,0,0,0,0,0),(112598,'2025-09-02',361,0,0,0,1,0,0,0,0,0,0,0,0),(112597,'2025-09-02',360,0,0,0,1,0,0,0,0,0,0,0,0),(112596,'2025-09-02',359,0,0,0,1,0,0,0,0,0,0,0,0),(112595,'2025-09-02',357,0,0,0,1,0,0,0,0,0,0,0,0),(112594,'2025-09-02',353,0,0,0,1,0,0,0,0,0,0,0,0),(112593,'2025-09-02',352,0,0,0,1,0,0,0,0,0,0,0,0),(112592,'2025-09-02',351,0,0,0,1,0,0,0,0,0,0,0,0),(112591,'2025-09-02',348,0,0,0,1,0,0,0,0,0,0,0,0),(112590,'2025-09-02',347,0,0,0,1,0,0,0,0,0,0,0,0),(112589,'2025-09-02',346,0,0,0,1,0,0,0,0,0,0,0,0),(112588,'2025-09-02',345,0,0,0,1,0,0,0,0,0,0,0,0),(112587,'2025-09-02',344,0,0,0,1,0,0,0,0,0,0,0,0),(112586,'2025-09-02',341,0,0,0,1,0,0,0,0,0,0,0,0),(112585,'2025-09-02',340,0,0,0,1,0,0,0,0,0,0,0,0),(112584,'2025-09-02',339,0,0,0,1,0,0,0,0,0,0,0,0),(112583,'2025-09-02',338,0,0,0,1,0,0,0,0,0,0,0,0),(112582,'2025-09-02',337,0,0,0,1,0,0,0,0,0,0,0,0),(112581,'2025-09-02',336,0,0,0,1,0,0,0,0,0,0,0,0),(112580,'2025-09-02',335,0,0,0,1,0,0,0,0,0,0,0,0),(112579,'2025-09-02',334,0,0,0,1,0,0,0,0,0,0,0,0),(112578,'2025-09-02',333,0,0,0,1,0,0,0,0,0,0,0,0),(112577,'2025-09-02',332,0,0,0,1,0,0,0,0,0,0,0,0),(112576,'2025-09-02',331,0,0,0,1,0,0,0,0,0,0,0,0),(112575,'2025-09-02',330,0,0,0,1,0,0,0,0,0,0,0,0),(112574,'2025-09-02',329,0,0,0,1,0,0,0,0,0,0,0,0),(112573,'2025-09-02',328,0,0,0,1,0,0,0,0,0,0,0,0),(112572,'2025-09-02',327,0,0,0,1,0,0,0,0,0,0,0,0),(112571,'2025-09-02',326,0,0,0,1,0,0,0,0,0,0,0,0),(112570,'2025-09-02',324,0,0,0,1,0,0,0,0,0,0,0,0),(112569,'2025-09-02',323,0,0,0,1,0,0,0,0,0,0,0,0),(112568,'2025-09-02',321,0,0,0,1,0,0,0,0,0,0,0,0),(112567,'2025-09-02',320,0,0,0,1,0,0,0,0,0,0,0,0),(112566,'2025-09-02',319,0,0,0,1,0,0,0,0,0,0,0,0),(112565,'2025-09-02',317,0,0,0,1,0,0,0,0,0,0,0,0),(112564,'2025-09-02',316,0,0,0,1,0,0,0,0,0,0,0,0),(112563,'2025-09-02',314,0,0,0,1,0,0,0,0,0,0,0,0),(112562,'2025-09-02',313,0,0,0,1,0,0,0,0,0,0,0,0),(112561,'2025-09-02',310,0,0,0,1,0,0,0,0,0,0,0,0),(112560,'2025-09-02',309,0,0,0,1,0,0,0,0,0,0,0,0),(112559,'2025-09-02',308,0,0,0,1,0,0,0,0,0,0,0,0),(112558,'2025-09-02',307,0,0,0,1,0,0,0,0,0,0,0,0),(112557,'2025-09-02',304,0,0,0,1,0,0,0,0,0,0,0,0),(112556,'2025-09-02',303,0,0,0,1,0,0,0,0,0,0,0,0),(112555,'2025-09-02',302,0,0,0,1,0,0,0,0,0,0,0,0),(112554,'2025-09-02',301,0,0,0,1,0,0,0,0,0,0,0,0),(112553,'2025-09-02',300,0,0,0,1,0,0,0,0,0,0,0,0),(112552,'2025-09-02',299,0,0,0,1,0,0,0,0,0,0,0,0),(112551,'2025-09-02',298,0,0,0,1,0,0,0,0,0,0,0,0),(112550,'2025-09-02',296,0,0,0,1,0,0,0,0,0,0,0,0),(112549,'2025-09-02',295,0,0,0,1,0,0,0,0,0,0,0,0),(112548,'2025-09-02',294,0,0,0,1,0,0,0,0,0,0,0,0),(112547,'2025-09-02',292,0,0,0,1,0,0,0,0,0,0,0,0),(112546,'2025-09-02',291,0,0,0,1,0,0,0,0,0,0,0,0),(112545,'2025-09-02',290,0,0,0,1,0,0,0,0,0,0,0,0),(112544,'2025-09-02',289,0,0,0,1,0,0,0,0,0,0,0,0),(112543,'2025-09-02',288,0,0,0,1,0,0,0,0,0,0,0,0),(112542,'2025-09-02',285,0,0,0,1,0,0,0,0,0,0,0,0),(112541,'2025-09-02',281,0,0,0,1,0,0,0,0,0,0,0,0),(112540,'2025-09-02',280,0,0,0,1,0,0,0,0,0,0,0,0),(112539,'2025-09-02',278,0,0,0,1,0,0,0,0,0,0,0,0),(112538,'2025-09-02',275,0,0,0,1,0,0,0,0,0,0,0,0),(112537,'2025-09-02',274,0,0,0,1,0,0,0,0,0,0,0,0),(112536,'2025-09-02',273,0,0,0,1,0,0,0,0,0,0,0,0),(112535,'2025-09-02',271,0,0,0,1,0,0,0,0,0,0,0,0),(112534,'2025-09-02',269,0,0,0,1,0,0,0,0,0,0,0,0),(112533,'2025-09-02',268,0,0,0,1,0,0,0,0,0,0,0,0),(112532,'2025-09-02',266,0,0,0,1,0,0,0,0,0,0,0,0),(112531,'2025-09-02',265,0,0,0,1,0,0,0,0,0,0,0,0),(112530,'2025-09-02',264,0,0,0,1,0,0,0,0,0,0,0,0),(112529,'2025-09-02',263,0,0,0,1,0,0,0,0,0,0,0,0),(112528,'2025-09-02',262,0,0,0,1,0,0,0,0,0,0,0,0),(112527,'2025-09-02',261,0,0,0,1,0,0,0,0,0,0,0,0),(112526,'2025-09-02',260,0,0,0,1,0,0,0,0,0,0,0,0),(112525,'2025-09-02',258,0,0,0,1,0,0,0,0,0,0,0,0),(112524,'2025-09-02',257,0,0,0,1,0,0,0,0,0,0,0,0),(112523,'2025-09-02',256,0,0,0,1,0,0,0,0,0,0,0,0),(112522,'2025-09-02',255,0,0,0,1,0,0,0,0,0,0,0,0),(112521,'2025-09-02',254,0,0,0,1,0,0,0,0,0,0,0,0),(112520,'2025-09-02',253,0,0,0,1,0,0,0,0,0,0,0,0),(112519,'2025-09-02',251,0,0,0,1,0,0,0,0,0,0,0,0),(112518,'2025-09-02',250,0,0,0,1,0,0,0,0,0,0,0,0),(112517,'2025-09-02',249,0,0,0,1,0,0,0,0,0,0,0,0),(112516,'2025-09-02',247,0,0,0,1,0,0,0,0,0,0,0,0),(112515,'2025-09-02',246,0,0,0,1,0,0,0,0,0,0,0,0),(112514,'2025-09-02',245,0,0,0,1,0,0,0,0,0,0,0,0),(112513,'2025-09-02',243,0,0,0,1,0,0,0,0,0,0,0,0),(112512,'2025-09-02',242,0,0,0,1,0,0,0,0,0,0,0,0),(112511,'2025-09-02',241,0,0,0,1,0,0,0,0,0,0,0,0),(112510,'2025-09-02',239,0,0,0,1,0,0,0,0,0,0,0,0),(112509,'2025-09-02',238,0,0,0,1,0,0,0,0,0,0,0,0),(112508,'2025-09-02',236,0,0,0,1,0,0,0,0,0,0,0,0),(112507,'2025-09-02',234,0,0,0,1,0,0,0,0,0,0,0,0),(112506,'2025-09-02',233,0,0,0,1,0,0,1,0,0,0,0,0),(112505,'2025-09-02',232,0,0,0,1,0,0,0,0,0,0,0,0),(112504,'2025-09-02',231,0,0,0,1,0,0,0,0,0,0,0,0),(112503,'2025-09-02',228,0,0,0,1,0,0,0,0,0,0,0,0),(112502,'2025-09-02',227,0,0,0,1,0,0,0,0,0,0,0,0),(112501,'2025-09-02',226,0,0,0,1,0,1,0,0,0,0,0,0),(112500,'2025-09-02',225,0,0,0,1,0,0,0,0,0,0,0,0),(112499,'2025-09-02',224,0,0,0,1,0,0,0,0,0,0,0,0),(112498,'2025-09-02',222,0,0,0,1,0,0,0,0,0,0,0,0),(112497,'2025-09-02',221,0,0,0,1,0,0,0,0,0,0,0,0),(112496,'2025-09-02',220,0,0,0,1,0,0,0,0,0,0,0,0),(112495,'2025-09-02',218,0,0,0,0,0,0,1,0,0,0,0,0),(112494,'2025-09-02',217,0,0,0,1,0,0,0,0,0,0,0,0),(112493,'2025-09-02',214,0,0,0,1,0,0,0,0,0,0,0,0),(112492,'2025-09-02',213,0,0,0,1,0,0,0,0,0,0,0,0),(112491,'2025-09-02',212,0,0,0,1,0,0,0,0,0,0,0,0),(112490,'2025-09-02',211,0,0,0,1,0,0,0,0,0,0,0,0),(112489,'2025-09-02',210,0,0,0,1,0,0,0,0,0,0,0,0),(112488,'2025-09-02',209,0,0,0,1,0,0,0,0,0,0,0,0),(112487,'2025-09-02',208,0,0,0,1,0,0,0,0,0,0,0,0),(112486,'2025-09-02',207,0,0,0,1,0,0,0,0,0,0,0,0),(112485,'2025-09-02',206,0,0,0,1,0,0,0,0,0,0,0,0),(112484,'2025-09-02',205,0,0,0,1,0,0,0,0,0,0,0,0),(112483,'2025-09-02',204,0,0,0,1,0,0,0,0,0,0,0,0),(112482,'2025-09-02',203,0,0,0,1,0,0,0,0,0,0,0,0),(112481,'2025-09-02',201,0,0,0,1,0,0,0,0,0,0,0,0),(112480,'2025-09-02',200,0,0,0,1,0,0,0,0,0,0,0,0),(112479,'2025-09-02',197,0,0,0,1,0,0,0,0,0,0,0,0),(112478,'2025-09-02',196,0,0,0,1,0,0,0,0,0,0,0,0),(112477,'2025-09-02',195,0,0,0,1,0,0,0,0,0,0,0,0),(112476,'2025-09-02',194,0,0,0,1,0,0,0,0,0,0,0,0),(112475,'2025-09-02',193,0,0,0,1,0,0,0,0,0,0,0,0),(112474,'2025-09-02',192,0,0,0,1,0,0,0,0,0,0,0,0),(112473,'2025-09-02',191,0,0,0,1,0,0,0,0,0,0,0,0),(112472,'2025-09-02',190,0,0,0,1,0,0,0,0,0,0,0,0),(112471,'2025-09-02',189,0,0,0,1,0,0,0,0,0,0,0,0),(112470,'2025-09-02',188,0,0,0,1,0,0,1,0,0,0,0,0),(112469,'2025-09-02',187,0,0,0,1,0,0,0,0,0,0,0,0),(112468,'2025-09-02',186,0,0,0,1,0,0,0,0,0,0,0,0),(112467,'2025-09-02',185,0,0,0,1,0,0,0,0,0,0,0,0),(112466,'2025-09-02',184,0,0,0,1,0,0,0,0,0,0,0,0),(112465,'2025-09-02',183,0,0,0,1,0,0,0,0,0,0,0,0),(112464,'2025-09-02',182,0,0,0,1,0,0,0,0,0,0,0,0),(112463,'2025-09-02',181,0,0,0,1,0,0,0,0,0,0,0,0),(112462,'2025-09-02',180,0,0,0,1,0,0,0,0,0,0,0,0),(112461,'2025-09-02',179,0,0,0,1,0,0,0,0,0,0,0,0),(112460,'2025-09-02',176,0,0,0,1,0,0,0,0,0,0,0,0),(112459,'2025-09-02',175,0,0,0,1,0,0,0,0,0,0,0,0),(112458,'2025-09-02',174,0,0,0,1,0,0,0,0,0,0,0,0),(112457,'2025-09-02',173,0,0,0,1,0,0,0,0,0,0,0,0),(112456,'2025-09-02',172,0,0,0,1,0,0,0,0,0,0,0,0),(112455,'2025-09-02',170,0,0,0,1,0,0,0,0,0,0,0,0),(112454,'2025-09-02',168,0,0,0,1,0,0,0,0,0,0,0,0),(112453,'2025-09-02',167,0,0,0,1,0,0,0,0,0,0,0,0),(112452,'2025-09-02',166,0,0,0,1,0,0,0,0,0,0,0,0),(112451,'2025-09-02',164,0,0,0,1,0,0,0,0,0,0,0,0),(112450,'2025-09-02',163,0,0,0,1,0,0,0,0,0,0,0,0),(112449,'2025-09-02',161,0,0,0,1,0,0,0,0,0,0,0,0),(112448,'2025-09-02',160,0,0,0,1,0,0,0,0,0,0,0,0),(112447,'2025-09-02',159,0,0,0,1,0,0,0,0,0,0,0,0),(112446,'2025-09-02',158,0,0,0,1,0,0,0,0,0,0,0,0),(112445,'2025-09-02',157,0,0,0,1,0,0,0,0,0,0,0,0),(112444,'2025-09-02',154,0,0,0,1,0,0,0,0,0,0,0,0),(112443,'2025-09-02',152,0,0,0,1,0,0,0,0,0,0,0,0),(112442,'2025-09-02',151,0,0,0,1,0,0,0,0,0,0,0,0),(112441,'2025-09-02',148,0,0,0,1,0,0,0,0,0,0,0,0),(112440,'2025-09-02',147,0,0,0,1,0,0,0,0,0,0,0,0),(112439,'2025-09-02',146,0,0,0,1,0,0,0,0,0,0,0,0),(112438,'2025-09-02',145,0,0,0,1,0,0,0,0,0,0,0,0),(112437,'2025-09-02',144,0,0,0,1,0,0,0,0,0,0,0,0),(112436,'2025-09-02',143,0,0,0,1,0,0,0,0,0,0,0,0),(112435,'2025-09-02',141,0,0,0,1,0,0,0,0,0,0,0,0),(112434,'2025-09-02',140,0,0,0,1,0,0,0,0,0,0,0,0),(112433,'2025-09-02',136,0,0,0,1,0,0,0,0,0,0,0,0),(112432,'2025-09-02',132,0,0,0,1,0,0,0,0,0,0,0,0),(112431,'2025-09-02',128,0,0,0,1,0,0,0,0,0,0,0,0),(112430,'2025-09-02',127,0,0,0,1,0,0,0,0,0,0,0,0),(112429,'2025-09-02',126,0,0,0,1,0,0,0,0,0,0,0,0),(112428,'2025-09-02',124,0,0,0,1,0,0,0,0,0,0,0,0),(112427,'2025-09-02',123,0,0,0,1,0,0,0,0,0,0,0,0),(112426,'2025-09-02',121,0,0,0,1,0,0,0,0,0,0,0,0),(112425,'2025-09-02',115,0,0,0,1,0,0,0,0,0,0,0,0),(112424,'2025-09-02',114,0,0,0,1,0,0,0,0,0,0,0,0),(112423,'2025-09-02',113,0,0,0,1,0,0,0,0,0,0,0,0),(112422,'2025-09-02',112,0,0,0,1,0,0,0,0,0,0,0,0),(112421,'2025-09-02',110,0,0,0,1,0,0,0,0,0,0,0,0),(112420,'2025-09-02',103,0,0,0,1,0,0,0,0,0,0,0,0),(112419,'2025-09-02',98,0,0,0,1,0,0,0,0,0,0,0,0),(112418,'2025-09-02',97,0,0,0,1,0,0,0,0,0,0,0,0),(112417,'2025-09-02',96,0,0,0,1,0,0,0,0,0,0,0,0),(112416,'2025-09-02',94,0,0,0,1,0,0,0,0,0,0,0,0),(112415,'2025-09-02',91,0,0,1,0,0,0,0,0,0,0,0,0),(112414,'2025-09-02',90,0,0,0,1,0,0,2,0,0,0,0,0),(112413,'2025-09-02',87,0,0,0,1,0,0,0,0,0,0,0,0),(112412,'2025-09-02',79,0,0,0,1,0,0,0,0,0,0,0,0),(112411,'2025-09-02',75,0,0,0,0,1,0,0,0,0,0,0,0),(112410,'2025-09-02',70,0,0,0,1,0,0,0,0,0,0,0,0),(112409,'2025-09-02',69,0,0,0,1,0,0,0,0,0,0,0,0),(112408,'2025-09-02',68,0,0,0,1,0,0,0,0,0,0,0,0),(112407,'2025-09-02',67,0,0,0,1,0,0,0,0,0,0,0,0),(112406,'2025-09-02',66,0,0,0,1,0,0,0,0,0,0,0,0),(112405,'2025-09-02',65,0,0,0,1,0,0,0,0,0,0,0,0),(112404,'2025-09-02',64,0,0,0,1,0,0,0,0,0,0,0,0),(112403,'2025-09-02',63,0,0,0,1,0,0,0,0,0,0,0,0),(112402,'2025-09-02',61,0,0,0,1,0,0,0,0,0,0,0,0),(112401,'2025-09-02',58,0,0,0,1,0,0,0,0,0,0,0,0),(112400,'2025-09-02',54,0,0,0,1,0,0,0,0,0,0,0,0),(112399,'2025-09-02',52,0,0,0,1,0,0,0,0,0,0,0,0),(112398,'2025-09-02',42,0,0,0,1,0,0,0,0,0,0,0,0),(112397,'2025-09-02',37,1,0,0,1,0,0,0,0,0,0,0,0),(112396,'2025-09-02',32,0,0,0,1,0,0,0,0,0,0,0,0),(112395,'2025-09-02',24,0,0,0,1,0,0,0,0,0,0,0,0),(112394,'2025-09-02',19,0,0,0,1,0,0,0,0,0,0,0,0),(112393,'2025-09-02',13,0,0,0,1,0,0,0,0,0,0,0,0),(112392,'2025-09-02',10,0,0,0,1,0,0,0,0,0,0,0,0),(112391,'2025-09-02',8,0,0,0,0,1,0,0,0,0,0,0,0),(112656,'2025-09-04',9,0,0,0,1,1,0,0,0,0,0,0,0),(112655,'2025-09-04',8,0,0,0,1,0,0,0,0,0,0,0,0),(112654,'2025-09-04',5,0,0,0,1,0,0,1,0,0,0,0,0),(112653,'2025-09-04',3,0,0,0,1,0,0,0,0,0,0,0,0),(112652,'2025-09-04',2,0,0,0,1,0,0,1,0,0,0,0,0),(112651,'2025-09-04',1,0,0,0,1,0,1,1,0,0,0,0,0),(113454,'2025-09-15',166,0,0,0,1,0,0,0,0,0,0,0,0),(113453,'2025-09-15',164,0,0,0,1,0,0,0,0,0,0,0,0),(113452,'2025-09-15',163,0,0,0,1,0,0,0,0,0,0,0,0),(113451,'2025-09-15',161,0,0,0,1,0,0,0,0,0,0,0,0),(113450,'2025-09-15',160,0,0,0,1,0,0,0,0,0,0,0,0),(113449,'2025-09-15',159,0,0,0,1,0,0,0,0,0,0,0,0),(113448,'2025-09-15',158,0,0,0,1,0,0,0,0,0,0,0,0),(113447,'2025-09-15',157,0,0,0,1,0,0,0,0,0,0,0,0),(113446,'2025-09-15',154,0,0,0,1,0,0,0,0,0,0,0,0),(113445,'2025-09-15',152,0,0,0,1,0,0,0,0,0,0,0,0),(113444,'2025-09-15',151,0,0,0,1,0,0,0,0,0,0,0,0),(113443,'2025-09-15',148,0,0,0,1,0,0,0,0,0,0,0,0),(113442,'2025-09-15',147,0,0,0,1,0,0,0,0,0,0,0,0),(113441,'2025-09-15',146,0,0,0,1,0,0,0,0,0,0,0,0),(113440,'2025-09-15',145,0,0,0,1,0,0,0,0,0,0,0,0),(113439,'2025-09-15',144,0,0,0,1,0,0,0,0,0,0,0,0),(113438,'2025-09-15',143,0,0,0,1,0,0,0,0,0,0,0,0),(113437,'2025-09-15',141,0,0,0,1,0,0,0,0,0,0,0,0),(113436,'2025-09-15',140,0,0,0,1,0,0,0,0,0,0,0,0),(113435,'2025-09-15',136,0,0,0,1,0,0,0,0,0,0,0,0),(113434,'2025-09-15',132,0,0,0,1,0,0,0,0,0,0,0,0),(113433,'2025-09-15',128,0,0,0,1,0,0,0,0,0,0,0,0),(113432,'2025-09-15',127,0,0,0,1,0,0,0,0,0,0,0,0),(113431,'2025-09-15',126,0,0,0,1,0,0,0,0,0,0,0,0),(113430,'2025-09-15',124,0,0,0,1,0,0,0,0,0,0,0,0),(113429,'2025-09-15',123,0,0,0,1,0,0,0,0,0,0,0,0),(113428,'2025-09-15',121,0,0,0,1,0,0,0,0,0,0,0,0),(113427,'2025-09-15',115,0,0,0,1,0,0,0,0,0,0,0,0),(113426,'2025-09-15',114,0,0,0,1,0,0,0,0,0,0,0,0),(113425,'2025-09-15',113,0,0,0,1,0,0,0,0,0,0,0,0),(113424,'2025-09-15',112,0,0,0,1,0,0,0,0,0,0,0,0),(113423,'2025-09-15',110,0,0,0,1,0,0,0,0,0,0,0,0),(113422,'2025-09-15',103,0,0,0,1,0,0,0,0,0,0,0,0),(113421,'2025-09-15',98,0,0,0,1,0,0,0,0,0,0,0,0),(113420,'2025-09-15',97,0,0,0,1,0,0,0,0,0,0,0,0),(113419,'2025-09-15',96,0,0,0,1,0,0,0,0,0,0,0,0),(113418,'2025-09-15',94,0,0,0,1,0,0,0,0,0,0,0,0),(113417,'2025-09-15',91,0,0,1,0,0,0,0,0,0,0,0,0),(113416,'2025-09-15',90,0,0,0,1,0,0,0,0,0,0,0,0),(113415,'2025-09-15',89,0,0,0,0,0,0,2,0,0,0,0,0),(113414,'2025-09-15',87,0,0,0,1,0,0,0,0,0,0,0,0),(113413,'2025-09-15',81,0,0,0,0,0,0,2,0,0,0,0,0),(113412,'2025-09-15',79,0,0,0,1,0,0,0,0,0,0,0,0),(113411,'2025-09-15',78,0,0,0,0,0,0,1,0,0,0,0,0),(113410,'2025-09-15',70,0,0,0,1,0,0,0,0,0,0,0,0),(113391,'2025-09-14',75,0,0,0,0,0,0,2,0,0,0,0,0),(113390,'2025-09-14',51,0,0,0,0,0,0,3,0,0,0,0,0),(113937,'2025-09-23',448,1,0,0,0,0,0,0,0,0,0,0,0),(113936,'2025-09-23',388,1,0,1,0,0,0,0,0,0,0,0,0),(113935,'2025-09-23',311,0,0,0,0,1,0,0,0,0,0,0,0),(113934,'2025-09-23',161,0,0,0,0,1,0,0,0,0,0,0,0),(113933,'2025-09-23',158,0,0,0,1,0,0,0,0,0,0,0,0),(113932,'2025-09-23',109,0,0,0,0,1,0,0,0,0,0,0,0),(113931,'2025-09-23',81,0,0,0,0,0,1,0,0,0,0,0,0),(113930,'2025-09-23',75,0,0,0,0,0,1,0,0,0,0,0,0),(113929,'2025-09-23',54,0,0,0,0,1,0,0,0,0,0,0,0),(113928,'2025-09-23',36,0,0,0,0,0,1,0,0,0,0,0,0),(113927,'2025-09-23',27,0,0,0,0,0,1,0,0,0,0,0,0),(113905,'2025-09-22',413,0,0,0,1,0,0,0,0,0,0,0,0),(113904,'2025-09-22',412,0,0,0,1,0,0,0,0,0,0,0,0),(113903,'2025-09-22',410,0,0,0,1,0,0,0,0,0,0,0,0),(113902,'2025-09-22',408,0,0,0,1,0,0,0,0,0,0,0,0),(113901,'2025-09-22',407,0,0,0,1,0,0,0,0,0,0,0,0),(113900,'2025-09-22',405,0,0,0,1,0,0,0,0,0,0,0,0),(113899,'2025-09-22',403,0,0,0,1,0,0,0,0,0,0,0,0),(113898,'2025-09-22',401,0,0,0,1,0,0,0,0,0,0,0,0),(113897,'2025-09-22',400,0,0,0,1,0,0,0,0,0,0,0,0),(113896,'2025-09-22',396,0,0,0,1,0,0,0,0,0,0,0,0),(113895,'2025-09-22',395,0,0,0,1,0,0,0,0,0,0,0,0),(113894,'2025-09-22',393,0,0,0,1,0,0,0,0,0,0,0,0),(113893,'2025-09-22',392,0,0,0,1,0,0,0,0,0,0,0,0),(113892,'2025-09-22',391,0,0,0,1,0,0,0,0,0,0,0,0),(113891,'2025-09-22',390,0,0,0,1,0,0,0,0,0,0,0,0),(113890,'2025-09-22',388,0,0,0,1,0,0,0,0,0,0,0,0),(113889,'2025-09-22',387,0,0,0,1,0,0,0,0,0,0,0,0),(113888,'2025-09-22',385,0,0,0,1,0,0,0,0,0,0,0,0),(113887,'2025-09-22',384,0,0,0,1,0,0,0,0,0,0,0,0),(113886,'2025-09-22',382,0,0,0,1,0,0,0,0,0,0,0,0),(113885,'2025-09-22',381,0,0,0,1,0,0,0,0,0,0,0,0),(113884,'2025-09-22',378,0,0,0,1,0,0,0,0,0,0,0,0),(113409,'2025-09-15',69,0,0,0,1,0,0,0,0,0,0,0,0),(113408,'2025-09-15',68,0,0,0,1,0,0,0,0,0,0,0,0),(113407,'2025-09-15',67,0,0,0,1,0,0,0,0,0,0,0,0),(113406,'2025-09-15',66,0,0,0,1,0,0,0,0,0,0,0,0),(113405,'2025-09-15',65,0,0,0,1,0,0,0,0,0,0,0,0),(113404,'2025-09-15',64,0,0,0,1,0,0,0,0,0,0,0,0),(113403,'2025-09-15',63,0,0,0,1,0,0,0,0,0,0,0,0),(113402,'2025-09-15',61,0,0,0,1,0,0,0,0,0,0,0,0),(113401,'2025-09-15',58,0,0,0,1,0,0,0,0,0,0,0,0),(113400,'2025-09-15',54,0,0,0,1,0,0,0,0,0,0,0,0),(113399,'2025-09-15',52,0,0,0,1,0,0,0,0,0,0,0,0),(113398,'2025-09-15',42,0,0,0,1,0,0,0,0,0,0,0,0),(113397,'2025-09-15',37,0,0,0,1,0,0,0,0,0,0,0,0),(113396,'2025-09-15',32,0,0,0,1,0,0,0,0,0,0,0,0),(113395,'2025-09-15',24,0,0,0,1,0,0,0,0,0,0,0,0),(113394,'2025-09-15',19,0,0,0,1,0,0,0,0,0,0,0,0),(113393,'2025-09-15',13,0,0,0,1,0,0,0,0,0,0,0,0),(113392,'2025-09-15',10,0,0,0,1,0,0,0,0,0,0,0,0),(113926,'2025-09-22',448,0,0,0,1,0,0,0,0,0,0,0,0),(113925,'2025-09-22',446,0,0,0,1,0,0,0,0,0,0,0,0),(113924,'2025-09-22',445,0,0,0,1,0,0,0,0,0,0,0,0),(113923,'2025-09-22',443,0,0,0,1,0,0,0,0,0,0,0,0),(113922,'2025-09-22',441,0,0,0,1,0,0,0,0,0,0,0,0),(113655,'2025-09-20',233,0,0,0,0,0,0,1,0,0,0,0,0),(113654,'2025-09-20',188,0,0,0,0,0,0,1,0,0,0,0,0),(113653,'2025-09-20',137,0,0,0,0,0,0,1,0,0,0,0,0),(113652,'2025-09-20',90,0,0,0,0,0,0,2,0,0,0,0,0),(113883,'2025-09-22',377,0,0,0,1,0,0,0,0,0,0,0,0),(113882,'2025-09-22',376,0,0,0,1,0,0,0,0,0,0,0,0),(113881,'2025-09-22',375,0,0,0,1,0,0,0,0,0,0,0,0),(113880,'2025-09-22',372,0,0,0,1,0,0,0,0,0,0,0,0),(113879,'2025-09-22',371,0,0,0,1,0,0,0,0,0,0,0,0),(113878,'2025-09-22',367,0,0,0,1,0,0,0,0,0,0,0,0),(113877,'2025-09-22',365,0,0,0,1,0,0,0,0,0,0,0,0),(113876,'2025-09-22',364,0,0,0,1,0,0,0,0,0,0,0,0),(113875,'2025-09-22',363,0,0,0,1,0,0,0,0,0,0,0,0),(113874,'2025-09-22',361,0,0,0,1,0,0,0,0,0,0,0,0),(113873,'2025-09-22',360,0,0,0,1,0,0,0,0,0,0,0,0),(113872,'2025-09-22',359,0,0,0,1,0,0,0,0,0,0,0,0),(113871,'2025-09-22',357,0,0,0,1,0,0,0,0,0,0,0,0),(113870,'2025-09-22',353,0,0,0,1,0,0,0,0,0,0,0,0),(113869,'2025-09-22',352,0,0,0,1,0,0,0,0,0,0,0,0),(113868,'2025-09-22',351,0,0,0,1,0,0,0,0,0,0,0,0),(113867,'2025-09-22',348,0,0,0,1,0,0,0,0,0,0,0,0),(113866,'2025-09-22',347,0,0,0,1,0,0,0,0,0,0,0,0),(113865,'2025-09-22',346,0,0,0,1,0,0,0,0,0,0,0,0),(113864,'2025-09-22',345,0,0,0,1,0,0,0,0,0,0,0,0),(113863,'2025-09-22',344,0,0,0,1,0,0,0,0,0,0,0,0),(113862,'2025-09-22',341,0,0,0,1,0,0,0,0,0,0,0,0),(113861,'2025-09-22',340,0,0,0,1,0,0,0,0,0,0,0,0),(113860,'2025-09-22',339,0,0,0,1,0,0,0,0,0,0,0,0),(113859,'2025-09-22',338,0,0,0,1,0,0,0,0,0,0,0,0),(113858,'2025-09-22',337,0,0,0,1,0,0,0,0,0,0,0,0),(113857,'2025-09-22',336,0,0,0,1,0,0,0,0,0,0,0,0),(113856,'2025-09-22',335,0,0,0,1,0,0,0,0,0,0,0,0),(113855,'2025-09-22',334,0,0,0,1,0,0,0,0,0,0,0,0),(113854,'2025-09-22',333,0,0,0,1,0,0,0,0,0,0,0,0),(113853,'2025-09-22',332,0,0,0,1,0,0,0,0,0,0,0,0),(113852,'2025-09-22',331,0,0,0,1,0,0,0,0,0,0,0,0),(113851,'2025-09-22',330,0,0,0,1,0,0,0,0,0,0,0,0),(113850,'2025-09-22',329,0,0,0,1,0,0,0,0,0,0,0,0),(113849,'2025-09-22',328,0,0,0,1,0,0,0,0,0,0,0,0),(113848,'2025-09-22',327,0,0,0,1,0,0,0,0,0,0,0,0),(113847,'2025-09-22',326,0,0,0,1,0,0,0,0,0,0,0,0),(113846,'2025-09-22',324,0,0,0,1,0,0,0,0,0,0,0,0),(113845,'2025-09-22',323,0,0,0,1,0,0,0,0,0,0,0,0),(113844,'2025-09-22',321,0,0,0,1,0,0,0,0,0,0,0,0),(113843,'2025-09-22',320,0,0,0,1,0,0,0,0,0,0,0,0),(113842,'2025-09-22',319,0,0,0,1,0,0,0,0,0,0,0,0),(113841,'2025-09-22',317,0,0,0,1,0,1,0,0,0,0,0,0),(113840,'2025-09-22',316,0,0,0,1,0,0,0,0,0,0,0,0),(113839,'2025-09-22',314,0,0,0,1,0,0,0,0,0,0,0,0),(113838,'2025-09-22',313,0,0,0,1,0,0,0,0,0,0,0,0),(113837,'2025-09-22',310,0,0,0,1,0,0,0,0,0,0,0,0),(113836,'2025-09-22',309,0,0,0,1,0,0,0,0,0,0,0,0),(113835,'2025-09-22',308,0,0,0,1,1,0,0,0,0,0,0,0),(113834,'2025-09-22',307,0,0,0,1,0,0,0,0,0,0,0,0),(113833,'2025-09-22',304,0,0,0,1,0,0,0,0,0,0,0,0),(113832,'2025-09-22',303,0,0,0,1,0,0,0,0,0,0,0,0),(113831,'2025-09-22',302,0,0,0,1,0,0,0,0,0,0,0,0),(113830,'2025-09-22',301,0,0,0,1,0,0,0,0,0,0,0,0),(113829,'2025-09-22',300,0,0,0,1,0,0,0,0,0,0,0,0),(113828,'2025-09-22',299,0,0,0,1,0,0,0,0,0,0,0,0),(113827,'2025-09-22',298,0,0,0,1,0,0,0,0,0,0,0,0),(113826,'2025-09-22',296,0,0,0,1,0,0,0,0,0,0,0,0),(113825,'2025-09-22',295,0,0,0,1,0,0,0,0,0,0,0,0),(113824,'2025-09-22',294,0,0,0,1,0,0,0,0,0,0,0,0),(113823,'2025-09-22',292,0,0,0,1,0,0,0,0,0,0,0,0),(113822,'2025-09-22',291,0,0,0,1,0,0,0,0,0,0,0,0),(113821,'2025-09-22',290,0,0,0,1,0,0,0,0,0,0,0,0),(113820,'2025-09-22',289,0,0,0,1,0,0,0,0,0,0,0,0),(113819,'2025-09-22',288,0,0,0,1,0,0,0,0,0,0,0,0),(113818,'2025-09-22',285,0,0,0,1,0,0,0,0,0,0,0,0),(113817,'2025-09-22',281,0,0,0,1,0,0,0,0,0,0,0,0),(113816,'2025-09-22',280,0,0,0,1,0,0,0,0,0,0,0,0),(113815,'2025-09-22',278,0,0,0,1,0,0,0,0,0,0,0,0),(113814,'2025-09-22',275,0,0,0,1,0,0,0,0,0,0,0,0),(113813,'2025-09-22',274,0,0,0,1,0,0,0,0,0,0,0,0),(113812,'2025-09-22',273,0,0,0,1,0,0,0,0,0,0,0,0),(113811,'2025-09-22',271,0,0,0,1,0,0,0,0,0,0,0,0),(113810,'2025-09-22',269,0,0,0,1,0,0,0,0,0,0,0,0),(113809,'2025-09-22',268,0,0,0,1,0,0,0,0,0,0,0,0),(113808,'2025-09-22',266,0,0,0,1,0,0,0,0,0,0,0,0),(113807,'2025-09-22',265,0,0,0,1,0,0,0,0,0,0,0,0),(113806,'2025-09-22',264,0,0,0,1,0,0,0,0,0,0,0,0),(113805,'2025-09-22',263,0,0,0,1,0,0,0,0,0,0,0,0),(113804,'2025-09-22',262,0,0,0,1,0,0,0,0,0,0,0,0),(113803,'2025-09-22',261,0,0,0,1,0,0,0,0,0,0,0,0),(113802,'2025-09-22',260,0,0,0,1,0,0,0,0,0,0,0,0),(113801,'2025-09-22',258,0,0,0,1,0,0,0,0,0,0,0,0),(113800,'2025-09-22',257,0,0,0,1,0,0,0,0,0,0,0,0),(113799,'2025-09-22',256,0,0,0,1,0,0,0,0,0,0,0,0),(113798,'2025-09-22',255,0,0,0,1,0,0,0,0,0,0,0,0),(113797,'2025-09-22',254,0,0,0,1,0,0,0,0,0,0,0,0),(113796,'2025-09-22',253,0,0,0,1,0,0,0,0,0,0,0,0),(113795,'2025-09-22',251,0,0,0,1,0,0,0,0,0,0,0,0),(113794,'2025-09-22',250,0,0,0,1,0,0,0,0,0,0,0,0),(113793,'2025-09-22',249,0,0,0,1,0,0,0,0,0,0,0,0),(113792,'2025-09-22',247,0,0,0,1,0,0,0,0,0,0,0,0),(113791,'2025-09-22',246,0,0,0,1,0,0,0,0,0,0,0,0),(113790,'2025-09-22',245,0,0,0,1,0,0,0,0,0,0,0,0),(113789,'2025-09-22',243,0,0,0,1,0,0,0,0,0,0,0,0),(113788,'2025-09-22',242,0,0,0,1,0,0,0,0,0,0,0,0),(113787,'2025-09-22',241,0,0,0,1,0,0,0,0,0,0,0,0),(113786,'2025-09-22',239,0,0,0,1,0,0,0,0,0,0,0,0),(113785,'2025-09-22',238,0,0,0,1,0,0,0,0,0,0,0,0),(113784,'2025-09-22',236,0,0,0,1,0,0,0,0,0,0,0,0),(113783,'2025-09-22',234,0,0,0,1,0,0,0,0,0,0,0,0),(113782,'2025-09-22',233,0,0,0,1,0,0,0,0,0,0,0,0),(113781,'2025-09-22',232,0,0,0,1,0,0,0,0,0,0,0,0),(113780,'2025-09-22',231,0,0,0,1,0,0,0,0,0,0,0,0),(113779,'2025-09-22',228,0,0,0,1,0,0,0,0,0,0,0,0),(113778,'2025-09-22',227,0,0,0,1,0,0,0,0,0,0,0,0),(113777,'2025-09-22',226,0,0,0,1,0,0,0,0,0,0,0,0),(113776,'2025-09-22',225,0,0,0,1,0,0,0,0,0,0,0,0),(113775,'2025-09-22',224,0,0,0,1,0,0,0,0,0,0,0,0),(113774,'2025-09-22',222,0,0,0,1,0,0,0,0,0,0,0,0),(113773,'2025-09-22',221,0,0,0,1,0,0,0,0,0,0,0,0),(113772,'2025-09-22',220,1,0,0,1,0,0,0,0,0,0,0,0),(113771,'2025-09-22',218,0,0,0,0,0,0,1,0,0,0,0,0),(113770,'2025-09-22',217,0,0,0,1,0,0,0,0,0,0,0,0),(113769,'2025-09-22',214,0,0,0,1,0,0,0,0,0,0,0,0),(113768,'2025-09-22',213,0,0,0,1,0,0,0,0,0,0,0,0),(113767,'2025-09-22',212,0,0,0,1,0,0,0,0,0,0,0,0),(113766,'2025-09-22',211,0,0,0,1,0,0,0,0,0,0,0,0),(113765,'2025-09-22',210,0,0,0,1,0,0,0,0,0,0,0,0),(113764,'2025-09-22',209,0,0,0,1,0,0,0,0,0,0,0,0),(113763,'2025-09-22',208,0,0,0,1,0,0,0,0,0,0,0,0),(113762,'2025-09-22',207,0,0,0,1,0,0,0,0,0,0,0,0),(113761,'2025-09-22',206,0,0,0,1,0,0,0,0,0,0,0,0),(113760,'2025-09-22',205,0,0,0,1,0,0,0,0,0,0,0,0),(113759,'2025-09-22',204,0,0,0,1,0,0,0,0,0,0,0,0),(113758,'2025-09-22',203,0,0,0,1,0,0,0,0,0,0,0,0),(113757,'2025-09-22',201,0,0,0,1,0,0,0,0,0,0,0,0),(113756,'2025-09-22',200,0,0,0,1,0,0,0,0,0,0,0,0),(113755,'2025-09-22',197,0,0,0,1,0,0,0,0,0,0,0,0),(113754,'2025-09-22',196,0,0,0,1,0,0,0,0,0,0,0,0),(113753,'2025-09-22',195,0,0,0,1,0,0,0,0,0,0,0,0),(113752,'2025-09-22',194,0,0,0,1,0,0,0,0,0,0,0,0),(113751,'2025-09-22',193,0,0,0,1,0,0,0,0,0,0,0,0),(113750,'2025-09-22',192,0,0,0,1,0,0,0,0,0,0,0,0),(113749,'2025-09-22',191,0,0,0,1,0,0,0,0,0,0,0,0),(113748,'2025-09-22',190,0,0,0,1,0,0,0,0,0,0,0,0),(113747,'2025-09-22',189,0,0,0,1,0,0,0,0,0,0,0,0),(113746,'2025-09-22',188,0,0,0,1,0,0,0,0,0,0,0,0),(113745,'2025-09-22',187,0,0,0,1,0,0,0,0,0,0,0,0),(113744,'2025-09-22',186,0,0,0,1,0,0,0,0,0,0,0,0),(113743,'2025-09-22',185,0,0,0,1,0,0,0,0,0,0,0,0),(113742,'2025-09-22',184,0,0,0,1,0,0,0,0,0,0,0,0),(113741,'2025-09-22',183,0,0,0,1,0,0,0,0,0,0,0,0),(113740,'2025-09-22',182,0,0,0,1,0,0,0,0,0,0,0,0),(113739,'2025-09-22',181,0,0,0,1,0,0,0,0,0,0,0,0),(113738,'2025-09-22',180,0,0,0,1,0,0,0,0,0,0,0,0),(113737,'2025-09-22',179,0,0,0,1,0,0,0,0,0,0,0,0),(113736,'2025-09-22',176,0,0,0,1,0,0,0,0,0,0,0,0),(113735,'2025-09-22',175,0,0,0,1,0,0,0,0,0,0,0,0),(113734,'2025-09-22',174,0,0,0,1,0,0,0,0,0,0,0,0),(113733,'2025-09-22',173,0,0,0,1,0,0,0,0,0,0,0,0),(113732,'2025-09-22',172,0,0,0,1,0,0,0,0,0,0,0,0),(113731,'2025-09-22',170,0,0,0,1,0,0,0,0,0,0,0,0),(113730,'2025-09-22',168,0,0,0,1,0,0,0,0,0,0,0,0),(113729,'2025-09-22',167,0,0,0,1,0,0,0,0,0,0,0,0),(113728,'2025-09-22',166,0,0,0,1,0,0,0,0,0,0,0,0),(113727,'2025-09-22',164,0,0,0,1,0,0,0,0,0,0,0,0),(113726,'2025-09-22',163,0,0,0,1,0,0,0,0,0,0,0,0),(113725,'2025-09-22',161,0,0,0,1,0,0,0,0,0,0,0,0),(113724,'2025-09-22',160,0,0,0,1,0,0,0,0,0,0,0,0),(113723,'2025-09-22',159,0,0,0,1,0,0,0,0,0,0,0,0),(113722,'2025-09-22',158,0,0,0,1,0,0,0,0,0,0,0,0),(113721,'2025-09-22',157,0,0,0,1,0,0,0,0,0,0,0,0),(113720,'2025-09-22',154,0,0,0,1,0,0,0,0,0,0,0,0),(113719,'2025-09-22',152,0,0,0,1,0,0,0,0,0,0,0,0),(113718,'2025-09-22',151,0,0,0,1,0,0,0,0,0,0,0,0),(113717,'2025-09-22',148,0,0,0,1,0,0,0,0,0,0,0,0),(113716,'2025-09-22',147,0,0,0,1,0,0,0,0,0,0,0,0),(113715,'2025-09-22',146,0,0,0,1,0,0,0,0,0,0,0,0),(113714,'2025-09-22',145,0,0,0,1,0,0,0,0,0,0,0,0),(113713,'2025-09-22',144,0,0,0,1,0,0,0,0,0,0,0,0),(113712,'2025-09-22',143,0,0,0,1,0,0,0,0,0,0,0,0),(113711,'2025-09-22',141,0,0,0,1,0,0,0,0,0,0,0,0),(113710,'2025-09-22',140,0,0,0,1,0,0,0,0,0,0,0,0),(113709,'2025-09-22',136,0,0,0,1,0,0,0,0,0,0,0,0),(113708,'2025-09-22',132,0,0,0,1,0,0,0,0,0,0,0,0),(113707,'2025-09-22',128,0,0,0,1,0,0,0,0,0,0,0,0),(113706,'2025-09-22',127,0,0,0,1,0,0,0,0,0,0,0,0),(113705,'2025-09-22',126,0,0,0,1,0,0,0,0,0,0,0,0),(113704,'2025-09-22',124,0,0,0,1,0,0,0,0,0,0,0,0),(113703,'2025-09-22',123,0,0,0,1,1,0,1,0,0,0,0,0),(113702,'2025-09-22',121,0,0,0,1,0,0,0,0,0,0,0,0),(113701,'2025-09-22',115,0,0,0,1,0,0,0,0,0,0,0,0),(113921,'2025-09-22',440,0,0,0,1,0,0,0,0,0,0,0,0),(113920,'2025-09-22',439,0,0,0,1,0,0,0,0,0,0,0,0),(113919,'2025-09-22',438,0,0,0,1,0,0,0,0,0,0,0,0),(113918,'2025-09-22',435,0,0,0,1,0,0,0,0,0,0,0,0),(113917,'2025-09-22',434,0,0,0,1,0,0,0,0,0,0,0,0),(113916,'2025-09-22',433,0,0,0,1,0,0,0,0,0,0,0,0),(113915,'2025-09-22',432,0,0,0,1,0,0,0,0,0,0,0,0),(113914,'2025-09-22',431,0,0,0,1,0,0,0,0,0,0,0,0),(113913,'2025-09-22',430,0,0,0,1,0,0,0,0,0,0,0,0),(113912,'2025-09-22',428,0,0,0,1,0,0,0,0,0,0,0,0),(113911,'2025-09-22',426,0,0,0,1,0,0,0,0,0,0,0,0),(113910,'2025-09-22',423,0,0,0,1,0,0,0,0,0,0,0,0),(113909,'2025-09-22',422,0,0,0,1,0,0,0,0,0,0,0,0),(113908,'2025-09-22',420,0,0,0,1,0,0,0,0,0,0,0,0),(113700,'2025-09-22',114,0,0,0,1,0,0,0,0,0,0,0,0),(113699,'2025-09-22',113,0,0,0,1,0,0,0,0,0,0,0,0),(113698,'2025-09-22',112,0,0,0,1,0,0,0,0,0,0,0,0),(113697,'2025-09-22',110,0,0,0,1,0,0,0,0,0,0,0,0),(113696,'2025-09-22',109,0,0,0,0,0,0,1,0,0,0,0,0),(113695,'2025-09-22',104,0,0,0,0,0,1,0,0,0,0,0,0),(113694,'2025-09-22',103,0,0,0,1,0,0,0,0,0,0,0,0),(113693,'2025-09-22',98,0,0,0,1,0,0,0,0,0,0,0,0),(113692,'2025-09-22',97,0,0,0,1,0,0,0,0,0,0,0,0),(113691,'2025-09-22',96,0,0,0,1,0,0,0,0,0,0,0,0),(113690,'2025-09-22',94,0,0,0,1,0,0,0,0,0,0,0,0),(113689,'2025-09-22',91,0,0,1,0,0,0,0,0,0,0,0,0),(113688,'2025-09-22',90,0,0,0,1,0,0,0,0,0,0,0,0),(113687,'2025-09-22',87,0,0,0,1,0,0,0,0,0,0,0,0),(113686,'2025-09-22',79,0,0,0,1,0,0,0,0,0,0,0,0),(113685,'2025-09-22',77,0,0,0,0,1,0,0,0,0,0,0,0),(113684,'2025-09-22',73,0,0,0,0,1,0,0,0,0,0,0,0),(113683,'2025-09-22',70,0,0,0,1,0,0,0,0,0,0,0,0),(113682,'2025-09-22',69,0,0,0,1,0,0,0,0,0,0,0,0),(113681,'2025-09-22',68,0,0,0,1,0,0,0,0,0,0,0,0),(113680,'2025-09-22',67,0,0,0,1,0,0,0,0,0,0,0,0),(113679,'2025-09-22',66,0,0,0,1,0,0,0,0,0,0,0,0),(113678,'2025-09-22',65,0,0,0,1,0,0,0,0,0,0,0,0),(113677,'2025-09-22',64,0,0,0,1,0,0,0,0,0,0,0,0),(113676,'2025-09-22',63,0,0,0,1,0,0,0,0,0,0,0,0),(113675,'2025-09-22',61,0,0,0,1,0,0,0,0,0,0,0,0),(113674,'2025-09-22',58,0,0,0,1,0,0,0,0,0,0,0,0),(113673,'2025-09-22',54,1,0,0,1,0,0,0,0,0,0,0,0),(113672,'2025-09-22',52,0,0,0,1,0,0,0,0,0,0,0,0),(113671,'2025-09-22',49,0,0,0,0,0,0,1,0,0,0,0,0),(113670,'2025-09-22',42,0,0,0,1,0,0,0,0,0,0,0,0),(113669,'2025-09-22',40,0,0,0,0,0,1,0,0,0,0,0,0),(113668,'2025-09-22',37,0,0,0,1,0,0,0,0,0,0,0,0),(113667,'2025-09-22',33,0,0,0,0,0,1,0,0,0,0,0,0),(113666,'2025-09-22',32,0,0,0,1,0,0,0,0,0,0,0,0),(113665,'2025-09-22',24,0,0,0,1,0,0,0,0,0,0,0,0),(113664,'2025-09-22',22,0,0,0,0,0,0,1,0,0,0,0,0),(113663,'2025-09-22',19,0,0,0,1,0,0,0,0,0,0,0,0),(113662,'2025-09-22',17,0,0,0,0,0,0,1,0,0,0,0,0),(113661,'2025-09-22',13,0,0,0,1,0,0,0,0,0,0,0,0),(113660,'2025-09-22',10,0,0,0,1,0,0,0,0,0,0,0,0),(113659,'2025-09-22',9,0,0,0,0,0,0,1,0,0,0,0,0),(113658,'2025-09-22',5,0,0,0,0,0,0,1,0,0,0,0,0),(113657,'2025-09-22',2,0,0,0,0,0,0,1,0,0,0,0,0),(113656,'2025-09-22',1,0,0,0,0,0,0,1,0,0,0,0,0),(113942,'2025-09-25',89,0,0,0,0,0,0,1,0,0,0,0,0),(113941,'2025-09-25',81,0,0,0,0,0,0,1,0,0,0,0,0),(113940,'2025-09-25',78,0,0,0,0,0,0,1,0,0,0,0,0),(113939,'2025-09-25',75,0,0,0,0,0,0,1,0,0,0,0,0),(113938,'2025-09-25',51,0,0,0,0,0,0,1,0,0,0,0,0),(114009,'2025-10-02',168,0,0,0,1,0,0,0,0,0,0,0,0),(114008,'2025-10-02',167,0,0,0,1,0,0,0,0,0,0,0,0),(114007,'2025-10-02',166,0,0,0,1,0,0,0,0,0,0,0,0),(114006,'2025-10-02',164,0,0,0,1,0,0,0,0,0,0,0,0),(114005,'2025-10-02',163,0,0,0,1,0,0,0,0,0,0,0,0),(114004,'2025-10-02',161,0,0,0,1,0,0,0,0,0,0,0,0),(114003,'2025-10-02',160,0,0,0,1,0,0,0,0,0,0,0,0),(114002,'2025-10-02',159,0,0,0,1,0,0,0,0,0,0,0,0),(114001,'2025-10-02',158,0,0,0,1,0,0,0,0,0,0,0,0),(114000,'2025-10-02',157,0,0,0,1,0,0,0,0,0,0,0,0),(113999,'2025-10-02',154,0,0,0,1,0,0,0,0,0,0,0,0),(113998,'2025-10-02',152,0,0,0,1,0,0,0,0,0,0,0,0),(113997,'2025-10-02',151,0,0,0,1,0,0,0,0,0,0,0,0),(113996,'2025-10-02',148,0,0,0,1,0,0,0,0,0,0,0,0),(113995,'2025-10-02',147,0,0,0,1,0,0,0,0,0,0,0,0),(113994,'2025-10-02',146,0,0,0,1,0,0,0,0,0,0,0,0),(113993,'2025-10-02',145,0,0,0,1,0,0,0,0,0,0,0,0),(113992,'2025-10-02',144,0,0,0,1,0,0,0,0,0,0,0,0),(113991,'2025-10-02',143,0,0,0,1,0,0,0,0,0,0,0,0),(113990,'2025-10-02',141,0,0,0,1,0,0,0,0,0,0,0,0),(113989,'2025-10-02',140,0,0,0,1,0,0,0,0,0,0,0,0),(113988,'2025-10-02',137,0,0,0,0,0,0,1,0,0,0,0,0),(113987,'2025-10-02',136,0,0,0,1,0,0,0,0,0,0,0,0),(113986,'2025-10-02',132,0,0,0,1,0,0,0,0,0,0,0,0),(113985,'2025-10-02',128,0,0,0,1,0,0,0,0,0,0,0,0),(113984,'2025-10-02',127,0,0,0,1,0,0,0,0,0,0,0,0),(113983,'2025-10-02',126,0,0,0,1,0,0,0,0,0,0,0,0),(113982,'2025-10-02',124,0,0,0,1,0,0,0,0,0,0,0,0),(113981,'2025-10-02',123,0,0,0,1,0,0,0,0,0,0,0,0),(113980,'2025-10-02',121,0,0,0,1,0,0,0,0,0,0,0,0),(113979,'2025-10-02',115,0,0,0,1,0,0,0,0,0,0,0,0),(113978,'2025-10-02',114,0,0,0,1,0,0,0,0,0,0,0,0),(113977,'2025-10-02',113,0,0,0,1,0,0,0,0,0,0,0,0),(113976,'2025-10-02',112,0,0,0,1,0,0,0,0,0,0,0,0),(113975,'2025-10-02',110,0,0,0,1,0,0,0,0,0,0,0,0),(113974,'2025-10-02',103,0,0,0,1,0,0,0,0,0,0,0,0),(113973,'2025-10-02',98,0,0,0,1,0,0,0,0,0,0,0,0),(113972,'2025-10-02',97,0,0,0,1,0,0,0,0,0,0,0,0),(113971,'2025-10-02',96,0,0,0,1,0,0,0,0,0,0,0,0),(113970,'2025-10-02',94,0,0,0,1,0,0,0,0,0,0,0,0),(113969,'2025-10-02',91,0,0,0,1,0,0,0,0,0,0,0,0),(113968,'2025-10-02',90,0,0,0,1,0,0,1,0,0,0,0,0),(113967,'2025-10-02',87,0,0,0,1,0,0,0,0,0,0,0,0),(113966,'2025-10-02',79,0,0,0,1,0,0,0,0,0,0,0,0),(113965,'2025-10-02',78,0,0,0,0,0,1,0,0,0,0,0,0),(113964,'2025-10-02',70,0,0,0,1,0,0,0,0,0,0,0,0),(113963,'2025-10-02',69,0,0,0,1,0,0,0,0,0,0,0,0),(113962,'2025-10-02',68,0,0,0,1,0,0,0,0,0,0,0,0),(113961,'2025-10-02',67,0,0,0,1,0,0,0,0,0,0,0,0),(113960,'2025-10-02',66,0,0,0,1,0,0,0,0,0,0,0,0),(113959,'2025-10-02',65,0,0,0,1,0,0,0,0,0,0,0,0),(113958,'2025-10-02',64,0,0,0,1,0,0,0,0,0,0,0,0),(113957,'2025-10-02',63,0,0,0,1,0,0,0,0,0,0,0,0),(113956,'2025-10-02',61,0,0,0,1,0,0,0,0,0,0,0,0),(113955,'2025-10-02',58,0,0,0,1,0,0,0,0,0,0,0,0),(113954,'2025-10-02',54,0,0,0,1,0,0,0,0,0,0,0,0),(113953,'2025-10-02',52,0,0,0,1,0,0,0,0,0,0,0,0),(113952,'2025-10-02',42,0,0,0,1,0,0,0,0,0,0,0,0),(113951,'2025-10-02',37,1,0,0,1,0,0,0,0,0,0,0,0),(113950,'2025-10-02',32,0,0,0,1,0,0,0,0,0,0,0,0),(113949,'2025-10-02',24,0,0,0,1,0,0,0,0,0,0,0,0),(113948,'2025-10-02',19,0,0,0,1,0,0,0,0,0,0,0,0),(114329,'2025-10-08',247,0,0,0,1,0,0,0,0,0,0,0,0),(114328,'2025-10-08',245,0,0,0,1,0,0,0,0,0,0,0,0),(114327,'2025-10-08',243,0,0,0,1,0,0,0,0,0,0,0,0),(114326,'2025-10-08',242,0,0,0,1,0,0,0,0,0,0,0,0),(114325,'2025-10-08',239,0,0,0,1,0,1,0,0,0,0,0,0),(114324,'2025-10-08',238,0,0,0,1,0,0,0,0,0,0,0,0),(114323,'2025-10-08',236,0,0,0,1,0,0,0,0,0,0,0,0),(114322,'2025-10-08',234,0,0,0,1,0,0,0,0,0,0,0,0),(114321,'2025-10-08',233,0,0,0,1,0,0,0,0,0,0,0,0),(114320,'2025-10-08',232,0,0,0,1,0,0,0,0,0,0,0,0),(114319,'2025-10-08',227,0,0,0,1,0,0,0,0,0,0,0,0),(114318,'2025-10-08',226,0,0,0,1,0,0,0,0,0,0,0,0),(114317,'2025-10-08',225,0,0,0,1,0,0,0,0,0,0,0,0),(114316,'2025-10-08',224,0,0,0,1,0,0,0,0,0,0,0,0),(114315,'2025-10-08',222,0,0,0,1,0,0,0,0,0,0,0,0),(114314,'2025-10-08',220,0,0,0,1,0,0,0,0,0,0,0,0),(114313,'2025-10-08',218,0,0,0,0,0,0,2,0,0,0,0,0),(114312,'2025-10-08',217,0,0,0,1,0,0,0,0,0,0,0,0),(114311,'2025-10-08',214,0,0,0,1,0,0,0,0,0,0,0,0),(114310,'2025-10-08',212,0,0,0,1,0,0,0,0,0,0,0,0),(114309,'2025-10-08',211,0,0,0,1,0,0,0,0,0,0,0,0),(114308,'2025-10-08',210,0,0,0,1,0,0,0,0,0,0,0,0),(114307,'2025-10-08',209,0,0,0,1,0,0,0,0,0,0,0,0),(114306,'2025-10-08',208,0,0,0,1,0,0,0,0,0,0,0,0),(114305,'2025-10-08',207,0,0,0,1,0,0,0,0,0,0,0,0),(114304,'2025-10-08',205,0,0,0,1,0,0,0,0,0,0,0,0),(114303,'2025-10-08',204,0,0,0,1,0,0,0,0,0,0,0,0),(114302,'2025-10-08',203,0,0,0,1,0,1,0,0,0,0,0,0),(114301,'2025-10-08',197,0,0,0,1,0,0,0,0,0,0,0,0),(114300,'2025-10-08',196,0,0,0,1,0,0,0,0,0,0,0,0),(114299,'2025-10-08',195,0,0,0,1,0,0,0,0,0,0,0,0),(114298,'2025-10-08',194,0,0,0,1,0,0,0,0,0,0,0,0),(114297,'2025-10-08',193,0,0,0,1,0,0,0,0,0,0,0,0),(114296,'2025-10-08',192,0,0,0,1,0,0,0,0,0,0,0,0),(114295,'2025-10-08',191,0,0,0,1,0,0,0,0,0,0,0,0),(114294,'2025-10-08',190,0,0,0,1,0,0,0,0,0,0,0,0),(114293,'2025-10-08',189,0,0,0,1,0,0,0,0,0,0,0,0),(114292,'2025-10-08',188,0,0,0,1,0,0,0,0,0,0,0,0),(114291,'2025-10-08',187,0,0,0,1,0,0,0,0,0,0,0,0),(114290,'2025-10-08',186,0,0,0,1,0,0,0,0,0,0,0,0),(114289,'2025-10-08',185,0,0,0,1,0,0,0,0,0,0,0,0),(114288,'2025-10-08',184,0,0,0,1,0,0,0,0,0,0,0,0),(114287,'2025-10-08',183,0,0,0,1,0,0,0,0,0,0,0,0),(114286,'2025-10-08',182,0,0,0,1,0,0,0,0,0,0,0,0),(114285,'2025-10-08',181,0,0,0,1,0,0,0,0,0,0,0,0),(114284,'2025-10-08',180,0,0,0,1,0,0,0,0,0,0,0,0),(114283,'2025-10-08',179,0,0,0,1,0,0,0,0,0,0,0,0),(114282,'2025-10-08',176,0,0,1,0,0,0,0,0,0,0,0,0),(114281,'2025-10-08',175,0,0,0,1,0,0,0,0,0,0,0,0),(114280,'2025-10-08',174,0,0,0,1,0,0,0,0,0,0,0,0),(114279,'2025-10-08',173,0,0,0,1,0,0,0,0,0,0,0,0),(114278,'2025-10-08',172,0,0,0,1,0,0,0,0,0,0,0,0),(114277,'2025-10-08',170,0,0,0,1,0,0,0,0,0,0,0,0),(114276,'2025-10-08',168,0,0,0,1,0,0,0,0,0,0,0,0),(114275,'2025-10-08',167,0,0,0,1,0,0,0,0,0,0,0,0),(114274,'2025-10-08',166,0,0,0,1,0,0,0,0,0,0,0,0),(114273,'2025-10-08',164,0,0,0,1,0,0,0,0,0,0,0,0),(114272,'2025-10-08',163,0,0,0,1,0,0,0,0,0,0,0,0),(114271,'2025-10-08',161,0,0,0,1,0,0,0,0,0,0,0,0),(114270,'2025-10-08',160,0,0,0,1,0,0,0,0,0,0,0,0),(114269,'2025-10-08',159,0,0,0,1,0,0,0,0,0,0,0,0),(114268,'2025-10-08',158,0,0,0,1,0,0,0,0,0,0,0,0),(114267,'2025-10-08',157,0,0,0,1,0,0,0,0,0,0,0,0),(114266,'2025-10-08',154,0,0,0,1,0,0,0,0,0,0,0,0),(114265,'2025-10-08',152,0,0,0,1,0,0,0,0,0,0,0,0),(114264,'2025-10-08',151,0,0,0,1,0,0,0,0,0,0,0,0),(114263,'2025-10-08',148,0,0,0,1,0,0,0,0,0,0,0,0),(114262,'2025-10-08',147,0,0,0,1,0,0,0,0,0,0,0,0),(114261,'2025-10-08',146,0,0,0,1,0,0,0,0,0,0,0,0),(114260,'2025-10-08',145,0,0,0,1,0,0,0,0,0,0,0,0),(114259,'2025-10-08',144,0,0,0,1,0,0,0,0,0,0,0,0),(114258,'2025-10-08',143,0,0,0,1,0,0,0,0,0,0,0,0),(114257,'2025-10-08',141,0,0,0,1,0,0,0,0,0,0,0,0),(114256,'2025-10-08',140,0,0,0,1,0,0,0,0,0,0,0,0),(114255,'2025-10-08',137,0,0,0,0,1,0,0,0,0,0,0,0),(114254,'2025-10-08',136,0,0,0,1,0,0,0,0,0,0,0,0),(114253,'2025-10-08',132,0,0,0,1,0,0,0,0,0,0,0,0),(114252,'2025-10-08',128,0,0,0,1,0,0,0,0,0,0,0,0),(114251,'2025-10-08',127,0,0,0,1,0,0,0,0,0,0,0,0),(114250,'2025-10-08',126,0,0,0,1,0,0,0,0,0,0,0,0),(114249,'2025-10-08',124,0,0,0,1,0,0,0,0,0,0,0,0),(114248,'2025-10-08',123,0,0,0,1,0,0,0,0,0,0,0,0),(114247,'2025-10-08',121,0,0,0,1,0,0,0,0,0,0,0,0),(114246,'2025-10-08',115,0,0,0,1,0,0,0,0,0,0,0,0),(114245,'2025-10-08',114,0,0,0,1,0,0,0,0,0,0,0,0),(114244,'2025-10-08',113,0,0,0,1,0,0,0,0,0,0,0,0),(114243,'2025-10-08',112,0,0,0,1,0,0,0,0,0,0,0,0),(114242,'2025-10-08',110,0,0,0,1,0,0,0,0,0,0,0,0),(114241,'2025-10-08',109,0,0,0,0,0,0,1,0,0,0,0,0),(114240,'2025-10-08',103,0,0,0,1,0,0,0,0,0,0,0,0),(114239,'2025-10-08',98,0,0,0,1,0,0,0,0,0,0,0,0),(114238,'2025-10-08',97,0,0,0,1,0,0,0,0,0,0,0,0),(114237,'2025-10-08',96,0,0,0,1,0,0,0,0,0,0,0,0),(114236,'2025-10-08',94,0,0,0,1,0,0,0,0,0,0,0,0),(114235,'2025-10-08',91,0,0,0,1,0,0,0,0,0,0,0,0),(114234,'2025-10-08',90,0,0,0,1,0,0,0,0,0,0,0,0),(114233,'2025-10-08',87,0,0,0,1,0,0,0,0,0,0,0,0),(114232,'2025-10-08',79,0,0,0,1,0,0,0,0,0,0,0,0),(114231,'2025-10-08',75,0,0,0,0,1,0,0,0,0,0,0,0),(114230,'2025-10-08',70,0,0,0,1,0,0,0,0,0,0,0,0),(114229,'2025-10-08',69,0,0,0,1,0,0,0,0,0,0,0,0),(114219,'2025-10-08',52,0,0,0,1,0,0,0,0,0,0,0,0),(114218,'2025-10-08',49,0,0,0,0,0,1,0,0,0,0,0,0),(114217,'2025-10-08',42,0,0,0,1,0,0,0,0,0,0,0,0),(114216,'2025-10-08',37,0,0,0,1,0,0,0,0,0,0,0,0),(114215,'2025-10-08',32,0,0,0,1,0,0,0,0,0,0,0,0),(114206,'2025-10-03',2,0,0,0,0,0,0,1,0,0,0,0,0),(114205,'2025-10-03',1,0,0,0,0,0,0,4,0,0,0,0,0),(114214,'2025-10-08',24,0,0,0,1,0,0,0,0,0,0,0,0),(114213,'2025-10-08',19,0,0,0,1,0,0,0,0,0,0,0,0),(114212,'2025-10-08',17,0,0,0,0,0,0,1,0,0,0,0,0),(114211,'2025-10-08',13,0,0,0,1,0,0,0,0,0,0,0,0),(114207,'2025-10-06',5,0,0,0,0,0,0,5,0,0,0,0,0),(114751,'2025-10-11',413,0,0,0,0,1,0,0,0,0,0,0,0),(114750,'2025-10-11',388,1,0,0,0,0,0,0,0,0,0,0,0),(114749,'2025-10-11',327,1,0,0,0,0,0,0,0,0,0,0,0),(114748,'2025-10-11',320,0,0,0,0,1,0,0,0,0,0,0,0),(114747,'2025-10-11',310,0,0,0,0,1,0,0,0,0,0,0,0),(114746,'2025-10-11',308,0,0,0,0,0,1,0,0,0,0,0,0),(114745,'2025-10-11',297,0,0,0,0,1,0,0,0,0,0,0,0),(114744,'2025-10-11',230,0,0,0,0,0,1,0,0,0,0,0,0),(114743,'2025-10-11',178,0,0,0,0,0,1,0,0,0,0,0,0),(114742,'2025-10-11',162,0,0,0,0,0,1,0,0,0,0,0,0),(114741,'2025-10-11',119,0,0,0,0,0,1,0,0,0,0,0,0),(114740,'2025-10-11',111,0,0,0,0,1,0,0,0,0,0,0,0),(114739,'2025-10-11',109,0,0,0,0,0,1,0,0,0,0,0,0),(114738,'2025-10-11',91,0,0,0,0,1,0,0,0,0,0,0,0),(114737,'2025-10-11',81,0,0,0,0,0,0,1,0,0,0,0,0),(114736,'2025-10-11',78,0,0,0,0,0,0,1,0,0,0,0,0),(114735,'2025-10-11',75,0,0,0,0,0,0,2,0,0,0,0,0),(114734,'2025-10-11',53,0,0,0,0,0,1,0,0,0,0,0,0),(114733,'2025-10-11',51,0,0,0,0,0,0,1,0,0,0,0,0),(114732,'2025-10-11',50,0,0,0,0,1,0,0,0,0,0,0,0),(114731,'2025-10-11',47,0,0,0,0,0,1,0,0,0,0,0,0),(114730,'2025-10-11',37,1,0,0,0,0,0,0,0,0,0,0,0),(114729,'2025-10-11',36,0,0,0,0,1,0,0,0,0,0,0,0),(114728,'2025-10-11',18,0,0,0,0,1,0,0,0,0,0,0,0),(114727,'2025-10-11',11,0,0,0,0,0,1,0,0,0,0,0,0),(114726,'2025-10-10',448,0,0,0,1,0,0,0,0,0,0,0,0),(114725,'2025-10-10',446,0,0,0,1,0,0,0,0,0,0,0,0),(114724,'2025-10-10',445,0,0,0,1,0,0,0,0,0,0,0,0),(114723,'2025-10-10',443,0,0,0,1,0,0,0,0,0,0,0,0),(114722,'2025-10-10',441,0,0,0,1,0,0,0,0,0,0,0,0),(114721,'2025-10-10',440,0,0,0,1,0,0,0,0,0,0,0,0),(114720,'2025-10-10',439,0,0,0,1,0,0,0,0,0,0,0,0),(114719,'2025-10-10',438,0,0,0,1,0,0,0,0,0,0,0,0),(114718,'2025-10-10',435,0,0,0,1,0,0,0,0,0,0,0,0),(114717,'2025-10-10',434,0,0,0,1,0,0,0,0,0,0,0,0),(114716,'2025-10-10',433,0,0,0,1,0,0,0,0,0,0,0,0),(114715,'2025-10-10',432,0,0,0,1,0,0,0,0,0,0,0,0),(114714,'2025-10-10',431,0,0,0,1,0,0,0,0,0,0,0,0),(114713,'2025-10-10',430,0,0,0,1,0,0,0,0,0,0,0,0),(114712,'2025-10-10',428,0,0,0,1,0,0,0,0,0,0,0,0),(114711,'2025-10-10',426,0,0,0,1,0,0,0,0,0,0,0,0),(114710,'2025-10-10',423,0,0,0,1,0,0,0,0,0,0,0,0),(114709,'2025-10-10',422,0,0,0,1,0,0,0,0,0,0,0,0),(114708,'2025-10-10',420,0,0,0,1,0,0,0,0,0,0,0,0),(114707,'2025-10-10',417,0,0,0,1,0,0,0,0,0,0,0,0),(114706,'2025-10-10',414,0,0,0,1,0,0,0,0,0,0,0,0),(114705,'2025-10-10',413,0,0,0,1,0,0,0,0,0,0,0,0),(114704,'2025-10-10',412,0,0,0,1,0,0,0,0,0,0,0,0),(114703,'2025-10-10',410,0,0,0,1,0,0,0,0,0,0,0,0),(114702,'2025-10-10',408,0,0,0,1,0,0,0,0,0,0,0,0),(114701,'2025-10-10',407,0,0,0,1,0,0,0,0,0,0,0,0),(114700,'2025-10-10',405,0,0,0,1,0,0,0,0,0,0,0,0),(114699,'2025-10-10',403,0,0,0,1,0,0,0,0,0,0,0,0),(114698,'2025-10-10',401,0,0,0,1,0,0,0,0,0,0,0,0),(114697,'2025-10-10',400,0,0,0,1,0,0,0,0,0,0,0,0),(114696,'2025-10-10',396,0,0,0,1,0,0,0,0,0,0,0,0),(114695,'2025-10-10',395,0,0,0,1,0,0,0,0,0,0,0,0),(114694,'2025-10-10',393,0,0,0,1,0,0,0,0,0,0,0,0),(114693,'2025-10-10',392,0,0,0,1,0,0,0,0,0,0,0,0),(114692,'2025-10-10',391,0,0,0,1,0,0,0,0,0,0,0,0),(114691,'2025-10-10',390,0,0,0,1,0,0,0,0,0,0,0,0),(114690,'2025-10-10',388,0,0,0,1,0,0,0,0,0,0,0,0),(114689,'2025-10-10',387,0,0,0,1,0,0,0,0,0,0,0,0),(114688,'2025-10-10',385,0,0,0,1,0,0,0,0,0,0,0,0),(114687,'2025-10-10',384,0,0,0,1,0,0,0,0,0,0,0,0),(114686,'2025-10-10',382,0,0,0,1,0,0,0,0,0,0,0,0),(114685,'2025-10-10',381,0,0,0,1,0,0,0,0,0,0,0,0),(114684,'2025-10-10',378,0,0,0,1,0,0,0,0,0,0,0,0),(114683,'2025-10-10',377,0,0,0,1,0,0,0,0,0,0,0,0),(114682,'2025-10-10',376,0,0,0,1,0,0,0,0,0,0,0,0),(114681,'2025-10-10',375,0,0,0,1,0,0,0,0,0,0,0,0),(114680,'2025-10-10',372,0,0,0,1,0,0,0,0,0,0,0,0),(114679,'2025-10-10',371,0,0,0,1,0,0,0,0,0,0,0,0),(114678,'2025-10-10',367,0,0,0,1,0,0,0,0,0,0,0,0),(114677,'2025-10-10',365,0,0,0,1,0,0,0,0,0,0,0,0),(114676,'2025-10-10',364,0,0,0,1,0,0,0,0,0,0,0,0),(114675,'2025-10-10',363,0,0,0,1,0,0,0,0,0,0,0,0),(114674,'2025-10-10',361,0,0,0,1,0,0,0,0,0,0,0,0),(114673,'2025-10-10',360,0,0,0,1,0,0,0,0,0,0,0,0),(114672,'2025-10-10',359,0,0,0,1,0,0,0,0,0,0,0,0),(114671,'2025-10-10',357,0,0,0,1,0,0,0,0,0,0,0,0),(114670,'2025-10-10',353,0,0,0,1,0,0,0,0,0,0,0,0),(114669,'2025-10-10',352,0,0,0,1,0,0,0,0,0,0,0,0),(114668,'2025-10-10',351,0,0,0,1,0,0,0,0,0,0,0,0),(114667,'2025-10-10',348,0,0,0,1,0,0,0,0,0,0,0,0),(114666,'2025-10-10',347,0,0,0,1,0,0,0,0,0,0,0,0),(114665,'2025-10-10',346,0,0,0,1,0,0,0,0,0,0,0,0),(114664,'2025-10-10',345,0,0,0,1,0,0,0,0,0,0,0,0),(114663,'2025-10-10',344,0,0,0,1,0,0,0,0,0,0,0,0),(114662,'2025-10-10',341,0,0,0,1,0,0,0,0,0,0,0,0),(114661,'2025-10-10',340,0,0,0,1,0,0,0,0,0,0,0,0),(114660,'2025-10-10',339,0,0,0,1,0,0,0,0,0,0,0,0),(114659,'2025-10-10',338,0,0,0,1,0,0,0,0,0,0,0,0),(114658,'2025-10-10',337,0,0,0,1,0,0,0,0,0,0,0,0),(114657,'2025-10-10',336,0,0,0,1,0,0,0,0,0,0,0,0),(114656,'2025-10-10',335,0,0,0,1,0,0,0,0,0,0,0,0),(114655,'2025-10-10',334,0,0,0,1,0,0,0,0,0,0,0,0),(114654,'2025-10-10',333,0,0,0,1,0,0,0,0,0,0,0,0),(114653,'2025-10-10',332,0,0,0,1,0,0,0,0,0,0,0,0),(114652,'2025-10-10',331,0,0,0,1,0,0,0,0,0,0,0,0),(114651,'2025-10-10',330,0,0,0,1,0,0,0,0,0,0,0,0),(114650,'2025-10-10',329,0,0,0,1,0,0,0,0,0,0,0,0),(114649,'2025-10-10',328,0,0,0,1,0,0,0,0,0,0,0,0),(114648,'2025-10-10',327,0,0,0,1,0,0,0,0,0,0,0,0),(114647,'2025-10-10',326,0,0,0,1,0,0,0,0,0,0,0,0),(114646,'2025-10-10',324,0,0,0,1,0,0,0,0,0,0,0,0),(114645,'2025-10-10',323,0,0,0,1,0,0,0,0,0,0,0,0),(114644,'2025-10-10',321,0,0,0,1,0,0,0,0,0,0,0,0),(114643,'2025-10-10',320,0,0,0,1,0,0,0,0,0,0,0,0),(114642,'2025-10-10',319,0,0,0,1,0,0,0,0,0,0,0,0),(114641,'2025-10-10',317,0,0,0,1,0,0,0,0,0,0,0,0),(114640,'2025-10-10',316,0,0,0,1,0,0,0,0,0,0,0,0),(114639,'2025-10-10',314,0,0,0,1,0,0,0,0,0,0,0,0),(114638,'2025-10-10',313,0,0,0,1,0,0,0,0,0,0,0,0),(114637,'2025-10-10',310,0,0,0,1,0,0,0,0,0,0,0,0),(114636,'2025-10-10',309,0,0,0,1,0,0,0,0,0,0,0,0),(114635,'2025-10-10',308,0,0,0,1,0,0,0,0,0,0,0,0),(114634,'2025-10-10',307,0,0,0,1,0,0,0,0,0,0,0,0),(114633,'2025-10-10',304,0,0,0,1,0,0,0,0,0,0,0,0),(114632,'2025-10-10',303,0,0,0,1,0,0,0,0,0,0,0,0),(114631,'2025-10-10',302,0,0,0,1,0,0,0,0,0,0,0,0),(114630,'2025-10-10',301,0,0,0,1,0,0,0,0,0,0,0,0),(114629,'2025-10-10',300,0,0,0,1,0,0,0,0,0,0,0,0),(114628,'2025-10-10',299,0,0,0,1,0,0,0,0,0,0,0,0),(114627,'2025-10-10',298,0,0,0,1,0,0,0,0,0,0,0,0),(114626,'2025-10-10',296,0,0,0,1,0,0,0,0,0,0,0,0),(114625,'2025-10-10',295,0,0,0,1,0,0,0,0,0,0,0,0),(114624,'2025-10-10',294,0,0,0,1,0,0,0,0,0,0,0,0),(114623,'2025-10-10',292,0,0,0,1,0,0,0,0,0,0,0,0),(114622,'2025-10-10',291,0,0,0,1,0,0,0,0,0,0,0,0),(114621,'2025-10-10',290,0,0,0,1,0,0,0,0,0,0,0,0),(114620,'2025-10-10',289,0,0,0,1,0,0,0,0,0,0,0,0),(114619,'2025-10-10',288,0,0,0,1,0,0,0,0,0,0,0,0),(114618,'2025-10-10',285,0,0,0,1,0,0,0,0,0,0,0,0),(114617,'2025-10-10',281,0,0,0,1,0,0,0,0,0,0,0,0),(114616,'2025-10-10',280,0,0,0,1,0,0,0,0,0,0,0,0),(114615,'2025-10-10',278,0,0,0,1,0,0,0,0,0,0,0,0),(114614,'2025-10-10',275,0,0,0,1,0,0,0,0,0,0,0,0),(114613,'2025-10-10',274,0,0,0,1,0,0,0,0,0,0,0,0),(114612,'2025-10-10',273,0,0,0,1,0,0,0,0,0,0,0,0),(114611,'2025-10-10',271,0,0,0,1,0,0,0,0,0,0,0,0),(114610,'2025-10-10',269,0,0,0,1,0,0,0,0,0,0,0,0),(114609,'2025-10-10',268,0,0,0,1,0,0,0,0,0,0,0,0),(114608,'2025-10-10',266,0,0,0,1,0,0,0,0,0,0,0,0),(114607,'2025-10-10',265,0,0,0,1,0,0,0,0,0,0,0,0),(114606,'2025-10-10',264,0,0,0,1,0,0,0,0,0,0,0,0),(114605,'2025-10-10',263,0,0,0,1,0,0,0,0,0,0,0,0),(114604,'2025-10-10',262,0,0,0,1,0,0,0,0,0,0,0,0),(114603,'2025-10-10',261,0,0,0,1,0,0,0,0,0,0,0,0),(114602,'2025-10-10',260,0,0,0,1,0,0,0,0,0,0,0,0),(114601,'2025-10-10',258,0,0,0,1,0,0,0,0,0,0,0,0),(114600,'2025-10-10',257,0,0,0,1,0,0,0,0,0,0,0,0),(114599,'2025-10-10',256,0,0,0,1,0,0,0,0,0,0,0,0),(114598,'2025-10-10',255,0,0,0,1,0,0,0,0,0,0,0,0),(114597,'2025-10-10',254,0,0,0,1,0,0,0,0,0,0,0,0),(114596,'2025-10-10',253,0,0,0,1,0,0,0,0,0,0,0,0),(114595,'2025-10-10',251,0,0,0,1,0,0,0,0,0,0,0,0),(114594,'2025-10-10',250,0,0,0,1,0,0,0,0,0,0,0,0),(114593,'2025-10-10',249,0,0,0,1,0,0,0,0,0,0,0,0),(114592,'2025-10-10',247,0,0,0,1,0,0,0,0,0,0,0,0),(114591,'2025-10-10',246,0,0,0,1,0,0,0,0,0,0,0,0),(114590,'2025-10-10',245,0,0,0,1,0,0,0,0,0,0,0,0),(114589,'2025-10-10',243,0,0,0,1,0,0,0,0,0,0,0,0),(114588,'2025-10-10',242,0,0,0,1,0,0,0,0,0,0,0,0),(114587,'2025-10-10',241,0,0,0,1,0,0,0,0,0,0,0,0),(114586,'2025-10-10',239,0,0,0,1,0,0,0,0,0,0,0,0),(114585,'2025-10-10',238,0,0,0,1,0,0,0,0,0,0,0,0),(114584,'2025-10-10',236,0,0,0,1,0,0,0,0,0,0,0,0),(114583,'2025-10-10',234,0,0,0,1,0,0,0,0,0,0,0,0),(114582,'2025-10-10',233,0,0,0,1,0,0,0,0,0,0,0,0),(114581,'2025-10-10',232,0,0,0,1,0,0,0,0,0,0,0,0),(114580,'2025-10-10',231,0,0,0,1,0,0,0,0,0,0,0,0),(114579,'2025-10-10',228,0,0,0,1,0,0,0,0,0,0,0,0),(114578,'2025-10-10',227,0,0,0,1,0,0,0,0,0,0,0,0),(114577,'2025-10-10',226,0,0,0,1,0,0,0,0,0,0,0,0),(114576,'2025-10-10',225,0,0,0,1,0,0,0,0,0,0,0,0),(114575,'2025-10-10',224,0,0,0,1,0,0,0,0,0,0,0,0),(114574,'2025-10-10',222,0,0,0,1,0,0,0,0,0,0,0,0),(114573,'2025-10-10',221,0,0,0,1,0,0,0,0,0,0,0,0),(114572,'2025-10-10',220,0,0,0,1,0,0,0,0,0,0,0,0),(114571,'2025-10-10',217,0,0,0,1,0,0,0,0,0,0,0,0),(114570,'2025-10-10',214,0,0,0,1,0,0,0,0,0,0,0,0),(114569,'2025-10-10',213,0,0,0,1,0,0,0,0,0,0,0,0),(114568,'2025-10-10',212,0,0,0,1,0,0,0,0,0,0,0,0),(114567,'2025-10-10',211,0,0,0,1,0,0,0,0,0,0,0,0),(114566,'2025-10-10',210,0,0,0,1,0,0,0,0,0,0,0,0),(114565,'2025-10-10',209,0,0,0,1,0,0,0,0,0,0,0,0),(114564,'2025-10-10',208,0,0,0,1,0,0,0,0,0,0,0,0),(114563,'2025-10-10',207,0,0,0,1,0,0,0,0,0,0,0,0),(114562,'2025-10-10',206,0,0,0,1,0,0,0,0,0,0,0,0),(114561,'2025-10-10',205,0,0,0,1,0,0,0,0,0,0,0,0),(114560,'2025-10-10',204,0,0,0,1,0,0,0,0,0,0,0,0),(114559,'2025-10-10',203,0,0,0,1,0,0,0,0,0,0,0,0),(114558,'2025-10-10',201,0,0,0,1,0,0,0,0,0,0,0,0),(114557,'2025-10-10',200,0,0,0,1,0,0,0,0,0,0,0,0),(114556,'2025-10-10',197,0,0,0,1,0,0,0,0,0,0,0,0),(114555,'2025-10-10',196,0,0,0,1,0,0,0,0,0,0,0,0),(114554,'2025-10-10',195,0,0,0,1,0,0,0,0,0,0,0,0),(114553,'2025-10-10',194,0,0,0,1,0,0,0,0,0,0,0,0),(114552,'2025-10-10',193,0,0,0,1,0,0,0,0,0,0,0,0),(114551,'2025-10-10',192,0,0,0,1,0,0,0,0,0,0,0,0),(114550,'2025-10-10',191,0,0,0,1,0,0,0,0,0,0,0,0),(114549,'2025-10-10',190,0,0,0,1,0,0,0,0,0,0,0,0),(114548,'2025-10-10',189,0,0,0,1,0,0,0,0,0,0,0,0),(114547,'2025-10-10',188,0,0,0,1,0,0,0,0,0,0,0,0),(114546,'2025-10-10',187,0,0,0,1,0,0,0,0,0,0,0,0),(114545,'2025-10-10',186,0,0,0,1,0,0,0,0,0,0,0,0),(114544,'2025-10-10',185,0,0,0,1,0,0,0,0,0,0,0,0),(114543,'2025-10-10',184,0,0,0,1,0,0,0,0,0,0,0,0),(114542,'2025-10-10',183,0,0,0,1,0,0,0,0,0,0,0,0),(114541,'2025-10-10',182,0,0,0,1,0,0,0,0,0,0,0,0),(114540,'2025-10-10',181,0,0,0,1,0,0,0,0,0,0,0,0),(114539,'2025-10-10',180,0,0,0,1,0,0,0,0,0,0,0,0),(114538,'2025-10-10',179,0,0,0,1,0,0,0,0,0,0,0,0),(114537,'2025-10-10',176,0,0,0,1,0,0,0,0,0,0,0,0),(114536,'2025-10-10',175,0,0,0,1,0,0,0,0,0,0,0,0),(114535,'2025-10-10',174,0,0,0,1,0,0,0,0,0,0,0,0),(114534,'2025-10-10',173,0,0,0,1,0,0,0,0,0,0,0,0),(114533,'2025-10-10',172,0,0,0,1,0,0,0,0,0,0,0,0),(114532,'2025-10-10',170,0,0,0,1,0,0,0,0,0,0,0,0),(114531,'2025-10-10',168,0,0,0,1,0,0,0,0,0,0,0,0),(114530,'2025-10-10',167,0,0,0,1,0,0,0,0,0,0,0,0),(114529,'2025-10-10',166,0,0,0,1,0,0,0,0,0,0,0,0),(114528,'2025-10-10',164,0,0,0,1,0,0,0,0,0,0,0,0),(114527,'2025-10-10',163,0,0,0,1,0,0,0,0,0,0,0,0),(114526,'2025-10-10',161,0,0,0,1,0,0,0,0,0,0,0,0),(114525,'2025-10-10',160,0,0,0,1,0,0,0,0,0,0,0,0),(114524,'2025-10-10',159,0,0,0,1,0,0,0,0,0,0,0,0),(114523,'2025-10-10',158,0,0,0,1,0,0,0,0,0,0,0,0),(114522,'2025-10-10',157,0,0,0,1,0,0,0,0,0,0,0,0),(114521,'2025-10-10',154,0,0,0,1,0,0,0,0,0,0,0,0),(114520,'2025-10-10',152,0,0,0,1,0,0,0,0,0,0,0,0),(114519,'2025-10-10',151,0,0,0,1,0,0,0,0,0,0,0,0),(114518,'2025-10-10',148,0,0,0,1,0,0,0,0,0,0,0,0),(114517,'2025-10-10',147,0,0,0,1,0,0,0,0,0,0,0,0),(114516,'2025-10-10',146,0,0,0,1,0,0,0,0,0,0,0,0),(114515,'2025-10-10',145,0,0,0,1,0,0,0,0,0,0,0,0),(114514,'2025-10-10',144,0,0,0,1,0,0,0,0,0,0,0,0),(114513,'2025-10-10',143,0,0,0,1,0,0,0,0,0,0,0,0),(114512,'2025-10-10',141,0,0,0,1,0,0,0,0,0,0,0,0),(114511,'2025-10-10',140,0,0,0,1,0,0,0,0,0,0,0,0),(114510,'2025-10-10',136,0,0,0,1,0,0,0,0,0,0,0,0),(114509,'2025-10-10',132,0,0,0,1,0,0,0,0,0,0,0,0),(114508,'2025-10-10',128,0,0,0,1,0,0,0,0,0,0,0,0),(114507,'2025-10-10',127,0,0,0,1,0,0,0,0,0,0,0,0),(114506,'2025-10-10',126,0,0,0,1,0,0,0,0,0,0,0,0),(114505,'2025-10-10',124,0,0,0,1,0,0,0,0,0,0,0,0),(114504,'2025-10-10',123,0,0,0,1,0,0,2,0,0,0,0,0),(114503,'2025-10-10',121,0,0,0,1,0,0,0,0,0,0,0,0),(114502,'2025-10-10',115,0,0,0,1,0,0,0,0,0,0,0,0),(114501,'2025-10-10',114,0,0,0,1,0,0,0,0,0,0,0,0),(114500,'2025-10-10',113,0,0,0,1,0,0,0,0,0,0,0,0),(114499,'2025-10-10',112,0,0,0,1,0,0,0,0,0,0,0,0),(114498,'2025-10-10',110,0,0,0,1,0,0,0,0,0,0,0,0),(114497,'2025-10-10',103,0,0,0,1,0,0,0,0,0,0,0,0),(114496,'2025-10-10',98,0,0,0,1,0,0,0,0,0,0,0,0),(114495,'2025-10-10',97,0,0,0,1,0,0,0,0,0,0,0,0),(114494,'2025-10-10',96,0,0,0,1,0,0,0,0,0,0,0,0),(114493,'2025-10-10',94,0,0,0,1,0,0,0,0,0,0,0,0),(114492,'2025-10-10',91,0,0,1,0,0,0,0,0,0,0,0,0),(114491,'2025-10-10',90,0,0,0,1,0,0,0,0,0,0,0,0),(114490,'2025-10-10',87,0,0,0,1,0,0,0,0,0,0,0,0),(114489,'2025-10-10',79,0,0,0,1,0,0,0,0,0,0,0,0),(114488,'2025-10-10',70,0,0,0,1,0,0,0,0,0,0,0,0),(114487,'2025-10-10',69,0,0,0,1,0,0,0,0,0,0,0,0),(114486,'2025-10-10',68,0,0,0,1,0,0,0,0,0,0,0,0),(114485,'2025-10-10',67,0,0,0,1,0,0,0,0,0,0,0,0),(114484,'2025-10-10',66,0,0,0,1,0,0,0,0,0,0,0,0),(114483,'2025-10-10',65,0,0,0,1,0,0,0,0,0,0,0,0),(114482,'2025-10-10',64,0,0,0,1,0,0,0,0,0,0,0,0),(114481,'2025-10-10',63,0,0,0,1,0,0,0,0,0,0,0,0),(114480,'2025-10-10',61,0,0,0,1,0,0,0,0,0,0,0,0),(114479,'2025-10-10',58,0,0,0,1,0,0,0,0,0,0,0,0),(114478,'2025-10-10',54,0,0,0,1,0,0,0,0,0,0,0,0),(114467,'2025-10-09',388,1,0,1,0,0,0,0,0,0,0,0,0),(114466,'2025-10-09',298,0,0,0,0,0,1,0,0,0,0,0,0),(114465,'2025-10-09',210,0,0,0,1,0,0,0,0,0,0,0,0),(114464,'2025-10-09',51,0,0,0,0,1,0,0,0,0,0,0,0),(114463,'2025-10-09',45,0,0,0,0,1,0,0,0,0,0,0,0),(114462,'2025-10-09',5,0,0,0,0,0,1,0,0,0,0,0,0),(114477,'2025-10-10',52,0,0,0,1,0,0,0,0,0,0,0,0),(114476,'2025-10-10',49,0,0,0,0,0,0,2,0,0,0,0,0),(114475,'2025-10-10',42,0,0,0,1,0,0,0,0,0,0,0,0),(114474,'2025-10-10',37,0,0,0,1,0,0,0,0,0,0,0,0),(114473,'2025-10-10',32,0,0,0,1,0,0,0,0,0,0,0,0),(114472,'2025-10-10',24,0,0,0,1,0,0,0,0,0,0,0,0),(114471,'2025-10-10',22,0,0,0,0,0,0,1,0,0,0,0,0),(114470,'2025-10-10',19,0,0,0,1,0,0,0,0,0,0,0,0),(114469,'2025-10-10',13,0,0,0,1,0,0,0,0,0,0,0,0),(114468,'2025-10-10',10,0,0,0,1,0,0,0,0,0,0,0,0),(114990,'2025-10-15',412,0,0,0,1,0,0,0,0,0,0,0,0),(114989,'2025-10-15',410,0,0,0,1,0,0,0,0,0,0,0,0),(114988,'2025-10-15',408,0,0,0,1,0,0,0,0,0,0,0,0),(114987,'2025-10-15',407,0,0,0,1,0,0,0,0,0,0,0,0),(114986,'2025-10-15',405,0,0,0,1,0,0,0,0,0,0,0,0),(114985,'2025-10-15',403,0,0,0,1,0,0,0,0,0,0,0,0),(114984,'2025-10-15',401,0,0,0,1,0,0,0,0,0,0,0,0),(114983,'2025-10-15',400,0,0,0,1,0,0,0,0,0,0,0,0),(114982,'2025-10-15',396,0,0,0,1,0,0,0,0,0,0,0,0),(114981,'2025-10-15',395,0,0,0,1,0,0,0,0,0,0,0,0),(114980,'2025-10-15',393,0,0,0,1,0,0,0,0,0,0,0,0),(114979,'2025-10-15',392,0,0,0,1,0,0,0,0,0,0,0,0),(114978,'2025-10-15',391,0,0,0,1,0,0,0,0,0,0,0,0),(114977,'2025-10-15',390,0,0,0,1,0,0,0,0,0,0,0,0),(114976,'2025-10-15',388,0,0,0,1,0,0,0,0,0,0,0,0),(114975,'2025-10-15',387,0,0,0,1,0,0,0,0,0,0,0,0),(114974,'2025-10-15',385,0,0,0,1,0,0,0,0,0,0,0,0),(114973,'2025-10-15',384,0,0,0,1,0,0,0,0,0,0,0,0),(114972,'2025-10-15',382,0,0,0,1,0,0,0,0,0,0,0,0),(114971,'2025-10-15',381,0,0,0,1,0,0,0,0,0,0,0,0),(114970,'2025-10-15',378,0,0,0,1,0,0,0,0,0,0,0,0),(114969,'2025-10-15',377,0,0,0,1,0,0,0,0,0,0,0,0),(114968,'2025-10-15',376,0,0,0,1,0,0,0,0,0,0,0,0),(114967,'2025-10-15',375,0,0,0,1,0,0,0,0,0,0,0,0),(114966,'2025-10-15',372,0,0,0,1,0,0,0,0,0,0,0,0),(114965,'2025-10-15',371,0,0,0,1,0,0,0,0,0,0,0,0),(114964,'2025-10-15',367,0,0,0,1,0,0,0,0,0,0,0,0),(114963,'2025-10-15',365,0,0,0,1,0,0,0,0,0,0,0,0),(114962,'2025-10-15',364,0,0,0,1,0,0,0,0,0,0,0,0),(114961,'2025-10-15',363,0,0,0,1,0,0,0,0,0,0,0,0),(114960,'2025-10-15',361,0,0,0,1,0,0,0,0,0,0,0,0),(114959,'2025-10-15',360,0,0,0,1,0,0,0,0,0,0,0,0),(114958,'2025-10-15',359,0,0,0,1,0,0,0,0,0,0,0,0),(114957,'2025-10-15',357,0,0,0,1,0,0,0,0,0,0,0,0),(114956,'2025-10-15',353,0,0,0,1,0,0,0,0,0,0,0,0),(114955,'2025-10-15',352,0,0,0,1,0,0,0,0,0,0,0,0),(114954,'2025-10-15',351,0,0,0,1,0,0,0,0,0,0,0,0),(114953,'2025-10-15',348,0,0,0,1,0,0,0,0,0,0,0,0),(114952,'2025-10-15',347,0,0,0,1,0,0,0,0,0,0,0,0),(114951,'2025-10-15',346,0,0,0,1,0,0,0,0,0,0,0,0),(114950,'2025-10-15',345,0,0,0,1,0,0,0,0,0,0,0,0),(114949,'2025-10-15',344,0,0,0,1,0,0,0,0,0,0,0,0),(114948,'2025-10-15',341,0,0,0,1,0,0,0,0,0,0,0,0),(114947,'2025-10-15',340,0,0,0,1,0,0,0,0,0,0,0,0),(114946,'2025-10-15',339,0,0,0,1,0,0,0,0,0,0,0,0),(114945,'2025-10-15',338,0,0,0,1,0,0,0,0,0,0,0,0),(114944,'2025-10-15',337,0,0,0,1,0,0,0,0,0,0,0,0),(114943,'2025-10-15',336,0,0,0,1,0,0,0,0,0,0,0,0),(114942,'2025-10-15',335,0,0,0,1,0,0,0,0,0,0,0,0),(114941,'2025-10-15',334,0,0,0,1,0,0,0,0,0,0,0,0),(114940,'2025-10-15',333,0,0,0,1,0,0,0,0,0,0,0,0),(114939,'2025-10-15',332,0,0,0,1,0,0,0,0,0,0,0,0),(114938,'2025-10-15',331,0,0,0,1,0,0,0,0,0,0,0,0),(114937,'2025-10-15',330,0,0,0,1,0,0,0,0,0,0,0,0),(114936,'2025-10-15',329,0,0,0,1,0,0,0,0,0,0,0,0),(114935,'2025-10-15',328,0,0,0,1,0,0,0,0,0,0,0,0),(114934,'2025-10-15',327,0,0,0,1,0,0,0,0,0,0,0,0),(114933,'2025-10-15',326,0,0,0,1,0,0,0,0,0,0,0,0),(114932,'2025-10-15',324,0,0,0,1,0,0,0,0,0,0,0,0),(114931,'2025-10-15',323,0,0,0,1,0,0,0,0,0,0,0,0),(114930,'2025-10-15',321,0,0,0,1,0,0,0,0,0,0,0,0),(114929,'2025-10-15',320,0,0,0,1,0,0,0,0,0,0,0,0),(114928,'2025-10-15',319,0,0,0,1,0,0,0,0,0,0,0,0),(114927,'2025-10-15',317,0,0,0,1,0,0,0,0,0,0,0,0),(114926,'2025-10-15',316,0,0,0,1,0,0,0,0,0,0,0,0),(114925,'2025-10-15',314,0,0,0,1,0,0,0,0,0,0,0,0),(114924,'2025-10-15',313,0,0,0,1,0,0,0,0,0,0,0,0),(114923,'2025-10-15',310,0,0,0,1,0,0,0,0,0,0,0,0),(114922,'2025-10-15',309,0,0,0,1,0,0,0,0,0,0,0,0),(114921,'2025-10-15',308,0,0,0,1,0,0,0,0,0,0,0,0),(114920,'2025-10-15',307,0,0,0,1,0,0,0,0,0,0,0,0),(114919,'2025-10-15',304,0,0,0,1,0,0,0,0,0,0,0,0),(114918,'2025-10-15',303,0,0,0,1,0,0,0,0,0,0,0,0),(114917,'2025-10-15',302,0,0,0,1,0,0,0,0,0,0,0,0),(114916,'2025-10-15',301,0,0,0,1,1,0,0,0,0,0,0,0),(114915,'2025-10-15',300,0,0,0,1,0,0,0,0,0,0,0,0),(114914,'2025-10-15',299,0,0,0,1,0,0,0,0,0,0,0,0),(114913,'2025-10-15',298,0,0,0,1,0,0,0,0,0,0,0,0),(114912,'2025-10-15',296,0,0,0,1,0,0,0,0,0,0,0,0),(114911,'2025-10-15',295,0,0,0,1,0,0,0,0,0,0,0,0),(114910,'2025-10-15',294,0,0,0,1,0,0,0,0,0,0,0,0),(114909,'2025-10-15',292,0,0,0,1,0,0,0,0,0,0,0,0),(114908,'2025-10-15',291,0,0,0,1,0,0,0,0,0,0,0,0),(114907,'2025-10-15',290,0,0,0,1,0,0,0,0,0,0,0,0),(114906,'2025-10-15',289,0,0,0,1,0,0,0,0,0,0,0,0),(114905,'2025-10-15',288,0,0,0,1,0,0,0,0,0,0,0,0),(114904,'2025-10-15',285,0,0,0,1,0,0,0,0,0,0,0,0),(114903,'2025-10-15',281,0,0,0,1,0,0,0,0,0,0,0,0),(114902,'2025-10-15',280,0,0,0,1,0,0,0,0,0,0,0,0),(114901,'2025-10-15',278,0,0,0,1,0,0,0,0,0,0,0,0),(114900,'2025-10-15',275,0,0,0,1,0,0,0,0,0,0,0,0),(114899,'2025-10-15',274,0,0,0,1,0,0,0,0,0,0,0,0),(114898,'2025-10-15',273,0,0,0,1,0,0,0,0,0,0,0,0),(114897,'2025-10-15',271,0,0,0,1,0,0,0,0,0,0,0,0),(114896,'2025-10-15',269,0,0,0,1,0,0,0,0,0,0,0,0),(114895,'2025-10-15',268,0,0,0,1,0,0,0,0,0,0,0,0),(114894,'2025-10-15',266,0,0,0,1,0,0,0,0,0,0,0,0),(114893,'2025-10-15',265,0,0,0,1,0,0,0,0,0,0,0,0),(114892,'2025-10-15',264,0,0,0,1,0,0,0,0,0,0,0,0),(114891,'2025-10-15',263,0,0,0,1,0,0,0,0,0,0,0,0),(114890,'2025-10-15',262,0,0,0,1,0,0,0,0,0,0,0,0),(114889,'2025-10-15',261,0,0,0,1,0,0,0,0,0,0,0,0),(114888,'2025-10-15',260,0,0,0,1,0,0,0,0,0,0,0,0),(114887,'2025-10-15',258,0,0,0,1,0,0,0,0,0,0,0,0),(114886,'2025-10-15',257,0,0,0,1,0,0,0,0,0,0,0,0),(114885,'2025-10-15',256,0,0,0,1,0,0,0,0,0,0,0,0),(114884,'2025-10-15',255,0,0,0,1,0,0,0,0,0,0,0,0),(114883,'2025-10-15',254,0,0,0,1,0,0,0,0,0,0,0,0),(114882,'2025-10-15',253,0,0,0,1,0,0,0,0,0,0,0,0),(114881,'2025-10-15',251,0,0,0,1,0,0,0,0,0,0,0,0),(114880,'2025-10-15',250,0,0,0,1,0,0,0,0,0,0,0,0),(114879,'2025-10-15',249,0,0,0,1,0,0,0,0,0,0,0,0),(114878,'2025-10-15',247,0,0,0,1,0,0,0,0,0,0,0,0),(114877,'2025-10-15',246,0,0,0,1,0,0,0,0,0,0,0,0),(114876,'2025-10-15',245,0,0,0,1,0,0,0,0,0,0,0,0),(114875,'2025-10-15',243,0,0,0,1,0,0,0,0,0,0,0,0),(114874,'2025-10-15',242,0,0,0,1,0,0,0,0,0,0,0,0),(114873,'2025-10-15',241,0,0,0,1,0,0,0,0,0,0,0,0),(114872,'2025-10-15',239,0,0,0,1,0,0,0,0,0,0,0,0),(114871,'2025-10-15',238,0,0,0,1,0,0,0,0,0,0,0,0),(114870,'2025-10-15',236,0,0,0,1,0,0,0,0,0,0,0,0),(114869,'2025-10-15',234,0,0,0,1,0,0,0,0,0,0,0,0),(114868,'2025-10-15',233,0,0,0,1,0,0,0,0,0,0,0,0),(114867,'2025-10-15',232,0,0,0,1,0,0,0,0,0,0,0,0),(114866,'2025-10-15',231,0,0,0,1,0,0,0,0,0,0,0,0),(114865,'2025-10-15',228,0,0,0,1,0,0,0,0,0,0,0,0),(114864,'2025-10-15',227,0,0,0,1,0,0,0,0,0,0,0,0),(114863,'2025-10-15',226,0,0,0,1,0,0,0,0,0,0,0,0),(114862,'2025-10-15',225,0,0,0,1,0,0,0,0,0,0,0,0),(114861,'2025-10-15',224,0,0,0,1,0,0,0,0,0,0,0,0),(114860,'2025-10-15',222,0,0,0,1,0,0,0,0,0,0,0,0),(114859,'2025-10-15',221,0,0,0,1,0,0,0,0,0,0,0,0),(114858,'2025-10-15',220,0,0,0,1,0,0,0,0,0,0,0,0),(114857,'2025-10-15',217,0,0,0,1,0,0,0,0,0,0,0,0),(114856,'2025-10-15',214,0,0,0,1,0,0,0,0,0,0,0,0),(114855,'2025-10-15',213,0,0,0,1,0,0,0,0,0,0,0,0),(114854,'2025-10-15',212,0,0,0,1,0,0,0,0,0,0,0,0),(114853,'2025-10-15',211,0,0,0,1,0,0,0,0,0,0,0,0),(114852,'2025-10-15',210,0,0,0,1,0,0,0,0,0,0,0,0),(114851,'2025-10-15',209,0,0,0,1,0,0,0,0,0,0,0,0),(114850,'2025-10-15',208,0,0,0,1,0,0,0,0,0,0,0,0),(114849,'2025-10-15',207,0,0,0,1,0,0,0,0,0,0,0,0),(114848,'2025-10-15',206,0,0,0,1,0,0,0,0,0,0,0,0),(114847,'2025-10-15',205,0,0,0,1,0,0,0,0,0,0,0,0),(114846,'2025-10-15',204,0,0,0,1,0,0,0,0,0,0,0,0),(114845,'2025-10-15',203,0,0,0,1,0,0,0,0,0,0,0,0),(114844,'2025-10-15',201,0,0,0,1,0,0,0,0,0,0,0,0),(114843,'2025-10-15',200,0,0,0,1,0,0,0,0,0,0,0,0),(114842,'2025-10-15',197,0,0,0,1,0,0,0,0,0,0,0,0),(114841,'2025-10-15',196,0,0,0,1,0,0,0,0,0,0,0,0),(114840,'2025-10-15',195,0,0,0,1,0,0,0,0,0,0,0,0),(114839,'2025-10-15',194,0,0,0,1,0,0,0,0,0,0,0,0),(114838,'2025-10-15',193,0,0,0,1,0,0,0,0,0,0,0,0),(114837,'2025-10-15',192,0,0,0,1,0,0,0,0,0,0,0,0),(114836,'2025-10-15',191,0,0,0,1,0,0,0,0,0,0,0,0),(114835,'2025-10-15',190,0,0,0,1,0,0,0,0,0,0,0,0),(114834,'2025-10-15',189,0,0,0,1,0,0,0,0,0,0,0,0),(114833,'2025-10-15',188,0,0,0,1,0,0,0,0,0,0,0,0),(114832,'2025-10-15',187,0,0,0,1,0,0,0,0,0,0,0,0),(114831,'2025-10-15',186,0,0,0,1,0,0,0,0,0,0,0,0),(114830,'2025-10-15',185,0,0,0,1,0,0,0,0,0,0,0,0),(114829,'2025-10-15',184,0,0,0,1,0,0,0,0,0,0,0,0),(114828,'2025-10-15',183,0,0,0,1,0,0,0,0,0,0,0,0),(114827,'2025-10-15',182,0,0,0,1,0,0,0,0,0,0,0,0),(114826,'2025-10-15',181,0,0,0,1,0,0,0,0,0,0,0,0),(114825,'2025-10-15',180,0,0,0,1,0,0,0,0,0,0,0,0),(114824,'2025-10-15',179,0,0,0,1,0,0,0,0,0,0,0,0),(114823,'2025-10-15',176,0,0,0,1,1,0,0,0,0,0,0,0),(114822,'2025-10-15',175,0,0,0,1,0,0,0,0,0,0,0,0),(114821,'2025-10-15',174,0,0,0,1,0,0,0,0,0,0,0,0),(114820,'2025-10-15',173,0,0,0,1,0,0,0,0,0,0,0,0),(114819,'2025-10-15',172,0,0,0,1,0,0,0,0,0,0,0,0),(114818,'2025-10-15',170,0,0,0,1,0,0,0,0,0,0,0,0),(114817,'2025-10-15',168,0,0,0,1,0,0,0,0,0,0,0,0),(114816,'2025-10-15',167,0,0,0,1,0,0,0,0,0,0,0,0),(114815,'2025-10-15',166,0,0,0,1,0,0,0,0,0,0,0,0),(114814,'2025-10-15',164,0,0,0,1,0,0,0,0,0,0,0,0),(114813,'2025-10-15',163,0,0,0,1,0,0,0,0,0,0,0,0),(114812,'2025-10-15',161,0,0,0,1,0,0,0,0,0,0,0,0),(114811,'2025-10-15',160,0,0,0,1,0,0,0,0,0,0,0,0),(114810,'2025-10-15',159,0,0,0,1,0,0,0,0,0,0,0,0),(114809,'2025-10-15',158,0,0,0,1,0,0,0,0,0,0,0,0),(114808,'2025-10-15',157,0,0,0,1,0,0,0,0,0,0,0,0),(114807,'2025-10-15',154,0,0,0,1,0,0,0,0,0,0,0,0),(114806,'2025-10-15',152,0,0,0,1,0,0,0,0,0,0,0,0),(114805,'2025-10-15',151,0,0,0,1,0,0,0,0,0,0,0,0),(114804,'2025-10-15',148,0,0,0,1,0,0,0,0,0,0,0,0),(114803,'2025-10-15',147,0,0,0,1,0,0,0,0,0,0,0,0),(114802,'2025-10-15',146,0,0,0,1,0,0,0,0,0,0,0,0),(114801,'2025-10-15',145,1,0,0,1,0,0,0,0,0,0,0,0),(114800,'2025-10-15',144,0,0,0,1,0,0,0,0,0,0,0,0),(114799,'2025-10-15',143,0,0,0,1,0,0,0,0,0,0,0,0),(114798,'2025-10-15',141,0,0,0,1,0,0,0,0,0,0,0,0),(114797,'2025-10-15',140,0,0,0,1,0,0,0,0,0,0,0,0),(114796,'2025-10-15',137,0,0,0,0,0,1,0,0,0,0,0,0),(114795,'2025-10-15',136,0,0,0,1,0,0,0,0,0,0,0,0),(114794,'2025-10-15',132,0,0,0,1,0,0,0,0,0,0,0,0),(114793,'2025-10-15',128,0,0,0,1,0,0,0,0,0,0,0,0),(114792,'2025-10-15',127,0,0,0,1,0,0,0,0,0,0,0,0),(114791,'2025-10-15',126,0,0,0,1,0,0,0,0,0,0,0,0),(114790,'2025-10-15',124,0,0,0,1,0,0,0,0,0,0,0,0),(114789,'2025-10-15',123,0,0,0,1,0,0,0,0,0,0,0,0),(114788,'2025-10-15',121,0,0,0,1,0,0,0,0,0,0,0,0),(114787,'2025-10-15',115,0,0,0,1,0,0,0,0,0,0,0,0),(114786,'2025-10-15',114,0,0,0,1,0,0,0,0,0,0,0,0),(114785,'2025-10-15',113,0,0,0,1,0,0,0,0,0,0,0,0),(114784,'2025-10-15',112,0,0,0,1,0,0,0,0,0,0,0,0),(114783,'2025-10-15',110,0,0,0,1,0,0,0,0,0,0,0,0),(114782,'2025-10-15',103,0,0,0,1,0,0,0,0,0,0,0,0),(114781,'2025-10-15',98,0,0,0,1,0,0,0,0,0,0,0,0),(114780,'2025-10-15',97,0,0,0,1,0,0,0,0,0,0,0,0),(114779,'2025-10-15',96,0,0,0,1,0,0,0,0,0,0,0,0),(114778,'2025-10-15',94,0,0,0,1,0,0,0,0,0,0,0,0),(114777,'2025-10-15',91,0,0,1,0,0,0,0,0,0,0,0,0),(114776,'2025-10-15',90,0,0,0,1,0,0,0,0,0,0,0,0),(114753,'2025-10-13',388,0,0,1,0,0,0,0,0,0,0,0,0),(114752,'2025-10-13',163,0,0,0,1,0,0,0,0,0,0,0,0),(114775,'2025-10-15',87,0,0,0,1,0,0,0,0,0,0,0,0),(114774,'2025-10-15',79,0,0,0,1,0,0,0,0,0,0,0,0),(114773,'2025-10-15',70,0,0,0,1,0,0,0,0,0,0,0,0),(114772,'2025-10-15',69,0,0,0,1,0,0,0,0,0,0,0,0),(114771,'2025-10-15',68,0,0,0,1,0,0,0,0,0,0,0,0),(114770,'2025-10-15',67,0,0,0,1,0,0,0,0,0,0,0,0),(114769,'2025-10-15',66,0,0,0,1,0,0,0,0,0,0,0,0),(114768,'2025-10-15',65,0,0,0,1,0,0,0,0,0,0,0,0),(114767,'2025-10-15',64,0,0,0,1,0,0,0,0,0,0,0,0),(114766,'2025-10-15',63,0,0,0,1,0,0,0,0,0,0,0,0),(114765,'2025-10-15',61,0,0,0,1,0,0,0,0,0,0,0,0),(114764,'2025-10-15',58,0,0,0,1,0,0,0,0,0,0,0,0),(114763,'2025-10-15',54,0,0,0,1,0,0,0,0,0,0,0,0),(114762,'2025-10-15',52,0,0,0,1,0,0,0,0,0,0,0,0),(114761,'2025-10-15',42,0,0,0,1,0,0,0,0,0,0,0,0),(114760,'2025-10-15',37,0,0,0,1,0,0,0,0,0,0,0,0),(114759,'2025-10-15',32,0,0,0,1,0,0,0,0,0,0,0,0),(114758,'2025-10-15',24,0,0,0,1,0,0,0,0,0,0,0,0),(114757,'2025-10-15',19,0,0,0,1,0,0,0,0,0,0,0,0),(114756,'2025-10-15',18,0,0,0,0,0,1,0,0,0,0,0,0),(114755,'2025-10-15',13,0,0,0,1,0,0,0,0,0,0,0,0),(114754,'2025-10-15',10,0,0,0,1,0,0,0,0,0,0,0,0),(115306,'2025-10-23',27,0,0,0,0,1,0,0,0,0,0,0,0),(115305,'2025-10-23',23,0,0,0,0,0,1,0,0,0,0,0,0),(115304,'2025-10-23',17,0,0,0,0,1,0,0,0,0,0,0,0),(115303,'2025-10-23',2,0,0,0,0,0,0,1,0,0,0,0,0),(115302,'2025-10-23',1,0,0,0,0,0,1,0,0,0,0,0,0),(115301,'2025-10-22',428,0,0,0,0,1,0,0,0,0,0,0,0),(115300,'2025-10-22',304,0,0,0,0,1,0,0,0,0,0,0,0),(115299,'2025-10-22',300,1,0,0,0,0,0,0,0,0,0,0,0),(115298,'2025-10-22',256,0,0,0,0,0,1,0,0,0,0,0,0),(115297,'2025-10-22',141,0,0,0,0,1,0,0,0,0,0,0,0),(115296,'2025-10-22',139,0,0,0,0,0,1,0,0,0,0,0,0),(115295,'2025-10-22',20,0,0,0,0,0,1,0,0,0,0,0,0),(115270,'2025-10-19',448,0,0,0,1,0,0,0,0,0,0,0,0),(115269,'2025-10-19',446,0,0,0,1,0,0,0,0,0,0,0,0),(115268,'2025-10-19',445,0,0,0,1,0,0,0,0,0,0,0,0),(115267,'2025-10-19',443,0,0,0,1,0,0,0,0,0,0,0,0),(115143,'2025-10-19',256,0,0,0,1,0,0,0,0,0,0,0,0),(115142,'2025-10-19',255,0,0,0,1,0,0,0,0,0,0,0,0),(115141,'2025-10-19',254,0,0,0,1,0,0,0,0,0,0,0,0),(115140,'2025-10-19',253,0,0,0,1,0,0,0,0,0,0,0,0),(115139,'2025-10-19',251,0,0,0,1,0,0,0,0,0,0,0,0),(115138,'2025-10-19',250,0,0,0,1,0,0,0,0,0,0,0,0),(115137,'2025-10-19',249,0,0,0,1,0,0,0,0,0,0,0,0),(115136,'2025-10-19',247,0,0,0,1,0,0,0,0,0,0,0,0),(115135,'2025-10-19',246,0,0,0,1,0,0,0,0,0,0,0,0),(115134,'2025-10-19',245,0,0,0,1,0,0,0,0,0,0,0,0),(115133,'2025-10-19',243,0,0,0,1,0,0,0,0,0,0,0,0),(115132,'2025-10-19',242,0,0,0,1,0,0,0,0,0,0,0,0),(115131,'2025-10-19',241,0,0,0,1,0,0,0,0,0,0,0,0),(115130,'2025-10-19',239,0,0,0,1,0,0,0,0,0,0,0,0),(115129,'2025-10-19',238,0,0,0,1,0,0,0,0,0,0,0,0),(115128,'2025-10-19',236,0,0,0,1,0,0,0,0,0,0,0,0),(115127,'2025-10-19',234,0,0,0,1,0,0,0,0,0,0,0,0),(115126,'2025-10-19',233,0,0,0,1,0,0,0,0,0,0,0,0),(115125,'2025-10-19',232,0,0,0,1,0,0,0,0,0,0,0,0),(115124,'2025-10-19',231,0,0,0,1,0,0,0,0,0,0,0,0),(115123,'2025-10-19',228,0,0,0,1,0,0,0,0,0,0,0,0),(115122,'2025-10-19',227,0,0,0,1,0,0,0,0,0,0,0,0),(115121,'2025-10-19',226,0,0,0,1,0,0,0,0,0,0,0,0),(115120,'2025-10-19',225,0,0,0,1,0,0,0,0,0,0,0,0),(115119,'2025-10-19',224,0,0,0,1,0,0,0,0,0,0,0,0),(115118,'2025-10-19',222,0,0,0,1,0,0,0,0,0,0,0,0),(115117,'2025-10-19',221,0,0,0,1,0,0,0,0,0,0,0,0),(115116,'2025-10-19',220,0,0,0,1,0,0,0,0,0,0,0,0),(115115,'2025-10-19',217,0,0,0,1,0,0,0,0,0,0,0,0),(115114,'2025-10-19',214,0,0,0,1,0,0,0,0,0,0,0,0),(115113,'2025-10-19',213,0,0,0,1,0,0,0,0,0,0,0,0),(115112,'2025-10-19',212,0,0,0,1,0,0,0,0,0,0,0,0),(115111,'2025-10-19',211,0,0,0,1,0,0,0,0,0,0,0,0),(115110,'2025-10-19',210,0,0,0,1,0,0,0,0,0,0,0,0),(115109,'2025-10-19',209,0,0,0,1,0,0,0,0,0,0,0,0),(115108,'2025-10-19',208,0,0,0,1,0,0,0,0,0,0,0,0),(115107,'2025-10-19',207,0,0,0,1,0,0,0,0,0,0,0,0),(115106,'2025-10-19',206,0,0,0,1,0,0,0,0,0,0,0,0),(115105,'2025-10-19',205,0,0,0,1,0,0,0,0,0,0,0,0),(115104,'2025-10-19',204,0,0,0,1,0,0,0,0,0,0,0,0),(115103,'2025-10-19',203,0,0,0,1,0,0,0,0,0,0,0,0),(115102,'2025-10-19',201,0,0,0,1,0,0,0,0,0,0,0,0),(115101,'2025-10-19',200,0,0,0,1,0,0,0,0,0,0,0,0),(115100,'2025-10-19',197,0,0,0,1,0,0,0,0,0,0,0,0),(115099,'2025-10-19',196,0,0,0,1,0,0,0,0,0,0,0,0),(115098,'2025-10-19',195,0,0,0,1,0,0,0,0,0,0,0,0),(115097,'2025-10-19',194,0,0,0,1,0,0,0,0,0,0,0,0),(115096,'2025-10-19',193,0,0,0,1,0,0,0,0,0,0,0,0),(115095,'2025-10-19',192,0,0,0,1,0,0,0,0,0,0,0,0),(115094,'2025-10-19',191,0,0,0,1,0,0,0,0,0,0,0,0),(115093,'2025-10-19',190,0,0,0,1,0,0,0,0,0,0,0,0),(115092,'2025-10-19',189,0,0,0,1,0,0,0,0,0,0,0,0),(115091,'2025-10-19',188,0,0,0,1,0,0,0,0,0,0,0,0),(115090,'2025-10-19',187,0,0,0,1,0,0,0,0,0,0,0,0),(115089,'2025-10-19',186,0,0,0,1,0,0,0,0,0,0,0,0),(115088,'2025-10-19',185,0,0,0,1,0,0,0,0,0,0,0,0),(115087,'2025-10-19',184,0,0,0,1,0,0,0,0,0,0,0,0),(115086,'2025-10-19',183,0,0,0,1,0,0,0,0,0,0,0,0),(115085,'2025-10-19',182,0,0,0,1,0,0,0,0,0,0,0,0),(115084,'2025-10-19',181,0,0,0,1,0,0,0,0,0,0,0,0),(115083,'2025-10-19',180,0,0,0,1,0,0,0,0,0,0,0,0),(115082,'2025-10-19',179,0,0,0,1,0,0,0,0,0,0,0,0),(115081,'2025-10-19',176,0,0,0,1,0,0,0,0,0,0,0,0),(115080,'2025-10-19',175,0,0,0,1,0,0,0,0,0,0,0,0),(115079,'2025-10-19',174,0,0,0,1,0,0,0,0,0,0,0,0),(115078,'2025-10-19',173,0,0,0,1,0,0,0,0,0,0,0,0),(115077,'2025-10-19',172,0,0,0,1,0,0,0,0,0,0,0,0),(115076,'2025-10-19',170,0,0,0,1,0,0,0,0,0,0,0,0),(115075,'2025-10-19',168,0,0,0,1,0,0,0,0,0,0,0,0),(115074,'2025-10-19',167,0,0,0,1,0,0,0,0,0,0,0,0),(115073,'2025-10-19',166,0,0,0,1,0,0,0,0,0,0,0,0),(115072,'2025-10-19',164,0,0,0,1,0,0,0,0,0,0,0,0),(115071,'2025-10-19',163,0,0,0,1,0,0,0,0,0,0,0,0),(115070,'2025-10-19',161,0,0,0,1,0,0,0,0,0,0,0,0),(115069,'2025-10-19',160,0,0,0,1,0,0,0,0,0,0,0,0),(115068,'2025-10-19',159,0,0,0,1,0,0,0,0,0,0,0,0),(115067,'2025-10-19',158,0,0,0,1,0,0,0,0,0,0,0,0),(115066,'2025-10-19',157,0,0,0,1,0,0,0,0,0,0,0,0),(115065,'2025-10-19',154,0,0,0,1,0,0,0,0,0,0,0,0),(115064,'2025-10-19',152,0,0,0,1,0,0,0,0,0,0,0,0),(115063,'2025-10-19',151,0,0,0,1,0,0,0,0,0,0,0,0),(115062,'2025-10-19',148,0,0,0,1,0,0,0,0,0,0,0,0),(115061,'2025-10-19',147,0,0,0,1,0,0,0,0,0,0,0,0),(115060,'2025-10-19',146,0,0,0,1,0,0,0,0,0,0,0,0),(115059,'2025-10-19',145,0,0,0,1,0,0,0,0,0,0,0,0),(115058,'2025-10-19',144,0,0,0,1,0,0,0,0,0,0,0,0),(115057,'2025-10-19',143,0,0,0,1,0,0,0,0,0,0,0,0),(115056,'2025-10-19',141,0,0,0,1,0,0,0,0,0,0,0,0),(115055,'2025-10-19',140,0,0,0,1,0,0,0,0,0,0,0,0),(115054,'2025-10-19',136,0,0,0,1,0,0,0,0,0,0,0,0),(115053,'2025-10-19',132,0,0,0,1,0,0,0,0,0,0,0,0),(115052,'2025-10-19',128,0,0,0,1,0,0,0,0,0,0,0,0),(115051,'2025-10-19',127,0,0,0,1,0,0,0,0,0,0,0,0),(115050,'2025-10-19',126,0,0,0,1,0,0,0,0,0,0,0,0),(115049,'2025-10-19',124,0,0,0,1,0,0,0,0,0,0,0,0),(115048,'2025-10-19',123,0,0,0,1,0,0,0,0,0,0,0,0),(115047,'2025-10-19',121,0,0,0,1,0,0,0,0,0,0,0,0),(115046,'2025-10-19',115,0,0,0,1,0,0,0,0,0,0,0,0),(115045,'2025-10-19',114,0,0,0,1,0,0,0,0,0,0,0,0),(115044,'2025-10-19',113,0,0,0,1,0,0,0,0,0,0,0,0),(115043,'2025-10-19',112,0,0,0,1,0,0,0,0,0,0,0,0),(115042,'2025-10-19',110,0,0,0,1,0,0,0,0,0,0,0,0),(115041,'2025-10-19',103,0,0,0,1,0,0,0,0,0,0,0,0),(115040,'2025-10-19',98,0,0,0,1,0,0,0,0,0,0,0,0),(115039,'2025-10-19',97,0,0,0,1,0,0,0,0,0,0,0,0),(115038,'2025-10-19',96,0,0,0,1,0,0,0,0,0,0,0,0),(115037,'2025-10-19',94,0,0,0,1,0,0,0,0,0,0,0,0),(115036,'2025-10-19',91,0,0,1,0,0,0,0,0,0,0,0,0),(115035,'2025-10-19',90,0,0,0,1,0,0,5,0,0,0,0,0),(115034,'2025-10-19',87,0,0,0,1,0,0,0,0,0,0,0,0),(115033,'2025-10-19',79,0,0,0,1,0,0,0,0,0,0,0,0),(115032,'2025-10-19',70,0,0,0,1,0,0,0,0,0,0,0,0),(115031,'2025-10-19',69,0,0,0,1,0,0,0,0,0,0,0,0),(115030,'2025-10-19',68,0,0,0,1,0,0,0,0,0,0,0,0),(115029,'2025-10-19',67,0,0,0,1,0,0,0,0,0,0,0,0),(115028,'2025-10-19',66,0,0,0,1,0,0,0,0,0,0,0,0),(115027,'2025-10-19',65,0,0,0,1,0,0,0,0,0,0,0,0),(115026,'2025-10-19',64,0,0,0,1,0,0,0,0,0,0,0,0),(115025,'2025-10-19',63,0,0,0,1,0,0,0,0,0,0,0,0),(115024,'2025-10-19',61,0,0,0,1,0,0,0,0,0,0,0,0),(115023,'2025-10-19',58,0,0,0,1,0,0,0,0,0,0,0,0),(115022,'2025-10-19',54,0,0,0,1,0,0,0,0,0,0,0,0),(115021,'2025-10-19',52,0,0,0,1,0,0,0,0,0,0,0,0),(115020,'2025-10-19',42,0,0,0,1,0,0,0,0,0,0,0,0),(115019,'2025-10-19',37,0,0,0,1,0,0,0,0,0,0,0,0),(115018,'2025-10-19',32,0,0,0,1,0,0,0,0,0,0,0,0),(115017,'2025-10-19',24,0,0,0,1,0,0,0,0,0,0,0,0),(115016,'2025-10-19',19,0,0,0,1,0,0,0,0,0,0,0,0),(115015,'2025-10-19',13,0,0,0,1,0,0,0,0,0,0,0,0),(115014,'2025-10-19',10,0,0,0,1,0,0,0,0,0,0,0,0),(115577,'2025-10-25',448,0,0,0,1,0,0,0,0,0,0,0,0),(115576,'2025-10-25',446,0,0,0,1,0,0,0,0,0,0,0,0),(115575,'2025-10-25',445,0,0,0,1,0,0,0,0,0,0,0,0),(115574,'2025-10-25',443,0,0,0,1,0,0,0,0,0,0,0,0),(115573,'2025-10-25',441,0,0,0,1,0,0,0,0,0,0,0,0),(115572,'2025-10-25',440,0,0,0,1,0,0,0,0,0,0,0,0),(115571,'2025-10-25',439,0,0,0,1,0,0,0,0,0,0,0,0),(115294,'2025-10-20',405,0,0,0,0,0,1,0,0,0,0,0,0),(115293,'2025-10-20',401,0,0,0,0,1,0,0,0,0,0,0,0),(115292,'2025-10-20',388,1,0,1,0,0,0,0,0,0,0,0,0),(115291,'2025-10-20',327,1,0,0,0,0,0,0,0,0,0,0,0),(115290,'2025-10-20',301,0,0,0,0,0,1,0,0,0,0,0,0),(115289,'2025-10-20',283,0,0,0,0,0,1,0,0,0,0,0,0),(115288,'2025-10-20',281,0,0,0,0,0,1,0,0,0,0,0,0),(115287,'2025-10-20',280,0,0,0,0,0,1,0,0,0,0,0,0),(115286,'2025-10-20',263,0,0,0,0,1,0,0,0,0,0,0,0),(115285,'2025-10-20',233,0,0,0,0,0,1,0,0,0,0,0,0),(115284,'2025-10-20',218,0,0,0,0,1,0,0,0,0,0,0,0),(115283,'2025-10-20',140,0,0,0,0,1,0,0,0,0,0,0,0),(115282,'2025-10-20',132,0,0,0,0,1,0,0,0,0,0,0,0),(115281,'2025-10-20',120,0,0,0,0,0,1,0,0,0,0,0,0),(115280,'2025-10-20',89,0,0,0,0,1,0,0,0,0,0,0,0),(115279,'2025-10-20',81,0,0,0,0,1,0,0,0,0,0,0,0),(115278,'2025-10-20',78,0,0,0,0,1,0,0,0,0,0,0,0),(115277,'2025-10-20',67,0,0,0,0,0,1,0,0,0,0,0,0),(115276,'2025-10-20',54,2,0,0,1,0,0,0,0,0,0,0,0),(115275,'2025-10-20',37,1,0,0,0,0,0,0,0,0,0,0,0),(115274,'2025-10-20',35,0,0,0,0,1,0,0,0,0,0,0,0),(115273,'2025-10-20',34,0,0,0,0,0,1,0,0,0,0,0,0),(115272,'2025-10-20',22,0,0,0,0,1,0,0,0,0,0,0,0),(115271,'2025-10-20',9,0,0,0,0,0,1,0,0,0,0,0,0),(115599,'2025-10-26',388,1,0,1,0,0,0,0,0,0,0,0,0),(115598,'2025-10-26',327,1,0,0,0,0,0,0,0,0,0,0,0),(115597,'2025-10-26',311,0,0,0,0,1,0,0,0,0,0,0,0),(115596,'2025-10-26',300,1,0,0,0,0,0,0,0,0,0,0,0),(115595,'2025-10-26',263,0,0,0,0,0,1,0,0,0,0,0,0),(115594,'2025-10-26',161,0,0,0,0,1,0,0,0,0,0,0,0),(115593,'2025-10-26',152,0,0,0,1,0,0,0,0,0,0,0,0),(115592,'2025-10-26',151,0,0,0,0,0,1,0,0,0,0,0,0),(115591,'2025-10-26',150,0,0,0,0,0,1,0,0,0,0,0,0),(115590,'2025-10-26',141,0,0,0,0,0,1,0,0,0,0,0,0),(115589,'2025-10-26',123,0,0,0,0,0,1,0,0,0,0,0,0),(115588,'2025-10-26',109,0,0,0,0,1,0,0,0,0,0,0,0),(115587,'2025-10-26',90,0,0,0,0,0,1,0,0,0,0,0,0),(115586,'2025-10-26',77,0,0,0,0,1,0,0,0,0,0,0,0),(115585,'2025-10-26',73,0,0,0,0,1,0,0,0,0,0,0,0),(115584,'2025-10-26',64,0,0,0,0,0,1,0,0,0,0,0,0),(115583,'2025-10-26',54,0,0,0,0,1,0,0,0,0,0,0,0),(115582,'2025-10-26',22,0,0,0,0,0,1,0,0,0,0,0,0),(115581,'2025-10-26',17,0,0,0,0,0,1,0,0,0,0,0,0),(115580,'2025-10-26',5,0,0,0,0,1,0,0,0,0,0,0,0),(115579,'2025-10-26',2,0,0,0,0,1,0,0,0,0,0,0,0),(115578,'2025-10-26',1,0,0,0,0,1,0,0,0,0,0,0,0),(115496,'2025-10-25',323,0,0,0,1,0,0,0,0,0,0,0,0),(115495,'2025-10-25',322,0,0,0,0,0,1,0,0,0,0,0,0),(115494,'2025-10-25',321,0,0,0,1,0,0,0,0,0,0,0,0),(115493,'2025-10-25',320,0,0,0,1,0,0,0,0,0,0,0,0),(115492,'2025-10-25',319,0,0,0,1,0,0,0,0,0,0,0,0),(115491,'2025-10-25',317,0,0,0,1,0,0,0,0,0,0,0,0),(115490,'2025-10-25',316,0,0,0,1,0,0,0,0,0,0,0,0),(115489,'2025-10-25',314,0,0,0,1,0,0,0,0,0,0,0,0),(115488,'2025-10-25',313,0,0,0,1,0,0,0,0,0,0,0,0),(115487,'2025-10-25',310,0,0,0,1,0,0,0,0,0,0,0,0),(115486,'2025-10-25',309,0,0,0,1,0,0,0,0,0,0,0,0),(115485,'2025-10-25',308,0,0,0,1,1,0,0,0,0,0,0,0),(115484,'2025-10-25',307,0,0,0,1,0,0,0,0,0,0,0,0),(115483,'2025-10-25',304,0,0,0,1,0,0,0,0,0,0,0,0),(115482,'2025-10-25',303,0,0,0,1,0,0,0,0,0,0,0,0),(115481,'2025-10-25',302,0,0,0,1,0,0,0,0,0,0,0,0),(115480,'2025-10-25',301,0,0,0,1,0,0,0,0,0,0,0,0),(115479,'2025-10-25',300,0,0,0,1,0,0,0,0,0,0,0,0),(115478,'2025-10-25',299,0,0,0,1,0,0,0,0,0,0,0,0),(115477,'2025-10-25',298,0,0,0,1,0,0,0,0,0,0,0,0),(115476,'2025-10-25',296,0,0,0,1,0,0,0,0,0,0,0,0),(115475,'2025-10-25',295,0,0,0,1,0,0,0,0,0,0,0,0),(115474,'2025-10-25',294,0,0,0,1,0,0,0,0,0,0,0,0),(115473,'2025-10-25',292,0,0,0,1,0,0,0,0,0,0,0,0),(115472,'2025-10-25',291,0,0,0,1,0,0,0,0,0,0,0,0),(115471,'2025-10-25',290,0,0,0,1,0,0,0,0,0,0,0,0),(115470,'2025-10-25',289,0,0,0,1,0,0,0,0,0,0,0,0),(115469,'2025-10-25',288,0,0,0,1,0,0,0,0,0,0,0,0),(115468,'2025-10-25',285,0,0,0,1,0,0,0,0,0,0,0,0),(115467,'2025-10-25',281,0,0,0,1,0,0,0,0,0,0,0,0),(115466,'2025-10-25',280,0,0,0,1,0,0,0,0,0,0,0,0),(115465,'2025-10-25',278,0,0,0,1,0,0,0,0,0,0,0,0),(115464,'2025-10-25',275,0,0,0,1,0,0,0,0,0,0,0,0),(115463,'2025-10-25',274,0,0,0,1,0,0,0,0,0,0,0,0),(115462,'2025-10-25',273,0,0,0,1,0,0,0,0,0,0,0,0),(115461,'2025-10-25',271,0,0,0,1,0,0,0,0,0,0,0,0),(115460,'2025-10-25',269,0,0,0,1,0,0,0,0,0,0,0,0),(115459,'2025-10-25',268,0,0,0,1,0,0,0,0,0,0,0,0),(115458,'2025-10-25',266,0,0,0,1,0,0,0,0,0,0,0,0),(115457,'2025-10-25',265,0,0,0,1,0,0,0,0,0,0,0,0),(115456,'2025-10-25',264,0,0,0,1,0,0,0,0,0,0,0,0),(115455,'2025-10-25',263,0,0,0,1,0,0,0,0,0,0,0,0),(115454,'2025-10-25',262,0,0,0,1,0,0,0,0,0,0,0,0),(115453,'2025-10-25',261,0,0,0,1,0,0,0,0,0,0,0,0),(115452,'2025-10-25',260,0,0,0,1,0,0,0,0,0,0,0,0),(115451,'2025-10-25',258,0,0,0,1,0,0,0,0,0,0,0,0),(115450,'2025-10-25',257,0,0,0,1,0,0,0,0,0,0,0,0),(115449,'2025-10-25',256,0,0,0,1,0,0,0,0,0,0,0,0),(115448,'2025-10-25',255,0,0,0,1,0,0,0,0,0,0,0,0),(115447,'2025-10-25',254,0,0,0,1,0,0,0,0,0,0,0,0),(115446,'2025-10-25',253,0,0,0,1,0,0,0,0,0,0,0,0),(115445,'2025-10-25',251,0,0,0,1,0,0,0,0,0,0,0,0),(115444,'2025-10-25',250,0,0,0,1,0,0,0,0,0,0,0,0),(115443,'2025-10-25',249,0,0,0,1,0,0,0,0,0,0,0,0),(115442,'2025-10-25',247,0,0,0,1,0,0,0,0,0,0,0,0),(115441,'2025-10-25',246,0,0,0,1,0,0,0,0,0,0,0,0),(115440,'2025-10-25',245,0,0,0,1,0,0,0,0,0,0,0,0),(115439,'2025-10-25',243,0,0,0,1,0,0,0,0,0,0,0,0),(115438,'2025-10-25',242,0,0,0,1,0,0,0,0,0,0,0,0),(115437,'2025-10-25',241,0,0,0,1,0,0,0,0,0,0,0,0),(115436,'2025-10-25',239,0,0,0,1,0,0,0,0,0,0,0,0),(115435,'2025-10-25',238,0,0,0,1,0,0,0,0,0,0,0,0),(115434,'2025-10-25',236,0,0,0,1,0,0,0,0,0,0,0,0),(115433,'2025-10-25',234,0,0,0,1,0,0,0,0,0,0,0,0),(115432,'2025-10-25',233,0,0,0,1,0,0,0,0,0,0,0,0),(115431,'2025-10-25',232,0,0,0,1,0,0,0,0,0,0,0,0),(115430,'2025-10-25',231,0,0,0,1,0,0,0,0,0,0,0,0),(115429,'2025-10-25',228,0,0,0,1,0,0,0,0,0,0,0,0),(115428,'2025-10-25',227,0,0,0,1,0,0,0,0,0,0,0,0),(115427,'2025-10-25',226,0,0,0,1,0,0,0,0,0,0,0,0),(115426,'2025-10-25',225,0,0,0,1,0,0,0,0,0,0,0,0),(115425,'2025-10-25',224,0,0,0,1,0,0,0,0,0,0,0,0),(115424,'2025-10-25',222,0,0,0,1,0,0,0,0,0,0,0,0),(115423,'2025-10-25',221,0,0,0,1,0,0,0,0,0,0,0,0),(115422,'2025-10-25',220,0,0,0,1,0,0,0,0,0,0,0,0),(115421,'2025-10-25',217,0,0,0,1,0,0,0,0,0,0,0,0),(115420,'2025-10-25',214,0,0,0,1,0,0,0,0,0,0,0,0),(115419,'2025-10-25',213,0,0,0,1,0,0,0,0,0,0,0,0),(115418,'2025-10-25',212,0,0,0,1,0,0,0,0,0,0,0,0),(115417,'2025-10-25',211,0,0,0,1,0,0,0,0,0,0,0,0),(115416,'2025-10-25',210,0,0,0,1,0,0,0,0,0,0,0,0),(115415,'2025-10-25',209,0,0,0,1,0,0,0,0,0,0,0,0),(115414,'2025-10-25',208,0,0,0,1,0,0,0,0,0,0,0,0),(115413,'2025-10-25',207,0,0,0,1,0,0,0,0,0,0,0,0),(115412,'2025-10-25',206,0,0,0,1,0,0,0,0,0,0,0,0),(115411,'2025-10-25',205,0,0,0,1,0,0,0,0,0,0,0,0),(115410,'2025-10-25',204,0,0,0,1,0,0,0,0,0,0,0,0),(115409,'2025-10-25',203,0,0,0,1,0,0,0,0,0,0,0,0),(115408,'2025-10-25',201,0,0,0,1,0,0,0,0,0,0,0,0),(115407,'2025-10-25',200,0,0,0,1,0,0,0,0,0,0,0,0),(115406,'2025-10-25',197,0,0,0,1,0,0,0,0,0,0,0,0),(115405,'2025-10-25',196,0,0,0,1,0,0,0,0,0,0,0,0),(115404,'2025-10-25',195,0,0,0,1,0,0,0,0,0,0,0,0),(115403,'2025-10-25',194,0,0,0,1,0,0,0,0,0,0,0,0),(115402,'2025-10-25',193,0,0,0,1,0,0,0,0,0,0,0,0),(115401,'2025-10-25',192,0,0,0,1,0,0,0,0,0,0,0,0),(115400,'2025-10-25',191,0,0,0,1,0,0,0,0,0,0,0,0),(115399,'2025-10-25',190,0,0,0,1,0,0,0,0,0,0,0,0),(115398,'2025-10-25',189,0,0,0,1,0,0,0,0,0,0,0,0),(115397,'2025-10-25',188,0,0,0,1,0,0,0,0,0,0,0,0),(115396,'2025-10-25',187,0,0,0,1,0,0,0,0,0,0,0,0),(115395,'2025-10-25',186,0,0,0,1,0,0,0,0,0,0,0,0),(115394,'2025-10-25',185,0,0,0,1,0,0,0,0,0,0,0,0),(115393,'2025-10-25',184,0,0,0,1,0,0,0,0,0,0,0,0),(115392,'2025-10-25',183,0,0,0,1,0,0,0,0,0,0,0,0),(115391,'2025-10-25',182,0,0,0,1,0,0,0,0,0,0,0,0),(115390,'2025-10-25',181,0,0,0,1,0,1,0,0,0,0,0,0),(115389,'2025-10-25',180,0,0,0,1,0,0,0,0,0,0,0,0),(115388,'2025-10-25',179,0,0,0,1,0,0,0,0,0,0,0,0),(115387,'2025-10-25',176,0,0,0,1,0,0,0,0,0,0,0,0),(115386,'2025-10-25',175,0,0,0,1,0,0,0,0,0,0,0,0),(115385,'2025-10-25',174,0,0,0,1,0,0,0,0,0,0,0,0),(115384,'2025-10-25',173,0,0,0,1,0,0,0,0,0,0,0,0),(115383,'2025-10-25',172,0,0,0,1,0,0,0,0,0,0,0,0),(115382,'2025-10-25',170,0,0,0,1,0,0,0,0,0,0,0,0),(115381,'2025-10-25',168,0,0,0,1,0,0,0,0,0,0,0,0),(115380,'2025-10-25',167,0,0,0,1,0,0,0,0,0,0,0,0),(115379,'2025-10-25',166,0,0,0,1,0,0,0,0,0,0,0,0),(115378,'2025-10-25',164,1,0,0,1,0,0,0,0,0,0,0,0),(115377,'2025-10-25',163,0,0,0,1,0,0,0,0,0,0,0,0),(115376,'2025-10-25',162,0,0,0,0,1,0,0,0,0,0,0,0),(115375,'2025-10-25',161,0,0,0,1,0,0,0,0,0,0,0,0),(115374,'2025-10-25',160,0,0,0,1,0,0,0,0,0,0,0,0),(115373,'2025-10-25',159,0,0,0,1,0,0,0,0,0,0,0,0),(115372,'2025-10-25',158,0,0,0,1,0,0,0,0,0,0,0,0),(115371,'2025-10-25',157,0,0,0,1,0,0,0,0,0,0,0,0),(115370,'2025-10-25',154,0,0,0,1,0,0,0,0,0,0,0,0),(115369,'2025-10-25',152,0,0,0,1,0,0,0,0,0,0,0,0),(115368,'2025-10-25',151,0,0,0,1,0,0,0,0,0,0,0,0),(115367,'2025-10-25',148,0,0,0,1,0,0,0,0,0,0,0,0),(115366,'2025-10-25',147,0,0,0,1,0,0,0,0,0,0,0,0),(115365,'2025-10-25',146,0,0,0,1,0,0,0,0,0,0,0,0),(115364,'2025-10-25',145,0,0,0,1,0,0,0,0,0,0,0,0),(115363,'2025-10-25',144,0,0,0,1,0,0,0,0,0,0,0,0),(115362,'2025-10-25',143,0,0,0,1,0,0,0,0,0,0,0,0),(115361,'2025-10-25',141,0,0,0,1,0,0,0,0,0,0,0,0),(115360,'2025-10-25',140,0,0,0,1,0,0,0,0,0,0,0,0),(115359,'2025-10-25',136,0,0,0,1,0,0,0,0,0,0,0,0),(115358,'2025-10-25',132,0,0,0,1,0,0,0,0,0,0,0,0),(115357,'2025-10-25',128,0,0,0,1,0,0,0,0,0,0,0,0),(115356,'2025-10-25',127,0,0,0,1,0,0,0,0,0,0,0,0),(115355,'2025-10-25',126,0,0,0,1,0,0,0,0,0,0,0,0),(115354,'2025-10-25',124,0,0,0,1,0,0,0,0,0,0,0,0),(115353,'2025-10-25',123,0,0,0,1,1,0,0,0,0,0,0,0),(115352,'2025-10-25',121,0,0,0,1,0,0,0,0,0,0,0,0),(115351,'2025-10-25',115,0,0,0,1,0,0,0,0,0,0,0,0),(115350,'2025-10-25',114,0,0,0,1,0,0,0,0,0,0,0,0),(115349,'2025-10-25',113,0,0,0,1,0,0,0,0,0,0,0,0),(115348,'2025-10-25',112,0,0,0,1,0,0,0,0,0,0,0,0),(115347,'2025-10-25',110,0,0,0,1,0,0,0,0,0,0,0,0),(115346,'2025-10-25',103,0,0,0,1,0,0,0,0,0,0,0,0),(115345,'2025-10-25',98,0,0,0,1,0,0,0,0,0,0,0,0),(115344,'2025-10-25',97,0,0,0,1,0,0,0,0,0,0,0,0),(115343,'2025-10-25',96,0,0,0,1,0,0,0,0,0,0,0,0),(115342,'2025-10-25',94,0,0,0,1,0,0,0,0,0,0,0,0),(115341,'2025-10-25',91,0,0,1,0,0,0,0,0,0,0,0,0),(115340,'2025-10-25',90,0,0,0,1,0,0,0,0,0,0,0,0),(115339,'2025-10-25',87,0,0,0,1,0,0,0,0,0,0,0,0),(115338,'2025-10-25',79,0,0,0,1,0,0,0,0,0,0,0,0),(115337,'2025-10-25',70,0,0,0,1,0,0,0,0,0,0,0,0),(115336,'2025-10-25',69,0,0,0,1,0,0,0,0,0,0,0,0),(115335,'2025-10-25',68,0,0,0,1,0,0,0,0,0,0,0,0),(115334,'2025-10-25',67,0,0,0,1,0,0,0,0,0,0,0,0),(115333,'2025-10-25',66,0,0,0,1,0,0,0,0,0,0,0,0),(115332,'2025-10-25',65,0,0,0,1,0,0,0,0,0,0,0,0),(115331,'2025-10-25',64,0,0,0,1,0,0,0,0,0,0,0,0),(115330,'2025-10-25',63,0,0,0,1,0,0,0,0,0,0,0,0),(115329,'2025-10-25',61,0,0,0,1,0,0,0,0,0,0,0,0),(115328,'2025-10-25',58,0,0,0,1,0,0,0,0,0,0,0,0),(115327,'2025-10-25',54,0,0,0,1,0,0,0,0,0,0,0,0),(115326,'2025-10-25',52,0,0,0,1,0,0,0,0,0,0,0,0),(115325,'2025-10-25',51,0,0,0,0,0,1,0,0,0,0,0,0),(115324,'2025-10-25',46,0,0,0,0,0,1,0,0,0,0,0,0),(115323,'2025-10-25',42,0,0,0,1,0,0,0,0,0,0,0,0),(115322,'2025-10-25',37,0,0,0,1,0,0,0,0,0,0,0,0),(115321,'2025-10-25',32,0,0,0,1,0,0,0,0,0,0,0,0),(115320,'2025-10-25',24,0,0,0,1,0,0,0,0,0,0,0,0),(115319,'2025-10-25',19,0,0,0,1,0,0,0,0,0,0,0,0),(115318,'2025-10-25',17,0,0,0,0,0,0,1,0,0,0,0,0),(115317,'2025-10-25',13,0,0,0,1,0,0,0,0,0,0,0,0),(115316,'2025-10-25',10,0,0,0,1,0,0,0,0,0,0,0,0),(115315,'2025-10-25',9,0,0,0,0,0,0,1,0,0,0,0,0),(115314,'2025-10-25',5,0,0,0,0,0,0,2,0,0,0,0,0),(115313,'2025-10-25',1,0,0,0,0,0,0,1,0,0,0,0,0),(115608,'2025-10-28',218,0,0,0,0,0,0,1,0,0,0,0,0),(115607,'2025-10-28',176,0,0,0,0,0,1,0,0,0,0,0,0),(115606,'2025-10-28',137,0,0,0,0,1,0,0,0,0,0,0,0),(115605,'2025-10-28',109,0,0,0,0,0,0,4,0,0,0,0,0),(115858,'2025-11-13',367,0,0,0,1,0,0,0,0,0,0,0,0),(115857,'2025-11-13',365,0,0,0,1,0,0,0,0,0,0,0,0),(115856,'2025-11-13',364,0,0,0,1,0,0,0,0,0,0,0,0),(115855,'2025-11-13',363,0,0,0,1,0,0,0,0,0,0,0,0),(115854,'2025-11-13',361,0,0,0,1,0,0,0,0,0,0,0,0),(115853,'2025-11-13',360,0,0,0,1,0,0,0,0,0,0,0,0),(115852,'2025-11-13',359,0,0,0,1,0,0,0,0,0,0,0,0),(115851,'2025-11-13',357,0,0,0,1,0,0,0,0,0,0,0,0),(115850,'2025-11-13',353,0,0,0,1,0,0,0,0,0,0,0,0),(115849,'2025-11-13',352,0,0,0,1,0,0,0,0,0,0,0,0),(115848,'2025-11-13',351,0,0,0,1,0,0,0,0,0,0,0,0),(115847,'2025-11-13',348,0,0,0,1,0,0,0,0,0,0,0,0),(115846,'2025-11-13',347,0,0,0,1,0,0,0,0,0,0,0,0),(115845,'2025-11-13',346,0,0,0,1,0,0,0,0,0,0,0,0),(115844,'2025-11-13',345,0,0,0,1,0,0,0,0,0,0,0,0),(115843,'2025-11-13',344,0,0,0,1,0,0,0,0,0,0,0,0),(115842,'2025-11-13',341,0,0,0,1,0,0,0,0,0,0,0,0),(115841,'2025-11-13',340,0,0,0,1,0,0,0,0,0,0,0,0),(115840,'2025-11-13',339,0,0,0,1,0,0,0,0,0,0,0,0),(115839,'2025-11-13',338,0,0,0,1,0,0,0,0,0,0,0,0),(115838,'2025-11-13',337,0,0,0,1,0,0,0,0,0,0,0,0),(115837,'2025-11-13',336,0,0,0,1,0,0,0,0,0,0,0,0),(115836,'2025-11-13',335,0,0,0,1,0,0,0,0,0,0,0,0),(115835,'2025-11-13',334,0,0,0,1,0,0,0,0,0,0,0,0),(115834,'2025-11-13',333,0,0,0,1,0,0,0,0,0,0,0,0),(115833,'2025-11-13',332,0,0,0,1,0,0,0,0,0,0,0,0),(115832,'2025-11-13',331,0,0,0,1,0,0,0,0,0,0,0,0),(115612,'2025-10-30',123,0,0,0,0,0,0,2,0,0,0,0,0),(115611,'2025-10-30',51,0,0,0,0,0,0,1,0,0,0,0,0),(115610,'2025-10-30',49,0,0,0,0,0,0,1,0,0,0,0,0),(115609,'2025-10-30',22,0,0,0,0,0,0,1,0,0,0,0,0),(115831,'2025-11-13',330,0,0,0,1,0,0,0,0,0,0,0,0),(115830,'2025-11-13',329,0,0,0,1,0,0,0,0,0,0,0,0),(115829,'2025-11-13',328,0,0,0,1,0,0,0,0,0,0,0,0),(115828,'2025-11-13',327,1,0,0,1,0,0,0,0,0,0,0,0),(115827,'2025-11-13',326,0,0,0,1,0,0,0,0,0,0,0,0),(115826,'2025-11-13',324,0,0,0,1,0,0,0,0,0,0,0,0),(115825,'2025-11-13',323,0,0,0,1,0,0,0,0,0,0,0,0),(115824,'2025-11-13',321,0,0,0,1,0,0,0,0,0,0,0,0),(115823,'2025-11-13',320,0,0,0,1,0,0,0,0,0,0,0,0),(115822,'2025-11-13',319,0,0,0,1,0,0,0,0,0,0,0,0),(115821,'2025-11-13',317,0,0,0,1,0,0,0,0,0,0,0,0),(115820,'2025-11-13',316,0,0,0,1,0,1,0,0,0,0,0,0),(115819,'2025-11-13',314,0,0,0,1,0,0,0,0,0,0,0,0),(115818,'2025-11-13',313,0,0,0,1,0,0,0,0,0,0,0,0),(115817,'2025-11-13',310,0,0,0,1,1,0,0,0,0,0,0,0),(115816,'2025-11-13',309,0,0,0,1,0,0,0,0,0,0,0,0),(115815,'2025-11-13',308,0,0,0,1,0,0,0,0,0,0,0,0),(115814,'2025-11-13',307,0,0,0,1,0,0,0,0,0,0,0,0),(115813,'2025-11-13',304,0,0,0,1,0,0,0,0,0,0,0,0),(115812,'2025-11-13',303,0,0,0,1,0,0,0,0,0,0,0,0),(115811,'2025-11-13',302,0,0,0,1,0,0,0,0,0,0,0,0),(115810,'2025-11-13',301,0,0,0,1,0,0,0,0,0,0,0,0),(115809,'2025-11-13',300,0,0,0,1,0,0,0,0,0,0,0,0),(115808,'2025-11-13',299,0,0,0,1,0,0,0,0,0,0,0,0),(115807,'2025-11-13',298,0,0,0,1,0,0,0,0,0,0,0,0),(115806,'2025-11-13',296,0,0,0,1,0,0,0,0,0,0,0,0),(115805,'2025-11-13',295,0,0,0,1,0,0,0,0,0,0,0,0),(115804,'2025-11-13',294,0,0,0,1,0,0,0,0,0,0,0,0),(115803,'2025-11-13',292,0,0,0,1,0,0,0,0,0,0,0,0),(115802,'2025-11-13',291,0,0,0,1,0,0,0,0,0,0,0,0),(115801,'2025-11-13',290,0,0,0,1,0,0,0,0,0,0,0,0),(115800,'2025-11-13',289,0,0,0,1,0,0,0,0,0,0,0,0),(115799,'2025-11-13',288,0,0,0,1,0,0,0,0,0,0,0,0),(115798,'2025-11-13',285,0,0,0,1,0,0,0,0,0,0,0,0),(115797,'2025-11-13',281,0,0,0,1,0,0,0,0,0,0,0,0),(115796,'2025-11-13',280,0,0,0,1,0,0,0,0,0,0,0,0),(115795,'2025-11-13',278,0,0,0,1,0,0,0,0,0,0,0,0),(115794,'2025-11-13',275,0,0,0,1,0,0,0,0,0,0,0,0),(115793,'2025-11-13',274,0,0,0,1,0,0,0,0,0,0,0,0),(115792,'2025-11-13',273,0,0,0,1,0,0,0,0,0,0,0,0),(115791,'2025-11-13',271,0,0,0,1,0,0,0,0,0,0,0,0),(115790,'2025-11-13',269,0,0,0,1,0,0,0,0,0,0,0,0),(115789,'2025-11-13',268,0,0,0,1,0,0,0,0,0,0,0,0),(115788,'2025-11-13',266,0,0,0,1,0,0,0,0,0,0,0,0),(115787,'2025-11-13',265,0,0,0,1,0,0,0,0,0,0,0,0),(115786,'2025-11-13',264,0,0,0,1,0,0,0,0,0,0,0,0),(115785,'2025-11-13',263,0,0,0,1,0,0,0,0,0,0,0,0),(115784,'2025-11-13',262,0,0,0,1,0,0,0,0,0,0,0,0),(115783,'2025-11-13',261,0,0,0,1,0,0,0,0,0,0,0,0),(115782,'2025-11-13',260,0,0,0,1,0,0,0,0,0,0,0,0),(115781,'2025-11-13',258,0,0,0,1,0,0,0,0,0,0,0,0),(115780,'2025-11-13',257,0,0,0,1,0,0,0,0,0,0,0,0),(115779,'2025-11-13',256,0,0,0,1,0,0,0,0,0,0,0,0),(115778,'2025-11-13',255,0,0,0,1,0,0,0,0,0,0,0,0),(115777,'2025-11-13',254,0,0,0,1,0,0,0,0,0,0,0,0),(115776,'2025-11-13',253,0,0,0,1,0,0,0,0,0,0,0,0),(115775,'2025-11-13',251,0,0,0,1,0,0,0,0,0,0,0,0),(115774,'2025-11-13',250,0,0,0,1,0,0,0,0,0,0,0,0),(115773,'2025-11-13',249,0,0,0,1,0,0,0,0,0,0,0,0),(115772,'2025-11-13',247,0,0,0,1,0,0,0,0,0,0,0,0),(115771,'2025-11-13',246,0,0,0,1,0,0,0,0,0,0,0,0),(115770,'2025-11-13',245,0,0,0,1,0,0,0,0,0,0,0,0),(115769,'2025-11-13',243,0,0,0,1,0,0,0,0,0,0,0,0),(115768,'2025-11-13',242,0,0,0,1,0,0,0,0,0,0,0,0),(115767,'2025-11-13',241,0,0,0,1,0,0,0,0,0,0,0,0),(115766,'2025-11-13',239,0,0,0,1,0,0,0,0,0,0,0,0),(115765,'2025-11-13',238,0,0,0,1,0,0,0,0,0,0,0,0),(115764,'2025-11-13',236,0,0,0,1,0,0,0,0,0,0,0,0),(115763,'2025-11-13',234,0,0,0,1,0,0,0,0,0,0,0,0),(115762,'2025-11-13',233,0,0,0,1,0,0,0,0,0,0,0,0),(115761,'2025-11-13',232,0,0,0,1,0,0,0,0,0,0,0,0),(115760,'2025-11-13',231,0,0,0,1,0,0,0,0,0,0,0,0),(115759,'2025-11-13',228,0,0,0,1,0,0,0,0,0,0,0,0),(115758,'2025-11-13',227,0,0,0,1,0,0,0,0,0,0,0,0),(115757,'2025-11-13',226,0,0,0,1,0,0,0,0,0,0,0,0),(115756,'2025-11-13',225,0,0,0,1,0,0,0,0,0,0,0,0),(115755,'2025-11-13',224,0,0,0,1,0,0,0,0,0,0,0,0),(115754,'2025-11-13',222,0,0,0,1,0,0,0,0,0,0,0,0),(115753,'2025-11-13',221,0,0,0,1,0,0,0,0,0,0,0,0),(115752,'2025-11-13',220,0,0,0,1,0,0,0,0,0,0,0,0),(115751,'2025-11-13',217,0,0,0,1,0,0,0,0,0,0,0,0),(115750,'2025-11-13',214,0,0,0,1,0,0,0,0,0,0,0,0),(115749,'2025-11-13',213,0,0,0,1,0,0,0,0,0,0,0,0),(115748,'2025-11-13',212,0,0,0,1,0,1,0,0,0,0,0,0),(115747,'2025-11-13',211,0,0,0,1,0,0,0,0,0,0,0,0),(115746,'2025-11-13',210,0,0,0,1,0,0,0,0,0,0,0,0),(115745,'2025-11-13',209,0,0,0,1,0,0,0,0,0,0,0,0),(115744,'2025-11-13',208,0,0,0,1,0,0,0,0,0,0,0,0),(115743,'2025-11-13',207,0,0,0,1,0,0,0,0,0,0,0,0),(115742,'2025-11-13',206,0,0,0,1,0,0,0,0,0,0,0,0),(115741,'2025-11-13',205,0,0,0,1,0,0,0,0,0,0,0,0),(115740,'2025-11-13',204,0,0,0,1,0,0,0,0,0,0,0,0),(115739,'2025-11-13',203,0,0,0,1,0,0,0,0,0,0,0,0),(115738,'2025-11-13',201,0,0,0,1,0,0,0,0,0,0,0,0),(115737,'2025-11-13',200,0,0,0,1,0,0,0,0,0,0,0,0),(115736,'2025-11-13',197,0,0,0,1,0,0,0,0,0,0,0,0),(115735,'2025-11-13',196,0,0,0,1,0,0,0,0,0,0,0,0),(115734,'2025-11-13',195,0,0,0,1,0,0,0,0,0,0,0,0),(115733,'2025-11-13',194,0,0,0,1,0,0,0,0,0,0,0,0),(115732,'2025-11-13',193,0,0,0,1,0,0,0,0,0,0,0,0),(115731,'2025-11-13',192,0,0,0,1,0,1,0,0,0,0,0,0),(115730,'2025-11-13',191,0,0,0,1,0,0,0,0,0,0,0,0),(115729,'2025-11-13',190,0,0,0,1,0,0,0,0,0,0,0,0),(115728,'2025-11-13',189,0,0,0,1,0,0,0,0,0,0,0,0),(115727,'2025-11-13',188,0,0,0,1,0,0,0,0,0,0,0,0),(115726,'2025-11-13',187,0,0,0,1,0,0,0,0,0,0,0,0),(115725,'2025-11-13',186,0,0,0,1,0,0,0,0,0,0,0,0),(115724,'2025-11-13',185,0,0,0,1,0,0,0,0,0,0,0,0),(115723,'2025-11-13',184,0,0,0,1,0,0,0,0,0,0,0,0),(115722,'2025-11-13',183,0,0,0,1,0,0,0,0,0,0,0,0),(115721,'2025-11-13',182,0,0,0,1,0,0,0,0,0,0,0,0),(115720,'2025-11-13',181,0,0,0,1,0,0,0,0,0,0,0,0),(115719,'2025-11-13',180,0,0,0,1,0,0,0,0,0,0,0,0),(115718,'2025-11-13',179,0,0,0,1,0,0,0,0,0,0,0,0),(115717,'2025-11-13',176,0,0,0,1,0,0,0,0,0,0,0,0),(115716,'2025-11-13',175,0,0,0,1,0,0,0,0,0,0,0,0),(115715,'2025-11-13',174,0,0,0,1,0,0,0,0,0,0,0,0),(115714,'2025-11-13',173,0,0,0,1,0,0,0,0,0,0,0,0),(115713,'2025-11-13',172,0,0,0,1,0,0,0,0,0,0,0,0),(115712,'2025-11-13',170,0,0,0,1,0,0,0,0,0,0,0,0),(115711,'2025-11-13',168,0,0,0,1,0,0,0,0,0,0,0,0),(115710,'2025-11-13',167,0,0,0,1,0,0,0,0,0,0,0,0),(115709,'2025-11-13',166,0,0,0,1,0,0,0,0,0,0,0,0),(115708,'2025-11-13',164,0,0,0,1,0,0,0,0,0,0,0,0),(115707,'2025-11-13',163,0,0,0,1,0,0,0,0,0,0,0,0),(115706,'2025-11-13',161,0,0,0,1,0,0,0,0,0,0,0,0),(115705,'2025-11-13',160,0,0,0,1,0,0,0,0,0,0,0,0),(115704,'2025-11-13',159,0,0,0,1,0,0,0,0,0,0,0,0),(115703,'2025-11-13',158,0,0,0,1,0,0,0,0,0,0,0,0),(115702,'2025-11-13',157,0,0,0,1,0,0,0,0,0,0,0,0),(115701,'2025-11-13',154,0,0,0,1,0,0,0,0,0,0,0,0),(115700,'2025-11-13',152,0,0,0,1,0,0,0,0,0,0,0,0),(115699,'2025-11-13',151,0,0,0,1,0,0,0,0,0,0,0,0),(115698,'2025-11-13',148,0,0,0,1,0,0,0,0,0,0,0,0),(115697,'2025-11-13',147,0,0,0,1,0,0,0,0,0,0,0,0),(115696,'2025-11-13',146,0,0,0,1,0,0,0,0,0,0,0,0),(115695,'2025-11-13',145,0,0,0,1,0,0,0,0,0,0,0,0),(115694,'2025-11-13',144,0,0,0,1,0,0,0,0,0,0,0,0),(115693,'2025-11-13',143,0,0,0,1,0,0,0,0,0,0,0,0),(115692,'2025-11-13',141,0,0,0,1,0,0,0,0,0,0,0,0),(115691,'2025-11-13',140,0,0,0,1,0,0,0,0,0,0,0,0),(115690,'2025-11-13',137,0,0,0,0,0,0,1,0,0,0,0,0),(115689,'2025-11-13',136,0,0,0,1,0,0,0,0,0,0,0,0),(115688,'2025-11-13',132,0,0,0,1,0,0,0,0,0,0,0,0),(115687,'2025-11-13',128,0,0,0,1,0,0,0,0,0,0,0,0),(115686,'2025-11-13',127,0,0,0,1,0,0,0,0,0,0,0,0),(115685,'2025-11-13',126,0,0,0,1,0,0,0,0,0,0,0,0),(115684,'2025-11-13',124,0,0,0,1,0,0,0,0,0,0,0,0),(115683,'2025-11-13',123,0,0,0,1,0,0,0,0,0,0,0,0),(115682,'2025-11-13',121,0,0,0,1,0,0,0,0,0,0,0,0),(115681,'2025-11-13',115,0,0,0,1,0,0,0,0,0,0,0,0),(115680,'2025-11-13',114,0,0,0,1,0,0,0,0,0,0,0,0),(115679,'2025-11-13',113,0,0,0,1,0,0,0,0,0,0,0,0),(115678,'2025-11-13',112,0,0,0,1,0,0,0,0,0,0,0,0),(115677,'2025-11-13',111,0,0,0,0,0,1,0,0,0,0,0,0),(115676,'2025-11-13',110,0,0,0,1,0,0,0,0,0,0,0,0),(115675,'2025-11-13',103,0,0,0,1,0,0,0,0,0,0,0,0),(115674,'2025-11-13',98,0,0,0,1,0,0,0,0,0,0,0,0),(115673,'2025-11-13',97,0,0,0,1,0,0,0,0,0,0,0,0),(115672,'2025-11-13',96,0,0,0,1,0,0,0,0,0,0,0,0),(115671,'2025-11-13',94,0,0,0,1,0,0,0,0,0,0,0,0),(115670,'2025-11-13',91,0,0,1,0,1,1,0,0,0,0,0,0),(115669,'2025-11-13',90,0,0,0,1,0,0,0,0,0,0,0,0),(115668,'2025-11-13',87,0,0,0,1,0,0,0,0,0,0,0,0),(115667,'2025-11-13',79,0,0,0,1,0,0,0,0,0,0,0,0),(115666,'2025-11-13',70,0,0,0,1,0,0,0,0,0,0,0,0),(115665,'2025-11-13',69,0,0,0,1,0,0,0,0,0,0,0,0),(115664,'2025-11-13',68,0,0,0,1,0,0,0,0,0,0,0,0),(115663,'2025-11-13',67,0,0,0,1,0,0,0,0,0,0,0,0),(115662,'2025-11-13',66,0,0,0,1,0,0,0,0,0,0,0,0),(115661,'2025-11-13',65,0,0,0,1,0,0,0,0,0,0,0,0),(115660,'2025-11-13',64,0,0,0,1,0,0,0,0,0,0,0,0),(115659,'2025-11-13',63,0,0,0,1,0,0,0,0,0,0,0,0),(115658,'2025-11-13',61,0,0,0,1,0,0,0,0,0,0,0,0),(115657,'2025-11-13',58,0,0,0,1,0,0,0,0,0,0,0,0),(115656,'2025-11-13',54,1,0,0,1,0,0,0,0,0,0,0,0),(115655,'2025-11-13',52,0,0,0,1,0,0,0,0,0,0,0,0),(115654,'2025-11-13',51,0,0,0,0,1,0,0,0,0,0,0,0),(115653,'2025-11-13',45,0,0,0,0,1,0,0,0,0,0,0,0),(115652,'2025-11-13',42,0,0,0,1,0,0,0,0,0,0,0,0),(115651,'2025-11-13',37,1,0,0,1,0,0,0,0,0,0,0,0),(115650,'2025-11-13',36,0,0,0,0,1,0,0,0,0,0,0,0),(115649,'2025-11-13',33,0,0,0,0,0,1,0,0,0,0,0,0),(115648,'2025-11-13',32,0,0,0,1,0,0,0,0,0,0,0,0),(115647,'2025-11-13',28,0,0,0,0,0,1,0,0,0,0,0,0),(115646,'2025-11-13',24,0,0,0,1,0,0,0,0,0,0,0,0),(115638,'2025-11-11',233,0,0,0,0,0,0,1,0,0,0,0,0),(115637,'2025-11-11',90,0,0,0,0,0,0,1,0,0,0,0,0),(115636,'2025-11-11',89,0,0,0,0,0,0,1,0,0,0,0,0),(115635,'2025-11-11',81,0,0,0,0,0,0,1,0,0,0,0,0),(115634,'2025-11-11',78,0,0,0,0,0,0,1,0,0,0,0,0),(115615,'2025-11-01',81,0,0,0,0,0,0,1,0,0,0,0,0),(115614,'2025-11-01',78,0,0,0,0,0,0,1,0,0,0,0,0),(115613,'2025-11-01',75,0,0,0,0,0,0,3,0,0,0,0,0),(115619,'2025-11-03',233,0,0,0,0,0,0,1,0,0,0,0,0),(115618,'2025-11-03',131,0,0,0,0,0,0,0,0,0,0,0,1),(115617,'2025-11-03',90,0,0,0,0,0,0,2,0,0,0,0,0),(115616,'2025-11-03',89,0,0,0,0,0,0,2,0,0,0,0,0),(115926,'2025-11-17',49,0,0,0,0,0,0,1,0,0,0,0,0),(115925,'2025-11-17',22,0,0,0,0,0,0,1,0,0,0,0,0),(117405,'2026-01-17',382,0,0,0,1,0,0,0,0,0,0,0,0),(117404,'2026-01-17',381,0,0,0,1,0,0,0,0,0,0,0,0),(117403,'2026-01-17',378,0,0,0,1,0,0,0,0,0,0,0,0),(117402,'2026-01-17',377,0,0,0,1,0,0,0,0,0,0,0,0),(117401,'2026-01-17',376,0,0,0,1,0,0,0,0,0,0,0,0),(117400,'2026-01-17',375,0,0,0,1,0,0,0,0,0,0,0,0),(117399,'2026-01-17',372,0,0,0,1,0,0,0,0,0,0,0,0),(117398,'2026-01-17',371,0,0,0,1,0,0,0,0,0,0,0,0),(117397,'2026-01-17',367,0,0,0,1,0,0,0,0,0,0,0,0),(117396,'2026-01-17',365,0,0,0,1,0,0,0,0,0,0,0,0),(117395,'2026-01-17',364,0,0,0,1,0,0,0,0,0,0,0,0),(117394,'2026-01-17',363,0,0,0,1,0,0,0,0,0,0,0,0),(117393,'2026-01-17',361,0,0,0,1,0,0,0,0,0,0,0,0),(117392,'2026-01-17',360,0,0,0,1,0,0,0,0,0,0,0,0),(117391,'2026-01-17',359,0,0,0,1,0,0,0,0,0,0,0,0),(117390,'2026-01-17',357,0,0,0,1,0,0,0,0,0,0,0,0),(117389,'2026-01-17',353,0,0,0,1,0,0,0,0,0,0,0,0),(117388,'2026-01-17',352,0,0,0,1,0,0,0,0,0,0,0,0),(117387,'2026-01-17',351,0,0,0,1,0,0,0,0,0,0,0,0),(117386,'2026-01-17',348,0,0,0,1,0,0,0,0,0,0,0,0),(117385,'2026-01-17',347,0,0,0,1,0,0,0,0,0,0,0,0),(117384,'2026-01-17',346,0,0,0,1,0,0,0,0,0,0,0,0),(117383,'2026-01-17',345,0,0,0,1,0,0,0,0,0,0,0,0),(117382,'2026-01-17',344,0,0,0,1,0,0,0,0,0,0,0,0),(117381,'2026-01-17',341,0,0,0,1,0,0,0,0,0,0,0,0),(117380,'2026-01-17',340,0,0,0,1,0,0,0,0,0,0,0,0),(117379,'2026-01-17',339,0,0,0,1,0,0,0,0,0,0,0,0),(117378,'2026-01-17',338,0,0,0,1,0,0,0,0,0,0,0,0),(117377,'2026-01-17',337,0,0,0,1,0,0,0,0,0,0,0,0),(116220,'2025-12-02',388,1,0,1,0,0,0,0,0,0,0,0,0),(115931,'2025-11-18',123,0,0,0,0,0,0,1,0,0,0,0,0),(115930,'2025-11-18',75,0,0,0,0,0,0,3,0,0,0,0,0),(115929,'2025-11-18',51,0,0,0,0,0,0,1,0,0,0,0,0),(117376,'2026-01-17',336,0,0,0,1,0,0,0,0,0,0,0,0),(117375,'2026-01-17',335,0,0,0,1,0,0,0,0,0,0,0,0),(117374,'2026-01-17',334,0,0,0,1,0,0,0,0,0,0,0,0),(117373,'2026-01-17',333,0,0,0,1,0,0,0,0,0,0,0,0),(117372,'2026-01-17',332,0,0,0,1,0,0,0,0,0,0,0,0),(117371,'2026-01-17',331,0,0,0,1,0,0,0,0,0,0,0,0),(117370,'2026-01-17',330,0,0,0,1,0,0,0,0,0,0,0,0),(117369,'2026-01-17',329,0,0,0,1,0,0,0,0,0,0,0,0),(117368,'2026-01-17',328,0,0,0,1,0,0,0,0,0,0,0,0),(117367,'2026-01-17',327,0,0,1,0,0,0,0,0,0,0,0,0),(117366,'2026-01-17',326,0,0,0,1,0,0,0,0,0,0,0,0),(117365,'2026-01-17',324,0,0,0,1,0,0,0,0,0,0,0,0),(117364,'2026-01-17',323,0,0,0,1,0,0,0,0,0,0,0,0),(117363,'2026-01-17',321,0,0,0,1,0,0,0,0,0,0,0,0),(117362,'2026-01-17',320,0,0,0,1,0,0,0,0,0,0,0,0),(117361,'2026-01-17',319,0,0,0,1,0,0,0,0,0,0,0,0),(117360,'2026-01-17',317,0,0,0,1,0,0,0,0,0,0,0,0),(117359,'2026-01-17',316,0,0,0,1,0,0,0,0,0,0,0,0),(117358,'2026-01-17',314,0,0,0,1,0,0,0,0,0,0,0,0),(117357,'2026-01-17',313,0,0,0,1,0,0,0,0,0,0,0,0),(117356,'2026-01-17',310,0,0,0,1,0,0,0,0,0,0,0,0),(117355,'2026-01-17',309,0,0,0,1,0,0,0,0,0,0,0,0),(117354,'2026-01-17',308,0,0,0,1,0,0,0,0,0,0,0,0),(117353,'2026-01-17',307,0,0,0,1,0,0,0,0,0,0,0,0),(117352,'2026-01-17',304,0,0,0,1,0,0,0,0,0,0,0,0),(117351,'2026-01-17',303,0,0,0,1,0,0,0,0,0,0,0,0),(117350,'2026-01-17',302,0,0,0,1,0,0,0,0,0,0,0,0),(117349,'2026-01-17',301,0,0,0,1,0,0,0,0,0,0,0,0),(117348,'2026-01-17',300,0,0,0,1,0,0,0,0,0,0,0,0),(117347,'2026-01-17',299,0,0,0,1,0,0,0,0,0,0,0,0),(117346,'2026-01-17',298,0,0,0,1,0,0,0,0,0,0,0,0),(117345,'2026-01-17',296,0,0,0,1,0,0,0,0,0,0,0,0),(117344,'2026-01-17',295,0,0,0,1,0,0,0,0,0,0,0,0),(117343,'2026-01-17',294,0,0,0,1,0,0,0,0,0,0,0,0),(117342,'2026-01-17',292,0,0,0,1,0,0,0,0,0,0,0,0),(117341,'2026-01-17',291,0,0,0,1,0,0,0,0,0,0,0,0),(117340,'2026-01-17',290,0,0,0,1,0,0,0,0,0,0,0,0),(117339,'2026-01-17',289,0,0,0,1,0,0,0,0,0,0,0,0),(117338,'2026-01-17',288,0,0,0,1,0,0,0,0,0,0,0,0),(117337,'2026-01-17',285,0,0,0,1,0,0,0,0,0,0,0,0),(117336,'2026-01-17',281,0,0,0,1,0,0,0,0,0,0,0,0),(117335,'2026-01-17',280,0,0,0,1,0,0,0,0,0,0,0,0),(117334,'2026-01-17',278,0,0,0,1,0,0,0,0,0,0,0,0),(117333,'2026-01-17',275,0,0,0,1,0,0,0,0,0,0,0,0),(117332,'2026-01-17',274,0,0,0,1,0,0,0,0,0,0,0,0),(117331,'2026-01-17',273,0,0,0,1,0,0,0,0,0,0,0,0),(117330,'2026-01-17',271,0,0,0,1,0,0,0,0,0,0,0,0),(117329,'2026-01-17',269,0,0,0,1,0,0,0,0,0,0,0,0),(117328,'2026-01-17',268,0,0,0,1,0,0,0,0,0,0,0,0),(117327,'2026-01-17',266,0,0,0,1,0,0,0,0,0,0,0,0),(117326,'2026-01-17',265,0,0,0,1,0,0,0,0,0,0,0,0),(117325,'2026-01-17',264,0,0,0,1,0,0,0,0,0,0,0,0),(117324,'2026-01-17',263,0,0,0,1,0,0,0,0,0,0,0,0),(117323,'2026-01-17',262,0,0,0,1,0,0,0,0,0,0,0,0),(117322,'2026-01-17',261,0,0,0,1,0,0,0,0,0,0,0,0),(117321,'2026-01-17',260,0,0,0,1,0,0,0,0,0,0,0,0),(117320,'2026-01-17',258,0,0,0,1,0,0,0,0,0,0,0,0),(117319,'2026-01-17',257,0,0,0,1,0,0,0,0,0,0,0,0),(117318,'2026-01-17',256,0,0,0,1,0,0,0,0,0,0,0,0),(117317,'2026-01-17',255,0,0,0,1,0,0,0,0,0,0,0,0),(117316,'2026-01-17',254,0,0,0,1,0,0,0,0,0,0,0,0),(117315,'2026-01-17',253,0,0,0,1,0,0,0,0,0,0,0,0),(117314,'2026-01-17',251,0,0,0,1,0,0,0,0,0,0,0,0),(117313,'2026-01-17',250,0,0,0,1,0,0,0,0,0,0,0,0),(117312,'2026-01-17',249,0,0,0,1,0,0,0,0,0,0,0,0),(117311,'2026-01-17',247,0,0,0,1,0,0,0,0,0,0,0,0),(117310,'2026-01-17',246,0,0,0,1,0,0,0,0,0,0,0,0),(117309,'2026-01-17',245,0,0,0,1,0,0,0,0,0,0,0,0),(117308,'2026-01-17',243,0,0,0,1,0,0,0,0,0,0,0,0),(117307,'2026-01-17',242,0,0,0,1,0,0,0,0,0,0,0,0),(117306,'2026-01-17',241,0,0,0,1,0,0,0,0,0,0,0,0),(117305,'2026-01-17',239,0,0,0,1,0,0,0,0,0,0,0,0),(117304,'2026-01-17',238,0,0,0,1,0,0,0,0,0,0,0,0),(117303,'2026-01-17',236,0,0,0,1,0,0,0,0,0,0,0,0),(117302,'2026-01-17',234,0,0,0,1,0,0,0,0,0,0,0,0),(117301,'2026-01-17',233,0,0,0,1,0,0,2,0,0,0,0,0),(117300,'2026-01-17',232,0,0,0,1,0,0,0,0,0,0,0,0),(117299,'2026-01-17',231,0,0,0,1,0,0,0,0,0,0,0,0),(117298,'2026-01-17',228,0,0,0,1,0,0,0,0,0,0,0,0),(117297,'2026-01-17',227,0,0,0,1,0,0,0,0,0,0,0,0),(117296,'2026-01-17',226,0,0,0,1,0,0,0,0,0,0,0,0),(117295,'2026-01-17',225,0,0,0,1,0,0,0,0,0,0,0,0),(117294,'2026-01-17',224,0,0,0,1,0,0,0,0,0,0,0,0),(117293,'2026-01-17',222,0,0,0,1,0,0,0,0,0,0,0,0),(117292,'2026-01-17',221,0,0,0,1,0,0,0,0,0,0,0,0),(117291,'2026-01-17',220,0,0,0,1,0,0,0,0,0,0,0,0),(117290,'2026-01-17',218,0,0,0,0,0,0,1,0,0,0,0,0),(117289,'2026-01-17',217,0,0,0,1,0,0,0,0,0,0,0,0),(117288,'2026-01-17',214,0,0,0,1,0,0,0,0,0,0,0,0),(117287,'2026-01-17',213,0,0,0,1,0,0,0,0,0,0,0,0),(117286,'2026-01-17',212,0,0,0,1,0,0,0,0,0,0,0,0),(117285,'2026-01-17',211,0,0,0,1,0,0,0,0,0,0,0,0),(117284,'2026-01-17',210,0,0,0,1,0,0,0,0,0,0,0,0),(117283,'2026-01-17',209,0,0,0,1,0,0,0,0,0,0,0,0),(117282,'2026-01-17',208,0,0,0,1,0,0,0,0,0,0,0,0),(117281,'2026-01-17',207,0,0,0,1,0,0,0,0,0,0,0,0),(117280,'2026-01-17',206,0,0,0,1,0,0,0,0,0,0,0,0),(117279,'2026-01-17',205,0,0,0,1,0,0,0,0,0,0,0,0),(117278,'2026-01-17',204,0,0,0,1,0,0,0,0,0,0,0,0),(117277,'2026-01-17',203,0,0,0,1,0,0,0,0,0,0,0,0),(117276,'2026-01-17',201,0,0,0,1,0,0,0,0,0,0,0,0),(117275,'2026-01-17',200,0,0,0,1,0,0,0,0,0,0,0,0),(117274,'2026-01-17',197,0,0,0,1,0,0,0,0,0,0,0,0),(117273,'2026-01-17',196,0,0,0,1,0,0,0,0,0,0,0,0),(117272,'2026-01-17',195,0,0,0,1,0,0,0,0,0,0,0,0),(117271,'2026-01-17',194,0,0,0,1,0,0,0,0,0,0,0,0),(117270,'2026-01-17',193,0,0,0,1,0,0,0,0,0,0,0,0),(117269,'2026-01-17',192,0,0,0,1,0,0,0,0,0,0,0,0),(117268,'2026-01-17',191,0,0,0,1,0,0,0,0,0,0,0,0),(117267,'2026-01-17',190,0,0,0,1,0,0,0,0,0,0,0,0),(117266,'2026-01-17',189,0,0,0,1,0,0,0,0,0,0,0,0),(117265,'2026-01-17',188,0,0,0,1,0,0,0,0,0,0,0,0),(117264,'2026-01-17',187,0,0,0,1,0,0,0,0,0,0,0,0),(117263,'2026-01-17',186,0,0,0,1,0,0,0,0,0,0,0,0),(117262,'2026-01-17',185,0,0,0,1,0,0,0,0,0,0,0,0),(117261,'2026-01-17',184,0,0,0,1,0,0,0,0,0,0,0,0),(117260,'2026-01-17',183,0,0,0,1,0,0,0,0,0,0,0,0),(117259,'2026-01-17',182,0,0,0,1,0,0,0,0,0,0,0,0),(117258,'2026-01-17',181,0,0,0,1,0,0,0,0,0,0,0,0),(117257,'2026-01-17',180,0,0,0,1,0,0,0,0,0,0,0,0),(117256,'2026-01-17',179,0,0,0,1,0,0,0,0,0,0,0,0),(117255,'2026-01-17',176,0,0,0,1,0,0,0,0,0,0,0,0),(117254,'2026-01-17',175,0,0,0,1,0,0,0,0,0,0,0,0),(117253,'2026-01-17',174,0,0,0,1,0,0,0,0,0,0,0,0),(117252,'2026-01-17',173,0,0,0,1,0,0,0,0,0,0,0,0),(117251,'2026-01-17',172,0,0,0,1,0,0,0,0,0,0,0,0),(117250,'2026-01-17',170,0,0,0,1,0,0,0,0,0,0,0,0),(117249,'2026-01-17',168,0,0,0,1,0,0,0,0,0,0,0,0),(117248,'2026-01-17',167,0,0,0,1,0,0,0,0,0,0,0,0),(117247,'2026-01-17',166,0,0,0,1,0,0,0,0,0,0,0,0),(117246,'2026-01-17',164,0,0,0,1,0,0,0,0,0,0,0,0),(117245,'2026-01-17',163,0,0,0,1,0,0,0,0,0,0,0,0),(117244,'2026-01-17',161,0,0,0,1,0,0,0,0,0,0,0,0),(117243,'2026-01-17',160,0,0,0,1,0,0,0,0,0,0,0,0),(117242,'2026-01-17',159,0,0,0,1,0,0,0,0,0,0,0,0),(117241,'2026-01-17',158,0,0,0,1,0,0,0,0,0,0,0,0),(117240,'2026-01-17',157,0,0,0,1,0,0,0,0,0,0,0,0),(116214,'2025-12-01',456,0,0,0,1,0,0,0,0,0,0,0,0),(116213,'2025-12-01',452,0,0,0,1,0,0,0,0,0,0,0,0),(116212,'2025-12-01',451,0,0,0,1,0,0,0,0,0,0,0,0),(116211,'2025-12-01',448,1,0,0,1,0,1,0,0,0,0,0,0),(116210,'2025-12-01',446,0,0,0,1,0,0,0,0,0,0,0,0),(116209,'2025-12-01',445,0,0,0,1,0,0,0,0,0,0,0,0),(116208,'2025-12-01',443,0,0,0,1,0,0,0,0,0,0,0,0),(116207,'2025-12-01',441,0,0,0,1,0,1,0,0,0,0,0,0),(116206,'2025-12-01',440,0,0,0,1,0,0,0,0,0,0,0,0),(116205,'2025-12-01',439,0,0,0,1,0,0,0,0,0,0,0,0),(116204,'2025-12-01',438,0,0,0,1,0,0,0,0,0,0,0,0),(115940,'2025-11-27',137,0,0,0,0,0,0,1,0,0,0,0,0),(115939,'2025-11-27',5,0,0,0,0,0,0,1,0,0,0,0,0);
/*!40000 ALTER TABLE `oto_surflogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_surfmods`
--

DROP TABLE IF EXISTS `oto_surfmods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_surfmods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` int(11) NOT NULL DEFAULT 1,
  `rank` int(11) NOT NULL DEFAULT 1,
  `filename` varchar(50) NOT NULL DEFAULT 'file.php',
  PRIMARY KEY (`id`),
  KEY `enabled` (`enabled`),
  KEY `rank` (`rank`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_surfmods`
--

LOCK TABLES `oto_surfmods` WRITE;
/*!40000 ALTER TABLE `oto_surfmods` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_surfmods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_surftarget_logs`
--

DROP TABLE IF EXISTS `oto_surftarget_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_surftarget_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `date` date NOT NULL,
  `days` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `userid` (`userid`),
  KEY `date` (`date`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_surftarget_logs`
--

LOCK TABLES `oto_surftarget_logs` WRITE;
/*!40000 ALTER TABLE `oto_surftarget_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_surftarget_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_surftarget_set`
--

DROP TABLE IF EXISTS `oto_surftarget_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_surftarget_set` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(200) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_surftarget_set`
--

LOCK TABLES `oto_surftarget_set` WRITE;
/*!40000 ALTER TABLE `oto_surftarget_set` DISABLE KEYS */;
INSERT INTO `oto_surftarget_set` (`id`, `field`, `value`) VALUES (23,'prizeincrease','1'),(22,'prizevalue','35'),(21,'prizetype','1'),(20,'targetmax','200'),(19,'targetmin','50'),(18,'targettype','1'),(17,'enabled','1'),(24,'prizemax','50');
/*!40000 ALTER TABLE `oto_surftarget_set` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_templates`
--

DROP TABLE IF EXISTS `oto_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_templates` (
  `template_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `template_name` varchar(20) NOT NULL DEFAULT '',
  `template_title` varchar(50) NOT NULL,
  `template_data` mediumtext DEFAULT NULL,
  `sflag` int(11) NOT NULL DEFAULT 1,
  `template_type` varchar(50) NOT NULL DEFAULT 'none',
  PRIMARY KEY (`template_id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_templates`
--

LOCK TABLES `oto_templates` WRITE;
/*!40000 ALTER TABLE `oto_templates` DISABLE KEYS */;
INSERT INTO `oto_templates` (`template_id`, `template_name`, `template_title`, `template_data`, `sflag`, `template_type`) VALUES (2,'Homepage Body','Login Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/login/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62e91cb21a271b54d91cb522\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"PsSXMMc7H\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62e91cb21a271b54d91cb522\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQc1NYTU1jN0giOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62e91cb21a271b54d91cb522\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"PsSXMMc7H\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"eN5mGH9VP\" class=\"style-eN5mGH9VP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vQ7eQdDJz\" class=\"style-vQ7eQdDJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z8RijvnQJ\" class=\"style-Z8RijvnQJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W3F_VLruj0\" class=\"style-gp-body\">\r\n        @media (max-width: 639px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YK6e_A_8hu\" class=\"style-YK6e_A_8hu-overlay\">\r\n        \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xygdjUPmZ\" class=\"style-xygdjUPmZ\">\r\n        \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PxljAz0oi\" class=\"style-PxljAz0oi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PxljAz0oi\">\r\n        \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xvcTfaKq7\" class=\"style-xvcTfaKq7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuoTiuOJ\" class=\"style-6DuoTiuOJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuoTiuOJ\">\r\n        \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YK6e_A_8hu\" class=\"style-YK6e_A_8hu\">\r\n        \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AsoY4kq8qp\" class=\"style-AsoY4kq8qp\">\r\n        \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-YK6e_A_8hu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"YK6e_A_8hu\" style=\"\" id=\"YK6e_A_8hu\" tabindex=\"0\"><a name=\"YK6e_A_8hu\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-AsoY4kq8qp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AsoY4kq8qp\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><ul class=\"gp-component-id-xvcTfaKq7 gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"xvcTfaKq7\" tabindex=\"0\"><div class=\"gp-component-id-Z8RijvnQJ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z8RijvnQJ\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ujNEkUUOGR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ujNEkUUOGR\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h1 class=\"gp-component-id-6DuoTiuOJ\" data-id=\"quill-node-0\">Member Login</h1></div></div><div class=\"gp-component-id-vQ7eQdDJz gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vQ7eQdDJz\" tabindex=\"0\"><table border=\"0\" cellpadding=\"4\" cellspacing=\"0\" width=\"100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"left\" valign=\"top\">Â \r\n\r\n			<form action=\"members.php\" method=\"post\" name=\"loginfrm\">\r\n			<table align=\"center\" border=\"0\" cellpadding=\"4\" cellspacing=\"0\" height=\"350\" width=\"720\">\r\n				<tbody>\r\n					<tr style=\"padding-top:0; padding-bottom:0\">\r\n						<td align=\"center\" width=\"50%\"><strong style=\"font-size:30px\">Username:</strong></td>\r\n						<td align=\"center\"><input name=\"login\" style=\"height:50px; background-color:#efefef; border-radius: 100px\" size=\"50\" type=\"text\" /></td>\r\n					</tr>\r\n					<tr style=\"padding-top:0; padding-bottom:0\">\r\n						<td align=\"center\"><strong style=\"font-size:30px\">Password:</strong></td>\r\n						<td align=\"center\"><input name=\"password\" style=\"height:50px; background-color:#efefef; border-radius: 100px\" size=\"50\" type=\"password\" /></td>\r\n					</tr>\r\n					<tr>\r\n						<td align=\"center\" colspan=\"2\"><input name=\"Submit\" style=\"background-color:#0076B4; color:white; border-color:#0076B4; border-radius: 100px; font-size:16px; width:320px; height:50px\" type=\"submit\" value=\"Login\" /></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</form>\r\n\r\n			<div align=\"center\">\r\n			<center>\r\n			<table border=\"0\" bordercolor=\"#111111\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td width=\"100%\">\r\n						<p align=\"center\"><script language=\"JavaScript\" src=\"\"></script></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</center>\r\n			</div>\r\n			Â \r\n\r\n			<div align=\"center\">\r\n			<center>\r\n			<table border=\"0\" bordercolor=\"#111111\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"100%\">\r\n				\r\n			</table>\r\n			</center>\r\n			</div>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table></div><div class=\"gp-component-id-eN5mGH9VP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"eN5mGH9VP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-kKQtt7WQQq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kKQtt7WQQq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PxljAz0oi\" data-id=\"quill-node-0\"><a href=\"signup.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">Register</a> | <a href=\"lostpass.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">Lost Password</a></h2></div></div><form class=\"gp-component-id-xygdjUPmZ gp-component\" action=\"\" method=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"form-container\" data-gp-component-data=\"{\"id\":32,\"name\":\"form-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Form\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Empty Form\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"xygdjUPmZ\" style=\"\" tabindex=\"0\">\r\n        \r\n        \r\n      </form></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>',1,'page'),(4,'One Time Offer','','The offer (1)\r\n&lt;br&gt;&lt;br&gt;\r\n#PAYMENT#',1,'none'),(5,'News','Pending Page','<b>Your Account Is Pending</b>\r\n<p>You are seeing this page because your payment for this membership level has not been received.  Please contact us if you believe this is a mistake.',1,'page'),(6,'OTO Footer','','<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"4\">\r\n  <tr>\r\n    <td bgcolor=\"#99bb99\"><div align=\"center\">\r\nCopyright &amp;copy;2006 All Rights Reserved\r\n    </div></td>\r\n  </tr>\r\n</table>\r\n',1,'none'),(7,'Welcome Email','Welcome Email','Welcome #FIRSTNAME#,\r\n\r\nWelcome to #SITENAME#. To activate your account, please visit: #VERIFY#\r\n\r\nYour Login is: #USERNAME#\r\n\r\nYou can log in at https://soloswaps.com/login.php\r\n\r\nTo earn referrals, send people to #REFURL#\r\n\r\nThank you,\r\n\r\nAdmin,\r\n#SITENAME#',1,'mail'),(8,'Suspended','Suspended Page','This is for suspended members',1,'page'),(9,'Sales Page','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&amp;rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1LEqaIAdqw\" class=\"style-1LEqaIAdqw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CWaxQVasN\" class=\"style-CWaxQVasN\">\r\n        \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\" class=\"style-04K8AGERBs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz-overlay\">\r\n        \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kX91V0_dR\" class=\"style-kX91V0_dR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uqeByIC70w\" class=\"style-uqeByIC70w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TREtKfV38T2\" class=\"style-TREtKfV38T2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JNy4h2WJI4\" class=\"style-JNy4h2WJI4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u7Z6yTqx9W\" class=\"style-u7Z6yTqx9W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4tdLR5hlk5\" class=\"style-4tdLR5hlk5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2z28_6Nnyn\" class=\"style-2z28_6Nnyn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f0Ck0UiXu5\" class=\"style-f0Ck0UiXu5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VdUz9YHjxr\" class=\"style-VdUz9YHjxr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9VQsoL5ryR\" class=\"style-9VQsoL5ryR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_RRMD2PDDk\" class=\"style-_RRMD2PDDk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C73ICmkwHK\" class=\"style-C73ICmkwHK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zckvkQ2aDE\" class=\"style-zckvkQ2aDE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y_uio9Sbn7\" class=\"style-y_uio9Sbn7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnl7T0ReQ4\" class=\"style-Mnl7T0ReQ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DYFqMPa0Bj\" class=\"style-DYFqMPa0Bj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YVMx3V0m\" class=\"style-7YVMx3V0m\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"itLC_h3mnyn\" class=\"style-itLC_h3mnyn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QOGeXZZHNSu\" class=\"style-QOGeXZZHNSu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4W8Pqferbs7\" class=\"style-4W8Pqferbs7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 85%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 70%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B2y1thTLg05\" class=\"style-B2y1thTLg05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZUrCwc6YHfB\" class=\"style-ZUrCwc6YHfB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YG8898hf0R6\" class=\"style-YG8898hf0R6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hb7NHX9gcRa\" class=\"style-hb7NHX9gcRa\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cUwOisgmfWY\" class=\"style-cUwOisgmfWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Slmvcvuiq6p\" class=\"style-Slmvcvuiq6p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SvU2lGGwS\" class=\"style-SvU2lGGwS-overlay\">\r\n        \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SvU2lGGwS\" class=\"style-SvU2lGGwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LWT9gxVJXbU\" class=\"style-LWT9gxVJXbU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQoyVMq30ru\" class=\"style-FQoyVMq30ru\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Leqb4xP8b3\" class=\"style-Leqb4xP8b3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhdaAJMa_Vb\" class=\"style-jhdaAJMa_Vb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D0PMvn9OzWP\" class=\"style-D0PMvn9OzWP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eSHr0GjFMF6\" class=\"style-eSHr0GjFMF6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoANoMnyCy\" class=\"style-eoANoMnyCy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RYKkfiWJUh\" class=\"style-RYKkfiWJUh\">\r\n        \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IVwF60zTeZ\" class=\"style-IVwF60zTeZ\">\r\n        \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gl9cxAwaIO\" class=\"style-gl9cxAwaIO\">\r\n        \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yW3HWfv6uh\" class=\"style-yW3HWfv6uh\">\r\n        \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qVhSWuYVyr\" class=\"style-qVhSWuYVyr\">\r\n        \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Nf_wtmCq2o\" class=\"style-Nf_wtmCq2o\">\r\n        \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VFm3GmgY2R\" class=\"style-VFm3GmgY2R\">\r\n        \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gcjc443D1Q\" class=\"style-Gcjc443D1Q\">\r\n        \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gpaOSSTYJBm\" class=\"style-gpaOSSTYJBm\">\r\n        \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A4ayDdm1iX7\" class=\"style-A4ayDdm1iX7\">\r\n        \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0AN508oW9rf\" class=\"style-0AN508oW9rf\">\r\n        \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WjrpIspQdjx\" class=\"style-WjrpIspQdjx\">\r\n        \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M3A5Z9KLTKi\" class=\"style-M3A5Z9KLTKi\">\r\n        \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12jtMtHeg9_\" class=\"style-12jtMtHeg9_\">\r\n        \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RVfYN8k3yCi\" class=\"style-RVfYN8k3yCi\">\r\n        \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{&quot;id&quot;:7610,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png&quot;,&quot;category&quot;:&quot;Navigation bars&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5df98d83cf362c0e9cf8723d&quot;,&quot;filename&quot;:null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\" tabindex=\"0\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php?rid=#AFFILIATEID#\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?rid=#AFFILIATEID#\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\" style=\"\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\" data-id=\"quill-node-0\">Fast, Effective, Free</h1></div><div class=\"gp-text-container gp-component gp-component-id-dN8ut9UnD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"dN8ut9UnD\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-1LEqaIAdqw\" data-id=\"quill-node-0\">Solo ADS!</h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-NfeuVlmvqT\" data-id=\"quill-node-0\">Grow your online business using our proven Traffic Network. Take advantage of our Premium FREE marketing tools to give you every advantage.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><div data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component-id-CWaxQVasN gp-component dndbefore-bottom\" data-gp-classes=\"\" data-gp-component=\"video-all\" data-gp-component-id=\"CWaxQVasN\" tabindex=\"0\">\r\n        <div class=\"bg-black cursor-pointer\" style=\"padding-bottom: 56.25%;\">\r\n        <svg fill=\"rgba(32, 45, 60, 0.85)\" style=\"position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:15%;z-index:1;\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\r\n        <rect width=\"24\" height=\"24\" fill=\"none\"></rect>\r\n        <path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm-2 14.5v-9l6 4.5z\"></path></svg>\r\n        <img data-gp-img-placeholder=\"1O6yTMzUQ\" class=\"absolute h-full w-full object-cover\" src=\"https://images.groovetech.io/M3ja4jARec7pb1dZTl8btw67-YRdvJ6DtLJqfxXUD74/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU4MjQxODM4X1RobWIxLnBuZw.webp\">\r\n        \r\n    <script id=\"script-h9D-faIX6\">\r\n    function setvIframe(vIframe){\r\n      \r\n      var vIframeSrc = vIframe.getAttribute(\'src\') + \'&autoplay=1&mute=1\';\r\n  if (!window.inBuilder) {\r\n    vIframe.setAttribute(\'src\',vIframeSrc);\r\n  }\r\n    }\r\n      \r\n    if(!window.inBuilder) document.querySelector(\'[data-gp-img-placeholder=\"1O6yTMzUQ\"]\').parentNode.addEventListener(\"click\", function() {\r\n      document.querySelector(\'[data-gp-img-placeholder=\"1O6yTMzUQ\"]\').parentNode.innerHTML=\'<iframe src=\"https://player.vimeo.com/video/731364219?portrait=0&transparent=1\" data-gp-vembed-id=\"1O6yTMzUQ\" allow=\"autoplay; fullscreen\" allowfullscreen frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"></iframe>\';\r\n      setvIframe(document.querySelector(\'[data-gp-vembed-id=\"1O6yTMzUQ\"]\'));\r\n    });\r\n    ;\r\n    </script>\r\n    \r\n  \r\n        </div>\r\n      </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-ww47D26mJz\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12301095\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:12301095,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;//assets.grooveapps.com/pages-previews/62bdf8867004d.png&quot;,&quot;category&quot;:&quot;Personalized Templates&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null,&quot;height&quot;:358,&quot;global&quot;:0}\" data-gp-component-id=\"ww47D26mJz\" id=\"ww47D26mJz\" tabindex=\"0\" style=\"\"><a name=\"ww47D26mJz\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"eoANoMnyCy\">\r\n        \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\">\r\n        \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-RYKkfiWJUh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"RYKkfiWJUh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IVwF60zTeZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{&quot;id&quot;:48,&quot;name&quot;:&quot;layout-1&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==&quot;,&quot;title&quot;:&quot;1 Column&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"IVwF60zTeZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-gl9cxAwaIO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gl9cxAwaIO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IJK08VECM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IJK08VECM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-uqeByIC70w\">GET ALL THIS 100% <span style=\"color: rgb(251, 214, 0);\">FREE!!</span></h1></div><ul class=\"gp-component-id-kX91V0_dR gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"kX91V0_dR\" tabindex=\"0\"><ul class=\"gp-component-id-yW3HWfv6uh gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"yW3HWfv6uh\" tabindex=\"0\" style=\"\"><ul class=\"gp-component gp-component-id-qVhSWuYVyr\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"qVhSWuYVyr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/NyF2trOxc1kli2y6XUaBk2j0J46YMjRUi5exmRLmNlg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjA4MzY4XzM2LU5vdGlmaWNhdGlvbi5wbmc.webp\" alt=\"\" class=\"gp-component gp-component-id-Nf_wtmCq2o\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Nf_wtmCq2o\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-wBONUKqVm6 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"wBONUKqVm6\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eoANoMnyCy\">1,000 AD CREDITS</h2></div></ul><ul class=\"gp-component gp-component-id-VFm3GmgY2R\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"VFm3GmgY2R\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-Leqb4xP8b3\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"Leqb4xP8b3\" aria-hidden=\"true\" tabindex=\"0\"></span></ul><ul class=\"gp-component gp-component-id-Gcjc443D1Q\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"Gcjc443D1Q\" tabindex=\"0\"><img src=\"https://images.groovetech.io/vTMQkRRTqPWVHvFirgncAtE1DFpn41TjjxJEzGHDwpo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2NzYwXzM1LU1lc3NhZ2UucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-gpaOSSTYJBm\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"gpaOSSTYJBm\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l3yIQ6CVHq0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l3yIQ6CVHq0\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eSHr0GjFMF6\">EMAIL &amp; SMS SENDER</h2></div></ul><ul class=\"gp-component gp-component-id-A4ayDdm1iX7\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"A4ayDdm1iX7\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-FQoyVMq30ru\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"FQoyVMq30ru\" aria-hidden=\"true\" tabindex=\"0\"></span></ul><ul class=\"gp-component gp-component-id-0AN508oW9rf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"0AN508oW9rf\" tabindex=\"0\"><img src=\"https://images.groovetech.io/bO03g-U5sgytnMCNmjm2pO_NUSKgS0hI8Xyw8zsRdKM/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODAyXzM0LVZvdWNoZXIucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-WjrpIspQdjx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"WjrpIspQdjx\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zVUIhCaMN0d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zVUIhCaMN0d\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-D0PMvn9OzWP\">PAGE BUILDER</h2></div></ul><ul class=\"gp-component gp-component-id-M3A5Z9KLTKi\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"M3A5Z9KLTKi\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-LWT9gxVJXbU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"LWT9gxVJXbU\" aria-hidden=\"true\" tabindex=\"0\" style=\"\"></span></ul><ul class=\"gp-component gp-component-id-12jtMtHeg9_\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"12jtMtHeg9_\" tabindex=\"0\"><img src=\"https://images.groovetech.io/SYCBkqwZYbmNu-YE4YPljBO0onhh8WBeopCR3qYIC7Y/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODMwXzAyLVJhdGUucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-RVfYN8k3yCi dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"RVfYN8k3yCi\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-qt3o2nLbXte\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"qt3o2nLbXte\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-jhdaAJMa_Vb\">LEAD &amp; TASK CRM</h2></div></ul></ul><div class=\"gp-text-container gp-component gp-component-id-Oaku6Kh_7t dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Oaku6Kh_7t\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-04K8AGERBs\"><span style=\"color: rgb(251, 214, 0);\">PLUS...</span> Link Tracker System, With Rotator</h1></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and your ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENJOY NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking our your links and visiting your pages</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-SvU2lGGwS\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12303359\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:12303359,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;//assets.grooveapps.com/pages-previews/62d1eb4c12cac.png&quot;,&quot;category&quot;:&quot;Personalized Templates&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null,&quot;height&quot;:769,&quot;global&quot;:0}\" data-gp-component-id=\"SvU2lGGwS\" id=\"SvU2lGGwS\" tabindex=\"0\" style=\"\"><a name=\"SvU2lGGwS\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-Slmvcvuiq6p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Slmvcvuiq6p\" tabindex=\"0\" data-gp-component=\"container\"><div class=\"gp-component gp-component-id-cUwOisgmfWY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"cUwOisgmfWY\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-hb7NHX9gcRa\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"hb7NHX9gcRa\" tabindex=\"0\"><div class=\"gp-component gp-component-id-YG8898hf0R6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"YG8898hf0R6\" tabindex=\"0\"><img src=\"https://images.groovetech.io/jZ23q2xM3tGFyzdakxZ1YyGdCDlAhlESXoKCJ5fSxqE/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU3OTI3ODc1X0dPTURNaWNvbm9zY2hhZmEzLnBuZw.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZUrCwc6YHfB\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZUrCwc6YHfB\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-B2y1thTLg05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"B2y1thTLg05\" tabindex=\"0\"><img src=\"https://images.groovetech.io/YIGbKeuWkpM2oFj9FaCsULt5KaDHEAKUDRR5i7Vq3pY/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU3OTI3OTI4X0RFU0NNRE1pY29ub3NjaGFmYTMucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-4W8Pqferbs7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"4W8Pqferbs7\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-QOGeXZZHNSu\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"QOGeXZZHNSu\" tabindex=\"0\"><div class=\"gp-component gp-component-id-TREtKfV38T2 dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"TREtKfV38T2\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-itLC_h3mnyn\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"itLC_h3mnyn\" tabindex=\"0\"><div class=\"gp-component gp-component-id-7YVMx3V0m\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"7YVMx3V0m\" tabindex=\"0\"><div class=\"gp-component gp-component-id-DYFqMPa0Bj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"DYFqMPa0Bj\" tabindex=\"0\"><img src=\"https://images.groovetech.io/e9TLQQ3wr5FhqQ8ZG3VTFKath3qiCibtoAqscKkFW4M/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NjQ5X2tpc3NjbGlwYXJ0LWZyZWUtY2xpcC1hcnQtZW50ZXItdG8td2luLWNsaXBhcnQtbG9nby1jbGlwLWFydC0wOWNmODc0OGI1NWUxMDM3LnBuZw.webp\" alt=\"\" class=\"gp-component gp-component-id-Mnl7T0ReQ4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Mnl7T0ReQ4\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-y_uio9Sbn7\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"y_uio9Sbn7\" tabindex=\"0\"><img src=\"https://images.groovetech.io/qhrAgFaGUbBhqazjuf92gTC1s7rTbPHK5h6MAo7D9Gw/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NjI2X2ltYWdlczguanBn.webp\" alt=\"\" class=\"gp-component gp-component-id-zckvkQ2aDE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zckvkQ2aDE\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-C73ICmkwHK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"C73ICmkwHK\" tabindex=\"0\"><img src=\"https://images.groovetech.io/LDTSYD8Fp2IzoWMF_dTeZK_fA3onbZNQL_dw17Rbf1k/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NzU0X2ltYWdlczkucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-_RRMD2PDDk\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"_RRMD2PDDk\" tabindex=\"0\"></div></div><div class=\"gp-component gp-component-id-9VQsoL5ryR\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"9VQsoL5ryR\" tabindex=\"0\"><div class=\"gp-component gp-component-id-VdUz9YHjxr\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"VdUz9YHjxr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/dnfZbGZi5cVNOX8URYiINZ9YcS0YbQ6aH7NU-m16WcQ/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5ODEzX2ltYWdlczExLmpwZw.webp\" alt=\"\" class=\"gp-component gp-component-id-f0Ck0UiXu5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"f0Ck0UiXu5\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-2z28_6Nnyn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"2z28_6Nnyn\" tabindex=\"0\"><img src=\"https://images.groovetech.io/ZGqdqa3HLQU7JQ_IXaJMhWxsHpxfomwScWLVvb9QAgc/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5ODg2XzM2MEYyNjg2OTM0MTRvb0laTWYzZ3RrT3k2Q2N2eDBjRHoxU1plZnBSNnBObC5qcGc.webp\" alt=\"\" class=\"gp-component gp-component-id-4tdLR5hlk5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"4tdLR5hlk5\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-u7Z6yTqx9W\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"u7Z6yTqx9W\" tabindex=\"0\"><img src=\"https://images.groovetech.io/AoELaGnF0SF7CCtM2wOAbAQjEkI7z2S81OkpFN8H4eg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5OTQ3X3VubmFtZWQucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-JNy4h2WJI4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JNy4h2WJI4\" tabindex=\"0\"></div></div></ul></div></div></ul></div></div>\r\n    </section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{&quot;id&quot;:12295330,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/628d015e95545.png&quot;,&quot;category&quot;:&quot;No Category&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null}\" id=\"rDPeNtfic0w\" style=\"\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.&nbsp;Includes Domain, Theme, Plugins,&nbsp;Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong><em>(retail value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.&nbsp;We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong><em>(retail value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Messing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong><em>(retail value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_ dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.&nbsp;Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong><em>(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.&nbsp;Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong><em>(Retail Value $650)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.&nbsp;Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.&nbsp;</p><p class=\"gp-component-id-k4R7SI080\"><strong><em>(Retail Price $497)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.&nbsp;Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong><em>(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.&nbsp;Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong>(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php?rid=#AFFILIATEID#\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>',1,'page'),(10,'Signup','Signup Header','',1,'page'),(12,'Sales Page 2','Split Test 1','This is your second sales page',1,'page'),(13,'Sales Page 3','Split Test 2','This is your third sales page',1,'page'),(14,'One Time Offer2','','This is OTO 2',1,'none'),(15,'One Time Offer3','','This is OTO 3',1,'none'),(16,'Deleted','Deleted Account Page','',1,'page'),(17,'Delete Confirmation','Delete Confirmation Page','',1,'page'),(18,'Downline Email','Downline Email','Hello #FIRSTNAME#,\r\n\r\nYou have referred a new member.\r\n\r\n',1,'mail'),(19,'Commission Email','Commission Email','Congratulations #FIRSTNAME#,\r\n\r\nYou have just earned a commission!',1,'mail'),(20,'Downline Bldr Header','Downline Builder Header','Unless stated otherwise, joining these  programs is FREE. You are totally at liberty to choose which programs to join (or not). Any that you do not join will default to your sponsors referral id. <br><br>You can change any of these codes at any time. Simply enter the new referral id and click the &quot;Update&quot; button. <br><br>Always check each link.	Never leave one that doesn\'t work (readers don\'t like it !!).',1,'page'),(21,'Download Page','Download Page Header','',1,'page'),(22,'faqs','Members Area FAQs','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <meta name=\"robots\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n     </style>\r\n     <style id=\"custom-css\">\r\n       *{} html {\r\n  font-family: sans-serif;\r\n  text-size-adjust: 100%;\r\n  line-height: 1.25;\r\n  box-sizing: border-box;\r\n}\r\n\r\nbody {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  border-image-repeat: initial;\r\n  border-image-outset: initial;\r\n  border-image-width: initial;\r\n  border-image-slice: initial;\r\n  border-image-source: initial;\r\n  border-left-color: rgb(173, 183, 194);\r\n  border-bottom-color: rgb(173, 183, 194);\r\n  border-right-color: rgb(173, 183, 194);\r\n  border-top-color: rgb(173, 183, 194);\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  border-left-width: 0px;\r\n  border-bottom-width: 0px;\r\n  border-right-width: 0px;\r\n  border-top-width: 0px;\r\n  box-sizing: inherit;\r\n}\r\n\r\nbody * {\r\n  border-image-repeat: initial;\r\n  border-image-outset: initial;\r\n  border-image-width: initial;\r\n  border-image-slice: initial;\r\n  border-image-source: initial;\r\n  border-left-color: rgb(173, 183, 194);\r\n  border-bottom-color: rgb(173, 183, 194);\r\n  border-right-color: rgb(173, 183, 194);\r\n  border-top-color: rgb(173, 183, 194);\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  border-left-width: 0px;\r\n  border-bottom-width: 0px;\r\n  border-right-width: 0px;\r\n  border-top-width: 0px;\r\n  box-sizing: inherit;\r\n}\r\n\r\nmain {\r\n  display: block;\r\n}\r\n\r\nh1 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  font-size: 2em;\r\n}\r\n\r\nhr {\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n  height: 0px;\r\n  box-sizing: content-box;\r\n}\r\n\r\npre {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\na {\r\n  background-color: transparent;\r\n  text-decoration-color: initial;\r\n  text-decoration-style: initial;\r\n  text-decoration-line: none;\r\n  cursor: pointer;\r\n}\r\n\r\nb {\r\n  font-weight: bolder;\r\n}\r\n\r\nstrong {\r\n  font-weight: bolder;\r\n}\r\n\r\ncode {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nkbd {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nsamp {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nsmall {\r\n  font-size: 80%;\r\n}\r\n\r\nsub {\r\n  vertical-align: baseline;\r\n  position: relative;\r\n  line-height: 0;\r\n  font-size: 75%;\r\n  bottom: -0.25em;\r\n}\r\n\r\nsup {\r\n  vertical-align: baseline;\r\n  position: relative;\r\n  line-height: 0;\r\n  font-size: 75%;\r\n  top: -0.5em;\r\n}\r\n\r\nimg {\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  height: auto;\r\n  max-width: 100%;\r\n}\r\n\r\nbutton {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n  text-transform: none;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  background-color: transparent;\r\n  background-clip: initial;\r\n  background-origin: initial;\r\n  background-attachment: initial;\r\n  background-repeat-y: initial;\r\n  background-repeat-x: initial;\r\n  background-size: initial;\r\n  background-position-y: initial;\r\n  background-position-x: initial;\r\n  background-image: initial;\r\n  cursor: pointer;\r\n}\r\n\r\ninput {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n}\r\n\r\noptgroup {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n}\r\n\r\nselect {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  text-transform: none;\r\n}\r\n\r\ntextarea {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: auto;\r\n  overflow-x: auto;\r\n  resize: vertical;\r\n}\r\n\r\nfieldset {\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nlegend {\r\n  white-space: normal;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  max-width: 100%;\r\n  display: table;\r\n  color: inherit;\r\n  box-sizing: border-box;\r\n}\r\n\r\nprogress {\r\n  vertical-align: baseline;\r\n}\r\n\r\ndetails {\r\n  display: block;\r\n}\r\n\r\nsummary {\r\n  display: list-item;\r\n}\r\n\r\ntemplate {\r\n  display: none;\r\n}\r\n\r\nblockquote {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\ndd {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\ndl {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nfigure {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh2 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh3 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh4 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh5 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh6 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\np {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nol {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  list-style-position: inside;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n}\r\n\r\nul {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  list-style-type: none;\r\n  list-style-image: initial;\r\n  list-style-position: initial;\r\n}\r\n\r\ntable {\r\n  border-collapse: collapse;\r\n}\r\n/*endBaseStyles*/\r\n/*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-faqs/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62fe7a1ceb7e6f1e322e29d2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"TuSXI7Y2G\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62fe7a1ceb7e6f1e322e29d2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJUdVNYSTdZMkciOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62fe7a1ceb7e6f1e322e29d2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"TuSXI7Y2G\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\">\r\n        <style data-gp-styled-element=\"true\"></style>\r\n        <style data-gp-styled-element=\"zA7G9Hp3h\" class=\"style-zA7G9Hp3h\"> @media (max-width: 639px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } }</style><style data-gp-styled-element=\"YPEulP8JM3\" class=\"style-YPEulP8JM3\"> @media (max-width: 639px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 340px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 1000px;max-width: 1200px; } }</style>\r\n        \r\n        \r\n        \r\n        \r\n        \r\n        \r\n        <style data-gp-styled-element=\"NetWXN0xfc\" class=\"style-NetWXN0xfc-overlay\"> .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } @media (max-width: 639px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (min-width: 1200px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } }</style>\r\n        \r\n        <style data-gp-styled-element=\"RhUuNNcB9\" class=\"style-RhUuNNcB9\"> @media (max-width: 639px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } }</style><style data-gp-styled-element=\"5rkV3Gx5jX\" class=\"style-5rkV3Gx5jX\"> @media (max-width: 639px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (min-width: 1200px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } }</style><style data-gp-styled-element=\"KYESmORVI\" class=\"style-KYESmORVI\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } }</style><style data-gp-styled-element=\"qpy30C0wF\" class=\"style-qpy30C0wF\"> @media (max-width: 639px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style>\r\n        <style data-gp-styled-element=\"c4vRp_fwV8\" class=\"style-c4vRp_fwV8\"> @media (max-width: 639px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"5TCePZSQN\" class=\"style-5TCePZSQN\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"wQ0tZVPlG\" class=\"style-wQ0tZVPlG\"> @media (max-width: 639px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"1Bk7ME6UQZ\" class=\"style-1Bk7ME6UQZ\"> @media (max-width: 639px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (min-width: 1200px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } }</style><style data-gp-styled-element=\"m92WplxFp\" class=\"style-m92WplxFp\"> @media (max-width: 639px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"QRE607maOK\" class=\"style-QRE607maOK\"> @media (max-width: 639px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"NK0LxWTgk\" class=\"style-NK0LxWTgk\"> @media (max-width: 639px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"AYzlFCyQC\" class=\"style-AYzlFCyQC\"> @media (max-width: 639px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"GGaAgqGOG\" class=\"style-GGaAgqGOG\"> @media (max-width: 639px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"U8g_CY3eC\" class=\"style-U8g_CY3eC\"> @media (max-width: 639px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"lRl3Wpap2\" class=\"style-lRl3Wpap2\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }</style><style data-gp-styled-element=\"lRl3Wpap2\"> .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } @media (max-width: 639px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (min-width: 1200px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } }</style><style data-gp-styled-element=\"TctE0nx3C\" class=\"style-TctE0nx3C\"> @media (max-width: 639px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (min-width: 1200px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } }</style>\r\n        <style data-gp-styled-element=\"NetWXN0xfc\" class=\"style-NetWXN0xfc\"> .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } @media (max-width: 639px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (min-width: 1200px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } }</style>\r\n        \r\n      <section class=\"gp-component-id-NetWXN0xfc gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"NetWXN0xfc\" data-gp-block-type=\"block\" id=\"NetWXN0xfc\" tabindex=\"0\" style=\"\"><a name=\"NetWXN0xfc\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-YPEulP8JM3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YPEulP8JM3\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-TctE0nx3C gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"TctE0nx3C\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-U8g_CY3eC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U8g_CY3eC\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UoUMGqaApZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UoUMGqaApZ\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-lRl3Wpap2\" data-id=\"quill-node-0\">Solo Swaps FAQs</h1></div></div><div class=\"gp-component gp-component-id-NK0LxWTgk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"NK0LxWTgk\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-zxL0lDbvQt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zxL0lDbvQt\" data-gp-component=\"null\" tabindex=\"0\"><p class=\"gp-component-id-QRE607maOK\" data-id=\"quill-node-0\">What is a viral mailer?</p></div></div><div class=\"gp-component gp-component-id-m92WplxFp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"m92WplxFp\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JyUBYMttFB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JyUBYMttFB\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p data-id=\"quill-node-0\" class=\"gp-component-id-1Bk7ME6UQZ\">Viral Mailers are online services where members can e-mail each other.</p><p class=\"gp-component-id-1Bk7ME6UQZ\" data-id=\"quill-node-1\">You can send an e-mail promoting your web site in return for viewing the e-mails sent by the other members.</p></div></div><div class=\"gp-component gp-component-id-wQ0tZVPlG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wQ0tZVPlG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-m6rJ3Eu34P\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"m6rJ3Eu34P\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-c4vRp_fwV8\" data-id=\"quill-node-0\">How Do I Receive Credits?</p></div></div><div class=\"gp-component gp-component-id-qpy30C0wF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qpy30C0wF\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-WkoceXjwiU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"WkoceXjwiU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p data-id=\"quill-node-0\" class=\"gp-component-id-5rkV3Gx5jX\">Look for e-mails from other members.</p><p data-id=\"quill-node-1\" class=\"gp-component-id-5rkV3Gx5jX\">At the bottom of each e-mail, there should be a link you can click to view their site and earn credit.</p><p class=\"gp-component-id-5rkV3Gx5jX\" data-id=\"quill-node-2\">For each credit you earn, you will be able to mail another member of instantlist.</p></div></div><div class=\"gp-component-id-GGaAgqGOG gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"GGaAgqGOG\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8cKOvwIwqQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"8cKOvwIwqQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5TCePZSQN\" data-id=\"quill-node-0\">My Question Isn\'t Listed On This Page...</p></div></div><div class=\"gp-component-id-AYzlFCyQC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"AYzlFCyQC\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mfz3sICuSL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mfz3sICuSL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-KYESmORVI\" data-id=\"quill-node-0\">Please click the button below to contact us.</p></div></div><div class=\"gp-component-id-RhUuNNcB9 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RhUuNNcB9\" tabindex=\"0\"><a target=\"_blank\" href=\"https://5-dollar-friday.tawk.help/\" data-gp-button-id=\"nstLM2H2eX\" class=\"items-center gp-component gp-component-id-zA7G9Hp3h\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zA7G9Hp3h\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-sf8QWnaXu\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"sf8QWnaXu\">CONTACT US</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></ul></div>\r\n    </section>\r\n      \r\n      </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>',1,'page'),(23,'faqshome','Main FAQs','&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&amp;nbsp;&lt;span mce_style=&quot;font-size: x-large;&quot; style=&quot;font-size: x-large;&quot;&gt;#SITENAME# FAQs&lt;/span&gt;&lt;/p&gt;\r\n&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&lt;span mce_style=&quot;font-size: x-large;&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;strong&gt;&lt;span mce_style=&quot;font-size: medium;&quot; style=&quot;font-size: medium;&quot;&gt;What is a viral mailer?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;\r\n&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&lt;span mce_style=&quot;font-size: x-large;&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;span mce_style=&quot;font-size: medium;&quot; style=&quot;font-size: medium;&quot;&gt;Viral Mailers&amp;nbsp;are online services&lt;br /&gt;\r\n	where members can e-mail each other.&lt;br /&gt;\r\n	&amp;nbsp;You can send an e-mail promoting your&lt;br /&gt;\r\n	web site in&amp;nbsp;return for viewing the e-mails&lt;br /&gt;\r\n	&amp;nbsp;sent by the other members.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;\r\n&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&amp;nbsp;&lt;/p&gt;\r\n&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&lt;span mce_style=&quot;font-size: x-large;&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;strong&gt;&lt;span mce_style=&quot;font-size: medium;&quot; style=&quot;font-size: medium;&quot;&gt;How Do I Receive Credits?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;\r\n&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&lt;span mce_style=&quot;font-size: x-large;&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;span mce_style=&quot;font-size: medium;&quot; style=&quot;font-size: medium;&quot;&gt;Look for e-mails from other members.&lt;br /&gt;\r\n	At the bottom of each e-mail, there should be&lt;br /&gt;\r\n	a link you can click to view their site and earn credit.&lt;br /&gt;\r\n	For each credit you earn, you will be able to mail&lt;br /&gt;\r\n	another member of #SITENAME#.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;\r\n',1,'page'),(24,'terms','Terms Page','&lt;P style=&quot;TEXT-ALIGN: center&quot; mce_style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: x-large&quot; mce_style=&quot;font-size: x-large;&quot;&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN style=&quot;FONT-SIZE: x-large&quot; mce_style=&quot;font-size: x-large;&quot;&gt;#SITENAME# Terms&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P style=&quot;TEXT-ALIGN: left&quot; mce_style=&quot;TEXT-ALIGN: left&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: medium&quot; mce_style=&quot;font-size: medium;&quot;&gt;By registering for #SITENAME# you agree that you have read these terms, understand them, and agree to be bound by them.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P style=&quot;TEXT-ALIGN: left&quot; mce_style=&quot;TEXT-ALIGN: left&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: medium&quot; mce_style=&quot;font-size: medium;&quot;&gt;Unless you&amp;nbsp;received prior permission from #SITENAME#, you may only register for one #SITENAME# account.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;You may not promote #SITENAME# in a way that could be considered spamming. You may only promote your referral URL and/or other promotional material&amp;nbsp;in other traffic exchanges or advertising programs that allow it. Promoting&amp;nbsp;#SITENAME# in a way that could be considered spamming will result in removal of your #SITENAME# account and possible legal action.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;Users are completely responsible for the content they promote using #SITENAME#. Users are responsible for ensuring they have the rights to promote a URL, and any content it contains. #SITENAME# is not responsible if a user is in violation of another legal agreement, copyright infringement, or any other issues.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P style=&quot;TEXT-ALIGN: center&quot; mce_style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;&lt;STRONG&gt;URL Rules&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;Before submitting a URL to #SITENAME#, please read these rules very carefully and make sure your URL does not violate any of them. If you violate any of these rules, your site will be deleted along with any credits assigned to them. Your #SITENAME# account may also be deleted.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;*No sites with illegal activity.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;*No frame-breaking sites.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;*No viruses, trojans, or spyware.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;*No adult content.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;*Rotators may be promoted only if all sites or banners in rotation comply with these terms.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;*No HYIPs or &quot;investment autosurfs&quot;. These are illegal in most countries, including the United States.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;*No PTP sites.&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;&lt;SPAN class=&quot;&quot; style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot; mce_style=&quot;FONT-SIZE: medium; FONT-FAMILY: &quot;&gt;*#SITENAME#&amp;nbsp;has the full right to delete any site that&amp;nbsp;is inappropriate or questionable.&lt;/SPAN&gt;&lt;/P&gt;',1,'page'),(25,'Verify Reminder','Verify Reminder','Hello #FIRSTNAME#,\n\nThis is a reminder that you joined #SITENAME#\nbut haven\'t activated your account yet.\n\nTo activate your account, please visit: #VERIFY#\n\nThank you,\n#SITENAME#',1,'mail'),(26,'comms_header','Commissions Page Header','<p align=\"left\"><font size=\"3\">You can earn commissions by promoting #SITENAME# using the tools on our Affiliate Toolbox page.  Be sure to enter your PayPal address on your Profile page.</font></p>',1,'page'),(27,'credlink_expired','Credit Link Expired','&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;title&gt;Link Expired&lt;/title&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;\r\n&lt;center&gt;\r\n\r\n&lt;p&gt;&lt;font size=&quot;6&quot; color=&quot;darkred&quot;&gt;&lt;b&gt;Sorry, this link has expired!&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;\r\n\r\n&lt;p&gt;&lt;font size=&quot;4&quot; color=&quot;black&quot;&gt;&lt;b&gt;But while you\'re here, check out the special bonus below...&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;\r\n\r\n&lt;script language=&quot;JavaScript&quot; src=&quot;https://soloswaps.com/bonuspage/showad.php&quot;&gt;&lt;/script&gt;\r\n\r\n&lt;/center&gt;\r\n&lt;/body&gt;\r\n\r\n&lt;/html&gt;',1,'page'),(28,'bouncetesteml','Bounce Test Email','Hello #FIRSTNAME#, This email is a system generated email sent to you as a test. You are receiving it because recently an email you\'d been sent by #SITENAME# bounced when delivered to you. If you have received this email then your account will automatically be updated to working. However, you may need to take further actions to ensure you continue receiving updates from #SITENAME#. 1.) Ensure that your email inbox is not full. 2.) Ensure that #SITENAME# is added to your email\'s contact list. 3.) Ensure that your email account is not set to vacation mode or auto-reply.',1,'mail'),(29,'bounce_page','Bounced Email Page','<h2>Attention: Your email address requires attention</h2><p>Your email address at #BOUNCEADDRESS# has been bouncing our messages.  You must update your email address to continue using #SITENAME#.</p>',1,'page'),(30,'loginlog_header','Login History Header','<div class=\"lfm_title\" style=\"text-align:center\">Login History</div>\r\n<br>\r\n<div class=\"lfm_descr\" style=\"text-align:left\">This is a list of recent logins into your #SITENAME# account.  If you see any login entries that you believe are not authorized, you should immediately change the password on your account.</div>',1,'page'),(31,'Signup - Thank You','Signup - Thank You','<center>\r\n<br><br>\r\n  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"95%\">\r\n    <tr>\r\n      <td width=\"100%\" align=\"center\" style=\"font-family: Verdana; font-size: 12pt\"> \r\n      <font size=\"5\"><b>Welcome to #SITENAME#!</b></font>\r\n      <BR><BR>\r\n<font size=\"3\">To login to your account, please click this link:<br><br>\r\n<a href=\"login.php\">Login To The Members Area Here</a>\r\n  <br>\r\n</font>\r\n</td>\r\n    </tr>\r\n  </table>\r\n<br><br>\r\n  </center>',1,'page'),(32,'The Spot','The Spot','<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"500\">\r\n<tr><td><img border=\"0\" src=\"/images/thespot_top.png\"></td></tr>\r\n<tr><td style=\"background: url(/images/thespot_mid.png)\" align=\"center\">\r\n  <span style=\"font-family:\'Arial\';color:#560000;font-size:34px;font-weight:700;text-shadow: 1px 1px 2px #000000;\">The Spot</span>\r\n  <br><img border=\"0\" width=\"475\" height=\"5\" src=\"/images/thespot_line.png\"><br>\r\n  #SPOTBANNER#\r\n  <br><div style=\"width:475px;text-align:center;font-family:\'Arial\';color:#000000;font-size:18px;font-weight:500;\">#SPOTTEXT#</div><br>\r\n  <div><a target=\"_blank\" href=\"#SPOTLINK#\"><span id=\"spotprizelink\" style=\"font-family:\'Arial\';color:blue;font-size:22px;font-weight:700;\">Click Here For A Prize</span></a></div>\r\n  <br><img border=\"0\" width=\"475\" height=\"5\" src=\"/images/thespot_line.png\"><br>\r\n  <br><span style=\"font-family:\'Arial\';color:blue;font-size:22px;font-weight:700;\"><a target=\"_blank\" href=\"thespot.php\">Put Your Site Here</a></span>\r\n</td></tr>\r\n<tr><td><img border=\"0\" src=\"/images/thespot_bottom.png\"></td></tr>\r\n</table>\r\n\r\n<script language=\"javascript\"  type=\"text/javascript\">\r\n// This script changes the prize link if the member already claimed this prize\r\nif (document.getElementById(\'spotprizelink\')) {\r\n  if (#SPOTCLICKED# == 1) {\r\n    document.getElementById(\'spotprizelink\').innerHTML=\"View This Site\";\r\n  }\r\n}\r\n</script>',1,'page'),(33,'The Spot Get Page','The Spot Get Page','<h3>Get The Spot</h3>\r\n',1,'page'),(34,'The Spot Expired','The Spot Expired','<h3>Expired Link</h3>\r\n\r\n<p>Sorry, but the link you are clicking on has expired.</p>',1,'page'),(35,'inbox_styles','Missed Mailings CSS','.inboxtable {\r\n	width: 98%;\r\n	border-collapse:collapse;\r\n	clear:both;\r\n}\r\n\r\n.inboxrow {\r\n	\r\n}\r\n\r\n.inboxalt1 {\r\n	background:#ffffff;\r\n}\r\n\r\n.inboxalt2 {\r\n	background:#f6f6f6;\r\n}\r\n\r\n.inboxn {\r\n	font-size:12pt;\r\n	font-style: italic;\r\n	width:30px;\r\n	border-bottom:1px #aaa solid;\r\n}\r\n\r\n.inboxsubj {\r\n	padding-left:5px;\r\n	font-size:12pt;\r\n	font-weight:bold;\r\n	border-bottom:1px #aaa solid;\r\n}\r\n\r\n.inboxdate {\r\n	padding-left:5px;\r\n	font-size:10pt;\r\n	font-style: italic;\r\n	text-align:right;\r\n	border-bottom:1px #aaa solid;\r\n}\r\n\r\n.inboxmsg {\r\n	width: 98%;\r\n	border-radius:5px;\r\n	margin: 10px auto;\r\n}\r\n\r\n.inboxmsghead {\r\n	border-bottom:1px #999 solid;\r\n}\r\n\r\n.inboxmsgsubj {\r\n	font-size:14pt;\r\n	font-weight:bold;\r\n	text-align:left;\r\n}\r\n\r\n.inboxmsgdate {\r\n	font-size:12pt;\r\n	font-weight:bold;\r\n	font-style: italic;\r\n	text-align:right;\r\n}\r\n\r\n.inboxbodyrow {\r\n	\r\n}\r\n\r\n.inboxmsgbody {\r\n	padding-top:20px;\r\n	font-size:12pt;\r\n}\r\n\r\n.inboxfooter {\r\n	font-size:10pt;\r\n	font-weight:bold;\r\n}\r\n\r\n.inboxpageinate {\r\n	clear:both;\r\n	margin: 10px auto 20px auto;\r\n	display:block;\r\n}\r\n\r\n.inboxpageinate a {\r\n	display: block;\r\n	float: left;\r\n	border: 1px #000 solid;\r\n	padding: 3px;\r\n	margin: 0 3px;\r\n}\r\n\r\n.inboxpageinate span {\r\n	display: block;\r\n	float: left;\r\n}\r\n\r\n.pnate_cur {\r\n	background: #005;\r\n	color: #FFF;\r\n}',1,'page'),(36,'sqban_instr','Square Banner Instructions','<p align=\"left\" width=\"500\"><font size=\"2\">Square Banners are banners with the same height and width.  The recommended size is 125x125.</font></p>',1,'page'),(37,'Solo Mailer Buy','Solo Mailer Buy','<br><p><font size=\"2\">You Clicked On #SOLOADDATE#</font></p><p><font size=\"2\">Please click below to pay for your Solo Ad</font></p>',1,'page'),(38,'Solo Mailer Main','Solo Mailer Main','<p><font size=\"3\">Purchase A Solo Ad</font></p>',1,'page'),(41,'dlbsplash_header','Recommended Splash Header','<center><h2>Recommended Programs Splash Page</h2>\r\n<br>\r\n<p style=\"font-size:16px; width:600px; text-align:left;\">This splash page allows you to promote your favorite sites and build your #SITENAME# downline at the same time!  Just select which sites you want to recommend below, and then start promoting your Recommended Splash URL.</p>\r\n<br>\r\n<p style=\"font-size:20px;\">Your Recommended Splash URL:<br><a target=\"_blank\" href=\"#RECOMMENDEDURL#\">#RECOMMENDEDURL#</a></p>\r\n\r\n<br>\r\n\r\n	<link href=\"lib/jquery-ui/jquery-ui.min.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n	<script src=\"lib/jquery-ui/jquery-ui.min.js\"></script>\r\n	\r\n	<style>\r\n	\r\n	.ranklistbox {\r\n		width: 350px;\r\n		display: flex;\r\n		background-color: #73fb76;\r\n		color: #222222;\r\n		border: 1px solid #bbc1ca;\r\n		padding: 15px;\r\n		margin-top: 15px;\r\n		margin-bottom: 15px;\r\n		cursor: move;\r\n	}\r\n	\r\n	.ranklistboxadd {\r\n		width: 350px;\r\n		display: flex;\r\n		background-color: #DDDDDD;\r\n		color: #222222;\r\n		border: 1px solid #bbc1ca;\r\n		padding: 15px;\r\n		margin-top: 15px;\r\n		margin-bottom: 15px;\r\n	}\r\n	\r\n	.ranklistinfo {\r\n		width: 250px;\r\n		float: left;\r\n		padding-right: 20px;\r\n	}\r\n	\r\n	.ranklistbuttons {\r\n		width: 100px;\r\n		float: right;\r\n		margin-top: 30px;\r\n	}	\r\n	\r\n	.ranklistbuttons a {\r\n		text-decoration: none;\r\n	}\r\n	\r\n	</style>',1,'page'),(42,'dlbsplash_page','Recommended Splash Page','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<title>Want Results?</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody {\r\n	background-image: url(dlbsplashimages/splash_te_dlb_bg.jpg);\r\n	background-repeat: repeat-x;\r\n	margin-top: 0px;\r\n	font-family: Arial, Helvetica, sans-serif;\r\n	color: #333;\r\n}\r\n#header {\r\n	background-image: url(dlbsplashimages/splash_te_dlb_main.png);\r\n	background-repeat: no-repeat;\r\n	background-position: left top;\r\n	height: 105px;\r\n	width: 731px;\r\n	margin-right: auto;\r\n	margin-left: auto;\r\n}\r\n#main {\r\n	background-image: url(dlbsplashimages/splash_te_dlb_mid.png);\r\n	background-repeat: repeat-y;\r\n	width: 731px;\r\n	margin-right: auto;\r\n	margin-left: auto;\r\n}\r\n#footer {\r\n	background-image: url(dlbsplashimages/splash_te_dlb_main.png);\r\n	background-repeat: no-repeat;\r\n	background-position: left bottom;\r\n	height: 56px;\r\n	width: 731px;\r\n	margin-right: auto;\r\n	margin-left: auto;\r\n}\r\n#joinlink img {\r\n	float: right;\r\n}\r\n-->\r\n</style>\r\n</head>\r\n\r\n<body>\r\n<table id=\"header\" width=\"731\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <!--DWLayoutTable-->\r\n  <tr>\r\n    <td width=\"731\" height=\"70\" valign=\"top\"><!--DWLayoutEmptyCell-->&nbsp;</td>\r\n  </tr>\r\n  <tr>\r\n    <td height=\"21\" align=\"center\" valign=\"top\"><img src=\"dlbsplashimages/splash_te_dlb_anim.gif\" width=\"689\" height=\"20\" /></td>\r\n  </tr>\r\n  <tr>\r\n    <td height=\"15\"></td>\r\n  </tr>\r\n</table>\r\n<table id=\"main\" width=\"731\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <!--DWLayoutTable-->\r\n  <tr>\r\n    <td width=\"16\" height=\"166\">&nbsp;</td>\r\n    <td width=\"700\" valign=\"top\"><table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n      <!--DWLayoutTable-->\r\n      <tr>\r\n        <td width=\"700\" height=\"166\" align=\"center\" valign=\"top\">\r\n        \r\n        <div style=\"text-align: left; width: 700px;\">\r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\">\r\n	<tr>\r\n		<td width=\"25%\" valign=\"top\" align=\"center\">\r\n			<img src=\"#MEMBERPHOTOURL#\" alt=\"\"></a><br />\r\n			<strong>#FIRSTNAME# #LASTNAME#</strong>\r\n		</td>\r\n		<td valign=\"top\" align=\"center\">Get a splash page just like this to promote your 10 favorite traffic exchanges with YOUR referral IDs attached. And the best bit... It\'s all completely free!\r\n        \r\n        \r\n        <div id=\"joinlink\"><a href=\"#REFURL#\" target=\"_blank\"><img src=\"dlbsplashimages/splash_te_dlb_join.gif\" width=\"196\" height=\"35\" border=\"0\" /></a></div>\r\n        \r\n        </td>\r\n	</tr>\r\n</table>\r\n<table cellspacing=\"0\" cellpadding=\"2\" border=\"0\" width=\"100%\">\r\n	<tr></tr><tr><td colspan=\"5\">&nbsp;</td></tr><tr>\r\n		#RECOMMENDEDBANNERS#\r\n	</tr>\r\n</table>\r\n</div>\r\n        \r\n        </td>\r\n        </tr>\r\n    </table></td>\r\n    <td width=\"15\">&nbsp;</td>\r\n  </tr>\r\n</table>\r\n<table id=\"footer\" width=\"731\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <!--DWLayoutTable-->\r\n  <tr>\r\n    <td width=\"731\" height=\"27\" valign=\"top\"><!--DWLayoutEmptyCell-->&nbsp;</td>\r\n  </tr>\r\n  \r\n  <tr>\r\n    <td height=\"20\" align=\"center\" valign=\"top\"><img src=\"dlbsplashimages/splash_te_dlb_anim.gif\" width=\"689\" height=\"20\" /></td>\r\n  </tr>\r\n  <tr>\r\n    <td height=\"18\"></td>\r\n  </tr>\r\n</table>\r\n<center>\r\nGet A Cool Page Just Like This To Promote Your Top Exchanges At <a href=\"#REFURL#\" target=\"_blank\">#SITENAME#</a>\r\n</center>\r\n\r\n</body>\r\n</html>',1,'page'),(43,'geniuxs_expired','Geniuxs Expired Link','&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;title&gt;Link Expired&lt;/title&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;\r\n&lt;center&gt;\r\n\r\n&lt;p&gt;&lt;font size=&quot;6&quot; color=&quot;darkred&quot;&gt;&lt;b&gt;Sorry, this link has expired!&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;\r\n\r\n&lt;p&gt;&lt;font size=&quot;4&quot; color=&quot;black&quot;&gt;&lt;b&gt;But while you\'re here, check out the special bonus below...&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;\r\n\r\n&lt;script language=&quot;JavaScript&quot; src=&quot;https://soloswaps.com/bonuspage/showad.php&quot;&gt;&lt;/script&gt;\r\n\r\n&lt;/center&gt;\r\n&lt;/body&gt;\r\n\r\n&lt;/html&gt;',1,'page'),(44,'surftarget_claim','Surf Goal Claim','<p>Your reward has been added to your account. Come back tomorrow to earn another reward!</p>',1,'page'),(45,'rotator_top','Rotator Top Frame','<html>\r\n<head>\r\n<STYLE>\r\nbody { margin: 0; padding: 0; }\r\nimg { margin: 0; padding: 0; }\r\np { margin: 0; padding: 0; }\r\na { color: white; text-decoration:none; }\r\nimg { border:none; }\r\n</STYLE>\r\n</head>\r\n<body bgcolor=\"darkblue\">\r\n<table width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tr>\r\n<td width=\"20\"> </td>\r\n    <td width=\"70\"><a href=\"/index.php?rid=[ref_id]\" target=\"_blank\">[user_img]</a></td>\r\n    <td valign=\"middle\"><font size=\"4\" color=\"white\"><b>#FIRSTNAME# #LASTNAME# Presents...</font> <br />[social_info]</td>\r\n    <td width=\"468\" align=\"right\" valign=\"middle\"><a href=\"/index.php?rid=[ref_id]\" target=\"_blank\"><font size=\"4\" color=\"white\">Powered By #SITENAME#<br>Click Here To Get Your FREE Rotator</font></a></td>\r\n<td width=\"20\"> </td>\r\n  </tr>\r\n</table>\r\n</body>\r\n</html>',1,'page'),(46,'sr_prizedl','SourceRanks Prize','#THEMEHEADER#\r\n<p style=\"TEXT-ALIGN: center\"><font size=\"5\"><b>Thank You</b></font></p>\r\n<p><font size=\"3\">You can download your prize below.  Keep looking for other pages with a SourceRanks rate box.  You may get a different prize every time you rate a page!</font></p>\r\n<center>\r\n#PRIZEDLBOX#\r\n</center>\r\n<p>&nbsp;</p>\r\n#THEMEFOOTER#',1,'page'),(47,'widgetads_instr','Widget Ads Main Info','<center>\r\n<h2>Widget Ads</h2>\r\n<p style=\"text-align:left;width:600px;\">Widget Ads are text ads that are shown on web sites belonging to other #SITENAME# members. This very powerful feature allows you to reach visitors across the web, and around the world!\r\n<br><br>\r\nTo get started, add a Widget Ad below. Then you can either convert your #SITENAME# credits into Widget Ad impressions, or you can earn impressions directly by adding a widget to your own web sites.\r\n</p>\r\n<a href=\"mywidgets.php\"><h4>Add A Widget To My Own Web Site</h4></a><br>\r\n<a href=\"widgetads_convert.php\"><h4>Convert My Credits Into Impressions</h4></a>\r\n<br>\r\n<h4>You Currently Have #WIDGETIMPS# Impressions</h4>\r\n<br><br>',1,'page'),(48,'widgets_instr','Widgets Instructions','<center>\r\n<p style=\"text-align:left;width:600px;\"><a href=\"mywidgetads.php\"><< Back To Widget Ads</a></p>\r\n<h2>Widgets</h2>\r\n<p style=\"text-align:left;width:600px;\">You can create widgets below, and then copy the HTML code to your own web sites to earn Widget Ad impressions at #SITENAME#. You can also choose the layout and color scheme for each widget, so that they will match the design of your site.</p>\r\n<p style=\"text-align:left;width:600px;\"><small>Please ensure that any widgets you place online conform to the following guidelines:<br>\r\n1. The widget must be in a visible location on the website.<br>\r\n2. The page that you place your widget on must NOT be rotated in any kind of autosurf, autohit or automated traffic generating program.<br>\r\n3. The webpage you place the widget on must serve a purpose OTHER THAN advertising. In other words, you cannot place the widget on a page that\'s only purpose is to generate widget views. The page you place your widget on must attract visitors for some other purpose, such as to read content on a blog for instance.<br>\r\n4. Your widget needs to be easily visible when somebody is viewing the page in a normal way. In other words, placing the widget at the bottom of a list of other ads is not acceptable because in order to see the widget, the visitor would need to scroll through all the other ads which is not normal visitor behavior.</small></p>\r\n<br>',1,'page'),(49,'piggy_header','PiggyBank Header','<style>\r\nhr {\r\n  border: 0;\r\n  clear:both;\r\n  display:block;\r\n  width: 96%;               \r\n  background-color:#777777;\r\n  height: 1px;\r\n}\r\n.completepurchase {\r\n  border: 1px solid #000000;\r\n  border-radius:25px;\r\n  width:550px;\r\n  padding:15px;\r\n}\r\n.depositoptionouter {\r\n  clear:both;\r\n  width:650px;\r\n}\r\n.depositoptioninner {\r\n  border: 1px solid #000000;\r\n  background-color:#EEEEEE;\r\n  border-radius:5px;\r\n  width:300px;\r\n  min-height:200px;\r\n  padding:15px;\r\n  margin:5px;\r\n  float:left;\r\n}\r\n</style>\r\n\r\n<center><h2>Your Current Balance Is: $#PIGGYBALANCE#</h2>',1,'page'),(50,'pmarket_header','Marketplace Header','<center><h2>Your Current Balance Is: $#PIGGYBALANCE#</h2>\r\n<p style=\"font-size:18px;\"><a href=\"piggybank.php\">Add to your balance</a></p>\r\n<p style=\"font-size:18px;\"><a href=\"pmarket.php?viewhistory=1\">View your marketplace purchases</a></p>\r\n<br>\r\n\r\n<style>\r\n.table_mp {\r\n	border-collapse: collapse;\r\n}\r\n\r\n.table_mp td, .table_mp th {\r\n	border: 1px solid #CCCCCC;\r\n	padding: 8px;\r\n}\r\n\r\n.table_mp tr:nth-child(even){ background-color: #EEEEEE; }\r\n\r\n.table_mp th {\r\n	padding-top: 12px;\r\n	padding-bottom: 12px;\r\n	text-align: left;\r\n	background-color: navy;\r\n	color: white;\r\n}\r\n.buybutton {\r\n	/* This class defines <a> tag links that look like buttons */\r\n	cursor: pointer;\r\n	width: 230px;\r\n	background-color:#1468e5;\r\n	border-radius:2px;\r\n	border:1px solid #002175;\r\n	display:inline-block;\r\n	cursor:pointer;\r\n	color:#FFFFFF;\r\n	font-family:arial;\r\n	font-size:16px;\r\n	font-weight:500;\r\n	padding:3px 6px;\r\n	margin:2px 1px 2px 1px;\r\n	text-decoration:none;\r\n}\r\n.buybutton:hover {\r\n	/* This controls the button links when you hover over them */\r\n	color:#FFFFFF;\r\n	background-color:#3385FF;\r\n	text-decoration:none;\r\n}\r\n</style>',1,'page');
/*!40000 ALTER TABLE `oto_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_templates_backups`
--

DROP TABLE IF EXISTS `oto_templates_backups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_templates_backups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `savetime` datetime NOT NULL,
  `template_name` varchar(20) NOT NULL,
  `template_data` mediumtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=77 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_templates_backups`
--

LOCK TABLES `oto_templates_backups` WRITE;
/*!40000 ALTER TABLE `oto_templates_backups` DISABLE KEYS */;
INSERT INTO `oto_templates_backups` (`id`, `savetime`, `template_name`, `template_data`) VALUES (1,'2022-05-06 14:41:44','Homepage Body','&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot;&gt;\r\n  &lt;tr&gt;\r\n    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;br&gt;\r\n    &lt;br&gt;\r\n    &lt;p&gt; &lt;/p&gt;\r\n    &lt;p&gt;\r\n&lt;form name=&quot;loginfrm&quot; method=&quot;post&quot; action=&quot;members.php&quot;&gt;\r\n&lt;table width=&quot;230&quot; border=&quot;0&quot; align=&quot;center&quot; cellpadding=&quot;4&quot; cellspacing=&quot;0&quot;&gt;\r\n  &lt;tr bgcolor=&quot;#FBDB79&quot;&gt;\r\n    &lt;td colspan=&quot;2&quot; align=&quot;center&quot; bgcolor=&quot;#D9E6D9&quot;&gt;&lt;strong&gt;Member Login &lt;/strong&gt;&lt;/td&gt;\r\n  &lt;/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td width=&quot;30&quot;&gt;&lt;strong&gt;Username:&lt;/strong&gt;&lt;/td&gt;\r\n    &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;login&quot; size=&quot;20&quot; /&gt;&lt;/td&gt;\r\n  &lt;/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td&gt;&lt;strong&gt;Password:&lt;/strong&gt;&lt;/td&gt;\r\n    &lt;td&gt;&lt;input type=&quot;password&quot; name=&quot;password&quot; size=&quot;20&quot; /&gt;&lt;/td&gt;\r\n  &lt;/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td colspan=&quot;2&quot; align=&quot;right&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;Submit&quot; value=&quot;Login&quot; /&gt;&lt;/td&gt;\r\n  &lt;/tr&gt;\r\n  &lt;tr&gt;\r\n    &lt;td colspan=&quot;2&quot; align=&quot;center&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Verdana, Arial, Helvetica, sans-serif&quot;&gt;&lt;a href=&quot;signup.php&quot;&gt;Register&lt;/a&gt; | &lt;a href=&quot;lostpass.php&quot;&gt;Lost Password&lt;/a&gt; &lt;/font&gt;&lt;/td&gt;\r\n  &lt;/tr&gt;\r\n&lt;/table&gt;\r\n&lt;/form&gt;\r\n&lt;/p&gt;\r\n    &lt;p&gt; &lt;/p&gt;\r\n    &lt;p&gt; &lt;/p&gt;\r\n&lt;BR /&gt;&lt;div align=&quot;center&quot;&gt;\r\n      &lt;center&gt;\r\n      &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;border-collapse: collapse&quot; bordercolor=&quot;#111111&quot; width=&quot;100%&quot;&gt;\r\n        &lt;tr&gt;\r\n          &lt;td width=&quot;100%&quot;&gt;\r\n          &lt;p align=&quot;center&quot;&gt;&lt;script language=&quot;JavaScript&quot; src=&quot;https://soloswaps.com/bonuspage/showad.php&quot;&gt;&lt;/script&gt;&lt;/td&gt;\r\n        &lt;/tr&gt;\r\n      &lt;/table&gt;\r\n      &lt;/center&gt;\r\n    &lt;/div&gt;\r\n    &lt;BR /&gt;\r\n    &lt;div align=&quot;center&quot;&gt;\r\n      &lt;center&gt;\r\n      &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;border-collapse: collapse&quot; bordercolor=&quot;#111111&quot; width=&quot;100%&quot;&gt;\r\n        &lt;tr&gt;\r\n          &lt;td width=&quot;100%&quot;&gt;\r\n          &lt;p align=&quot;center&quot;&gt;&lt;script src=&quot;https://lfmads.com/showad/49256695a508a&quot;&gt;&lt;/script&gt;&lt;/td&gt;\r\n        &lt;/tr&gt;\r\n      &lt;/table&gt;\r\n      &lt;/center&gt;\r\n    &lt;/div&gt;\r\n    \r\n    &lt;/td&gt;\r\n  &lt;/tr&gt;\r\n&lt;/table&gt;'),(2,'2022-05-07 07:41:44','Homepage Body','<table width=\"100%\" border=\"0\" cellpadding=\"4\" cellspacing=\"0\">\r\n  <tr>\r\n    <td align=\"left\" valign=\"top\"><br>\r\n    <br>\r\n    <p> </p>\r\n    <p>\r\n<form name=\"loginfrm\" method=\"post\" action=\"members.php\">\r\n<table width=\"230\" border=\"0\" align=\"center\" cellpadding=\"4\" cellspacing=\"0\">\r\n  <tr bgcolor=\"#FBDB79\">\r\n    <td colspan=\"2\" align=\"center\" bgcolor=\"#D9E6D9\"><strong>Member Login </strong></td>\r\n  </tr>\r\n  <tr>\r\n    <td width=\"30\"><strong>Username:</strong></td>\r\n    <td><input type=\"text\" name=\"login\" size=\"20\" /></td>\r\n  </tr>\r\n  <tr>\r\n    <td><strong>Password:</strong></td>\r\n    <td><input type=\"password\" name=\"password\" size=\"20\" /></td>\r\n  </tr>\r\n  <tr>\r\n    <td colspan=\"2\" align=\"right\"><input type=\"submit\" name=\"Submit\" value=\"Login\" /></td>\r\n  </tr>\r\n  <tr>\r\n    <td colspan=\"2\" align=\"center\"><font size=\"2\" face=\"Verdana, Arial, Helvetica, sans-serif\"><a href=\"signup.php\">Register</a> | <a href=\"lostpass.php\">Lost Password</a> </font></td>\r\n  </tr>\r\n</table>\r\n</form>\r\n</p>\r\n    <p> </p>\r\n    <p> </p>\r\n\r\n    \r\n    </td>\r\n  </tr>\r\n</table>'),(68,'2022-07-30 09:13:09','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"CWaxQVasN\" class=\"style-CWaxQVasN\">\r\n        \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1LEqaIAdqw\" class=\"style-1LEqaIAdqw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\" class=\"style-04K8AGERBs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz-overlay\">\r\n        \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kX91V0_dR\" class=\"style-kX91V0_dR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uqeByIC70w\" class=\"style-uqeByIC70w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TREtKfV38T2\" class=\"style-TREtKfV38T2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JNy4h2WJI4\" class=\"style-JNy4h2WJI4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u7Z6yTqx9W\" class=\"style-u7Z6yTqx9W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4tdLR5hlk5\" class=\"style-4tdLR5hlk5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2z28_6Nnyn\" class=\"style-2z28_6Nnyn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f0Ck0UiXu5\" class=\"style-f0Ck0UiXu5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VdUz9YHjxr\" class=\"style-VdUz9YHjxr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9VQsoL5ryR\" class=\"style-9VQsoL5ryR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_RRMD2PDDk\" class=\"style-_RRMD2PDDk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C73ICmkwHK\" class=\"style-C73ICmkwHK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zckvkQ2aDE\" class=\"style-zckvkQ2aDE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y_uio9Sbn7\" class=\"style-y_uio9Sbn7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnl7T0ReQ4\" class=\"style-Mnl7T0ReQ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DYFqMPa0Bj\" class=\"style-DYFqMPa0Bj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YVMx3V0m\" class=\"style-7YVMx3V0m\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"itLC_h3mnyn\" class=\"style-itLC_h3mnyn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QOGeXZZHNSu\" class=\"style-QOGeXZZHNSu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4W8Pqferbs7\" class=\"style-4W8Pqferbs7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 85%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 70%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B2y1thTLg05\" class=\"style-B2y1thTLg05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZUrCwc6YHfB\" class=\"style-ZUrCwc6YHfB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YG8898hf0R6\" class=\"style-YG8898hf0R6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hb7NHX9gcRa\" class=\"style-hb7NHX9gcRa\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cUwOisgmfWY\" class=\"style-cUwOisgmfWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Slmvcvuiq6p\" class=\"style-Slmvcvuiq6p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SvU2lGGwS\" class=\"style-SvU2lGGwS-overlay\">\r\n        \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SvU2lGGwS\" class=\"style-SvU2lGGwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LWT9gxVJXbU\" class=\"style-LWT9gxVJXbU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQoyVMq30ru\" class=\"style-FQoyVMq30ru\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Leqb4xP8b3\" class=\"style-Leqb4xP8b3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhdaAJMa_Vb\" class=\"style-jhdaAJMa_Vb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D0PMvn9OzWP\" class=\"style-D0PMvn9OzWP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eSHr0GjFMF6\" class=\"style-eSHr0GjFMF6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoANoMnyCy\" class=\"style-eoANoMnyCy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RYKkfiWJUh\" class=\"style-RYKkfiWJUh\">\r\n        \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IVwF60zTeZ\" class=\"style-IVwF60zTeZ\">\r\n        \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gl9cxAwaIO\" class=\"style-gl9cxAwaIO\">\r\n        \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yW3HWfv6uh\" class=\"style-yW3HWfv6uh\">\r\n        \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qVhSWuYVyr\" class=\"style-qVhSWuYVyr\">\r\n        \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Nf_wtmCq2o\" class=\"style-Nf_wtmCq2o\">\r\n        \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VFm3GmgY2R\" class=\"style-VFm3GmgY2R\">\r\n        \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gcjc443D1Q\" class=\"style-Gcjc443D1Q\">\r\n        \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gpaOSSTYJBm\" class=\"style-gpaOSSTYJBm\">\r\n        \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A4ayDdm1iX7\" class=\"style-A4ayDdm1iX7\">\r\n        \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0AN508oW9rf\" class=\"style-0AN508oW9rf\">\r\n        \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WjrpIspQdjx\" class=\"style-WjrpIspQdjx\">\r\n        \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M3A5Z9KLTKi\" class=\"style-M3A5Z9KLTKi\">\r\n        \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12jtMtHeg9_\" class=\"style-12jtMtHeg9_\">\r\n        \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RVfYN8k3yCi\" class=\"style-RVfYN8k3yCi\">\r\n        \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{\"id\":7610,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png\",\"category\":\"Navigation bars\",\"tag\":\"user\",\"user_id\":\"5df98d83cf362c0e9cf8723d\",\"filename\":null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\" tabindex=\"0\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php?rid=#AFFILIATEID#\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?s=noauth\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\" style=\"\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\">Fast, Effective, Free</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-dN8ut9UnD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"dN8ut9UnD\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-1LEqaIAdqw\">Solo ADS!</h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-NfeuVlmvqT\">Grow your online business using our proven Traffic Network. Take advantage of our Premium FREE marketing tools to give you every advantage.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><div data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component-id-CWaxQVasN gp-component dndbefore-bottom\" data-gp-classes=\"\" data-gp-component=\"video-all\" data-gp-component-id=\"CWaxQVasN\">\r\n        <div class=\"bg-black cursor-pointer\" style=\"padding-bottom: 56.25%;\">\r\n        <svg fill=\"rgba(32, 45, 60, 0.85)\" style=\"position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:15%;z-index:1;\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\r\n        <rect width=\"24\" height=\"24\" fill=\"none\"></rect>\r\n        <path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm-2 14.5v-9l6 4.5z\"></path></svg>\r\n        <img data-gp-img-placeholder=\"1O6yTMzUQ\" class=\"absolute h-full w-full object-cover\" src=\"https://images.groovetech.io/M3ja4jARec7pb1dZTl8btw67-YRdvJ6DtLJqfxXUD74/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU4MjQxODM4X1RobWIxLnBuZw.webp\">\r\n        \r\n    <script id=\"script-h9D-faIX6\">\r\n    function setvIframe(vIframe){\r\n      \r\n      var vIframeSrc = vIframe.getAttribute(\'src\') + \'&autoplay=1&mute=1\';\r\n  if (!window.inBuilder) {\r\n    vIframe.setAttribute(\'src\',vIframeSrc);\r\n  }\r\n    }\r\n      \r\n    if(!window.inBuilder) document.querySelector(\'[data-gp-img-placeholder=\"1O6yTMzUQ\"]\').parentNode.addEventListener(\"click\", function() {\r\n      document.querySelector(\'[data-gp-img-placeholder=\"1O6yTMzUQ\"]\').parentNode.innerHTML=\'<iframe src=\"https://player.vimeo.com/video/731364219?portrait=0&transparent=1\" data-gp-vembed-id=\"1O6yTMzUQ\" allow=\"autoplay; fullscreen\" allowfullscreen frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"></iframe>\';\r\n      setvIframe(document.querySelector(\'[data-gp-vembed-id=\"1O6yTMzUQ\"]\'));\r\n    });\r\n    ;\r\n    </script>\r\n    \r\n  \r\n        </div>\r\n      </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-ww47D26mJz\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12301095\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":12301095,\"type\":\"block\",\"thumbnail\":\"//assets.grooveapps.com/pages-previews/62bdf8867004d.png\",\"category\":\"Personalized Templates\",\"tag\":\"designed\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null,\"height\":358,\"global\":0}\" data-gp-component-id=\"ww47D26mJz\" id=\"ww47D26mJz\" tabindex=\"0\" style=\"\"><a name=\"ww47D26mJz\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"eoANoMnyCy\">\r\n        \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\">\r\n        \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-RYKkfiWJUh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"RYKkfiWJUh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IVwF60zTeZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"IVwF60zTeZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-gl9cxAwaIO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gl9cxAwaIO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IJK08VECM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IJK08VECM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-uqeByIC70w\">GET ALL THIS 100% <span style=\"color: rgb(251, 214, 0);\">FREE!!</span></h1></div><ul class=\"gp-component-id-kX91V0_dR gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"kX91V0_dR\" tabindex=\"0\"><ul class=\"gp-component-id-yW3HWfv6uh gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"yW3HWfv6uh\" tabindex=\"0\" style=\"\"><ul class=\"gp-component gp-component-id-qVhSWuYVyr\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qVhSWuYVyr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/NyF2trOxc1kli2y6XUaBk2j0J46YMjRUi5exmRLmNlg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjA4MzY4XzM2LU5vdGlmaWNhdGlvbi5wbmc.webp\" alt=\"\" class=\"gp-component gp-component-id-Nf_wtmCq2o\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Nf_wtmCq2o\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-wBONUKqVm6 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"wBONUKqVm6\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eoANoMnyCy\">1,000 AD CREDITS</h2></div></ul><ul class=\"gp-component gp-component-id-VFm3GmgY2R\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"VFm3GmgY2R\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-Leqb4xP8b3\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"Leqb4xP8b3\" aria-hidden=\"true\" tabindex=\"0\"></span></ul><ul class=\"gp-component gp-component-id-Gcjc443D1Q\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"Gcjc443D1Q\" tabindex=\"0\"><img src=\"https://images.groovetech.io/vTMQkRRTqPWVHvFirgncAtE1DFpn41TjjxJEzGHDwpo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2NzYwXzM1LU1lc3NhZ2UucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-gpaOSSTYJBm\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"gpaOSSTYJBm\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l3yIQ6CVHq0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l3yIQ6CVHq0\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eSHr0GjFMF6\">EMAIL & SMS SENDER</h2></div></ul><ul class=\"gp-component gp-component-id-A4ayDdm1iX7\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"A4ayDdm1iX7\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-FQoyVMq30ru\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"FQoyVMq30ru\" aria-hidden=\"true\" tabindex=\"0\"></span></ul><ul class=\"gp-component gp-component-id-0AN508oW9rf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0AN508oW9rf\" tabindex=\"0\"><img src=\"https://images.groovetech.io/bO03g-U5sgytnMCNmjm2pO_NUSKgS0hI8Xyw8zsRdKM/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODAyXzM0LVZvdWNoZXIucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-WjrpIspQdjx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"WjrpIspQdjx\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zVUIhCaMN0d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zVUIhCaMN0d\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-D0PMvn9OzWP\">PAGE BUILDER</h2></div></ul><ul class=\"gp-component gp-component-id-M3A5Z9KLTKi\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"M3A5Z9KLTKi\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-LWT9gxVJXbU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"LWT9gxVJXbU\" aria-hidden=\"true\" tabindex=\"0\" style=\"\"></span></ul><ul class=\"gp-component gp-component-id-12jtMtHeg9_\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"12jtMtHeg9_\" tabindex=\"0\"><img src=\"https://images.groovetech.io/SYCBkqwZYbmNu-YE4YPljBO0onhh8WBeopCR3qYIC7Y/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODMwXzAyLVJhdGUucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-RVfYN8k3yCi dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"RVfYN8k3yCi\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-qt3o2nLbXte\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"qt3o2nLbXte\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-jhdaAJMa_Vb\">LEAD & TASK CRM</h2></div></ul></ul><div class=\"gp-text-container gp-component gp-component-id-Oaku6Kh_7t dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Oaku6Kh_7t\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-04K8AGERBs\"><span style=\"color: rgb(251, 214, 0);\">PLUS...</span> Link Tracker System, With Rotator</h1></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and your ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENJOY NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking our your links and visiting your pages</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-SvU2lGGwS\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12303359\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":12303359,\"type\":\"block\",\"thumbnail\":\"//assets.grooveapps.com/pages-previews/62d1eb4c12cac.png\",\"category\":\"Personalized Templates\",\"tag\":\"designed\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null,\"height\":769,\"global\":0}\" data-gp-component-id=\"SvU2lGGwS\" id=\"SvU2lGGwS\" tabindex=\"0\" style=\"\"><a name=\"SvU2lGGwS\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-Slmvcvuiq6p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Slmvcvuiq6p\" tabindex=\"0\" data-gp-component=\"container\"><div class=\"gp-component gp-component-id-cUwOisgmfWY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"cUwOisgmfWY\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-hb7NHX9gcRa\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"hb7NHX9gcRa\" tabindex=\"0\"><div class=\"gp-component gp-component-id-YG8898hf0R6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"YG8898hf0R6\" tabindex=\"0\"><img src=\"https://images.groovetech.io/jZ23q2xM3tGFyzdakxZ1YyGdCDlAhlESXoKCJ5fSxqE/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU3OTI3ODc1X0dPTURNaWNvbm9zY2hhZmEzLnBuZw.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZUrCwc6YHfB\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZUrCwc6YHfB\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-B2y1thTLg05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"B2y1thTLg05\" tabindex=\"0\"><img src=\"https://images.groovetech.io/YIGbKeuWkpM2oFj9FaCsULt5KaDHEAKUDRR5i7Vq3pY/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU3OTI3OTI4X0RFU0NNRE1pY29ub3NjaGFmYTMucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-4W8Pqferbs7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"4W8Pqferbs7\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-QOGeXZZHNSu\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"QOGeXZZHNSu\" tabindex=\"0\"><div class=\"gp-component gp-component-id-TREtKfV38T2 dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"TREtKfV38T2\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-itLC_h3mnyn\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"itLC_h3mnyn\" tabindex=\"0\"><div class=\"gp-component gp-component-id-7YVMx3V0m\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"7YVMx3V0m\" tabindex=\"0\"><div class=\"gp-component gp-component-id-DYFqMPa0Bj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"DYFqMPa0Bj\" tabindex=\"0\"><img src=\"https://images.groovetech.io/e9TLQQ3wr5FhqQ8ZG3VTFKath3qiCibtoAqscKkFW4M/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NjQ5X2tpc3NjbGlwYXJ0LWZyZWUtY2xpcC1hcnQtZW50ZXItdG8td2luLWNsaXBhcnQtbG9nby1jbGlwLWFydC0wOWNmODc0OGI1NWUxMDM3LnBuZw.webp\" alt=\"\" class=\"gp-component gp-component-id-Mnl7T0ReQ4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Mnl7T0ReQ4\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-y_uio9Sbn7\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"y_uio9Sbn7\" tabindex=\"0\"><img src=\"https://images.groovetech.io/qhrAgFaGUbBhqazjuf92gTC1s7rTbPHK5h6MAo7D9Gw/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NjI2X2ltYWdlczguanBn.webp\" alt=\"\" class=\"gp-component gp-component-id-zckvkQ2aDE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zckvkQ2aDE\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-C73ICmkwHK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"C73ICmkwHK\" tabindex=\"0\"><img src=\"https://images.groovetech.io/LDTSYD8Fp2IzoWMF_dTeZK_fA3onbZNQL_dw17Rbf1k/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NzU0X2ltYWdlczkucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-_RRMD2PDDk\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"_RRMD2PDDk\" tabindex=\"0\"></div></div><div class=\"gp-component gp-component-id-9VQsoL5ryR\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"9VQsoL5ryR\" tabindex=\"0\"><div class=\"gp-component gp-component-id-VdUz9YHjxr\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"VdUz9YHjxr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/dnfZbGZi5cVNOX8URYiINZ9YcS0YbQ6aH7NU-m16WcQ/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5ODEzX2ltYWdlczExLmpwZw.webp\" alt=\"\" class=\"gp-component gp-component-id-f0Ck0UiXu5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"f0Ck0UiXu5\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-2z28_6Nnyn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"2z28_6Nnyn\" tabindex=\"0\"><img src=\"https://images.groovetech.io/ZGqdqa3HLQU7JQ_IXaJMhWxsHpxfomwScWLVvb9QAgc/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5ODg2XzM2MEYyNjg2OTM0MTRvb0laTWYzZ3RrT3k2Q2N2eDBjRHoxU1plZnBSNnBObC5qcGc.webp\" alt=\"\" class=\"gp-component gp-component-id-4tdLR5hlk5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"4tdLR5hlk5\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-u7Z6yTqx9W\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"u7Z6yTqx9W\" tabindex=\"0\"><img src=\"https://images.groovetech.io/AoELaGnF0SF7CCtM2wOAbAQjEkI7z2S81OkpFN8H4eg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5OTQ3X3VubmFtZWQucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-JNy4h2WJI4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JNy4h2WJI4\" tabindex=\"0\"></div></div></ul></div></div></ul></div></div>\r\n    </section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{\"id\":12295330,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/628d015e95545.png\",\"category\":\"No Category\",\"tag\":\"user\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null}\" id=\"rDPeNtfic0w\" style=\"\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.Â Includes Domain, Theme, Plugins,Â Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong><em>(retail value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.Â We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong><em>(retail value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Messing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong><em>(retail value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_ dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.Â Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong><em>(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.Â Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong><em>(Retail Value $650)Â </em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.Â Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.Â </p><p class=\"gp-component-id-k4R7SI080\"><strong><em>(Retail Price $497)Â </em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.Â Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong><em>(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.Â Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong>(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php?rid=#AFFILIATEID#\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(69,'2022-08-01 08:51:58','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&amp;rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1LEqaIAdqw\" class=\"style-1LEqaIAdqw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgba(243, 243, 243, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CWaxQVasN\" class=\"style-CWaxQVasN\">\r\n        \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\" class=\"style-04K8AGERBs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz-overlay\">\r\n        \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kX91V0_dR\" class=\"style-kX91V0_dR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uqeByIC70w\" class=\"style-uqeByIC70w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TREtKfV38T2\" class=\"style-TREtKfV38T2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JNy4h2WJI4\" class=\"style-JNy4h2WJI4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u7Z6yTqx9W\" class=\"style-u7Z6yTqx9W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4tdLR5hlk5\" class=\"style-4tdLR5hlk5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2z28_6Nnyn\" class=\"style-2z28_6Nnyn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f0Ck0UiXu5\" class=\"style-f0Ck0UiXu5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VdUz9YHjxr\" class=\"style-VdUz9YHjxr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9VQsoL5ryR\" class=\"style-9VQsoL5ryR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_RRMD2PDDk\" class=\"style-_RRMD2PDDk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C73ICmkwHK\" class=\"style-C73ICmkwHK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zckvkQ2aDE\" class=\"style-zckvkQ2aDE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y_uio9Sbn7\" class=\"style-y_uio9Sbn7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnl7T0ReQ4\" class=\"style-Mnl7T0ReQ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DYFqMPa0Bj\" class=\"style-DYFqMPa0Bj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YVMx3V0m\" class=\"style-7YVMx3V0m\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"itLC_h3mnyn\" class=\"style-itLC_h3mnyn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QOGeXZZHNSu\" class=\"style-QOGeXZZHNSu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4W8Pqferbs7\" class=\"style-4W8Pqferbs7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 85%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 70%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B2y1thTLg05\" class=\"style-B2y1thTLg05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZUrCwc6YHfB\" class=\"style-ZUrCwc6YHfB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YG8898hf0R6\" class=\"style-YG8898hf0R6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hb7NHX9gcRa\" class=\"style-hb7NHX9gcRa\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cUwOisgmfWY\" class=\"style-cUwOisgmfWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Slmvcvuiq6p\" class=\"style-Slmvcvuiq6p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SvU2lGGwS\" class=\"style-SvU2lGGwS-overlay\">\r\n        \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SvU2lGGwS\" class=\"style-SvU2lGGwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LWT9gxVJXbU\" class=\"style-LWT9gxVJXbU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQoyVMq30ru\" class=\"style-FQoyVMq30ru\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Leqb4xP8b3\" class=\"style-Leqb4xP8b3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhdaAJMa_Vb\" class=\"style-jhdaAJMa_Vb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D0PMvn9OzWP\" class=\"style-D0PMvn9OzWP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eSHr0GjFMF6\" class=\"style-eSHr0GjFMF6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoANoMnyCy\" class=\"style-eoANoMnyCy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RYKkfiWJUh\" class=\"style-RYKkfiWJUh\">\r\n        \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IVwF60zTeZ\" class=\"style-IVwF60zTeZ\">\r\n        \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gl9cxAwaIO\" class=\"style-gl9cxAwaIO\">\r\n        \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yW3HWfv6uh\" class=\"style-yW3HWfv6uh\">\r\n        \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qVhSWuYVyr\" class=\"style-qVhSWuYVyr\">\r\n        \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Nf_wtmCq2o\" class=\"style-Nf_wtmCq2o\">\r\n        \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VFm3GmgY2R\" class=\"style-VFm3GmgY2R\">\r\n        \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gcjc443D1Q\" class=\"style-Gcjc443D1Q\">\r\n        \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gpaOSSTYJBm\" class=\"style-gpaOSSTYJBm\">\r\n        \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A4ayDdm1iX7\" class=\"style-A4ayDdm1iX7\">\r\n        \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0AN508oW9rf\" class=\"style-0AN508oW9rf\">\r\n        \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WjrpIspQdjx\" class=\"style-WjrpIspQdjx\">\r\n        \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M3A5Z9KLTKi\" class=\"style-M3A5Z9KLTKi\">\r\n        \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12jtMtHeg9_\" class=\"style-12jtMtHeg9_\">\r\n        \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RVfYN8k3yCi\" class=\"style-RVfYN8k3yCi\">\r\n        \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{&quot;id&quot;:7610,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png&quot;,&quot;category&quot;:&quot;Navigation bars&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5df98d83cf362c0e9cf8723d&quot;,&quot;filename&quot;:null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\" tabindex=\"0\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php?rid=#AFFILIATEID#\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?rid=#AFFILIATEID#\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\" style=\"\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\" data-id=\"quill-node-0\">Fast, Effective, Free</h1></div><div class=\"gp-text-container gp-component gp-component-id-dN8ut9UnD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"dN8ut9UnD\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-1LEqaIAdqw\" data-id=\"quill-node-0\">Solo ADS!</h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-NfeuVlmvqT\" data-id=\"quill-node-0\">Grow your online business using our proven Traffic Network. Take advantage of our Premium FREE marketing tools to give you every advantage.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><div data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component-id-CWaxQVasN gp-component dndbefore-bottom\" data-gp-classes=\"\" data-gp-component=\"video-all\" data-gp-component-id=\"CWaxQVasN\" tabindex=\"0\">\r\n        <div class=\"bg-black cursor-pointer\" style=\"padding-bottom: 56.25%;\">\r\n        <svg fill=\"rgba(32, 45, 60, 0.85)\" style=\"position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:15%;z-index:1;\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\r\n        <rect width=\"24\" height=\"24\" fill=\"none\"></rect>\r\n        <path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm-2 14.5v-9l6 4.5z\"></path></svg>\r\n        <img data-gp-img-placeholder=\"1O6yTMzUQ\" class=\"absolute h-full w-full object-cover\" src=\"https://images.groovetech.io/M3ja4jARec7pb1dZTl8btw67-YRdvJ6DtLJqfxXUD74/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU4MjQxODM4X1RobWIxLnBuZw.webp\">\r\n        \r\n    <script id=\"script-h9D-faIX6\">\r\n    function setvIframe(vIframe){\r\n      \r\n      var vIframeSrc = vIframe.getAttribute(\'src\') + \'&autoplay=1&mute=1\';\r\n  if (!window.inBuilder) {\r\n    vIframe.setAttribute(\'src\',vIframeSrc);\r\n  }\r\n    }\r\n      \r\n    if(!window.inBuilder) document.querySelector(\'[data-gp-img-placeholder=\"1O6yTMzUQ\"]\').parentNode.addEventListener(\"click\", function() {\r\n      document.querySelector(\'[data-gp-img-placeholder=\"1O6yTMzUQ\"]\').parentNode.innerHTML=\'<iframe src=\"https://player.vimeo.com/video/731364219?portrait=0&transparent=1\" data-gp-vembed-id=\"1O6yTMzUQ\" allow=\"autoplay; fullscreen\" allowfullscreen frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"></iframe>\';\r\n      setvIframe(document.querySelector(\'[data-gp-vembed-id=\"1O6yTMzUQ\"]\'));\r\n    });\r\n    ;\r\n    </script>\r\n    \r\n  \r\n        </div>\r\n      </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-ww47D26mJz\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12301095\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:12301095,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;//assets.grooveapps.com/pages-previews/62bdf8867004d.png&quot;,&quot;category&quot;:&quot;Personalized Templates&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null,&quot;height&quot;:358,&quot;global&quot;:0}\" data-gp-component-id=\"ww47D26mJz\" id=\"ww47D26mJz\" tabindex=\"0\" style=\"\"><a name=\"ww47D26mJz\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"eoANoMnyCy\">\r\n        \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\">\r\n        \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-RYKkfiWJUh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"RYKkfiWJUh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IVwF60zTeZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{&quot;id&quot;:48,&quot;name&quot;:&quot;layout-1&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==&quot;,&quot;title&quot;:&quot;1 Column&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"IVwF60zTeZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-gl9cxAwaIO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gl9cxAwaIO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IJK08VECM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IJK08VECM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-uqeByIC70w\">GET ALL THIS 100% <span style=\"color: rgb(251, 214, 0);\">FREE!!</span></h1></div><ul class=\"gp-component-id-kX91V0_dR gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"kX91V0_dR\" tabindex=\"0\"><ul class=\"gp-component-id-yW3HWfv6uh gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"yW3HWfv6uh\" tabindex=\"0\" style=\"\"><ul class=\"gp-component gp-component-id-qVhSWuYVyr\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"qVhSWuYVyr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/NyF2trOxc1kli2y6XUaBk2j0J46YMjRUi5exmRLmNlg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjA4MzY4XzM2LU5vdGlmaWNhdGlvbi5wbmc.webp\" alt=\"\" class=\"gp-component gp-component-id-Nf_wtmCq2o\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Nf_wtmCq2o\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-wBONUKqVm6 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"wBONUKqVm6\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eoANoMnyCy\">1,000 AD CREDITS</h2></div></ul><ul class=\"gp-component gp-component-id-VFm3GmgY2R\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"VFm3GmgY2R\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-Leqb4xP8b3\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"Leqb4xP8b3\" aria-hidden=\"true\" tabindex=\"0\"></span></ul><ul class=\"gp-component gp-component-id-Gcjc443D1Q\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"Gcjc443D1Q\" tabindex=\"0\"><img src=\"https://images.groovetech.io/vTMQkRRTqPWVHvFirgncAtE1DFpn41TjjxJEzGHDwpo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2NzYwXzM1LU1lc3NhZ2UucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-gpaOSSTYJBm\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"gpaOSSTYJBm\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l3yIQ6CVHq0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l3yIQ6CVHq0\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eSHr0GjFMF6\">EMAIL &amp; SMS SENDER</h2></div></ul><ul class=\"gp-component gp-component-id-A4ayDdm1iX7\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"A4ayDdm1iX7\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-FQoyVMq30ru\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"FQoyVMq30ru\" aria-hidden=\"true\" tabindex=\"0\"></span></ul><ul class=\"gp-component gp-component-id-0AN508oW9rf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"0AN508oW9rf\" tabindex=\"0\"><img src=\"https://images.groovetech.io/bO03g-U5sgytnMCNmjm2pO_NUSKgS0hI8Xyw8zsRdKM/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODAyXzM0LVZvdWNoZXIucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-WjrpIspQdjx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"WjrpIspQdjx\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zVUIhCaMN0d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zVUIhCaMN0d\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-D0PMvn9OzWP\">PAGE BUILDER</h2></div></ul><ul class=\"gp-component gp-component-id-M3A5Z9KLTKi\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"M3A5Z9KLTKi\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-LWT9gxVJXbU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"LWT9gxVJXbU\" aria-hidden=\"true\" tabindex=\"0\" style=\"\"></span></ul><ul class=\"gp-component gp-component-id-12jtMtHeg9_\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"12jtMtHeg9_\" tabindex=\"0\"><img src=\"https://images.groovetech.io/SYCBkqwZYbmNu-YE4YPljBO0onhh8WBeopCR3qYIC7Y/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODMwXzAyLVJhdGUucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-RVfYN8k3yCi dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"RVfYN8k3yCi\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-qt3o2nLbXte\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"qt3o2nLbXte\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-jhdaAJMa_Vb\">LEAD &amp; TASK CRM</h2></div></ul></ul><div class=\"gp-text-container gp-component gp-component-id-Oaku6Kh_7t dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Oaku6Kh_7t\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-04K8AGERBs\"><span style=\"color: rgb(251, 214, 0);\">PLUS...</span> Link Tracker System, With Rotator</h1></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and your ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENJOY NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking our your links and visiting your pages</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-SvU2lGGwS\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12303359\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:12303359,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;//assets.grooveapps.com/pages-previews/62d1eb4c12cac.png&quot;,&quot;category&quot;:&quot;Personalized Templates&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null,&quot;height&quot;:769,&quot;global&quot;:0}\" data-gp-component-id=\"SvU2lGGwS\" id=\"SvU2lGGwS\" tabindex=\"0\" style=\"\"><a name=\"SvU2lGGwS\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-Slmvcvuiq6p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Slmvcvuiq6p\" tabindex=\"0\" data-gp-component=\"container\"><div class=\"gp-component gp-component-id-cUwOisgmfWY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"cUwOisgmfWY\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-hb7NHX9gcRa\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"hb7NHX9gcRa\" tabindex=\"0\"><div class=\"gp-component gp-component-id-YG8898hf0R6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"YG8898hf0R6\" tabindex=\"0\"><img src=\"https://images.groovetech.io/jZ23q2xM3tGFyzdakxZ1YyGdCDlAhlESXoKCJ5fSxqE/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU3OTI3ODc1X0dPTURNaWNvbm9zY2hhZmEzLnBuZw.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZUrCwc6YHfB\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZUrCwc6YHfB\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-B2y1thTLg05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"B2y1thTLg05\" tabindex=\"0\"><img src=\"https://images.groovetech.io/YIGbKeuWkpM2oFj9FaCsULt5KaDHEAKUDRR5i7Vq3pY/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU3OTI3OTI4X0RFU0NNRE1pY29ub3NjaGFmYTMucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-4W8Pqferbs7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"4W8Pqferbs7\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-QOGeXZZHNSu\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"QOGeXZZHNSu\" tabindex=\"0\"><div class=\"gp-component gp-component-id-TREtKfV38T2 dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"TREtKfV38T2\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-itLC_h3mnyn\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"itLC_h3mnyn\" tabindex=\"0\"><div class=\"gp-component gp-component-id-7YVMx3V0m\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"7YVMx3V0m\" tabindex=\"0\"><div class=\"gp-component gp-component-id-DYFqMPa0Bj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"DYFqMPa0Bj\" tabindex=\"0\"><img src=\"https://images.groovetech.io/e9TLQQ3wr5FhqQ8ZG3VTFKath3qiCibtoAqscKkFW4M/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NjQ5X2tpc3NjbGlwYXJ0LWZyZWUtY2xpcC1hcnQtZW50ZXItdG8td2luLWNsaXBhcnQtbG9nby1jbGlwLWFydC0wOWNmODc0OGI1NWUxMDM3LnBuZw.webp\" alt=\"\" class=\"gp-component gp-component-id-Mnl7T0ReQ4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Mnl7T0ReQ4\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-y_uio9Sbn7\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"y_uio9Sbn7\" tabindex=\"0\"><img src=\"https://images.groovetech.io/qhrAgFaGUbBhqazjuf92gTC1s7rTbPHK5h6MAo7D9Gw/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NjI2X2ltYWdlczguanBn.webp\" alt=\"\" class=\"gp-component gp-component-id-zckvkQ2aDE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zckvkQ2aDE\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-C73ICmkwHK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"C73ICmkwHK\" tabindex=\"0\"><img src=\"https://images.groovetech.io/LDTSYD8Fp2IzoWMF_dTeZK_fA3onbZNQL_dw17Rbf1k/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NzU0X2ltYWdlczkucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-_RRMD2PDDk\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"_RRMD2PDDk\" tabindex=\"0\"></div></div><div class=\"gp-component gp-component-id-9VQsoL5ryR\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"9VQsoL5ryR\" tabindex=\"0\"><div class=\"gp-component gp-component-id-VdUz9YHjxr\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"VdUz9YHjxr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/dnfZbGZi5cVNOX8URYiINZ9YcS0YbQ6aH7NU-m16WcQ/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5ODEzX2ltYWdlczExLmpwZw.webp\" alt=\"\" class=\"gp-component gp-component-id-f0Ck0UiXu5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"f0Ck0UiXu5\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-2z28_6Nnyn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"2z28_6Nnyn\" tabindex=\"0\"><img src=\"https://images.groovetech.io/ZGqdqa3HLQU7JQ_IXaJMhWxsHpxfomwScWLVvb9QAgc/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5ODg2XzM2MEYyNjg2OTM0MTRvb0laTWYzZ3RrT3k2Q2N2eDBjRHoxU1plZnBSNnBObC5qcGc.webp\" alt=\"\" class=\"gp-component gp-component-id-4tdLR5hlk5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"4tdLR5hlk5\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-u7Z6yTqx9W\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"u7Z6yTqx9W\" tabindex=\"0\"><img src=\"https://images.groovetech.io/AoELaGnF0SF7CCtM2wOAbAQjEkI7z2S81OkpFN8H4eg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5OTQ3X3VubmFtZWQucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-JNy4h2WJI4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JNy4h2WJI4\" tabindex=\"0\"></div></div></ul></div></div></ul></div></div>\r\n    </section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{&quot;id&quot;:12295330,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/628d015e95545.png&quot;,&quot;category&quot;:&quot;No Category&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null}\" id=\"rDPeNtfic0w\" style=\"\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.&nbsp;Includes Domain, Theme, Plugins,&nbsp;Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong><em>(retail value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.&nbsp;We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong><em>(retail value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Messing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong><em>(retail value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_ dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.&nbsp;Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong><em>(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.&nbsp;Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong><em>(Retail Value $650)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.&nbsp;Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.&nbsp;</p><p class=\"gp-component-id-k4R7SI080\"><strong><em>(Retail Price $497)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.&nbsp;Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong><em>(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.&nbsp;Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong>(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php?rid=#AFFILIATEID#\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(70,'2022-08-02 07:16:14','Homepage Body','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/login/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62e91cb21a271b54d91cb522\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"PsSXMMc7H\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&amp;rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62e91cb21a271b54d91cb522\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQc1NYTU1jN0giOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62e91cb21a271b54d91cb522\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"PsSXMMc7H\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"eN5mGH9VP\" class=\"style-eN5mGH9VP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vQ7eQdDJz\" class=\"style-vQ7eQdDJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z8RijvnQJ\" class=\"style-Z8RijvnQJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W3F_VLruj0\" class=\"style-gp-body\">\r\n        @media (max-width: 639px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YK6e_A_8hu\" class=\"style-YK6e_A_8hu-overlay\">\r\n        \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xygdjUPmZ\" class=\"style-xygdjUPmZ\">\r\n        \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PxljAz0oi\" class=\"style-PxljAz0oi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PxljAz0oi\">\r\n        \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xvcTfaKq7\" class=\"style-xvcTfaKq7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuoTiuOJ\" class=\"style-6DuoTiuOJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuoTiuOJ\">\r\n        \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YK6e_A_8hu\" class=\"style-YK6e_A_8hu\">\r\n        \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AsoY4kq8qp\" class=\"style-AsoY4kq8qp\">\r\n        \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-YK6e_A_8hu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:79395,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/elements-previews/thumbs/empty.png&quot;,&quot;category&quot;:&quot;Empty blocks&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;filename&quot;:&quot;_empty_0&quot;,&quot;height&quot;:0,&quot;global&quot;:1}\" data-gp-component-id=\"YK6e_A_8hu\" style=\"\" id=\"YK6e_A_8hu\" tabindex=\"0\"><a name=\"YK6e_A_8hu\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-AsoY4kq8qp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AsoY4kq8qp\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><ul class=\"gp-component-id-xvcTfaKq7 gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"xvcTfaKq7\" tabindex=\"0\"><div class=\"gp-component-id-Z8RijvnQJ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"Z8RijvnQJ\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ujNEkUUOGR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ujNEkUUOGR\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h1 class=\"gp-component-id-6DuoTiuOJ\" data-id=\"quill-node-0\">Member Login</h1></div></div><div class=\"gp-component-id-vQ7eQdDJz gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"vQ7eQdDJz\" tabindex=\"0\"><table border=\"0\" cellpadding=\"4\" cellspacing=\"0\" width=\"100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"left\" valign=\"top\">Â \r\n\r\n			<form action=\"members.php\" method=\"post\" name=\"loginfrm\">\r\n			<table align=\"center\" border=\"0\" cellpadding=\"4\" cellspacing=\"0\" height=\"350\" width=\"720\">\r\n				<tbody>\r\n					<tr style=\"padding-top:0; padding-bottom:0\">\r\n						<td align=\"center\" width=\"50%\"><strong style=\"font-size:30px\">Username:</strong></td>\r\n						<td align=\"center\"><input name=\"login\" style=\"height:50px\" size=\"50\" type=\"text\" /></td>\r\n					</tr>\r\n					<tr style=\"padding-top:0; padding-bottom:0\">\r\n						<td align=\"center\"><strong style=\"font-size:30px\">Password:</strong></td>\r\n						<td align=\"center\"><input name=\"password\" style=\"height:50px\" size=\"50\" type=\"password\" /></td>\r\n					</tr>\r\n					<tr>\r\n						<td align=\"center\" colspan=\"2\"><input name=\"Submit\" style=\"background-color:#0076B4; color:white; border-color:#0076B4; border-radius: 100px; font-size:16px; width:320px; height:50px\" type=\"submit\" value=\"Login\" /></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</form>\r\n\r\n			<div align=\"center\">\r\n			<center>\r\n			<table border=\"0\" bordercolor=\"#111111\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td width=\"100%\">\r\n						<p align=\"center\"><script language=\"JavaScript\" src=\"\"></script></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</center>\r\n			</div>\r\n			Â \r\n\r\n			<div align=\"center\">\r\n			<center>\r\n			<table border=\"0\" bordercolor=\"#111111\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"100%\">\r\n				\r\n			</table>\r\n			</center>\r\n			</div>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table></div><div class=\"gp-component-id-eN5mGH9VP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"eN5mGH9VP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-kKQtt7WQQq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kKQtt7WQQq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PxljAz0oi\" data-id=\"quill-node-0\"><a href=\"signup.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">Register</a> | <a href=\"lostpass.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">Lost Password</a></h2></div></div><form class=\"gp-component-id-xygdjUPmZ gp-component\" action=\"\" method=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"form-container\" data-gp-component-data=\"{&quot;id&quot;:32,&quot;name&quot;:&quot;form-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Form&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Empty Form&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"xygdjUPmZ\" style=\"\" tabindex=\"0\">\r\n        \r\n        \r\n      </form></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(71,'2022-08-02 09:40:31','Homepage Body','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/login/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62e91cb21a271b54d91cb522\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"PsSXMMc7H\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62e91cb21a271b54d91cb522\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQc1NYTU1jN0giOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62e91cb21a271b54d91cb522\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"PsSXMMc7H\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"eN5mGH9VP\" class=\"style-eN5mGH9VP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vQ7eQdDJz\" class=\"style-vQ7eQdDJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z8RijvnQJ\" class=\"style-Z8RijvnQJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W3F_VLruj0\" class=\"style-gp-body\">\r\n        @media (max-width: 639px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YK6e_A_8hu\" class=\"style-YK6e_A_8hu-overlay\">\r\n        \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xygdjUPmZ\" class=\"style-xygdjUPmZ\">\r\n        \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PxljAz0oi\" class=\"style-PxljAz0oi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PxljAz0oi\">\r\n        \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xvcTfaKq7\" class=\"style-xvcTfaKq7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuoTiuOJ\" class=\"style-6DuoTiuOJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuoTiuOJ\">\r\n        \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YK6e_A_8hu\" class=\"style-YK6e_A_8hu\">\r\n        \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AsoY4kq8qp\" class=\"style-AsoY4kq8qp\">\r\n        \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-YK6e_A_8hu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"YK6e_A_8hu\" style=\"\" id=\"YK6e_A_8hu\" tabindex=\"0\"><a name=\"YK6e_A_8hu\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-AsoY4kq8qp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AsoY4kq8qp\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><ul class=\"gp-component-id-xvcTfaKq7 gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"xvcTfaKq7\" tabindex=\"0\"><div class=\"gp-component-id-Z8RijvnQJ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z8RijvnQJ\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ujNEkUUOGR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ujNEkUUOGR\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h1 class=\"gp-component-id-6DuoTiuOJ\" data-id=\"quill-node-0\">Member Login</h1></div></div><div class=\"gp-component-id-vQ7eQdDJz gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vQ7eQdDJz\" tabindex=\"0\"><table border=\"0\" cellpadding=\"4\" cellspacing=\"0\" width=\"100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"left\" valign=\"top\">Â \r\n\r\n			<form action=\"members.php\" method=\"post\" name=\"loginfrm\">\r\n			<table align=\"center\" border=\"0\" cellpadding=\"4\" cellspacing=\"0\" height=\"350\" width=\"720\">\r\n				<tbody>\r\n					<tr style=\"padding-top:0; padding-bottom:0\">\r\n						<td align=\"center\" width=\"50%\"><strong style=\"font-size:30px\">Username:</strong></td>\r\n						<td align=\"center\"><input name=\"login\" style=\"height:50px; background-color:#efefef; border-radius: 100px\" size=\"50\" type=\"text\" /></td>\r\n					</tr>\r\n					<tr style=\"padding-top:0; padding-bottom:0\">\r\n						<td align=\"center\"><strong style=\"font-size:30px\">Password:</strong></td>\r\n						<td align=\"center\"><input name=\"password\" style=\"height:50px; background-color:#efefef; border-radius: 100px\" size=\"50\" type=\"password\" /></td>\r\n					</tr>\r\n					<tr>\r\n						<td align=\"center\" colspan=\"2\"><input name=\"Submit\" style=\"background-color:#0076B4; color:white; border-color:#0076B4; border-radius: 100px; font-size:16px; width:320px; height:50px\" type=\"submit\" value=\"Login\" /></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</form>\r\n\r\n			<div align=\"center\">\r\n			<center>\r\n			<table border=\"0\" bordercolor=\"#111111\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td width=\"100%\">\r\n						<p align=\"center\"><script language=\"JavaScript\" src=\"\"></script></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</center>\r\n			</div>\r\n			Â \r\n\r\n			<div align=\"center\">\r\n			<center>\r\n			<table border=\"0\" bordercolor=\"#111111\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"100%\">\r\n				\r\n			</table>\r\n			</center>\r\n			</div>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table></div><div class=\"gp-component-id-eN5mGH9VP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"eN5mGH9VP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-kKQtt7WQQq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kKQtt7WQQq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PxljAz0oi\" data-id=\"quill-node-0\"><a href=\"signup.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">Register</a> | <a href=\"lostpass.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">Lost Password</a></h2></div></div><form class=\"gp-component-id-xygdjUPmZ gp-component\" action=\"\" method=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"form-container\" data-gp-component-data=\"{\"id\":32,\"name\":\"form-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Form\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Empty Form\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"xygdjUPmZ\" style=\"\" tabindex=\"0\">\r\n        \r\n        \r\n      </form></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(72,'2022-08-17 17:45:45','faqs','&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&amp;nbsp;&lt;span mce_style=&quot;font-size: x-large;&quot; style=&quot;font-size: x-large;&quot;&gt;#SITENAME# FAQs&lt;/span&gt;&lt;/p&gt;\r\n&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&lt;span mce_style=&quot;font-size: x-large;&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;strong&gt;&lt;span mce_style=&quot;font-size: medium;&quot; style=&quot;font-size: medium;&quot;&gt;What is a viral mailer?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;\r\n&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&lt;span mce_style=&quot;font-size: x-large;&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;span mce_style=&quot;font-size: medium;&quot; style=&quot;font-size: medium;&quot;&gt;Viral Mailers&amp;nbsp;are online services&lt;br /&gt;\r\n	where members can e-mail each other.&lt;br /&gt;\r\n	&amp;nbsp;You can send an e-mail promoting your&lt;br /&gt;\r\n	web site in&amp;nbsp;return for viewing the e-mails&lt;br /&gt;\r\n	&amp;nbsp;sent by the other members.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;\r\n&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&amp;nbsp;&lt;/p&gt;\r\n&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&lt;span mce_style=&quot;font-size: x-large;&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;strong&gt;&lt;span mce_style=&quot;font-size: medium;&quot; style=&quot;font-size: medium;&quot;&gt;How Do I Receive Credits?&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;\r\n&lt;p mce_style=&quot;TEXT-ALIGN: center&quot; style=&quot;text-align: center;&quot;&gt;\r\n	&lt;span mce_style=&quot;font-size: x-large;&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;span mce_style=&quot;font-size: medium;&quot; style=&quot;font-size: medium;&quot;&gt;Look for e-mails from other members.&lt;br /&gt;\r\n	At the bottom of each e-mail, there should be&lt;br /&gt;\r\n	a link you can click to view their site and earn credit.&lt;br /&gt;\r\n	For each credit you earn, you will be able to mail&lt;br /&gt;\r\n	another member of #SITENAME#.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;\r\n&lt;P style=&quot;TEXT-ALIGN: center&quot; mce_style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: x-large&quot; mce_style=&quot;font-size: x-large;&quot;&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;\r\n&lt;P style=&quot;TEXT-ALIGN: center&quot; mce_style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: x-large&quot; mce_style=&quot;font-size: x-large;&quot;&gt;&lt;STRONG&gt;&lt;SPAN style=&quot;FONT-SIZE: medium&quot; mce_style=&quot;font-size: medium;&quot;&gt;My Question Isn\'t Listed On This Page...&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;P&gt;\r\n&lt;SCRIPT language=javascript&gt;\r\nfunction askAdmin()\r\n{\r\n	var windowprops = \'location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no\' + \',left=100,top=50,width=500,height=700\'; \r\n	var URL = \'https://soloswaps.com/askadminquestion.php?user=#AFFILIATEID#\'; \r\n	popup = window.open(URL,\'MemberPopup\',windowprops);	\r\n}\r\n&lt;/SCRIPT&gt;\r\n&lt;/P&gt;\r\n&lt;P style=&quot;TEXT-ALIGN: center&quot; mce_style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: x-large&quot; mce_style=&quot;font-size: x-large;&quot;&gt;&lt;SPAN style=&quot;FONT-SIZE: medium&quot; mce_style=&quot;font-size: medium;&quot;&gt;Please click the button below to contact us.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;\r\n&lt;FORM style=&quot;TEXT-ALIGN: center&quot; mce_style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;INPUT class=lfmtable style=&quot;FONT-SIZE: 24px; HEIGHT: 30px&quot; onclick=javascript:askAdmin() type=button value=&quot;Ask Admin&quot; name=&quot;Ask Tech&quot;&gt; &lt;/FORM&gt;'),(73,'2022-08-18 10:45:45','faqs','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <meta name=\"robots\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n     </style>\r\n     <style id=\"custom-css\">\r\n       *{} html {\r\n  font-family: sans-serif;\r\n  text-size-adjust: 100%;\r\n  line-height: 1.25;\r\n  box-sizing: border-box;\r\n}\r\n\r\nbody {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  border-image-repeat: initial;\r\n  border-image-outset: initial;\r\n  border-image-width: initial;\r\n  border-image-slice: initial;\r\n  border-image-source: initial;\r\n  border-left-color: rgb(173, 183, 194);\r\n  border-bottom-color: rgb(173, 183, 194);\r\n  border-right-color: rgb(173, 183, 194);\r\n  border-top-color: rgb(173, 183, 194);\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  border-left-width: 0px;\r\n  border-bottom-width: 0px;\r\n  border-right-width: 0px;\r\n  border-top-width: 0px;\r\n  box-sizing: inherit;\r\n}\r\n\r\nbody * {\r\n  border-image-repeat: initial;\r\n  border-image-outset: initial;\r\n  border-image-width: initial;\r\n  border-image-slice: initial;\r\n  border-image-source: initial;\r\n  border-left-color: rgb(173, 183, 194);\r\n  border-bottom-color: rgb(173, 183, 194);\r\n  border-right-color: rgb(173, 183, 194);\r\n  border-top-color: rgb(173, 183, 194);\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  border-left-width: 0px;\r\n  border-bottom-width: 0px;\r\n  border-right-width: 0px;\r\n  border-top-width: 0px;\r\n  box-sizing: inherit;\r\n}\r\n\r\nmain {\r\n  display: block;\r\n}\r\n\r\nh1 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  font-size: 2em;\r\n}\r\n\r\nhr {\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n  height: 0px;\r\n  box-sizing: content-box;\r\n}\r\n\r\npre {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\na {\r\n  background-color: transparent;\r\n  text-decoration-color: initial;\r\n  text-decoration-style: initial;\r\n  text-decoration-line: none;\r\n  cursor: pointer;\r\n}\r\n\r\nb {\r\n  font-weight: bolder;\r\n}\r\n\r\nstrong {\r\n  font-weight: bolder;\r\n}\r\n\r\ncode {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nkbd {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nsamp {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nsmall {\r\n  font-size: 80%;\r\n}\r\n\r\nsub {\r\n  vertical-align: baseline;\r\n  position: relative;\r\n  line-height: 0;\r\n  font-size: 75%;\r\n  bottom: -0.25em;\r\n}\r\n\r\nsup {\r\n  vertical-align: baseline;\r\n  position: relative;\r\n  line-height: 0;\r\n  font-size: 75%;\r\n  top: -0.5em;\r\n}\r\n\r\nimg {\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  height: auto;\r\n  max-width: 100%;\r\n}\r\n\r\nbutton {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n  text-transform: none;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  background-color: transparent;\r\n  background-clip: initial;\r\n  background-origin: initial;\r\n  background-attachment: initial;\r\n  background-repeat-y: initial;\r\n  background-repeat-x: initial;\r\n  background-size: initial;\r\n  background-position-y: initial;\r\n  background-position-x: initial;\r\n  background-image: initial;\r\n  cursor: pointer;\r\n}\r\n\r\ninput {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n}\r\n\r\noptgroup {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n}\r\n\r\nselect {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  text-transform: none;\r\n}\r\n\r\ntextarea {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: auto;\r\n  overflow-x: auto;\r\n  resize: vertical;\r\n}\r\n\r\nfieldset {\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nlegend {\r\n  white-space: normal;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  max-width: 100%;\r\n  display: table;\r\n  color: inherit;\r\n  box-sizing: border-box;\r\n}\r\n\r\nprogress {\r\n  vertical-align: baseline;\r\n}\r\n\r\ndetails {\r\n  display: block;\r\n}\r\n\r\nsummary {\r\n  display: list-item;\r\n}\r\n\r\ntemplate {\r\n  display: none;\r\n}\r\n\r\nblockquote {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\ndd {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\ndl {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nfigure {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh2 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh3 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh4 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh5 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh6 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\np {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nol {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  list-style-position: inside;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n}\r\n\r\nul {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  list-style-type: none;\r\n  list-style-image: initial;\r\n  list-style-position: initial;\r\n}\r\n\r\ntable {\r\n  border-collapse: collapse;\r\n}\r\n/*endBaseStyles*/\r\n/*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-faqs/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62fe7a1ceb7e6f1e322e29d2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"TuSXI7Y2G\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&amp;rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62fe7a1ceb7e6f1e322e29d2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJUdVNYSTdZMkciOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62fe7a1ceb7e6f1e322e29d2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"TuSXI7Y2G\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\">\r\n        <style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"zA7G9Hp3h\" class=\"style-zA7G9Hp3h\"> @media (max-width: 639px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } }</style><style data-gp-styled-element=\"YPEulP8JM3\" class=\"style-YPEulP8JM3\"> @media (max-width: 639px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 340px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 1000px;max-width: 1200px; } }</style>\r\n        \r\n        \r\n        \r\n        \r\n        \r\n        \r\n        <style data-gp-styled-element=\"NetWXN0xfc\" class=\"style-NetWXN0xfc-overlay\"> .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } @media (max-width: 639px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (min-width: 1200px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } }</style>\r\n        \r\n        <style data-gp-styled-element=\"RhUuNNcB9\" class=\"style-RhUuNNcB9\"> @media (max-width: 639px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } }</style><style data-gp-styled-element=\"j300zcu_L9\" class=\"style-j300zcu_L9\"> @media (max-width: 639px) { .gp-component-id-j300zcu_L9 { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-j300zcu_L9 { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-j300zcu_L9 { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-j300zcu_L9 { text-align: center; } } @media (min-width: 1200px) { .gp-component-id-j300zcu_L9 { text-align: center; } }</style><style data-gp-styled-element=\"5rkV3Gx5jX\" class=\"style-5rkV3Gx5jX\"> @media (max-width: 639px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (min-width: 1200px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } }</style><style data-gp-styled-element=\"KYESmORVI\" class=\"style-KYESmORVI\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } }</style><style data-gp-styled-element=\"qpy30C0wF\" class=\"style-qpy30C0wF\"> @media (max-width: 639px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style>\r\n        <style data-gp-styled-element=\"c4vRp_fwV8\" class=\"style-c4vRp_fwV8\"> @media (max-width: 639px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"5TCePZSQN\" class=\"style-5TCePZSQN\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"wQ0tZVPlG\" class=\"style-wQ0tZVPlG\"> @media (max-width: 639px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"1Bk7ME6UQZ\" class=\"style-1Bk7ME6UQZ\"> @media (max-width: 639px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (min-width: 1200px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } }</style><style data-gp-styled-element=\"m92WplxFp\" class=\"style-m92WplxFp\"> @media (max-width: 639px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"QRE607maOK\" class=\"style-QRE607maOK\"> @media (max-width: 639px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"NK0LxWTgk\" class=\"style-NK0LxWTgk\"> @media (max-width: 639px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"AYzlFCyQC\" class=\"style-AYzlFCyQC\"> @media (max-width: 639px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"GGaAgqGOG\" class=\"style-GGaAgqGOG\"> @media (max-width: 639px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"U8g_CY3eC\" class=\"style-U8g_CY3eC\"> @media (max-width: 639px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"lRl3Wpap2\" class=\"style-lRl3Wpap2\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }</style><style data-gp-styled-element=\"lRl3Wpap2\"> .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } @media (max-width: 639px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (min-width: 1200px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } }</style><style data-gp-styled-element=\"TctE0nx3C\" class=\"style-TctE0nx3C\"> @media (max-width: 639px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (min-width: 1200px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } }</style>\r\n        <style data-gp-styled-element=\"NetWXN0xfc\" class=\"style-NetWXN0xfc\"> .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } @media (max-width: 639px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (min-width: 1200px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } }</style>\r\n        \r\n      <section class=\"gp-component-id-NetWXN0xfc gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:79395,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/elements-previews/thumbs/empty.png&quot;,&quot;category&quot;:&quot;Empty blocks&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;filename&quot;:&quot;_empty_0&quot;,&quot;height&quot;:0,&quot;global&quot;:1}\" data-gp-component-id=\"NetWXN0xfc\" data-gp-block-type=\"block\" id=\"NetWXN0xfc\" tabindex=\"0\" style=\"\"><a name=\"NetWXN0xfc\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-YPEulP8JM3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YPEulP8JM3\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-TctE0nx3C gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"TctE0nx3C\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-U8g_CY3eC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"U8g_CY3eC\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UoUMGqaApZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UoUMGqaApZ\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-lRl3Wpap2\" data-id=\"quill-node-0\">Solo Swaps FAQs</h1></div></div><div class=\"gp-component gp-component-id-NK0LxWTgk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"NK0LxWTgk\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-zxL0lDbvQt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zxL0lDbvQt\" data-gp-component=\"null\" tabindex=\"0\"><p class=\"gp-component-id-QRE607maOK\" data-id=\"quill-node-0\">What is a traffic exchange?</p></div></div><div class=\"gp-component gp-component-id-m92WplxFp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"m92WplxFp\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JyUBYMttFB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JyUBYMttFB\" data-gp-component=\"null\" tabindex=\"0\"><p class=\"gp-component-id-1Bk7ME6UQZ\" data-id=\"quill-node-0\">Traffic exchanges are online services where web site owners trade traffic.</p><p class=\"gp-component-id-1Bk7ME6UQZ\" data-id=\"quill-node-1\">Other members of soloswaps.com will view your web site when you visit the sites of other members.</p></div></div><div class=\"gp-component gp-component-id-wQ0tZVPlG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"wQ0tZVPlG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-m6rJ3Eu34P\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"m6rJ3Eu34P\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-c4vRp_fwV8\" data-id=\"quill-node-0\">How Do I Receive Hits?</p></div></div><div class=\"gp-component gp-component-id-qpy30C0wF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"qpy30C0wF\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-WkoceXjwiU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"WkoceXjwiU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5rkV3Gx5jX\" data-id=\"quill-node-0\">Click \'Surf\' on the members area menu to start viewing sites from other members.</p><p class=\"gp-component-id-j300zcu_L9\" data-id=\"quill-node-1\">You will earn credits for every site you view. Your site will receive one hit for each credit that you assign to your site.</p></div></div><div class=\"gp-component-id-GGaAgqGOG gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"GGaAgqGOG\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8cKOvwIwqQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"8cKOvwIwqQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5TCePZSQN\" data-id=\"quill-node-0\">My Question Isn\'t Listed On This Page...</p></div></div><div class=\"gp-component-id-AYzlFCyQC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"AYzlFCyQC\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mfz3sICuSL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mfz3sICuSL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-KYESmORVI\" data-id=\"quill-node-0\">Please click the button below to contact us.</p></div></div><div class=\"gp-component-id-RhUuNNcB9 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"RhUuNNcB9\" tabindex=\"0\"><a target=\"_blank\" href=\"https://5-dollar-friday.tawk.help/\" data-gp-button-id=\"nstLM2H2eX\" class=\"items-center gp-component gp-component-id-zA7G9Hp3h\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zA7G9Hp3h\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-sf8QWnaXu\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"sf8QWnaXu\">CONTACT US</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></ul></div>\r\n    </section>\r\n      \r\n      </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_templates_backups` (`id`, `savetime`, `template_name`, `template_data`) VALUES (55,'2022-05-20 08:08:11','Sales Page','<!DOCTYPE html>\r\n<html lang=\"en\">\r\n  <body style=\"background-color: #F3F3F3;\">\r\n      <head>\r\n  <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n          text-size-adjust: 100%;line-height: 1.25;font-family: sans-serif;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        \r\n        main {\r\n          display: block;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        \r\n        pre {\r\n          font-size: 1em;font-family: monospace, monospace;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        \r\n        code {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        kbd {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        samp {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        \r\n        button {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        \r\n        input {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        \r\n        optgroup {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        \r\n        select {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;text-transform: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        \r\n        textarea {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        \r\n        details {\r\n          display: block;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        \r\n        template {\r\n          display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }/*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62879e9b4942cf333023fbd3\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"6hLC6-6JQ\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62879e9b4942cf333023fbd3\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI2aExDNi02SlEiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62879e9b4942cf333023fbd3\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"6hLC6-6JQ\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"3DDVxl3k7\" class=\"style-3DDVxl3k7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 371px;margin-right: 371px;margin-top: 20px;padding-left: 80px;padding-right: 80px;padding-top: 10px;padding-bottom: 10px;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 371px;margin-right: 371px;margin-top: 20px;padding-left: 80px;padding-right: 80px;padding-top: 10px;padding-bottom: 10px;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 371px;margin-right: 371px;margin-top: 20px;padding-left: 80px;padding-right: 80px;padding-top: 10px;padding-bottom: 10px;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 371px;margin-right: 371px;margin-top: 20px;padding-left: 80px;padding-right: 80px;padding-top: 10px;padding-bottom: 10px;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 371px;margin-right: 371px;margin-top: 20px;padding-left: 80px;padding-right: 80px;padding-top: 10px;padding-bottom: 10px;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhXoK9n1L\" class=\"style-jhXoK9n1L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QQKsCnjDX\" class=\"style-QQKsCnjDX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 73%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 73%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 73%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 73%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 73%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhXoK9n1L\" class=\"style-jhXoK9n1L-overlay\">\r\n        \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ypsw4eQXK\" class=\"style-ypsw4eQXK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EmTp71O4Rd\" class=\"style-EmTp71O4Rd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pFMmFUTSZ\" class=\"style-pFMmFUTSZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KpGNyjRLM\" class=\"style-KpGNyjRLM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;margin-top: 20px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;margin-top: 20px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;margin-top: 20px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;margin-top: 20px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;margin-top: 20px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AKND_exhJp\" class=\"style-AKND_exhJp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nLFrFe0fm\" class=\"style-nLFrFe0fm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pFMmFUTSZ\">\r\n        \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IseGyYjaY\" class=\"style-IseGyYjaY\">\r\n        \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gnFH5vMT9\" class=\"style-gnFH5vMT9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gnFH5vMT9\">\r\n        \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ypsw4eQXK\" class=\"style-ypsw4eQXK-overlay\">\r\n        \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXKreONlL\" class=\"style-iXKreONlL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 624px;margin-right: 0px;margin-top: -76px;width: 82px;min-width: null;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 624px;margin-right: 0px;margin-top: -76px;width: 82px;min-width: null;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 624px;margin-right: 0px;margin-top: -76px;width: 82px;min-width: null;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 624px;margin-right: 0px;margin-top: -76px;width: 82px;min-width: null;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 624px;margin-right: 0px;margin-top: -76px;width: 82px;min-width: null;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KpGNyjRLM\">\r\n        \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iaovH_OLw\" class=\"style-iaovH_OLw\">\r\n        \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nRdlKWx0e\" class=\"style-nRdlKWx0e\">\r\n        \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P2fuQT9hZ9\" class=\"style-P2fuQT9hZ9\">\r\n        \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qCQQ5r8Zdc\" class=\"style-qCQQ5r8Zdc\">\r\n        \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"46cO8eZb4M\" class=\"style-46cO8eZb4M\">\r\n        \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vDCZXkYvRK\" class=\"style-vDCZXkYvRK\">\r\n        \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-jhXoK9n1L gp-component gp-pattern-bg-block\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"blue-theme\",\"user_id\":\"global\",\"filename\":\"_empty_0\"}\" data-gp-component-id=\"jhXoK9n1L\" id=\"jhXoK9n1L\" tabindex=\"0\" style=\"\"><a name=\"jhXoK9n1L\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-AKND_exhJp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AKND_exhJp\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-1Ti0qjBmh\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"1Ti0qjBmh\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653059117_coming-04-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-QQKsCnjDX\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"QQKsCnjDX\"><div class=\"gp-text-container gp-component-id-v0wKOiuno0 gp-component\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"v0wKOiuno0\" data-gp-component=\"null\"><h1 class=\"gp-component-id-KpGNyjRLM\">Free Leads From Around The World!<a href=\"https://soloswaps.com/signup.php\" rel=\"noopener noreferrer\" target=\"_blank\"> </a></h1></div><a target=\"_blank\" href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"wHZmAXCfM\" class=\"items-center gp-component gp-component-id-3DDVxl3k7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3DDVxl3k7\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-JGvEcPD3z\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"JGvEcPD3z\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651347666_tryfree-14.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-iXKreONlL\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image-round\" data-gp-component-id=\"iXKreONlL\" tabindex=\"0\" style=\"\"></div>\r\n<div data-gp-component=\"pattern-background\" class=\"gp-component gp-component-id-qctxRttMF Isometric-pattern\" data-gp-component-id=\"qctxRttMF\"></div></section><section class=\"gp-component-id-ypsw4eQXK gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"blue-theme\",\"user_id\":\"global\",\"filename\":\"_empty_0\"}\" data-gp-component-id=\"ypsw4eQXK\" id=\"ypsw4eQXK\" tabindex=\"0\" style=\"\"><a name=\"ypsw4eQXK\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-vDCZXkYvRK gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"vDCZXkYvRK\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-iaovH_OLw gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"iaovH_OLw\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-nRdlKWx0e\">\r\n        <div class=\"gp-component-id-P2fuQT9hZ9\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-qCQQ5r8Zdc gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qCQQ5r8Zdc\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><div data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"carousel\" class=\"gp-component gp-component-id-nLFrFe0fm\" data-gp-component-id=\"nLFrFe0fm\" tabindex=\"0\">\r\n  <div data-gp-carousel=\"nLFrFe0fm\">\r\n      <ul>\r\n        <a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651348677xhX9qOa6_qo.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/165134873521GWwco-JBQ.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/16511655105QgIuuBxKwM.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651156676OqtafYT5kTw.jpg\"></li></a>          \r\n      </ul>\r\n  </div>\r\n  <script src=\"https://assets.grooveapps.com/plugins/carousel-lib.web.js\" id=\"script-M9uPW_uDD\"></script>\r\n  <script id=\"script-7pgTH02lGC\">\r\n  (function(){\r\n    var checkSetup = setInterval(function () {\r\n      if (window.setupCarousel) {\r\n        const options = {\r\n          infinite: true,\r\n          autoplay: true,\r\n          autoplaySpeed: 5000,\r\n        };\r\n        setupCarousel(\"nLFrFe0fm\", options);\r\n        clearInterval(checkSetup);\r\n      } \r\n    }, 250);\r\n  })();\r\n  </script>\r\n  </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-46cO8eZb4M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-EmTp71O4Rd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"EmTp71O4Rd\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mnLzc3bWk\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"mnLzc3bWk\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-text-container gp-component-id-y2OhTBPCNW gp-component\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"y2OhTBPCNW\"><h1 class=\"gp-component-id-gnFH5vMT9\">Get Started In Just A Few Short Moments</h1></div></div><div class=\"gp-component gp-component-id-IseGyYjaY\" style=\"border-color: rgba(84, 221, 255, 1); border-width: 0; border-style: solid; border-top-width: 4px; width: 25%; margin-left: 0; margin-right: auto;\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"divider\" data-gp-component-id=\"IseGyYjaY\" tabindex=\"0\"></div><div class=\"gp-text-container gp-component gp-component-id-1UipQAKpwI\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1UipQAKpwI\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-pFMmFUTSZ\">Solo Swaps uses a powerful viral mailer system to bring a steady stream of traffic to your web site. It\'s fast, easy, and free.</p></div><div class=\"gp-text-container gp-component gp-component-id-26Raa0xt0\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"26Raa0xt0\" data-gp-component=\"null\" tabindex=\"0\"></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n</section>\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n    <section class=\"mt-5 pt-4 pb-4\">\r\n	<div class=\"container\">\r\n		<div class=\"row align-items-center overflow-hidden\">\r\n			<div class=\"col-lg-12 text-center\">\r\n				\r\n				<!-- Start Animated Typing Effect -->\r\n				\r\n				<!-- List the lines of text you want to be typed -->\r\n				<div id=\"typed-strings\">\r\n					<p style=\"color:#000000\";>><b>Web Sites...</b></p>\r\n					<p style=\"color:#000000\";><b>Banner Ads...</b></p>\r\n					<p style=\"color:#000000\";><b>Text Ads...</b></p>\r\n					<p style=\"color:#000000\";><b>Entire Business!!!</b></p>\r\n				</div>\r\n				\r\n				<!-- This is where the text will be shown -->\r\n				<h1 style=\"color:#000000\"; class=\"display-4 mb-4 text-center\">Drive Traffic To Your <br> <span id=\"typed\"></span></h1>\r\n				\r\n				<!-- Javascript for the typing effect -->\r\n				<script>\r\n				if( $(\'#typed\').length ) {\r\n					var typed = new Typed(\"#typed\", {\r\n						stringsElement: \'#typed-strings\',\r\n						typeSpeed: 100,\r\n						backSpeed: 50,\r\n						backDelay: 2000,\r\n						startDelay: 200,\r\n						loop: true\r\n					});\r\n				}\r\n				</script>\r\n\r\n				<!-- End Animated Typing Effect -->\r\n				\r\n				<a style=\"color:#FFFFFF\"; href=\"signup.php?rid=#AFFILIATEID#\" class=\"btn btn-primary btn-lg mt-4 mb-4\"><i class=\"far fa-arrow-alt-circle-right\"></i> Join Free Today</a>\r\n				\r\n			</div>\r\n		</div>\r\n	</div>\r\n</section>\r\n      </body>\r\n      </body>\r\n    </html>'),(56,'2022-05-20 10:04:06','Sales Page','<!DOCTYPE html>\r\n<html lang=\"en\">\r\n  <body style=\"background-color: #F3F3F3;\">\r\n      <head>\r\n  <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n          text-size-adjust: 100%;line-height: 1.25;font-family: sans-serif;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        \r\n        main {\r\n          display: block;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        \r\n        pre {\r\n          font-size: 1em;font-family: monospace, monospace;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        \r\n        code {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        kbd {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        samp {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        \r\n        button {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        \r\n        input {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        \r\n        optgroup {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        \r\n        select {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;text-transform: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        \r\n        textarea {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        \r\n        details {\r\n          display: block;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        \r\n        template {\r\n          display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }/*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62879e9b4942cf333023fbd3\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"6hLC6-6JQ\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62879e9b4942cf333023fbd3\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI2aExDNi02SlEiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62879e9b4942cf333023fbd3\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"6hLC6-6JQ\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"3DDVxl3k7\" class=\"style-3DDVxl3k7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 371px;margin-right: 371px;margin-top: 20px;padding-left: 80px;padding-right: 80px;padding-top: 10px;padding-bottom: 10px;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 371px;margin-right: 371px;margin-top: 20px;padding-left: 80px;padding-right: 80px;padding-top: 10px;padding-bottom: 10px;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 371px;margin-right: 371px;margin-top: 20px;padding-left: 80px;padding-right: 80px;padding-top: 10px;padding-bottom: 10px;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 371px;margin-right: 371px;margin-top: 20px;padding-left: 80px;padding-right: 80px;padding-top: 10px;padding-bottom: 10px;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 371px;margin-right: 371px;margin-top: 20px;padding-left: 80px;padding-right: 80px;padding-top: 10px;padding-bottom: 10px;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhXoK9n1L\" class=\"style-jhXoK9n1L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QQKsCnjDX\" class=\"style-QQKsCnjDX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 73%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 73%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 73%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 73%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 73%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhXoK9n1L\" class=\"style-jhXoK9n1L-overlay\">\r\n        \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ypsw4eQXK\" class=\"style-ypsw4eQXK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1170px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EmTp71O4Rd\" class=\"style-EmTp71O4Rd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pFMmFUTSZ\" class=\"style-pFMmFUTSZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KpGNyjRLM\" class=\"style-KpGNyjRLM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;margin-top: 20px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;margin-top: 20px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;margin-top: 20px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;margin-top: 20px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;margin-top: 20px;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AKND_exhJp\" class=\"style-AKND_exhJp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;flex-direction: column;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;flex-direction: column;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nLFrFe0fm\" class=\"style-nLFrFe0fm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pFMmFUTSZ\">\r\n        \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IseGyYjaY\" class=\"style-IseGyYjaY\">\r\n        \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gnFH5vMT9\" class=\"style-gnFH5vMT9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gnFH5vMT9\">\r\n        \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ypsw4eQXK\" class=\"style-ypsw4eQXK-overlay\">\r\n        \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXKreONlL\" class=\"style-iXKreONlL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 624px;margin-right: 0px;margin-top: -76px;width: 82px;min-width: null;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 624px;margin-right: 0px;margin-top: -76px;width: 82px;min-width: null;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 624px;margin-right: 0px;margin-top: -76px;width: 82px;min-width: null;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 624px;margin-right: 0px;margin-top: -76px;width: 82px;min-width: null;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 624px;margin-right: 0px;margin-top: -76px;width: 82px;min-width: null;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KpGNyjRLM\">\r\n        \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iaovH_OLw\" class=\"style-iaovH_OLw\">\r\n        \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nRdlKWx0e\" class=\"style-nRdlKWx0e\">\r\n        \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P2fuQT9hZ9\" class=\"style-P2fuQT9hZ9\">\r\n        \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qCQQ5r8Zdc\" class=\"style-qCQQ5r8Zdc\">\r\n        \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"46cO8eZb4M\" class=\"style-46cO8eZb4M\">\r\n        \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vDCZXkYvRK\" class=\"style-vDCZXkYvRK\">\r\n        \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-jhXoK9n1L gp-component gp-pattern-bg-block\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"blue-theme\",\"user_id\":\"global\",\"filename\":\"_empty_0\"}\" data-gp-component-id=\"jhXoK9n1L\" id=\"jhXoK9n1L\" tabindex=\"0\" style=\"\"><a name=\"jhXoK9n1L\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-AKND_exhJp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AKND_exhJp\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-1Ti0qjBmh\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"1Ti0qjBmh\" data-gp-component=\"null\" tabindex=\"0\"></div><img src=\"https://i.imgur.com/moEt5IE.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-QQKsCnjDX\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"QQKsCnjDX\"><div class=\"gp-text-container gp-component-id-v0wKOiuno0 gp-component\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"v0wKOiuno0\" data-gp-component=\"null\"><h1 class=\"gp-component-id-KpGNyjRLM\">Free Leads From Around The World!<a href=\"https://soloswaps.com/signup.php\" rel=\"noopener noreferrer\" target=\"_blank\"> </a></h1></div><a target=\"_blank\" href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"wHZmAXCfM\" class=\"items-center gp-component gp-component-id-3DDVxl3k7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3DDVxl3k7\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-JGvEcPD3z\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"JGvEcPD3z\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651347666_tryfree-14.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-iXKreONlL\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image-round\" data-gp-component-id=\"iXKreONlL\" tabindex=\"0\" style=\"\"></div>\r\n<div data-gp-component=\"pattern-background\" class=\"gp-component gp-component-id-qctxRttMF Isometric-pattern\" data-gp-component-id=\"qctxRttMF\"></div></section><section class=\"gp-component-id-ypsw4eQXK gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"blue-theme\",\"user_id\":\"global\",\"filename\":\"_empty_0\"}\" data-gp-component-id=\"ypsw4eQXK\" id=\"ypsw4eQXK\" tabindex=\"0\" style=\"\"><a name=\"ypsw4eQXK\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-vDCZXkYvRK gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"vDCZXkYvRK\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-iaovH_OLw gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"iaovH_OLw\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-nRdlKWx0e\">\r\n        <div class=\"gp-component-id-P2fuQT9hZ9\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-qCQQ5r8Zdc gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qCQQ5r8Zdc\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><div data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"carousel\" class=\"gp-component gp-component-id-nLFrFe0fm\" data-gp-component-id=\"nLFrFe0fm\" tabindex=\"0\">\r\n  <div data-gp-carousel=\"nLFrFe0fm\">\r\n      <ul>\r\n        <a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651348677xhX9qOa6_qo.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/165134873521GWwco-JBQ.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/16511655105QgIuuBxKwM.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651156676OqtafYT5kTw.jpg\"></li></a>          \r\n      </ul>\r\n  </div>\r\n  <script src=\"https://assets.grooveapps.com/plugins/carousel-lib.web.js\" id=\"script-M9uPW_uDD\"></script>\r\n  <script id=\"script-7pgTH02lGC\">\r\n  (function(){\r\n    var checkSetup = setInterval(function () {\r\n      if (window.setupCarousel) {\r\n        const options = {\r\n          infinite: true,\r\n          autoplay: true,\r\n          autoplaySpeed: 5000,\r\n        };\r\n        setupCarousel(\"nLFrFe0fm\", options);\r\n        clearInterval(checkSetup);\r\n      } \r\n    }, 250);\r\n  })();\r\n  </script>\r\n  </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-46cO8eZb4M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-EmTp71O4Rd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"EmTp71O4Rd\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mnLzc3bWk\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"mnLzc3bWk\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-text-container gp-component-id-y2OhTBPCNW gp-component\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"y2OhTBPCNW\"><h1 class=\"gp-component-id-gnFH5vMT9\">Get Started In Just A Few Short Moments</h1></div></div><div class=\"gp-component gp-component-id-IseGyYjaY\" style=\"border-color: rgba(84, 221, 255, 1); border-width: 0; border-style: solid; border-top-width: 4px; width: 25%; margin-left: 0; margin-right: auto;\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"divider\" data-gp-component-id=\"IseGyYjaY\" tabindex=\"0\"></div><div class=\"gp-text-container gp-component gp-component-id-1UipQAKpwI\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1UipQAKpwI\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-pFMmFUTSZ\">Solo Swaps uses a powerful viral mailer system to bring a steady stream of traffic to your web site. It\'s fast, easy, and free.</p></div><div class=\"gp-text-container gp-component gp-component-id-26Raa0xt0\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"26Raa0xt0\" data-gp-component=\"null\" tabindex=\"0\"></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n</section>\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n    <section class=\"mt-5 pt-4 pb-4\">\r\n	<div class=\"container\">\r\n		<div class=\"row align-items-center overflow-hidden\">\r\n			<div class=\"col-lg-12 text-center\">\r\n				\r\n				<!-- Start Animated Typing Effect -->\r\n				\r\n				<!-- List the lines of text you want to be typed -->\r\n				<div id=\"typed-strings\">\r\n					<p style=\"color:#000000\";>><b>Web Sites...</b></p>\r\n					<p style=\"color:#000000\";><b>Banner Ads...</b></p>\r\n					<p style=\"color:#000000\";><b>Text Ads...</b></p>\r\n					<p style=\"color:#000000\";><b>Entire Business!!!</b></p>\r\n				</div>\r\n				\r\n				<!-- This is where the text will be shown -->\r\n				<h1 style=\"color:#000000\"; class=\"display-4 mb-4 text-center\">Drive Traffic To Your <br> <span id=\"typed\"></span></h1>\r\n				\r\n				<!-- Javascript for the typing effect -->\r\n				<script>\r\n				if( $(\'#typed\').length ) {\r\n					var typed = new Typed(\"#typed\", {\r\n						stringsElement: \'#typed-strings\',\r\n						typeSpeed: 100,\r\n						backSpeed: 50,\r\n						backDelay: 2000,\r\n						startDelay: 200,\r\n						loop: true\r\n					});\r\n				}\r\n				</script>\r\n\r\n				<!-- End Animated Typing Effect -->\r\n				\r\n				<a style=\"color:#FFFFFF\"; href=\"signup.php?rid=#AFFILIATEID#\" class=\"btn btn-primary btn-lg mt-4 mb-4\"><i class=\"far fa-arrow-alt-circle-right\"></i> Join Free Today</a>\r\n				\r\n			</div>\r\n		</div>\r\n	</div>\r\n</section>\r\n      </body>\r\n      </body>\r\n    </html>'),(57,'2022-05-21 07:31:31','Sales Page','<!DOCTYPE html>\r\n<html lang=\"en\">\r\n  <body style=\"background-color: #F3F3F3;\">\r\n      <head>\r\n     <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n          text-size-adjust: 100%;line-height: 1.25;font-family: sans-serif;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        \r\n        main {\r\n          display: block;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        \r\n        pre {\r\n          font-size: 1em;font-family: monospace, monospace;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        \r\n        code {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        kbd {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        samp {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        \r\n        button {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        \r\n        input {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        \r\n        optgroup {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        \r\n        select {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;text-transform: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        \r\n        textarea {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        \r\n        details {\r\n          display: block;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        \r\n        template {\r\n          display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }/*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62879e9b4942cf333023fbd3\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"6hLC6-6JQ\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&amp;rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62879e9b4942cf333023fbd3\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI2aExDNi02SlEiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62879e9b4942cf333023fbd3\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"6hLC6-6JQ\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"ypsw4eQXK\" class=\"style-ypsw4eQXK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 375px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 570px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 700px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 850px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 30px;padding-bottom: 50px;min-width: 1024px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EmTp71O4Rd\" class=\"style-EmTp71O4Rd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 0px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 0px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhXoK9n1L\" class=\"style-jhXoK9n1L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 375px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 570px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 700px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 850px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1024px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QQKsCnjDX\" class=\"style-QQKsCnjDX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;min-width: 100%;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style class=\"style-EI8FwX1Zn\" data-gp-styled-element=\"EI8FwX1Zn\">\r\n        \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;min-width: 370px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AKND_exhJp\" class=\"style-AKND_exhJp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KpGNyjRLM\" class=\"style-KpGNyjRLM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 25px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXKreONlL\" class=\"style-iXKreONlL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 225px;margin-top: -70px;width: 75px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3DDVxl3k7\" class=\"style-3DDVxl3k7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 466px;max-width: 89%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }</style><style data-gp-styled-element=\"gnFH5vMT9\" class=\"style-gnFH5vMT9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;text-align: center;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhXoK9n1L\" class=\"style-jhXoK9n1L-overlay\">\r\n        \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pFMmFUTSZ\" class=\"style-pFMmFUTSZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nLFrFe0fm\" class=\"style-nLFrFe0fm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pFMmFUTSZ\">\r\n        \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IseGyYjaY\" class=\"style-IseGyYjaY\">\r\n        \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gnFH5vMT9\">\r\n        \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ypsw4eQXK\" class=\"style-ypsw4eQXK-overlay\">\r\n        \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KpGNyjRLM\">\r\n        \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iaovH_OLw\" class=\"style-iaovH_OLw\">\r\n        \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nRdlKWx0e\" class=\"style-nRdlKWx0e\">\r\n        \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P2fuQT9hZ9\" class=\"style-P2fuQT9hZ9\">\r\n        \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qCQQ5r8Zdc\" class=\"style-qCQQ5r8Zdc\">\r\n        \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"46cO8eZb4M\" class=\"style-46cO8eZb4M\">\r\n        \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vDCZXkYvRK\" class=\"style-vDCZXkYvRK\">\r\n        \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-jhXoK9n1L gp-component gp-pattern-bg-block\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:79395,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/elements-previews/thumbs/empty.png&quot;,&quot;category&quot;:&quot;Empty blocks&quot;,&quot;tag&quot;:&quot;blue-theme&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;filename&quot;:&quot;_empty_0&quot;}\" data-gp-component-id=\"jhXoK9n1L\" id=\"jhXoK9n1L\" tabindex=\"0\"><a name=\"jhXoK9n1L\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-AKND_exhJp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AKND_exhJp\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-1Ti0qjBmh\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"1Ti0qjBmh\" data-gp-component=\"null\" tabindex=\"0\"></div><figure tabindex=\"0\" data-gp-component-id=\"QQKsCnjDX\" data-gp-component=\"image\" data-gp-classes=\"\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-QQKsCnjDX\" alt=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653059117_coming-04-01.png\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653059117_coming-04-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component-id-EI8FwX1Zn gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"EI8FwX1Zn\" tabindex=\"0\"></figure><div class=\"gp-text-container gp-component-id-v0wKOiuno0 gp-component\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"v0wKOiuno0\" data-gp-component=\"null\"><h1 class=\"gp-component-id-KpGNyjRLM\">Free Traffic From Around The World!<a href=\"https://soloswaps.com/signup.php\" rel=\"noopener noreferrer\" target=\"_blank\"> </a></h1></div><a target=\"_blank\" href=\"https://instantlist.club/signup.php\" data-gp-button-id=\"wHZmAXCfM\" class=\"items-center gp-component gp-component-id-3DDVxl3k7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3DDVxl3k7\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-JGvEcPD3z\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"JGvEcPD3z\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651347666_tryfree-14.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-iXKreONlL\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image-round\" data-gp-component-id=\"iXKreONlL\" tabindex=\"0\" style=\"\"></div>\r\n<div data-gp-component=\"pattern-background\" class=\"gp-component gp-component-id-qctxRttMF Isometric-pattern\" data-gp-component-id=\"qctxRttMF\"></div></section><section class=\"gp-component-id-ypsw4eQXK gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:79395,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/elements-previews/thumbs/empty.png&quot;,&quot;category&quot;:&quot;Empty blocks&quot;,&quot;tag&quot;:&quot;blue-theme&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;filename&quot;:&quot;_empty_0&quot;}\" data-gp-component-id=\"ypsw4eQXK\" id=\"ypsw4eQXK\" tabindex=\"0\"><a name=\"ypsw4eQXK\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-vDCZXkYvRK gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"vDCZXkYvRK\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-iaovH_OLw gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{&quot;id&quot;:49,&quot;name&quot;:&quot;layout-2-2&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K&quot;,&quot;title&quot;:&quot;2 Columns&quot;,&quot;index&quot;:2,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"iaovH_OLw\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-nRdlKWx0e\">\r\n        <div class=\"gp-component-id-P2fuQT9hZ9\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-qCQQ5r8Zdc gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qCQQ5r8Zdc\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><div data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"carousel\" class=\"gp-component gp-component-id-nLFrFe0fm\" data-gp-component-id=\"nLFrFe0fm\" tabindex=\"0\">\r\n  <div data-gp-carousel=\"nLFrFe0fm\">\r\n      <ul>\r\n        <a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651348677xhX9qOa6_qo.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/165134873521GWwco-JBQ.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/16511655105QgIuuBxKwM.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651156676OqtafYT5kTw.jpg\"></li></a>          \r\n      </ul>\r\n  </div>\r\n  <script src=\"https://assets.grooveapps.com/plugins/carousel-lib.web.js\" id=\"script-M9uPW_uDD\"></script>\r\n  <script id=\"script-7pgTH02lGC\">\r\n  (function(){\r\n    var checkSetup = setInterval(function () {\r\n      if (window.setupCarousel) {\r\n        const options = {\r\n          infinite: true,\r\n          autoplay: true,\r\n          autoplaySpeed: 5000,\r\n        };\r\n        setupCarousel(\"nLFrFe0fm\", options);\r\n        clearInterval(checkSetup);\r\n      } \r\n    }, 250);\r\n  })();\r\n  </script>\r\n  </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-46cO8eZb4M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-EmTp71O4Rd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"EmTp71O4Rd\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mnLzc3bWk\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"mnLzc3bWk\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-text-container gp-component-id-y2OhTBPCNW gp-component\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"y2OhTBPCNW\" data-gp-component=\"null\"><h1 class=\"gp-component-id-gnFH5vMT9\">Get Started In Just A Few Short Moments</h1></div></div><div class=\"gp-component gp-component-id-IseGyYjaY\" style=\"border-color: rgba(84, 221, 255, 1); border-width: 0; border-style: solid; border-top-width: 4px; width: 25%; margin-left: 0; margin-right: auto;\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"divider\" data-gp-component-id=\"IseGyYjaY\" tabindex=\"0\"></div><div class=\"gp-text-container gp-component gp-component-id-1UipQAKpwI\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1UipQAKpwI\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-pFMmFUTSZ\">Solo Swaps uses a powerful viral mailer system to bring a steady stream of traffic to your web site. It\'s fast, easy, and free.</p></div><div class=\"gp-text-container gp-component gp-component-id-26Raa0xt0\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"26Raa0xt0\" data-gp-component=\"null\" tabindex=\"0\"></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n</section>\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n    <section class=\"mt-5 pt-4 pb-4\">\r\n	<div class=\"container\">\r\n		<div class=\"row align-items-center overflow-hidden\">\r\n			<div class=\"col-lg-12 text-center\">\r\n				\r\n				<!-- Start Animated Typing Effect -->\r\n				\r\n				<!-- List the lines of text you want to be typed -->\r\n				<div id=\"typed-strings\">\r\n					<p style=\"color:#000000\";>><b>Web Sites...</b></p>\r\n					<p style=\"color:#000000\";><b>Banner Ads...</b></p>\r\n					<p style=\"color:#000000\";><b>Text Ads...</b></p>\r\n					<p style=\"color:#000000\";><b>Entire Business!!!</b></p>\r\n				</div>\r\n				\r\n				<!-- This is where the text will be shown -->\r\n				<h1 style=\"color:#000000\"; class=\"display-4 mb-4 text-center\">Drive Traffic To Your <br> <span id=\"typed\"></span></h1>\r\n				\r\n				<!-- Javascript for the typing effect -->\r\n				<script>\r\n				if( $(\'#typed\').length ) {\r\n					var typed = new Typed(\"#typed\", {\r\n						stringsElement: \'#typed-strings\',\r\n						typeSpeed: 100,\r\n						backSpeed: 50,\r\n						backDelay: 2000,\r\n						startDelay: 200,\r\n						loop: true\r\n					});\r\n				}\r\n				</script>\r\n\r\n				<!-- End Animated Typing Effect -->\r\n				\r\n				<a style=\"color:#FFFFFF\"; href=\"signup.php?rid=#AFFILIATEID#\" class=\"btn btn-primary btn-lg mt-4 mb-4\"><i class=\"far fa-arrow-alt-circle-right\"></i> Join Free Today</a>\r\n				\r\n			</div>\r\n		</div>\r\n	</div>\r\n</section>\r\n      </body>\r\n      </body>\r\n    </html>'),(58,'2022-05-21 07:32:04','Sales Page','<!DOCTYPE html>\r\n<html lang=\"en\">\r\n  <body style=\"background-color: #F3F3F3;\">\r\n      <head>\r\n     <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n          text-size-adjust: 100%;line-height: 1.25;font-family: sans-serif;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        \r\n        main {\r\n          display: block;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        \r\n        pre {\r\n          font-size: 1em;font-family: monospace, monospace;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        \r\n        code {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        kbd {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        samp {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        \r\n        button {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        \r\n        input {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        \r\n        optgroup {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        \r\n        select {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;text-transform: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        \r\n        textarea {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        \r\n        details {\r\n          display: block;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        \r\n        template {\r\n          display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }/*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62879e9b4942cf333023fbd3\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"6hLC6-6JQ\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62879e9b4942cf333023fbd3\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI2aExDNi02SlEiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62879e9b4942cf333023fbd3\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"6hLC6-6JQ\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"ypsw4eQXK\" class=\"style-ypsw4eQXK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 375px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 570px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 700px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 850px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 30px;padding-bottom: 50px;min-width: 1024px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EmTp71O4Rd\" class=\"style-EmTp71O4Rd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 0px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 0px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhXoK9n1L\" class=\"style-jhXoK9n1L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 375px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 570px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 700px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 850px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1024px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QQKsCnjDX\" class=\"style-QQKsCnjDX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;min-width: 100%;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style class=\"style-EI8FwX1Zn\" data-gp-styled-element=\"EI8FwX1Zn\">\r\n        \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;min-width: 370px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AKND_exhJp\" class=\"style-AKND_exhJp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KpGNyjRLM\" class=\"style-KpGNyjRLM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 25px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXKreONlL\" class=\"style-iXKreONlL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 225px;margin-top: -70px;width: 75px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3DDVxl3k7\" class=\"style-3DDVxl3k7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 466px;max-width: 89%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }</style><style data-gp-styled-element=\"gnFH5vMT9\" class=\"style-gnFH5vMT9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;text-align: center;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhXoK9n1L\" class=\"style-jhXoK9n1L-overlay\">\r\n        \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pFMmFUTSZ\" class=\"style-pFMmFUTSZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nLFrFe0fm\" class=\"style-nLFrFe0fm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pFMmFUTSZ\">\r\n        \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IseGyYjaY\" class=\"style-IseGyYjaY\">\r\n        \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gnFH5vMT9\">\r\n        \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ypsw4eQXK\" class=\"style-ypsw4eQXK-overlay\">\r\n        \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KpGNyjRLM\">\r\n        \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iaovH_OLw\" class=\"style-iaovH_OLw\">\r\n        \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nRdlKWx0e\" class=\"style-nRdlKWx0e\">\r\n        \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P2fuQT9hZ9\" class=\"style-P2fuQT9hZ9\">\r\n        \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qCQQ5r8Zdc\" class=\"style-qCQQ5r8Zdc\">\r\n        \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"46cO8eZb4M\" class=\"style-46cO8eZb4M\">\r\n        \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vDCZXkYvRK\" class=\"style-vDCZXkYvRK\">\r\n        \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-jhXoK9n1L gp-component gp-pattern-bg-block\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"blue-theme\",\"user_id\":\"global\",\"filename\":\"_empty_0\"}\" data-gp-component-id=\"jhXoK9n1L\" id=\"jhXoK9n1L\" tabindex=\"0\"><a name=\"jhXoK9n1L\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-AKND_exhJp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AKND_exhJp\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-1Ti0qjBmh\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"1Ti0qjBmh\" data-gp-component=\"null\" tabindex=\"0\"></div><figure tabindex=\"0\" data-gp-component-id=\"QQKsCnjDX\" data-gp-component=\"image\" data-gp-classes=\"\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-QQKsCnjDX\" alt=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653059117_coming-04-01.png\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653059117_coming-04-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component-id-EI8FwX1Zn gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"EI8FwX1Zn\" tabindex=\"0\"></figure><div class=\"gp-text-container gp-component-id-v0wKOiuno0 gp-component\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"v0wKOiuno0\" data-gp-component=\"null\"><h1 class=\"gp-component-id-KpGNyjRLM\">Free Ads From Around The World!<a href=\"https://soloswaps.com/signup.php\" rel=\"noopener noreferrer\" target=\"_blank\"> </a></h1></div><a target=\"_blank\" href=\"https://instantlist.club/signup.php\" data-gp-button-id=\"wHZmAXCfM\" class=\"items-center gp-component gp-component-id-3DDVxl3k7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3DDVxl3k7\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-JGvEcPD3z\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"JGvEcPD3z\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651347666_tryfree-14.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-iXKreONlL\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image-round\" data-gp-component-id=\"iXKreONlL\" tabindex=\"0\" style=\"\"></div>\r\n<div data-gp-component=\"pattern-background\" class=\"gp-component gp-component-id-qctxRttMF Isometric-pattern\" data-gp-component-id=\"qctxRttMF\"></div></section><section class=\"gp-component-id-ypsw4eQXK gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"blue-theme\",\"user_id\":\"global\",\"filename\":\"_empty_0\"}\" data-gp-component-id=\"ypsw4eQXK\" id=\"ypsw4eQXK\" tabindex=\"0\"><a name=\"ypsw4eQXK\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-vDCZXkYvRK gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"vDCZXkYvRK\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-iaovH_OLw gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"iaovH_OLw\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-nRdlKWx0e\">\r\n        <div class=\"gp-component-id-P2fuQT9hZ9\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-qCQQ5r8Zdc gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qCQQ5r8Zdc\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><div data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"carousel\" class=\"gp-component gp-component-id-nLFrFe0fm\" data-gp-component-id=\"nLFrFe0fm\" tabindex=\"0\">\r\n  <div data-gp-carousel=\"nLFrFe0fm\">\r\n      <ul>\r\n        <a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651348677xhX9qOa6_qo.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/165134873521GWwco-JBQ.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/16511655105QgIuuBxKwM.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651156676OqtafYT5kTw.jpg\"></li></a>          \r\n      </ul>\r\n  </div>\r\n  <script src=\"https://assets.grooveapps.com/plugins/carousel-lib.web.js\" id=\"script-M9uPW_uDD\"></script>\r\n  <script id=\"script-7pgTH02lGC\">\r\n  (function(){\r\n    var checkSetup = setInterval(function () {\r\n      if (window.setupCarousel) {\r\n        const options = {\r\n          infinite: true,\r\n          autoplay: true,\r\n          autoplaySpeed: 5000,\r\n        };\r\n        setupCarousel(\"nLFrFe0fm\", options);\r\n        clearInterval(checkSetup);\r\n      } \r\n    }, 250);\r\n  })();\r\n  </script>\r\n  </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-46cO8eZb4M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-EmTp71O4Rd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"EmTp71O4Rd\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mnLzc3bWk\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"mnLzc3bWk\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-text-container gp-component-id-y2OhTBPCNW gp-component\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"y2OhTBPCNW\" data-gp-component=\"null\"><h1 class=\"gp-component-id-gnFH5vMT9\">Get Started In Just A Few Short Moments</h1></div></div><div class=\"gp-component gp-component-id-IseGyYjaY\" style=\"border-color: rgba(84, 221, 255, 1); border-width: 0; border-style: solid; border-top-width: 4px; width: 25%; margin-left: 0; margin-right: auto;\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"divider\" data-gp-component-id=\"IseGyYjaY\" tabindex=\"0\"></div><div class=\"gp-text-container gp-component gp-component-id-1UipQAKpwI\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1UipQAKpwI\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-pFMmFUTSZ\">Solo Swaps uses a powerful viral mailer system to bring a steady stream of traffic to your web site. It\'s fast, easy, and free.</p></div><div class=\"gp-text-container gp-component gp-component-id-26Raa0xt0\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"26Raa0xt0\" data-gp-component=\"null\" tabindex=\"0\"></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n</section>\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n    <section class=\"mt-5 pt-4 pb-4\">\r\n	<div class=\"container\">\r\n		<div class=\"row align-items-center overflow-hidden\">\r\n			<div class=\"col-lg-12 text-center\">\r\n				\r\n				<!-- Start Animated Typing Effect -->\r\n				\r\n				<!-- List the lines of text you want to be typed -->\r\n				<div id=\"typed-strings\">\r\n					<p style=\"color:#000000\";>><b>Web Sites...</b></p>\r\n					<p style=\"color:#000000\";><b>Banner Ads...</b></p>\r\n					<p style=\"color:#000000\";><b>Text Ads...</b></p>\r\n					<p style=\"color:#000000\";><b>Entire Business!!!</b></p>\r\n				</div>\r\n				\r\n				<!-- This is where the text will be shown -->\r\n				<h1 style=\"color:#000000\"; class=\"display-4 mb-4 text-center\">Drive Traffic To Your <br> <span id=\"typed\"></span></h1>\r\n				\r\n				<!-- Javascript for the typing effect -->\r\n				<script>\r\n				if( $(\'#typed\').length ) {\r\n					var typed = new Typed(\"#typed\", {\r\n						stringsElement: \'#typed-strings\',\r\n						typeSpeed: 100,\r\n						backSpeed: 50,\r\n						backDelay: 2000,\r\n						startDelay: 200,\r\n						loop: true\r\n					});\r\n				}\r\n				</script>\r\n\r\n				<!-- End Animated Typing Effect -->\r\n				\r\n				<a style=\"color:#FFFFFF\"; href=\"signup.php?rid=#AFFILIATEID#\" class=\"btn btn-primary btn-lg mt-4 mb-4\"><i class=\"far fa-arrow-alt-circle-right\"></i> Join Free Today</a>\r\n				\r\n			</div>\r\n		</div>\r\n	</div>\r\n</section>\r\n      </body>\r\n      </body>\r\n    </html>'),(59,'2022-05-21 07:46:42','Sales Page','<!DOCTYPE html>\r\n<html lang=\"en\">\r\n  <body style=\"background-color: #F3F3F3;\">\r\n      <head>\r\n     <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"icon\" href=\"data:image/x-icon;base64,UklGRuwBAABXRUJQVlA4TOABAAAvH8AHELVAjCTJkfLG5uC/D+zsrgmD1lrDEEGQbXN/gne0BNm2+CDvoAAAYEjaHbxt22Y0km37v9k2k+1ko9m2bducgMoDAAHYoxQzuMYX/vCGA3QjGHJx6LARy+dQRy5W8Y7/FD84RCFUw8ECxJCHq17EORLANhMHYIKVXscv+qCQBQAeuO6tWIFWAmvc9mbsQG/wiu3ejR+kRIGqIirU9+zVBY5x95DgEbGgr6qCAZ4yfGMKMdCFJIShAh/04+sYjuAYoKqqH1R1igsEg+2wEUMwIeytG9PQqCGksJfgEhZHkJUGAK64QSvEagwPfI7wi4iaBYY22CtFBf7HWALP1DSmEuTW7v8RfmC7DWOYwfTz8/MVhqCUKLwMxjEYFExgiY5FNNUyONHe8zhZKwhhcA4DGwqKWJpCzo6CNg4n8ALTiTgEViKTghUeMsyDJwsAXDAJPzCNQPMwgbTDRqQBhCduG5/3D5ADG5gh/I82vHeKUygmAUIA7vHf3fjFFZYxj0N89iTSI+SIMALx1FsxBr4aChWivnsr9qFRY/BitLfiAIaHjcghgQZ8reEP49CoWdAjAJvnCzhH5k0tQhTxD/jI8Il15EBZwVpWJPjhinqs4Qm/+MEDllH7DaEAVA4=\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n          text-size-adjust: 100%;line-height: 1.25;font-family: sans-serif;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        html {\r\n          font-family: sans-serif;text-size-adjust: 100%;line-height: 1.25;box-sizing: border-box;\r\n      }\r\n        }\r\n        \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-x: hidden;border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body * {\r\n          border-image-repeat: initial;border-image-outset: initial;border-image-width: initial;border-image-slice: initial;border-image-source: initial;border-left-color: rgb(173, 183, 194);border-bottom-color: rgb(173, 183, 194);border-right-color: rgb(173, 183, 194);border-top-color: rgb(173, 183, 194);border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-sizing: inherit;\r\n      }\r\n        }\r\n        \r\n        main {\r\n          display: block;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        main {\r\n          display: block;\r\n      }\r\n        }\r\n        \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        h1 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        hr {\r\n          overflow-y: visible;overflow-x: visible;height: 0px;box-sizing: content-box;\r\n      }\r\n        }\r\n        \r\n        pre {\r\n          font-size: 1em;font-family: monospace, monospace;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        pre {\r\n          font-family: monospace, monospace;font-size: 1em;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        b {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        strong {\r\n          font-weight: bolder;\r\n      }\r\n        }\r\n        \r\n        code {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        code {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        kbd {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        kbd {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        samp {\r\n          font-size: 1em;font-family: monospace, monospace;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        samp {\r\n          font-family: monospace, monospace;font-size: 1em;\r\n      }\r\n        }\r\n        \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        small {\r\n          font-size: 80%;\r\n      }\r\n        }\r\n        \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        sub {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;bottom: -0.25em;\r\n      }\r\n        }\r\n        \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        sup {\r\n          vertical-align: baseline;position: relative;line-height: 0;font-size: 75%;top: -0.5em;\r\n      }\r\n        }\r\n        \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        img {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        }\r\n        \r\n        button {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        button {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;text-transform: none;appearance: button;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;background-color: transparent;background-clip: initial;background-origin: initial;background-attachment: initial;background-repeat-y: initial;background-repeat-x: initial;background-size: initial;background-position-y: initial;background-position-x: initial;background-image: initial;cursor: pointer;\r\n      }\r\n        button:focus,button.gp-focus {\r\n          outline-width: 5px;outline-style: auto;outline-color: -webkit-focus-ring-color;\r\n      }\r\n        }\r\n        \r\n        input {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        input {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: visible;overflow-x: visible;\r\n      }\r\n        }\r\n        \r\n        optgroup {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        optgroup {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;\r\n      }\r\n        }\r\n        \r\n        select {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;text-transform: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        select {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;text-transform: none;\r\n      }\r\n        }\r\n        \r\n        textarea {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;font-family: inherit;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        textarea {\r\n          font-family: inherit;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;line-height: 1.15;font-size: 100%;overflow-y: auto;overflow-x: auto;resize: vertical;color: inherit;\r\n      }\r\n        textarea:focus,textarea.gp-focus {\r\n          outline-width: 0px;outline-style: initial;outline-color: initial;\r\n      }\r\n        }\r\n        \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        fieldset {\r\n          padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        legend {\r\n          white-space: normal;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;max-width: 100%;display: table;color: inherit;box-sizing: border-box;\r\n      }\r\n        }\r\n        \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        progress {\r\n          vertical-align: baseline;\r\n      }\r\n        }\r\n        \r\n        details {\r\n          display: block;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        details {\r\n          display: block;\r\n      }\r\n        }\r\n        \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        summary {\r\n          display: list-item;\r\n      }\r\n        }\r\n        \r\n        template {\r\n          display: none;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        template {\r\n          display: none;\r\n      }\r\n        }\r\n        \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        blockquote {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        dd {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        dl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        figure {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        ol {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;list-style-position: inside;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;\r\n      }\r\n        }\r\n        \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        ul {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        }\r\n        \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        table {\r\n          border-collapse: collapse;\r\n      }\r\n        }\r\n        \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        a {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }/*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62879e9b4942cf333023fbd3\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"6hLC6-6JQ\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62879e9b4942cf333023fbd3\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyI2aExDNi02SlEiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62879e9b4942cf333023fbd3\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"6hLC6-6JQ\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"ypsw4eQXK\" class=\"style-ypsw4eQXK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 375px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 570px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 700px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 850px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK[data-gp-component] {\r\n          box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 30px;padding-bottom: 50px;min-width: 1024px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EmTp71O4Rd\" class=\"style-EmTp71O4Rd\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 0px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 0px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EmTp71O4Rd[data-gp-component] {\r\n          margin-left: 24px;margin-top: auto;margin-bottom: auto;width: 100%;height: 100%;flex-direction: column;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhXoK9n1L\" class=\"style-jhXoK9n1L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 375px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 570px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 700px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 850px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653058971_back-soon-01.png\");background-size: cover;box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: auto;margin-right: auto;padding-left: 50px;padding-right: 50px;padding-top: 50px;padding-bottom: 50px;min-width: 1024px;max-width: 0px;min-height: 50px;position: relative;z-index: auto;--gp-bg-opacity: 0.33;--gp-bg-front-alpha-color: rgba(255, 95, 0, 0);--gp-bg-front-color: rgba(255, 95, 0, 0);--gp-bg-back-color: rgba(255, 252, 0, 0);--gp-bg-spacing: 57px;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QQKsCnjDX\" class=\"style-QQKsCnjDX\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;min-width: 100%;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QQKsCnjDX[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style class=\"style-EI8FwX1Zn\" data-gp-styled-element=\"EI8FwX1Zn\">\r\n        \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;min-width: 370px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EI8FwX1Zn {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-left: auto;margin-right: auto;width: 100%;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AKND_exhJp\" class=\"style-AKND_exhJp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AKND_exhJp[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KpGNyjRLM\" class=\"style-KpGNyjRLM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 25px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-KpGNyjRLM {\r\n          font-size: 43px !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-top: 20px;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXKreONlL\" class=\"style-iXKreONlL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 225px;margin-top: -70px;width: 75px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXKreONlL[data-gp-component] {\r\n          border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;margin-left: 240px;margin-top: -76px;width: 89px;display: flex;position: relative;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3DDVxl3k7\" class=\"style-3DDVxl3k7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 466px;max-width: 89%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3DDVxl3k7[data-gp-component] {\r\n          font-size: 28px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;font-family: Poppins;border-top-left-radius: 9999px;border-top-right-radius: 9999px;border-bottom-left-radius: 9999px;border-bottom-right-radius: 9999px;background-color: rgb(0, 51, 193);box-shadow: rgba(0, 0, 0, 0.11) 0px 15px 30px 0px, rgba(0, 0, 0, 0.08) 0px 5px 15px 0px;margin-left: 0px;margin-right: 0px;margin-top: 20px;padding-left: 20px;padding-right: 20px;padding-top: 10px;padding-bottom: 10px;width: 240px;max-width: 67%;align-items: center;display: flex;position: relative;\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:hover,.gp-component-id-3DDVxl3k7[data-gp-component].gp-hover {\r\n          background-color: rgb(12, 86, 204);\r\n      }\r\n        .gp-component-id-3DDVxl3k7[data-gp-component]:active,.gp-component-id-3DDVxl3k7[data-gp-component].gp-active {\r\n          background-color: rgb(6, 89, 226);\r\n      }\r\n        }</style><style data-gp-styled-element=\"gnFH5vMT9\" class=\"style-gnFH5vMT9\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;text-align: center;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-gnFH5vMT9 {\r\n          font-weight: 600;font-family: Poppins;\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhXoK9n1L\" class=\"style-jhXoK9n1L-overlay\">\r\n        \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-jhXoK9n1L.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 29, 186,0);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pFMmFUTSZ\" class=\"style-pFMmFUTSZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-pFMmFUTSZ {\r\n          font-size: 22px !important;font-weight: 200;text-align: justify;font-family: Poppins;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nLFrFe0fm\" class=\"style-nLFrFe0fm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nLFrFe0fm[data-gp-component] {\r\n          margin-top: 40px;margin-bottom: auto;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"pFMmFUTSZ\">\r\n        \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-pFMmFUTSZ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IseGyYjaY\" class=\"style-IseGyYjaY\">\r\n        \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IseGyYjaY {\r\n          margin-top: 16px;padding-bottom: 8px;border-top-color: rgb(32, 45, 60);border-right-color: rgb(32, 45, 60);border-bottom-color: rgb(32, 45, 60);border-left-color: rgb(32, 45, 60);border-top-width: 2px;border-right-width: 0px;border-bottom-width: 0px;border-left-width: 0px;border-top-style: dashed;border-right-style: dashed;border-bottom-style: dashed;border-left-style: dashed;width: 100%;margin-left: auto;margin-right: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gnFH5vMT9\">\r\n        \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gnFH5vMT9 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ypsw4eQXK\" class=\"style-ypsw4eQXK-overlay\">\r\n        \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ypsw4eQXK.gp-component [data-section-overlay] {\r\n          background-color: rgba(255, 255, 255, 1);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"KpGNyjRLM\">\r\n        \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-KpGNyjRLM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iaovH_OLw\" class=\"style-iaovH_OLw\">\r\n        \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iaovH_OLw {\r\n          padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nRdlKWx0e\" class=\"style-nRdlKWx0e\">\r\n        \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nRdlKWx0e {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P2fuQT9hZ9\" class=\"style-P2fuQT9hZ9\">\r\n        \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P2fuQT9hZ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qCQQ5r8Zdc\" class=\"style-qCQQ5r8Zdc\">\r\n        \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qCQQ5r8Zdc {\r\n          height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"46cO8eZb4M\" class=\"style-46cO8eZb4M\">\r\n        \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-46cO8eZb4M {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 50%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vDCZXkYvRK\" class=\"style-vDCZXkYvRK\">\r\n        \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vDCZXkYvRK {\r\n          width: 100%;margin-right: auto;margin-left: auto;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-jhXoK9n1L gp-component gp-pattern-bg-block\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"blue-theme\",\"user_id\":\"global\",\"filename\":\"_empty_0\"}\" data-gp-component-id=\"jhXoK9n1L\" id=\"jhXoK9n1L\" tabindex=\"0\"><a name=\"jhXoK9n1L\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-AKND_exhJp gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AKND_exhJp\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-1Ti0qjBmh\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"1Ti0qjBmh\" data-gp-component=\"null\" tabindex=\"0\"></div><figure tabindex=\"0\" data-gp-component-id=\"QQKsCnjDX\" data-gp-component=\"image\" data-gp-classes=\"\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-QQKsCnjDX\" alt=\"\" src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653059117_coming-04-01.png\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653059117_coming-04-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component-id-EI8FwX1Zn gp-component\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"EI8FwX1Zn\" tabindex=\"0\"></figure><div class=\"gp-text-container gp-component-id-v0wKOiuno0 gp-component\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"v0wKOiuno0\" data-gp-component=\"null\"><h1 class=\"gp-component-id-KpGNyjRLM\">Free Ads From Around The World!<a href=\"https://soloswaps.com/signup.php\" rel=\"noopener noreferrer\" target=\"_blank\"> </a></h1></div><a target=\"_blank\" href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"wHZmAXCfM\" class=\"items-center gp-component gp-component-id-3DDVxl3k7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3DDVxl3k7\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-JGvEcPD3z\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"JGvEcPD3z\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651347666_tryfree-14.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-iXKreONlL\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image-round\" data-gp-component-id=\"iXKreONlL\" tabindex=\"0\" style=\"\"></div>\r\n<div data-gp-component=\"pattern-background\" class=\"gp-component gp-component-id-qctxRttMF Isometric-pattern\" data-gp-component-id=\"qctxRttMF\"></div></section><section class=\"gp-component-id-ypsw4eQXK gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"blue-theme\",\"user_id\":\"global\",\"filename\":\"_empty_0\"}\" data-gp-component-id=\"ypsw4eQXK\" id=\"ypsw4eQXK\" tabindex=\"0\"><a name=\"ypsw4eQXK\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component-id-vDCZXkYvRK gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"vDCZXkYvRK\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-iaovH_OLw gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-data=\"{\"id\":49,\"name\":\"layout-2-2\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNMTIuNTggOC4wOWExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWg3Ljc1em0xMC42NyAwYTEgMSAwIDAgMSAxIDF2MTMuMDZhMSAxIDAgMCAxLTEgMUgxNS41YTEgMSAwIDAgMS0xLTFWOS4wOWExIDEgMCAwIDEgMS0xaDcuNzV6TTI2IC43NUgyLjM4Yy0uOSAwLTEuNjMuNzMtMS42MyAxLjYzdjIuNTI5aDI2LjkyVjIuMzhBMS42MyAxLjYzIDAgMCAwIDI2IC43NXpNMy41OCAyLjNhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDMuNTggMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDYuNDYgMi4zem0yLjg4IDBhLjc0Ljc0IDAgMCAxIC43MzIuNjMybC4wMDguMTE4YS43NS43NSAwIDAgMS0uNjQuNzQybC0uMS4wMDhhLjc2Ljc2IDAgMCAxLS43NS0uNzUuNzUuNzUgMCAwIDEgLjY0OC0uNzQzTDkuMzQgMi4zeiIvPgo8L3N2Zz4K\",\"title\":\"2 Columns\",\"index\":2,\"hasMenu\":true}}\" data-gp-component-id=\"iaovH_OLw\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-nRdlKWx0e\">\r\n        <div class=\"gp-component-id-P2fuQT9hZ9\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-qCQQ5r8Zdc gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"qCQQ5r8Zdc\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"><div data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"carousel\" class=\"gp-component gp-component-id-nLFrFe0fm\" data-gp-component-id=\"nLFrFe0fm\" tabindex=\"0\">\r\n  <div data-gp-carousel=\"nLFrFe0fm\">\r\n      <ul>\r\n        <a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651348677xhX9qOa6_qo.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/165134873521GWwco-JBQ.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/16511655105QgIuuBxKwM.jpg\"></li></a><a><li><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1651156676OqtafYT5kTw.jpg\"></li></a>          \r\n      </ul>\r\n  </div>\r\n  <script src=\"https://assets.grooveapps.com/plugins/carousel-lib.web.js\" id=\"script-M9uPW_uDD\"></script>\r\n  <script id=\"script-7pgTH02lGC\">\r\n  (function(){\r\n    var checkSetup = setInterval(function () {\r\n      if (window.setupCarousel) {\r\n        const options = {\r\n          infinite: true,\r\n          autoplay: true,\r\n          autoplaySpeed: 5000,\r\n        };\r\n        setupCarousel(\"nLFrFe0fm\", options);\r\n        clearInterval(checkSetup);\r\n      } \r\n    }, 250);\r\n  })();\r\n  </script>\r\n  </div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-46cO8eZb4M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-EmTp71O4Rd gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"EmTp71O4Rd\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mnLzc3bWk\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"mnLzc3bWk\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-text-container gp-component-id-y2OhTBPCNW gp-component\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" style=\"\" tabindex=\"0\" data-gp-component-id=\"y2OhTBPCNW\" data-gp-component=\"null\"><h1 class=\"gp-component-id-gnFH5vMT9\">Get Started In Just A Few Short Moments</h1></div></div><div class=\"gp-component gp-component-id-IseGyYjaY\" style=\"border-color: rgba(84, 221, 255, 1); border-width: 0; border-style: solid; border-top-width: 4px; width: 25%; margin-left: 0; margin-right: auto;\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-classes=\"\" data-gp-component=\"divider\" data-gp-component-id=\"IseGyYjaY\" tabindex=\"0\"></div><div class=\"gp-text-container gp-component gp-component-id-1UipQAKpwI\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"1UipQAKpwI\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-pFMmFUTSZ\">Solo Swaps uses a powerful viral mailer system to bring a steady stream of traffic to your web site. It\'s fast, easy, and free.</p></div><div class=\"gp-text-container gp-component gp-component-id-26Raa0xt0\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"26Raa0xt0\" data-gp-component=\"null\" tabindex=\"0\"></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n</section>\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n    <section class=\"mt-5 pt-4 pb-4\">\r\n	<div class=\"container\">\r\n		<div class=\"row align-items-center overflow-hidden\">\r\n			<div class=\"col-lg-12 text-center\">\r\n				\r\n				<!-- Start Animated Typing Effect -->\r\n				\r\n				<!-- List the lines of text you want to be typed -->\r\n				<div id=\"typed-strings\">\r\n					<p style=\"color:#000000\";>><b>Web Sites...</b></p>\r\n					<p style=\"color:#000000\";><b>Banner Ads...</b></p>\r\n					<p style=\"color:#000000\";><b>Text Ads...</b></p>\r\n					<p style=\"color:#000000\";><b>Entire Business!!!</b></p>\r\n				</div>\r\n				\r\n				<!-- This is where the text will be shown -->\r\n				<h1 style=\"color:#000000\"; class=\"display-4 mb-4 text-center\">Drive Traffic To Your <br> <span id=\"typed\"></span></h1>\r\n				\r\n				<!-- Javascript for the typing effect -->\r\n				<script>\r\n				if( $(\'#typed\').length ) {\r\n					var typed = new Typed(\"#typed\", {\r\n						stringsElement: \'#typed-strings\',\r\n						typeSpeed: 100,\r\n						backSpeed: 50,\r\n						backDelay: 2000,\r\n						startDelay: 200,\r\n						loop: true\r\n					});\r\n				}\r\n				</script>\r\n\r\n				<!-- End Animated Typing Effect -->\r\n				\r\n				<a style=\"color:#FFFFFF\"; href=\"signup.php?rid=#AFFILIATEID#\" class=\"btn btn-primary btn-lg mt-4 mb-4\"><i class=\"far fa-arrow-alt-circle-right\"></i> Join Free Today</a>\r\n				\r\n			</div>\r\n		</div>\r\n	</div>\r\n</section>\r\n      </body>\r\n      </body>\r\n    </html>'),(60,'2022-05-24 12:49:54','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n  \r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&amp;rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"imE7sdmLQ\" class=\"style-imE7sdmLQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O5eOQDEAWC\" class=\"style-O5eOQDEAWC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HE7KeuE6Pp\" class=\"style-HE7KeuE6Pp\">\r\n        \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1yByRXh2dZ\" class=\"style-1yByRXh2dZ\">\r\n        \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CVpnwVArpG\" class=\"style-CVpnwVArpG\">\r\n        \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EFV7bd6WI4\" class=\"style-EFV7bd6WI4\">\r\n        \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI5lMwTvdb\" class=\"style-QI5lMwTvdb\">\r\n        \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qtsA5FX_E7\" class=\"style-qtsA5FX_E7\">\r\n        \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CLr40a91Jq\" class=\"style-CLr40a91Jq\">\r\n        \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GnsU_PkSnf\" class=\"style-GnsU_PkSnf\">\r\n        \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GNQuf0zg_B\" class=\"style-GNQuf0zg_B\">\r\n        \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHRQ67U6Yn\" class=\"style-xHRQ67U6Yn\">\r\n        \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A8TadsPbvK\" class=\"style-A8TadsPbvK\">\r\n        \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o7UtxJbob6\" class=\"style-o7UtxJbob6\">\r\n        \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tJKNapIyD0\" class=\"style-tJKNapIyD0\">\r\n        \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r5yup7D0jU\" class=\"style-r5yup7D0jU\">\r\n        \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QeGPFp7JKqO\" class=\"style-QeGPFp7JKqO\">\r\n        \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g3V3hrVjWdO\" class=\"style-g3V3hrVjWdO\">\r\n        \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18pkSEFK5qt\" class=\"style-18pkSEFK5qt\">\r\n        \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yoj78FNsen\" class=\"style-Yoj78FNsen\">\r\n        \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5 style-djAXHkaDU5-overlay\">\r\n        \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }</style><style data-gp-styled-element=\"i09A53v00A\" class=\"style-i09A53v00A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 640px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 768px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 992px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 1200px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bkCV1UafxN\" class=\"style-bkCV1UafxN\">\r\n        \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;margin-right: 20px;margin-left: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WisjZ1aZWk\" class=\"style-WisjZ1aZWk\">\r\n        \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 15px;margin-bottom: 0px;margin-right: 15px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eRz17TzdLI\" class=\"style-eRz17TzdLI\">\r\n        \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rY_c0npyjp\" class=\"style-rY_c0npyjp\">\r\n        \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fZAUSKs07p\" class=\"style-fZAUSKs07p\">\r\n        \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9f8txQSL1M\" class=\"style-9f8txQSL1M\">\r\n        \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vfZNLGLmdb\" class=\"style-vfZNLGLmdb\">\r\n        \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rqV0HApMNi\" class=\"style-rqV0HApMNi\">\r\n        \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qJmcd4rcKU\" class=\"style-qJmcd4rcKU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU {\r\n          width: 100%;padding-bottom: 30px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU {\r\n          width: 100%;padding-bottom: 30px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU {\r\n          width: 100%;padding-bottom: 30px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU {\r\n          width: 100%;padding-bottom: 30px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU {\r\n          width: 100%;padding-bottom: 30px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DBMrHfjbn\" class=\"style-DBMrHfjbn\">\r\n        \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lJNYEBqNhi\" class=\"style-lJNYEBqNhi\">\r\n        \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XHWj27ckWT\" class=\"style-XHWj27ckWT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yx9ekF4Ove1\" class=\"style-Yx9ekF4Ove1\">\r\n        \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fd4magzcP_\" class=\"style-fd4magzcP_\">\r\n        \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GDuDIPyjPeC\" class=\"style-GDuDIPyjPeC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LDuD24a1IKj\" class=\"style-LDuD24a1IKj\">\r\n        \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fyTas0JhDP\" class=\"style-fyTas0JhDP\">\r\n        \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GMq_0xd09Wj\" class=\"style-GMq_0xd09Wj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"V7_mhY5y0gH\" class=\"style-V7_mhY5y0gH\">\r\n        \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7XX3NRH9VF\" class=\"style-7XX3NRH9VF\">\r\n        \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JVkiPmXCBxf\" class=\"style-JVkiPmXCBxf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7jl0Ww7mIpK\" class=\"style-7jl0Ww7mIpK\">\r\n        \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ebi92jiPE30\" class=\"style-ebi92jiPE30\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30 {\r\n          width: 100%;padding-bottom: 0px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30 {\r\n          width: 100%;padding-bottom: 0px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30 {\r\n          width: 100%;padding-bottom: 0px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30 {\r\n          width: 100%;padding-bottom: 0px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30 {\r\n          width: 100%;padding-bottom: 0px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3XqiRWPtn\" class=\"style-3XqiRWPtn\">\r\n        \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vb4TuNDxzU\" class=\"style-vb4TuNDxzU\">\r\n        \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P6SkHmDNxNj\" class=\"style-P6SkHmDNxNj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WpYaLyiKvY\" class=\"style-WpYaLyiKvY\">\r\n        \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rhG6OD85L2L\" class=\"style-rhG6OD85L2L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8JLwUwZggI\" class=\"style-Y8JLwUwZggI\">\r\n        \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;position: relative;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;position: relative;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;position: relative;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;position: relative;width: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;position: relative;width: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JL3HMeBX8\" class=\"style-JL3HMeBX8\">\r\n        \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tb8QZhOqvza\" class=\"style-tb8QZhOqvza\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S18Vg1s2YPL\" class=\"style-S18Vg1s2YPL\">\r\n        \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 200px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 200px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 200px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 200px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 200px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0mvTj1eP4m\" class=\"style-0mvTj1eP4m\">\r\n        \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DdkgqhZtI2J\" class=\"style-DdkgqhZtI2J\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n4MC6JDXF6W\" class=\"style-n4MC6JDXF6W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GfJ_TPvDQrE\" class=\"style-GfJ_TPvDQrE\">\r\n        \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hf05ASWxRB0\" class=\"style-hf05ASWxRB0\">\r\n        \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XxbMwkXtXz6\" class=\"style-XxbMwkXtXz6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ccN8yDZJ9YW\" class=\"style-ccN8yDZJ9YW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_Lzv1wr6aoU\" class=\"style-_Lzv1wr6aoU\">\r\n        \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8JoYdE8dOeO\" class=\"style-8JoYdE8dOeO\">\r\n        \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9iLbd69lZ5W\" class=\"style-9iLbd69lZ5W\">\r\n        \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bTfiiva4Ot6\" class=\"style-bTfiiva4Ot6\">\r\n        \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wsmyN0fpRIz\" class=\"style-wsmyN0fpRIz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIET96g6EQo\" class=\"style-CIET96g6EQo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjlXt0MgFJ2\" class=\"style-kjlXt0MgFJ2\">\r\n        \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Thq0x6Bv0q9\" class=\"style-Thq0x6Bv0q9\">\r\n        \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QrhhMm_RFJ\" class=\"style-0QrhhMm_RFJ\">\r\n        \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DZeuL83IjLF\" class=\"style-DZeuL83IjLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wa5jmQ5EC\" class=\"style-wa5jmQ5EC\">\r\n        \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RKlS25caso\" class=\"style-RKlS25caso\">\r\n        \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_SWuC1Z4SM\" class=\"style-_SWuC1Z4SM\">\r\n        \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wHujuRWvn3n\" class=\"style-wHujuRWvn3n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PQtapy3rm04\" class=\"style-PQtapy3rm04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OBdBtO3Gl0\" class=\"style-OBdBtO3Gl0\">\r\n        \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iBMUg_wZFj\" class=\"style-iBMUg_wZFj\">\r\n        \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fgCVZ0eFnq\" class=\"style-fgCVZ0eFnq\">\r\n        \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7Ro9nvVLG\" class=\"style-g7Ro9nvVLG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{&quot;id&quot;:7610,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png&quot;,&quot;category&quot;:&quot;Navigation bars&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5df98d83cf362c0e9cf8723d&quot;,&quot;filename&quot;:null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?s=noauth\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\">Every Marketers Dream!</h1><h1 class=\"gp-component-id-g7Ro9nvVLG\"><strong>Instant FREE Traffic...</strong></h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-O5eOQDEAWC\">Start growing your online business using our proven extensions. From page builders, to email marketing</p><p class=\"gp-component-id-NfeuVlmvqT\">and payment gateways, for one single and affordable monthly fee.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653419955_3d-welcome-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-imE7sdmLQ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"imE7sdmLQ\" tabindex=\"0\"></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and your ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENJOY NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking our your links and visiting your pages</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-djAXHkaDU5\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"djAXHkaDU5\" tabindex=\"0\" data-gp-block=\"true\" data-gp-block-id=\"12295329\" data-gp-block-data=\"{&quot;id&quot;:12295329,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/628d015317aed.png&quot;,&quot;category&quot;:&quot;No Category&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null}\" id=\"djAXHkaDU5\" style=\"\"><a name=\"djAXHkaDU5\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><a name=\"djAXHkaDU5\" class=\"gp-component-id-Yoj78FNsen\"></a><div class=\"\" data-section-overlay=\"\"></div><div class=\"gp-component gp-component-id-i09A53v00A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i09A53v00A\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1584986169_Group.png\" alt=\"\" class=\"gp-component gp-component-id-bkCV1UafxN\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"image\" data-gp-component-id=\"bkCV1UafxN\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-FfP91Xsqh5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"FfP91Xsqh5\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-WisjZ1aZWk\">Get These <strong class=\"gp-component-id-eRz17TzdLI\">PREMIUM</strong> Tools 100%&nbsp;<strong class=\"gp-component-id-rY_c0npyjp\">FREE...</strong></h2></div><div class=\"gp-text-container gp-component gp-component-id-oOAolUKIIW\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"oOAolUKIIW\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-fZAUSKs07p\"><strong class=\"gp-component-id-9f8txQSL1M\"><em class=\"gp-component-id-vfZNLGLmdb\"><u class=\"gp-component-id-rqV0HApMNi\">Using These Methods</u></em></strong></h2></div><div class=\"gp-component-id-qJmcd4rcKU gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{&quot;id&quot;:51,&quot;name&quot;:&quot;layout-4-4-4-4&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=&quot;,&quot;title&quot;:&quot;4 Columns&quot;,&quot;index&quot;:4,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"qJmcd4rcKU\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DBMrHfjbn\">\r\n        <div class=\"gp-component-id-lJNYEBqNhi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-XHWj27ckWT gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XHWj27ckWT\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279649_kissclipart-free-clip-art-enter-to-win-clipart-logo-clip-art-09cf8748b55e1037.png\" alt=\"\" class=\"gp-component gp-component-id-Yx9ekF4Ove1\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Yx9ekF4Ove1\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fd4magzcP_\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GDuDIPyjPeC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GDuDIPyjPeC\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279626_images8.jpg\" alt=\"\" class=\"gp-component gp-component-id-LDuD24a1IKj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"LDuD24a1IKj\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fyTas0JhDP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-GMq_0xd09Wj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GMq_0xd09Wj\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279754_images9.png\" alt=\"\" class=\"gp-component gp-component-id-V7_mhY5y0gH\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"V7_mhY5y0gH\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-7XX3NRH9VF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-JVkiPmXCBxf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"JVkiPmXCBxf\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279813_images11.jpg\" alt=\"\" class=\"gp-component gp-component-id-7jl0Ww7mIpK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7jl0Ww7mIpK\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-ebi92jiPE30\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{&quot;id&quot;:51,&quot;name&quot;:&quot;layout-4-4-4-4&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=&quot;,&quot;title&quot;:&quot;4 Columns&quot;,&quot;index&quot;:4,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"ebi92jiPE30\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3XqiRWPtn\">\r\n        <div class=\"gp-component-id-vb4TuNDxzU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-P6SkHmDNxNj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"P6SkHmDNxNj\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-WpYaLyiKvY\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-rhG6OD85L2L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"rhG6OD85L2L\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279886_360F268693414ooIZMf3gtkOy6Ccvx0cDz1SZefpR6pNl.jpg\" alt=\"\" class=\"gp-component gp-component-id-Y8JLwUwZggI\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Y8JLwUwZggI\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JL3HMeBX8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-tb8QZhOqvza\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tb8QZhOqvza\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279947_unnamed.png\" alt=\"\" class=\"gp-component gp-component-id-S18Vg1s2YPL\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"S18Vg1s2YPL\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0mvTj1eP4m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DdkgqhZtI2J\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DdkgqhZtI2J\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-b8nu7QWuu06\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"b8nu7QWuu06\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ZlBFaBtPLHd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{&quot;id&quot;:52,&quot;name&quot;:&quot;layout-5-5-5-5-5&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=&quot;,&quot;title&quot;:&quot;5 Columns&quot;,&quot;index&quot;:5,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"ZlBFaBtPLHd\" tabindex=\"0\"><div class=\"gp-component-id-BoQ8QJirkA\">\r\n        <div class=\"gp-component-id-6t0COZ5WZN\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-EbYsu0aPyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-TDC0YLY3aY\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-XtllE0d0GD\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-5bUzwR7LMz\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div><div class=\"gp-component gp-component-id-YLnfJYH7JYp\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{&quot;id&quot;:52,&quot;name&quot;:&quot;layout-5-5-5-5-5&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=&quot;,&quot;title&quot;:&quot;5 Columns&quot;,&quot;index&quot;:5,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"YLnfJYH7JYp\" tabindex=\"0\"><div class=\"gp-component-id-zI50dJMP6d\">\r\n        <div class=\"gp-component-id-P0_m2XN3EO\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-48la5nGzf4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-UwNNGXzvDkX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-zZkWN3b5uRy\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-6lhmocpI1yK\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-n4MC6JDXF6W\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"n4MC6JDXF6W\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-GfJ_TPvDQrE\">\r\n        <div class=\"gp-component-id-hf05ASWxRB0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-XxbMwkXtXz6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XxbMwkXtXz6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ccN8yDZJ9YW\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"ccN8yDZJ9YW\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-component-id-_Lzv1wr6aoU\">\r\n                    <div class=\"gp-component-id-8JoYdE8dOeO\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-9iLbd69lZ5W\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-bTfiiva4Ot6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wsmyN0fpRIz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"wsmyN0fpRIz\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-CIET96g6EQo\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" data-gp-component-id=\"CIET96g6EQo\" tabindex=\"0\"><div class=\"gp-component-id-kjlXt0MgFJ2\">\r\n                    <div class=\"gp-component-id-Thq0x6Bv0q9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-0QrhhMm_RFJ\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-DZeuL83IjLF\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" tabindex=\"0\" data-gp-component-id=\"DZeuL83IjLF\"><div class=\"gp-component-id-wa5jmQ5EC\">\r\n        <div class=\"gp-component-id-RKlS25caso\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-_SWuC1Z4SM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wHujuRWvn3n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component=\"container\" tabindex=\"0\" data-gp-component-id=\"wHujuRWvn3n\"><div class=\"gp-component gp-component-id-PQtapy3rm04\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" tabindex=\"0\" data-gp-component-id=\"PQtapy3rm04\"><div class=\"gp-component-id-OBdBtO3Gl0\">\r\n                    <div class=\"gp-component-id-iBMUg_wZFj\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-fgCVZ0eFnq\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div></div></div></section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{&quot;id&quot;:12295330,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/628d015e95545.png&quot;,&quot;category&quot;:&quot;No Category&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null}\" id=\"rDPeNtfic0w\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.&nbsp;Includes Domain, Theme, Plugins,&nbsp;Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong class=\"gp-component-id-HE7KeuE6Pp\"><em class=\"gp-component-id-1yByRXh2dZ\">(retail value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.&nbsp;We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong class=\"gp-component-id-CVpnwVArpG\"><em class=\"gp-component-id-EFV7bd6WI4\">(retail value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Messing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong class=\"gp-component-id-QI5lMwTvdb\"><em class=\"gp-component-id-qtsA5FX_E7\">(retail value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.&nbsp;Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong class=\"gp-component-id-CLr40a91Jq\"><em class=\"gp-component-id-GnsU_PkSnf\">(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong class=\"gp-component-id-GNQuf0zg_B\"><em class=\"gp-component-id-xHRQ67U6Yn\">(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.&nbsp;Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong class=\"gp-component-id-A8TadsPbvK\"><em class=\"gp-component-id-o7UtxJbob6\">(Retail Value $650)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.&nbsp;Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.&nbsp;</p><p class=\"gp-component-id-k4R7SI080\"><strong class=\"gp-component-id-tJKNapIyD0\"><em class=\"gp-component-id-r5yup7D0jU\">(Retail Price $497)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.&nbsp;Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong class=\"gp-component-id-QeGPFp7JKqO\"><em class=\"gp-component-id-g3V3hrVjWdO\">(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.&nbsp;Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong class=\"gp-component-id-18pkSEFK5qt\">(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section>\r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_templates_backups` (`id`, `savetime`, `template_name`, `template_data`) VALUES (61,'2022-05-28 13:14:29','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps - Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n  \r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-navmenu-id] .gp-navmenu-parentlink > a, [data-gp-navmenu-id] .gp-navmenu-link > a, [data-gp-navmenu-id] .lg\\:mr-9 > a {\r\n          color: inherit;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"imE7sdmLQ\" class=\"style-imE7sdmLQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O5eOQDEAWC\" class=\"style-O5eOQDEAWC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fSZi9dKnl {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HE7KeuE6Pp\" class=\"style-HE7KeuE6Pp\">\r\n        \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HE7KeuE6Pp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1yByRXh2dZ\" class=\"style-1yByRXh2dZ\">\r\n        \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-1yByRXh2dZ {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-49qNyAHC0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-size: 16px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CVpnwVArpG\" class=\"style-CVpnwVArpG\">\r\n        \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CVpnwVArpG {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EFV7bd6WI4\" class=\"style-EFV7bd6WI4\">\r\n        \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EFV7bd6WI4 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FMXi5Mdjo {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI5lMwTvdb\" class=\"style-QI5lMwTvdb\">\r\n        \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI5lMwTvdb {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qtsA5FX_E7\" class=\"style-qtsA5FX_E7\">\r\n        \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qtsA5FX_E7 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dn54o_9O0 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CLr40a91Jq\" class=\"style-CLr40a91Jq\">\r\n        \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CLr40a91Jq {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GnsU_PkSnf\" class=\"style-GnsU_PkSnf\">\r\n        \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GnsU_PkSnf {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-EWbnps1rS {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GNQuf0zg_B\" class=\"style-GNQuf0zg_B\">\r\n        \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GNQuf0zg_B {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xHRQ67U6Yn\" class=\"style-xHRQ67U6Yn\">\r\n        \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xHRQ67U6Yn {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RyPeZQeWt {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A8TadsPbvK\" class=\"style-A8TadsPbvK\">\r\n        \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A8TadsPbvK {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"o7UtxJbob6\" class=\"style-o7UtxJbob6\">\r\n        \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-o7UtxJbob6 {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-k4R7SI080 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tJKNapIyD0\" class=\"style-tJKNapIyD0\">\r\n        \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tJKNapIyD0 {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r5yup7D0jU\" class=\"style-r5yup7D0jU\">\r\n        \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r5yup7D0jU {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3YddfZaMV {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QeGPFp7JKqO\" class=\"style-QeGPFp7JKqO\">\r\n        \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QeGPFp7JKqO {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g3V3hrVjWdO\" class=\"style-g3V3hrVjWdO\">\r\n        \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-g3V3hrVjWdO {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-5PSb1qKWM {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;font-family: Montserrat, sans-serif;font-size: 16px;text-align: center;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18pkSEFK5qt\" class=\"style-18pkSEFK5qt\">\r\n        \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18pkSEFK5qt {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yoj78FNsen\" class=\"style-Yoj78FNsen\">\r\n        \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5 style-djAXHkaDU5-overlay\">\r\n        \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }</style><style data-gp-styled-element=\"i09A53v00A\" class=\"style-i09A53v00A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 640px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 768px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 992px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 1200px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bkCV1UafxN\" class=\"style-bkCV1UafxN\">\r\n        \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;margin-right: 20px;margin-left: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WisjZ1aZWk\" class=\"style-WisjZ1aZWk\">\r\n        \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 15px;margin-bottom: 0px;margin-right: 15px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eRz17TzdLI\" class=\"style-eRz17TzdLI\">\r\n        \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eRz17TzdLI {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rY_c0npyjp\" class=\"style-rY_c0npyjp\">\r\n        \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rY_c0npyjp {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fZAUSKs07p\" class=\"style-fZAUSKs07p\">\r\n        \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fZAUSKs07p {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9f8txQSL1M\" class=\"style-9f8txQSL1M\">\r\n        \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9f8txQSL1M {\r\n          font-weight: bolder;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vfZNLGLmdb\" class=\"style-vfZNLGLmdb\">\r\n        \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vfZNLGLmdb {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rqV0HApMNi\" class=\"style-rqV0HApMNi\">\r\n        \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rqV0HApMNi {\r\n          overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qJmcd4rcKU\" class=\"style-qJmcd4rcKU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU {\r\n          width: 100%;padding-bottom: 30px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU {\r\n          width: 100%;padding-bottom: 30px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU {\r\n          width: 100%;padding-bottom: 30px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU {\r\n          width: 100%;padding-bottom: 30px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU {\r\n          width: 100%;padding-bottom: 30px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DBMrHfjbn\" class=\"style-DBMrHfjbn\">\r\n        \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lJNYEBqNhi\" class=\"style-lJNYEBqNhi\">\r\n        \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XHWj27ckWT\" class=\"style-XHWj27ckWT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yx9ekF4Ove1\" class=\"style-Yx9ekF4Ove1\">\r\n        \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fd4magzcP_\" class=\"style-fd4magzcP_\">\r\n        \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GDuDIPyjPeC\" class=\"style-GDuDIPyjPeC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LDuD24a1IKj\" class=\"style-LDuD24a1IKj\">\r\n        \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fyTas0JhDP\" class=\"style-fyTas0JhDP\">\r\n        \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GMq_0xd09Wj\" class=\"style-GMq_0xd09Wj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"V7_mhY5y0gH\" class=\"style-V7_mhY5y0gH\">\r\n        \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7XX3NRH9VF\" class=\"style-7XX3NRH9VF\">\r\n        \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JVkiPmXCBxf\" class=\"style-JVkiPmXCBxf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7jl0Ww7mIpK\" class=\"style-7jl0Ww7mIpK\">\r\n        \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;position: relative;object-fit: cover;object-position: center center;display: inline-flex;align-items: flex-start;justify-content: flex-start;width: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ebi92jiPE30\" class=\"style-ebi92jiPE30\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30 {\r\n          width: 100%;padding-bottom: 0px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30 {\r\n          width: 100%;padding-bottom: 0px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30 {\r\n          width: 100%;padding-bottom: 0px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30 {\r\n          width: 100%;padding-bottom: 0px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30 {\r\n          width: 100%;padding-bottom: 0px;padding-top: 30px;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3XqiRWPtn\" class=\"style-3XqiRWPtn\">\r\n        \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vb4TuNDxzU\" class=\"style-vb4TuNDxzU\">\r\n        \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P6SkHmDNxNj\" class=\"style-P6SkHmDNxNj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WpYaLyiKvY\" class=\"style-WpYaLyiKvY\">\r\n        \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rhG6OD85L2L\" class=\"style-rhG6OD85L2L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8JLwUwZggI\" class=\"style-Y8JLwUwZggI\">\r\n        \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;position: relative;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;position: relative;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;position: relative;width: 220px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;position: relative;width: 220px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 220px;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;position: relative;width: 220px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JL3HMeBX8\" class=\"style-JL3HMeBX8\">\r\n        \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tb8QZhOqvza\" class=\"style-tb8QZhOqvza\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S18Vg1s2YPL\" class=\"style-S18Vg1s2YPL\">\r\n        \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 200px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 200px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 200px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 200px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 200px;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0mvTj1eP4m\" class=\"style-0mvTj1eP4m\">\r\n        \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DdkgqhZtI2J\" class=\"style-DdkgqhZtI2J\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n4MC6JDXF6W\" class=\"style-n4MC6JDXF6W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GfJ_TPvDQrE\" class=\"style-GfJ_TPvDQrE\">\r\n        \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hf05ASWxRB0\" class=\"style-hf05ASWxRB0\">\r\n        \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XxbMwkXtXz6\" class=\"style-XxbMwkXtXz6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ccN8yDZJ9YW\" class=\"style-ccN8yDZJ9YW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_Lzv1wr6aoU\" class=\"style-_Lzv1wr6aoU\">\r\n        \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8JoYdE8dOeO\" class=\"style-8JoYdE8dOeO\">\r\n        \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9iLbd69lZ5W\" class=\"style-9iLbd69lZ5W\">\r\n        \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bTfiiva4Ot6\" class=\"style-bTfiiva4Ot6\">\r\n        \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wsmyN0fpRIz\" class=\"style-wsmyN0fpRIz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIET96g6EQo\" class=\"style-CIET96g6EQo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjlXt0MgFJ2\" class=\"style-kjlXt0MgFJ2\">\r\n        \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Thq0x6Bv0q9\" class=\"style-Thq0x6Bv0q9\">\r\n        \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QrhhMm_RFJ\" class=\"style-0QrhhMm_RFJ\">\r\n        \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DZeuL83IjLF\" class=\"style-DZeuL83IjLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wa5jmQ5EC\" class=\"style-wa5jmQ5EC\">\r\n        \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RKlS25caso\" class=\"style-RKlS25caso\">\r\n        \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_SWuC1Z4SM\" class=\"style-_SWuC1Z4SM\">\r\n        \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wHujuRWvn3n\" class=\"style-wHujuRWvn3n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PQtapy3rm04\" class=\"style-PQtapy3rm04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OBdBtO3Gl0\" class=\"style-OBdBtO3Gl0\">\r\n        \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iBMUg_wZFj\" class=\"style-iBMUg_wZFj\">\r\n        \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fgCVZ0eFnq\" class=\"style-fgCVZ0eFnq\">\r\n        \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7Ro9nvVLG\" class=\"style-g7Ro9nvVLG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{\"id\":7610,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png\",\"category\":\"Navigation bars\",\"tag\":\"user\",\"user_id\":\"5df98d83cf362c0e9cf8723d\",\"filename\":null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?s=noauth\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\">Every Marketers Dream!</h1><h1 class=\"gp-component-id-g7Ro9nvVLG\"><strong>Instant FREE Traffic...</strong></h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-O5eOQDEAWC\">Start growing your online business using our proven extensions. From page builders, to email marketing</p><p class=\"gp-component-id-NfeuVlmvqT\">and payment gateways, for one single and affordable monthly fee.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653419955_3d-welcome-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-imE7sdmLQ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"imE7sdmLQ\" tabindex=\"0\"></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and you are ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENTICE NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking your links and visiting your pages.</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-djAXHkaDU5\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"djAXHkaDU5\" tabindex=\"0\" data-gp-block=\"true\" data-gp-block-id=\"12295329\" data-gp-block-data=\"{\"id\":12295329,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/628d015317aed.png\",\"category\":\"No Category\",\"tag\":\"user\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null}\" id=\"djAXHkaDU5\" style=\"\"><a name=\"djAXHkaDU5\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><a name=\"djAXHkaDU5\" class=\"gp-component-id-Yoj78FNsen\"></a><div class=\"\" data-section-overlay=\"\"></div><div class=\"gp-component gp-component-id-i09A53v00A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i09A53v00A\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1584986169_Group.png\" alt=\"\" class=\"gp-component gp-component-id-bkCV1UafxN\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"image\" data-gp-component-id=\"bkCV1UafxN\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-FfP91Xsqh5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"FfP91Xsqh5\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-WisjZ1aZWk\">Get These <strong class=\"gp-component-id-eRz17TzdLI\">PREMIUM</strong> Tools 100%Â <strong class=\"gp-component-id-rY_c0npyjp\">FREE...</strong></h2></div><div class=\"gp-text-container gp-component gp-component-id-oOAolUKIIW\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"oOAolUKIIW\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-fZAUSKs07p\"><strong class=\"gp-component-id-9f8txQSL1M\"><em class=\"gp-component-id-vfZNLGLmdb\"><u class=\"gp-component-id-rqV0HApMNi\">Using These Methods</u></em></strong></h2></div><div class=\"gp-component-id-qJmcd4rcKU gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{\"id\":51,\"name\":\"layout-4-4-4-4\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=\",\"title\":\"4 Columns\",\"index\":4,\"hasMenu\":true}}\" data-gp-component-id=\"qJmcd4rcKU\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-DBMrHfjbn\">\r\n        <div class=\"gp-component-id-lJNYEBqNhi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-XHWj27ckWT gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XHWj27ckWT\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279649_kissclipart-free-clip-art-enter-to-win-clipart-logo-clip-art-09cf8748b55e1037.png\" alt=\"\" class=\"gp-component gp-component-id-Yx9ekF4Ove1\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Yx9ekF4Ove1\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fd4magzcP_\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GDuDIPyjPeC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GDuDIPyjPeC\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279626_images8.jpg\" alt=\"\" class=\"gp-component gp-component-id-LDuD24a1IKj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"LDuD24a1IKj\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fyTas0JhDP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-GMq_0xd09Wj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GMq_0xd09Wj\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279754_images9.png\" alt=\"\" class=\"gp-component gp-component-id-V7_mhY5y0gH\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"V7_mhY5y0gH\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-7XX3NRH9VF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-JVkiPmXCBxf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"JVkiPmXCBxf\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279813_images11.jpg\" alt=\"\" class=\"gp-component gp-component-id-7jl0Ww7mIpK\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7jl0Ww7mIpK\" tabindex=\"0\"></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-ebi92jiPE30\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{\"id\":51,\"name\":\"layout-4-4-4-4\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=\",\"title\":\"4 Columns\",\"index\":4,\"hasMenu\":true}}\" data-gp-component-id=\"ebi92jiPE30\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3XqiRWPtn\">\r\n        <div class=\"gp-component-id-vb4TuNDxzU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-P6SkHmDNxNj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"P6SkHmDNxNj\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-WpYaLyiKvY\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-rhG6OD85L2L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"rhG6OD85L2L\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279886_360F268693414ooIZMf3gtkOy6Ccvx0cDz1SZefpR6pNl.jpg\" alt=\"\" class=\"gp-component gp-component-id-Y8JLwUwZggI\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Y8JLwUwZggI\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JL3HMeBX8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-tb8QZhOqvza\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tb8QZhOqvza\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279947_unnamed.png\" alt=\"\" class=\"gp-component gp-component-id-S18Vg1s2YPL\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"S18Vg1s2YPL\" tabindex=\"0\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0mvTj1eP4m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DdkgqhZtI2J\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DdkgqhZtI2J\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-b8nu7QWuu06\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"b8nu7QWuu06\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ZlBFaBtPLHd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{\"id\":52,\"name\":\"layout-5-5-5-5-5\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=\",\"title\":\"5 Columns\",\"index\":5,\"hasMenu\":true}}\" data-gp-component-id=\"ZlBFaBtPLHd\" tabindex=\"0\"><div class=\"gp-component-id-BoQ8QJirkA\">\r\n        <div class=\"gp-component-id-6t0COZ5WZN\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-EbYsu0aPyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-TDC0YLY3aY\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-XtllE0d0GD\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-5bUzwR7LMz\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div><div class=\"gp-component gp-component-id-YLnfJYH7JYp\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{\"id\":52,\"name\":\"layout-5-5-5-5-5\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=\",\"title\":\"5 Columns\",\"index\":5,\"hasMenu\":true}}\" data-gp-component-id=\"YLnfJYH7JYp\" tabindex=\"0\"><div class=\"gp-component-id-zI50dJMP6d\">\r\n        <div class=\"gp-component-id-P0_m2XN3EO\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-48la5nGzf4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-UwNNGXzvDkX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-zZkWN3b5uRy\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-6lhmocpI1yK\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-n4MC6JDXF6W\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"n4MC6JDXF6W\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-GfJ_TPvDQrE\">\r\n        <div class=\"gp-component-id-hf05ASWxRB0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-XxbMwkXtXz6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XxbMwkXtXz6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ccN8yDZJ9YW\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"ccN8yDZJ9YW\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-component-id-_Lzv1wr6aoU\">\r\n                    <div class=\"gp-component-id-8JoYdE8dOeO\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-9iLbd69lZ5W\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-bTfiiva4Ot6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wsmyN0fpRIz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"wsmyN0fpRIz\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-CIET96g6EQo\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" data-gp-component-id=\"CIET96g6EQo\" tabindex=\"0\"><div class=\"gp-component-id-kjlXt0MgFJ2\">\r\n                    <div class=\"gp-component-id-Thq0x6Bv0q9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-0QrhhMm_RFJ\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-DZeuL83IjLF\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" tabindex=\"0\" data-gp-component-id=\"DZeuL83IjLF\"><div class=\"gp-component-id-wa5jmQ5EC\">\r\n        <div class=\"gp-component-id-RKlS25caso\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-_SWuC1Z4SM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wHujuRWvn3n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component=\"container\" tabindex=\"0\" data-gp-component-id=\"wHujuRWvn3n\"><div class=\"gp-component gp-component-id-PQtapy3rm04\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" tabindex=\"0\" data-gp-component-id=\"PQtapy3rm04\"><div class=\"gp-component-id-OBdBtO3Gl0\">\r\n                    <div class=\"gp-component-id-iBMUg_wZFj\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-fgCVZ0eFnq\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div></div></div></section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{\"id\":12295330,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/628d015e95545.png\",\"category\":\"No Category\",\"tag\":\"user\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null}\" id=\"rDPeNtfic0w\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.Â Includes Domain, Theme, Plugins,Â Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong class=\"gp-component-id-HE7KeuE6Pp\"><em class=\"gp-component-id-1yByRXh2dZ\">(Retail Value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.Â We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong class=\"gp-component-id-CVpnwVArpG\"><em class=\"gp-component-id-EFV7bd6WI4\">(Retail Value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Marketing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong class=\"gp-component-id-QI5lMwTvdb\"><em class=\"gp-component-id-qtsA5FX_E7\">(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.Â Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong class=\"gp-component-id-CLr40a91Jq\"><em class=\"gp-component-id-GnsU_PkSnf\">(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong class=\"gp-component-id-GNQuf0zg_B\"><em class=\"gp-component-id-xHRQ67U6Yn\">(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.Â Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong class=\"gp-component-id-A8TadsPbvK\"><em class=\"gp-component-id-o7UtxJbob6\">(Retail Value $650)Â </em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.Â Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.Â </p><p class=\"gp-component-id-k4R7SI080\"><strong class=\"gp-component-id-tJKNapIyD0\"><em class=\"gp-component-id-r5yup7D0jU\">(Retail Price $497)Â </em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.Â Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong class=\"gp-component-id-QeGPFp7JKqO\"><em class=\"gp-component-id-g3V3hrVjWdO\">(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.Â Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong class=\"gp-component-id-18pkSEFK5qt\">(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section>\r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(62,'2022-07-02 12:08:51','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&amp;rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"LWT9gxVJXbU\" class=\"style-LWT9gxVJXbU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQoyVMq30ru\" class=\"style-FQoyVMq30ru\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Leqb4xP8b3\" class=\"style-Leqb4xP8b3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhdaAJMa_Vb\" class=\"style-jhdaAJMa_Vb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D0PMvn9OzWP\" class=\"style-D0PMvn9OzWP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eSHr0GjFMF6\" class=\"style-eSHr0GjFMF6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoANoMnyCy\" class=\"style-eoANoMnyCy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\" class=\"style-04K8AGERBs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz-overlay\">\r\n        \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nbGPlwD9e\" class=\"style-nbGPlwD9e\">\r\n        \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RYKkfiWJUh\" class=\"style-RYKkfiWJUh\">\r\n        \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IVwF60zTeZ\" class=\"style-IVwF60zTeZ\">\r\n        \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gl9cxAwaIO\" class=\"style-gl9cxAwaIO\">\r\n        \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yW3HWfv6uh\" class=\"style-yW3HWfv6uh\">\r\n        \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qVhSWuYVyr\" class=\"style-qVhSWuYVyr\">\r\n        \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Nf_wtmCq2o\" class=\"style-Nf_wtmCq2o\">\r\n        \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VFm3GmgY2R\" class=\"style-VFm3GmgY2R\">\r\n        \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gcjc443D1Q\" class=\"style-Gcjc443D1Q\">\r\n        \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gpaOSSTYJBm\" class=\"style-gpaOSSTYJBm\">\r\n        \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A4ayDdm1iX7\" class=\"style-A4ayDdm1iX7\">\r\n        \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0AN508oW9rf\" class=\"style-0AN508oW9rf\">\r\n        \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WjrpIspQdjx\" class=\"style-WjrpIspQdjx\">\r\n        \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M3A5Z9KLTKi\" class=\"style-M3A5Z9KLTKi\">\r\n        \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12jtMtHeg9_\" class=\"style-12jtMtHeg9_\">\r\n        \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RVfYN8k3yCi\" class=\"style-RVfYN8k3yCi\">\r\n        \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OVR9DvuYB\" class=\"style-OVR9DvuYB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fZAUSKs07p\" class=\"style-fZAUSKs07p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qJmcd4rcKU\" class=\"style-qJmcd4rcKU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ebi92jiPE30\" class=\"style-ebi92jiPE30\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S18Vg1s2YPL\" class=\"style-S18Vg1s2YPL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8JLwUwZggI\" class=\"style-Y8JLwUwZggI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7jl0Ww7mIpK\" class=\"style-7jl0Ww7mIpK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"V7_mhY5y0gH\" class=\"style-V7_mhY5y0gH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LDuD24a1IKj\" class=\"style-LDuD24a1IKj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yx9ekF4Ove1\" class=\"style-Yx9ekF4Ove1\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"imE7sdmLQ\" class=\"style-imE7sdmLQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O5eOQDEAWC\" class=\"style-O5eOQDEAWC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yoj78FNsen\" class=\"style-Yoj78FNsen\">\r\n        \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5 style-djAXHkaDU5-overlay\">\r\n        \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }</style><style data-gp-styled-element=\"i09A53v00A\" class=\"style-i09A53v00A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 640px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 768px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 992px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 1200px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bkCV1UafxN\" class=\"style-bkCV1UafxN\">\r\n        \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;margin-right: 20px;margin-left: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WisjZ1aZWk\" class=\"style-WisjZ1aZWk\">\r\n        \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 15px;margin-bottom: 0px;margin-right: 15px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DBMrHfjbn\" class=\"style-DBMrHfjbn\">\r\n        \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lJNYEBqNhi\" class=\"style-lJNYEBqNhi\">\r\n        \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XHWj27ckWT\" class=\"style-XHWj27ckWT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fd4magzcP_\" class=\"style-fd4magzcP_\">\r\n        \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GDuDIPyjPeC\" class=\"style-GDuDIPyjPeC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fyTas0JhDP\" class=\"style-fyTas0JhDP\">\r\n        \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GMq_0xd09Wj\" class=\"style-GMq_0xd09Wj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7XX3NRH9VF\" class=\"style-7XX3NRH9VF\">\r\n        \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JVkiPmXCBxf\" class=\"style-JVkiPmXCBxf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3XqiRWPtn\" class=\"style-3XqiRWPtn\">\r\n        \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vb4TuNDxzU\" class=\"style-vb4TuNDxzU\">\r\n        \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P6SkHmDNxNj\" class=\"style-P6SkHmDNxNj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WpYaLyiKvY\" class=\"style-WpYaLyiKvY\">\r\n        \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rhG6OD85L2L\" class=\"style-rhG6OD85L2L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JL3HMeBX8\" class=\"style-JL3HMeBX8\">\r\n        \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tb8QZhOqvza\" class=\"style-tb8QZhOqvza\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0mvTj1eP4m\" class=\"style-0mvTj1eP4m\">\r\n        \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DdkgqhZtI2J\" class=\"style-DdkgqhZtI2J\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n4MC6JDXF6W\" class=\"style-n4MC6JDXF6W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GfJ_TPvDQrE\" class=\"style-GfJ_TPvDQrE\">\r\n        \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hf05ASWxRB0\" class=\"style-hf05ASWxRB0\">\r\n        \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XxbMwkXtXz6\" class=\"style-XxbMwkXtXz6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ccN8yDZJ9YW\" class=\"style-ccN8yDZJ9YW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_Lzv1wr6aoU\" class=\"style-_Lzv1wr6aoU\">\r\n        \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8JoYdE8dOeO\" class=\"style-8JoYdE8dOeO\">\r\n        \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9iLbd69lZ5W\" class=\"style-9iLbd69lZ5W\">\r\n        \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bTfiiva4Ot6\" class=\"style-bTfiiva4Ot6\">\r\n        \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wsmyN0fpRIz\" class=\"style-wsmyN0fpRIz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIET96g6EQo\" class=\"style-CIET96g6EQo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjlXt0MgFJ2\" class=\"style-kjlXt0MgFJ2\">\r\n        \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Thq0x6Bv0q9\" class=\"style-Thq0x6Bv0q9\">\r\n        \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QrhhMm_RFJ\" class=\"style-0QrhhMm_RFJ\">\r\n        \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DZeuL83IjLF\" class=\"style-DZeuL83IjLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wa5jmQ5EC\" class=\"style-wa5jmQ5EC\">\r\n        \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RKlS25caso\" class=\"style-RKlS25caso\">\r\n        \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_SWuC1Z4SM\" class=\"style-_SWuC1Z4SM\">\r\n        \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wHujuRWvn3n\" class=\"style-wHujuRWvn3n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PQtapy3rm04\" class=\"style-PQtapy3rm04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OBdBtO3Gl0\" class=\"style-OBdBtO3Gl0\">\r\n        \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iBMUg_wZFj\" class=\"style-iBMUg_wZFj\">\r\n        \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fgCVZ0eFnq\" class=\"style-fgCVZ0eFnq\">\r\n        \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7Ro9nvVLG\" class=\"style-g7Ro9nvVLG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{&quot;id&quot;:7610,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png&quot;,&quot;category&quot;:&quot;Navigation bars&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5df98d83cf362c0e9cf8723d&quot;,&quot;filename&quot;:null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\" tabindex=\"0\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?s=noauth\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\">Every Marketers Dream!</h1><h1 class=\"gp-component-id-g7Ro9nvVLG\"><strong>Instant FREE Traffic...</strong></h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-O5eOQDEAWC\">Start growing your online business using our proven extensions. From page builders, to email marketing</p><p class=\"gp-component-id-NfeuVlmvqT\">and payment gateways, for one single and affordable monthly fee.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653419955_3d-welcome-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-imE7sdmLQ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"imE7sdmLQ\" tabindex=\"0\"></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-ww47D26mJz\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12301095\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:12301095,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;//assets.grooveapps.com/pages-previews/62bdf8867004d.png&quot;,&quot;category&quot;:&quot;Personalized Templates&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null,&quot;height&quot;:358,&quot;global&quot;:0}\" data-gp-component-id=\"ww47D26mJz\" id=\"ww47D26mJz\" tabindex=\"0\" style=\"\"><a name=\"ww47D26mJz\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"eoANoMnyCy\">\r\n        \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\">\r\n        \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-RYKkfiWJUh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"RYKkfiWJUh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IVwF60zTeZ gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{&quot;id&quot;:48,&quot;name&quot;:&quot;layout-1&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==&quot;,&quot;title&quot;:&quot;1 Column&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"IVwF60zTeZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-gl9cxAwaIO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gl9cxAwaIO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Oaku6Kh_7t dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Oaku6Kh_7t\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-04K8AGERBs\">GET ALL THIS 100% FREE!!</h1></div><ul class=\"gp-component-id-yW3HWfv6uh gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"yW3HWfv6uh\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-qVhSWuYVyr\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"qVhSWuYVyr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/NyF2trOxc1kli2y6XUaBk2j0J46YMjRUi5exmRLmNlg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjA4MzY4XzM2LU5vdGlmaWNhdGlvbi5wbmc.webp\" alt=\"\" class=\"gp-component gp-component-id-Nf_wtmCq2o\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Nf_wtmCq2o\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-wBONUKqVm6 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"wBONUKqVm6\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eoANoMnyCy\">1,000 AD CREDITS</h2></div></ul><ul class=\"gp-component gp-component-id-VFm3GmgY2R\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"VFm3GmgY2R\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-Leqb4xP8b3\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"Leqb4xP8b3\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-Gcjc443D1Q\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"Gcjc443D1Q\" tabindex=\"0\"><img src=\"https://images.groovetech.io/vTMQkRRTqPWVHvFirgncAtE1DFpn41TjjxJEzGHDwpo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2NzYwXzM1LU1lc3NhZ2UucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-gpaOSSTYJBm\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"gpaOSSTYJBm\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l3yIQ6CVHq0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l3yIQ6CVHq0\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eSHr0GjFMF6\">EMAIL &amp; SMS SENDER</h2></div></ul><ul class=\"gp-component gp-component-id-A4ayDdm1iX7\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"A4ayDdm1iX7\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-FQoyVMq30ru\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"FQoyVMq30ru\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-0AN508oW9rf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"0AN508oW9rf\" tabindex=\"0\"><img src=\"https://images.groovetech.io/bO03g-U5sgytnMCNmjm2pO_NUSKgS0hI8Xyw8zsRdKM/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODAyXzM0LVZvdWNoZXIucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-WjrpIspQdjx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"WjrpIspQdjx\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zVUIhCaMN0d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zVUIhCaMN0d\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-D0PMvn9OzWP\">PAGE BUILDER</h2></div></ul><ul class=\"gp-component gp-component-id-M3A5Z9KLTKi\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"M3A5Z9KLTKi\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-LWT9gxVJXbU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"LWT9gxVJXbU\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-12jtMtHeg9_\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"12jtMtHeg9_\" tabindex=\"0\"><img src=\"https://images.groovetech.io/SYCBkqwZYbmNu-YE4YPljBO0onhh8WBeopCR3qYIC7Y/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODMwXzAyLVJhdGUucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-RVfYN8k3yCi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"RVfYN8k3yCi\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-qt3o2nLbXte\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"qt3o2nLbXte\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-jhdaAJMa_Vb\">LEAD &amp; TASK CRM</h2></div></ul></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and your ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENJOY NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking our your links and visiting your pages</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-djAXHkaDU5\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"djAXHkaDU5\" tabindex=\"0\" data-gp-block=\"true\" data-gp-block-id=\"12295329\" data-gp-block-data=\"{&quot;id&quot;:12295329,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/628d015317aed.png&quot;,&quot;category&quot;:&quot;No Category&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null}\" id=\"djAXHkaDU5\" style=\"\"><a name=\"djAXHkaDU5\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><a name=\"djAXHkaDU5\" class=\"gp-component-id-Yoj78FNsen\"></a><div class=\"\" data-section-overlay=\"\"></div><div class=\"gp-component gp-component-id-i09A53v00A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i09A53v00A\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1584986169_Group.png\" alt=\"\" class=\"gp-component gp-component-id-bkCV1UafxN\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"image\" data-gp-component-id=\"bkCV1UafxN\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-FfP91Xsqh5 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"FfP91Xsqh5\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-WisjZ1aZWk\">Get These <strong>PREMIUM</strong> Tools 100%&nbsp;<strong>FREE...</strong></h2></div><div class=\"gp-text-container gp-component gp-component-id-oOAolUKIIW dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"oOAolUKIIW\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-fZAUSKs07p\"><strong><em><u>Using These Methods</u></em></strong></h2></div><div class=\"gp-component-id-OVR9DvuYB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"OVR9DvuYB\"><div class=\"gp-component-id-qJmcd4rcKU gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{&quot;id&quot;:51,&quot;name&quot;:&quot;layout-4-4-4-4&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=&quot;,&quot;title&quot;:&quot;4 Columns&quot;,&quot;index&quot;:4,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"qJmcd4rcKU\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DBMrHfjbn\">\r\n        <div class=\"gp-component-id-lJNYEBqNhi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-XHWj27ckWT gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XHWj27ckWT\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279649_kissclipart-free-clip-art-enter-to-win-clipart-logo-clip-art-09cf8748b55e1037.png\" alt=\"\" class=\"gp-component gp-component-id-Yx9ekF4Ove1 dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Yx9ekF4Ove1\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fd4magzcP_\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GDuDIPyjPeC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GDuDIPyjPeC\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279626_images8.jpg\" alt=\"\" class=\"gp-component gp-component-id-LDuD24a1IKj dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"LDuD24a1IKj\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fyTas0JhDP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-GMq_0xd09Wj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GMq_0xd09Wj\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279754_images9.png\" alt=\"\" class=\"gp-component gp-component-id-V7_mhY5y0gH dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"V7_mhY5y0gH\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-7XX3NRH9VF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-JVkiPmXCBxf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"JVkiPmXCBxf\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279813_images11.jpg\" alt=\"\" class=\"gp-component gp-component-id-7jl0Ww7mIpK dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7jl0Ww7mIpK\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-ebi92jiPE30 dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{&quot;id&quot;:51,&quot;name&quot;:&quot;layout-4-4-4-4&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=&quot;,&quot;title&quot;:&quot;4 Columns&quot;,&quot;index&quot;:4,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"ebi92jiPE30\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3XqiRWPtn\">\r\n        <div class=\"gp-component-id-vb4TuNDxzU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-P6SkHmDNxNj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"P6SkHmDNxNj\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-WpYaLyiKvY\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-rhG6OD85L2L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"rhG6OD85L2L\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279886_360F268693414ooIZMf3gtkOy6Ccvx0cDz1SZefpR6pNl.jpg\" alt=\"\" class=\"gp-component gp-component-id-Y8JLwUwZggI dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Y8JLwUwZggI\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JL3HMeBX8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-tb8QZhOqvza\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tb8QZhOqvza\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279947_unnamed.png\" alt=\"\" class=\"gp-component gp-component-id-S18Vg1s2YPL dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"S18Vg1s2YPL\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0mvTj1eP4m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DdkgqhZtI2J\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DdkgqhZtI2J\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component gp-component-id-b8nu7QWuu06\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"b8nu7QWuu06\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ZlBFaBtPLHd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{&quot;id&quot;:52,&quot;name&quot;:&quot;layout-5-5-5-5-5&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=&quot;,&quot;title&quot;:&quot;5 Columns&quot;,&quot;index&quot;:5,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"ZlBFaBtPLHd\" tabindex=\"0\"><div class=\"gp-component-id-BoQ8QJirkA\">\r\n        <div class=\"gp-component-id-6t0COZ5WZN\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-EbYsu0aPyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-TDC0YLY3aY\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-XtllE0d0GD\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-5bUzwR7LMz\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div><div class=\"gp-component gp-component-id-YLnfJYH7JYp\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{&quot;id&quot;:52,&quot;name&quot;:&quot;layout-5-5-5-5-5&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=&quot;,&quot;title&quot;:&quot;5 Columns&quot;,&quot;index&quot;:5,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"YLnfJYH7JYp\" tabindex=\"0\"><div class=\"gp-component-id-zI50dJMP6d\">\r\n        <div class=\"gp-component-id-P0_m2XN3EO\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-48la5nGzf4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-UwNNGXzvDkX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-zZkWN3b5uRy\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-6lhmocpI1yK\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-n4MC6JDXF6W\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"n4MC6JDXF6W\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-GfJ_TPvDQrE\">\r\n        <div class=\"gp-component-id-hf05ASWxRB0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-XxbMwkXtXz6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XxbMwkXtXz6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ccN8yDZJ9YW\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"ccN8yDZJ9YW\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-component-id-_Lzv1wr6aoU\">\r\n                    <div class=\"gp-component-id-8JoYdE8dOeO\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-9iLbd69lZ5W\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-bTfiiva4Ot6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wsmyN0fpRIz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"wsmyN0fpRIz\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-CIET96g6EQo\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" data-gp-component-id=\"CIET96g6EQo\" tabindex=\"0\"><div class=\"gp-component-id-kjlXt0MgFJ2\">\r\n                    <div class=\"gp-component-id-Thq0x6Bv0q9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-0QrhhMm_RFJ\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-DZeuL83IjLF\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" tabindex=\"0\" data-gp-component-id=\"DZeuL83IjLF\"><div class=\"gp-component-id-wa5jmQ5EC\">\r\n        <div class=\"gp-component-id-RKlS25caso\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-_SWuC1Z4SM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wHujuRWvn3n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component=\"container\" tabindex=\"0\" data-gp-component-id=\"wHujuRWvn3n\"><div class=\"gp-component gp-component-id-PQtapy3rm04\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" tabindex=\"0\" data-gp-component-id=\"PQtapy3rm04\"><div class=\"gp-component-id-OBdBtO3Gl0\">\r\n                    <div class=\"gp-component-id-iBMUg_wZFj\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-fgCVZ0eFnq\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div></div></div></section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{&quot;id&quot;:12295330,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/628d015e95545.png&quot;,&quot;category&quot;:&quot;No Category&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null}\" id=\"rDPeNtfic0w\" style=\"\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.&nbsp;Includes Domain, Theme, Plugins,&nbsp;Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong><em>(retail value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.&nbsp;We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong><em>(retail value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Messing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong><em>(retail value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_ dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.&nbsp;Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong><em>(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.&nbsp;Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong><em>(Retail Value $650)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.&nbsp;Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.&nbsp;</p><p class=\"gp-component-id-k4R7SI080\"><strong><em>(Retail Price $497)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.&nbsp;Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong><em>(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.&nbsp;Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong>(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section>\r\n    \r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_templates_backups` (`id`, `savetime`, `template_name`, `template_data`) VALUES (63,'2022-07-05 06:18:20','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"LWT9gxVJXbU\" class=\"style-LWT9gxVJXbU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQoyVMq30ru\" class=\"style-FQoyVMq30ru\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Leqb4xP8b3\" class=\"style-Leqb4xP8b3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhdaAJMa_Vb\" class=\"style-jhdaAJMa_Vb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D0PMvn9OzWP\" class=\"style-D0PMvn9OzWP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eSHr0GjFMF6\" class=\"style-eSHr0GjFMF6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoANoMnyCy\" class=\"style-eoANoMnyCy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\" class=\"style-04K8AGERBs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz-overlay\">\r\n        \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nbGPlwD9e\" class=\"style-nbGPlwD9e\">\r\n        \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RYKkfiWJUh\" class=\"style-RYKkfiWJUh\">\r\n        \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IVwF60zTeZ\" class=\"style-IVwF60zTeZ\">\r\n        \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gl9cxAwaIO\" class=\"style-gl9cxAwaIO\">\r\n        \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yW3HWfv6uh\" class=\"style-yW3HWfv6uh\">\r\n        \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qVhSWuYVyr\" class=\"style-qVhSWuYVyr\">\r\n        \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Nf_wtmCq2o\" class=\"style-Nf_wtmCq2o\">\r\n        \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VFm3GmgY2R\" class=\"style-VFm3GmgY2R\">\r\n        \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gcjc443D1Q\" class=\"style-Gcjc443D1Q\">\r\n        \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gpaOSSTYJBm\" class=\"style-gpaOSSTYJBm\">\r\n        \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A4ayDdm1iX7\" class=\"style-A4ayDdm1iX7\">\r\n        \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0AN508oW9rf\" class=\"style-0AN508oW9rf\">\r\n        \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WjrpIspQdjx\" class=\"style-WjrpIspQdjx\">\r\n        \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M3A5Z9KLTKi\" class=\"style-M3A5Z9KLTKi\">\r\n        \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12jtMtHeg9_\" class=\"style-12jtMtHeg9_\">\r\n        \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RVfYN8k3yCi\" class=\"style-RVfYN8k3yCi\">\r\n        \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OVR9DvuYB\" class=\"style-OVR9DvuYB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fZAUSKs07p\" class=\"style-fZAUSKs07p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qJmcd4rcKU\" class=\"style-qJmcd4rcKU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ebi92jiPE30\" class=\"style-ebi92jiPE30\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S18Vg1s2YPL\" class=\"style-S18Vg1s2YPL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8JLwUwZggI\" class=\"style-Y8JLwUwZggI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7jl0Ww7mIpK\" class=\"style-7jl0Ww7mIpK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"V7_mhY5y0gH\" class=\"style-V7_mhY5y0gH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LDuD24a1IKj\" class=\"style-LDuD24a1IKj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yx9ekF4Ove1\" class=\"style-Yx9ekF4Ove1\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"imE7sdmLQ\" class=\"style-imE7sdmLQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O5eOQDEAWC\" class=\"style-O5eOQDEAWC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yoj78FNsen\" class=\"style-Yoj78FNsen\">\r\n        \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5 style-djAXHkaDU5-overlay\">\r\n        \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }</style><style data-gp-styled-element=\"i09A53v00A\" class=\"style-i09A53v00A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 640px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 768px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 992px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 1200px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bkCV1UafxN\" class=\"style-bkCV1UafxN\">\r\n        \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;margin-right: 20px;margin-left: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WisjZ1aZWk\" class=\"style-WisjZ1aZWk\">\r\n        \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 15px;margin-bottom: 0px;margin-right: 15px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DBMrHfjbn\" class=\"style-DBMrHfjbn\">\r\n        \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lJNYEBqNhi\" class=\"style-lJNYEBqNhi\">\r\n        \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XHWj27ckWT\" class=\"style-XHWj27ckWT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fd4magzcP_\" class=\"style-fd4magzcP_\">\r\n        \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GDuDIPyjPeC\" class=\"style-GDuDIPyjPeC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fyTas0JhDP\" class=\"style-fyTas0JhDP\">\r\n        \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GMq_0xd09Wj\" class=\"style-GMq_0xd09Wj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7XX3NRH9VF\" class=\"style-7XX3NRH9VF\">\r\n        \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JVkiPmXCBxf\" class=\"style-JVkiPmXCBxf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3XqiRWPtn\" class=\"style-3XqiRWPtn\">\r\n        \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vb4TuNDxzU\" class=\"style-vb4TuNDxzU\">\r\n        \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P6SkHmDNxNj\" class=\"style-P6SkHmDNxNj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WpYaLyiKvY\" class=\"style-WpYaLyiKvY\">\r\n        \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rhG6OD85L2L\" class=\"style-rhG6OD85L2L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JL3HMeBX8\" class=\"style-JL3HMeBX8\">\r\n        \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tb8QZhOqvza\" class=\"style-tb8QZhOqvza\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0mvTj1eP4m\" class=\"style-0mvTj1eP4m\">\r\n        \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DdkgqhZtI2J\" class=\"style-DdkgqhZtI2J\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n4MC6JDXF6W\" class=\"style-n4MC6JDXF6W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GfJ_TPvDQrE\" class=\"style-GfJ_TPvDQrE\">\r\n        \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hf05ASWxRB0\" class=\"style-hf05ASWxRB0\">\r\n        \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XxbMwkXtXz6\" class=\"style-XxbMwkXtXz6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ccN8yDZJ9YW\" class=\"style-ccN8yDZJ9YW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_Lzv1wr6aoU\" class=\"style-_Lzv1wr6aoU\">\r\n        \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8JoYdE8dOeO\" class=\"style-8JoYdE8dOeO\">\r\n        \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9iLbd69lZ5W\" class=\"style-9iLbd69lZ5W\">\r\n        \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bTfiiva4Ot6\" class=\"style-bTfiiva4Ot6\">\r\n        \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wsmyN0fpRIz\" class=\"style-wsmyN0fpRIz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIET96g6EQo\" class=\"style-CIET96g6EQo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjlXt0MgFJ2\" class=\"style-kjlXt0MgFJ2\">\r\n        \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Thq0x6Bv0q9\" class=\"style-Thq0x6Bv0q9\">\r\n        \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QrhhMm_RFJ\" class=\"style-0QrhhMm_RFJ\">\r\n        \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DZeuL83IjLF\" class=\"style-DZeuL83IjLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wa5jmQ5EC\" class=\"style-wa5jmQ5EC\">\r\n        \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RKlS25caso\" class=\"style-RKlS25caso\">\r\n        \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_SWuC1Z4SM\" class=\"style-_SWuC1Z4SM\">\r\n        \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wHujuRWvn3n\" class=\"style-wHujuRWvn3n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PQtapy3rm04\" class=\"style-PQtapy3rm04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OBdBtO3Gl0\" class=\"style-OBdBtO3Gl0\">\r\n        \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iBMUg_wZFj\" class=\"style-iBMUg_wZFj\">\r\n        \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fgCVZ0eFnq\" class=\"style-fgCVZ0eFnq\">\r\n        \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7Ro9nvVLG\" class=\"style-g7Ro9nvVLG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{\"id\":7610,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png\",\"category\":\"Navigation bars\",\"tag\":\"user\",\"user_id\":\"5df98d83cf362c0e9cf8723d\",\"filename\":null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\" tabindex=\"0\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?s=noauth\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\">Every Marketers Dream!</h1><h1 class=\"gp-component-id-g7Ro9nvVLG\"><strong>Instant FREE Traffic...</strong></h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-O5eOQDEAWC\">Start growing your online business using our proven extensions. From page builders, to email marketing</p><p class=\"gp-component-id-NfeuVlmvqT\">and payment gateways, for one single and affordable monthly fee.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653419955_3d-welcome-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-imE7sdmLQ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"imE7sdmLQ\" tabindex=\"0\"></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-ww47D26mJz\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12301095\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":12301095,\"type\":\"block\",\"thumbnail\":\"//assets.grooveapps.com/pages-previews/62bdf8867004d.png\",\"category\":\"Personalized Templates\",\"tag\":\"designed\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null,\"height\":358,\"global\":0}\" data-gp-component-id=\"ww47D26mJz\" id=\"ww47D26mJz\" tabindex=\"0\" style=\"\"><a name=\"ww47D26mJz\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"eoANoMnyCy\">\r\n        \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\">\r\n        \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-RYKkfiWJUh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"RYKkfiWJUh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IVwF60zTeZ gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"IVwF60zTeZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-gl9cxAwaIO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gl9cxAwaIO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Oaku6Kh_7t dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Oaku6Kh_7t\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-04K8AGERBs\">GET ALL THIS 100% FREE!!</h1></div><ul class=\"gp-component-id-yW3HWfv6uh gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"yW3HWfv6uh\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-qVhSWuYVyr\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qVhSWuYVyr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/NyF2trOxc1kli2y6XUaBk2j0J46YMjRUi5exmRLmNlg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjA4MzY4XzM2LU5vdGlmaWNhdGlvbi5wbmc.webp\" alt=\"\" class=\"gp-component gp-component-id-Nf_wtmCq2o\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Nf_wtmCq2o\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-wBONUKqVm6 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"wBONUKqVm6\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eoANoMnyCy\">1,000 AD CREDITS</h2></div></ul><ul class=\"gp-component gp-component-id-VFm3GmgY2R\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"VFm3GmgY2R\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-Leqb4xP8b3\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"Leqb4xP8b3\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-Gcjc443D1Q\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"Gcjc443D1Q\" tabindex=\"0\"><img src=\"https://images.groovetech.io/vTMQkRRTqPWVHvFirgncAtE1DFpn41TjjxJEzGHDwpo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2NzYwXzM1LU1lc3NhZ2UucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-gpaOSSTYJBm\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"gpaOSSTYJBm\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l3yIQ6CVHq0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l3yIQ6CVHq0\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eSHr0GjFMF6\">EMAIL & SMS SENDER</h2></div></ul><ul class=\"gp-component gp-component-id-A4ayDdm1iX7\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"A4ayDdm1iX7\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-FQoyVMq30ru\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"FQoyVMq30ru\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-0AN508oW9rf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0AN508oW9rf\" tabindex=\"0\"><img src=\"https://images.groovetech.io/bO03g-U5sgytnMCNmjm2pO_NUSKgS0hI8Xyw8zsRdKM/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODAyXzM0LVZvdWNoZXIucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-WjrpIspQdjx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"WjrpIspQdjx\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zVUIhCaMN0d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zVUIhCaMN0d\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-D0PMvn9OzWP\">PAGE BUILDER</h2></div></ul><ul class=\"gp-component gp-component-id-M3A5Z9KLTKi\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"M3A5Z9KLTKi\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-LWT9gxVJXbU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"LWT9gxVJXbU\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-12jtMtHeg9_\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"12jtMtHeg9_\" tabindex=\"0\"><img src=\"https://images.groovetech.io/SYCBkqwZYbmNu-YE4YPljBO0onhh8WBeopCR3qYIC7Y/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODMwXzAyLVJhdGUucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-RVfYN8k3yCi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"RVfYN8k3yCi\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-qt3o2nLbXte\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"qt3o2nLbXte\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-jhdaAJMa_Vb\">LEAD & TASK CRM</h2></div></ul></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and your ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENTICE NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking your links and visiting your pages</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-djAXHkaDU5\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"djAXHkaDU5\" tabindex=\"0\" data-gp-block=\"true\" data-gp-block-id=\"12295329\" data-gp-block-data=\"{\"id\":12295329,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/628d015317aed.png\",\"category\":\"No Category\",\"tag\":\"user\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null}\" id=\"djAXHkaDU5\" style=\"\"><a name=\"djAXHkaDU5\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><a name=\"djAXHkaDU5\" class=\"gp-component-id-Yoj78FNsen\"></a><div class=\"\" data-section-overlay=\"\"></div><div class=\"gp-component gp-component-id-i09A53v00A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i09A53v00A\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1584986169_Group.png\" alt=\"\" class=\"gp-component gp-component-id-bkCV1UafxN\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"image\" data-gp-component-id=\"bkCV1UafxN\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-FfP91Xsqh5 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"FfP91Xsqh5\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-WisjZ1aZWk\">Get These <strong>PREMIUM</strong> Tools 100%Â <strong>FREE...</strong></h2></div><div class=\"gp-text-container gp-component gp-component-id-oOAolUKIIW dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"oOAolUKIIW\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-fZAUSKs07p\"><strong><em><u>Using These Methods</u></em></strong></h2></div><div class=\"gp-component-id-OVR9DvuYB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"OVR9DvuYB\"><div class=\"gp-component-id-qJmcd4rcKU gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{\"id\":51,\"name\":\"layout-4-4-4-4\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=\",\"title\":\"4 Columns\",\"index\":4,\"hasMenu\":true}}\" data-gp-component-id=\"qJmcd4rcKU\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DBMrHfjbn\">\r\n        <div class=\"gp-component-id-lJNYEBqNhi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-XHWj27ckWT gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XHWj27ckWT\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279649_kissclipart-free-clip-art-enter-to-win-clipart-logo-clip-art-09cf8748b55e1037.png\" alt=\"\" class=\"gp-component gp-component-id-Yx9ekF4Ove1 dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Yx9ekF4Ove1\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fd4magzcP_\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GDuDIPyjPeC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GDuDIPyjPeC\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279626_images8.jpg\" alt=\"\" class=\"gp-component gp-component-id-LDuD24a1IKj dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"LDuD24a1IKj\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fyTas0JhDP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-GMq_0xd09Wj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GMq_0xd09Wj\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279754_images9.png\" alt=\"\" class=\"gp-component gp-component-id-V7_mhY5y0gH dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"V7_mhY5y0gH\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-7XX3NRH9VF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-JVkiPmXCBxf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"JVkiPmXCBxf\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279813_images11.jpg\" alt=\"\" class=\"gp-component gp-component-id-7jl0Ww7mIpK dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7jl0Ww7mIpK\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-ebi92jiPE30 dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{\"id\":51,\"name\":\"layout-4-4-4-4\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=\",\"title\":\"4 Columns\",\"index\":4,\"hasMenu\":true}}\" data-gp-component-id=\"ebi92jiPE30\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3XqiRWPtn\">\r\n        <div class=\"gp-component-id-vb4TuNDxzU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-P6SkHmDNxNj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"P6SkHmDNxNj\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-WpYaLyiKvY\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-rhG6OD85L2L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"rhG6OD85L2L\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279886_360F268693414ooIZMf3gtkOy6Ccvx0cDz1SZefpR6pNl.jpg\" alt=\"\" class=\"gp-component gp-component-id-Y8JLwUwZggI dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Y8JLwUwZggI\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JL3HMeBX8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-tb8QZhOqvza\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tb8QZhOqvza\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279947_unnamed.png\" alt=\"\" class=\"gp-component gp-component-id-S18Vg1s2YPL dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"S18Vg1s2YPL\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0mvTj1eP4m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DdkgqhZtI2J\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DdkgqhZtI2J\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component gp-component-id-b8nu7QWuu06\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"b8nu7QWuu06\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ZlBFaBtPLHd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{\"id\":52,\"name\":\"layout-5-5-5-5-5\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=\",\"title\":\"5 Columns\",\"index\":5,\"hasMenu\":true}}\" data-gp-component-id=\"ZlBFaBtPLHd\" tabindex=\"0\"><div class=\"gp-component-id-BoQ8QJirkA\">\r\n        <div class=\"gp-component-id-6t0COZ5WZN\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-EbYsu0aPyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-TDC0YLY3aY\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-XtllE0d0GD\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-5bUzwR7LMz\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div><div class=\"gp-component gp-component-id-YLnfJYH7JYp\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{\"id\":52,\"name\":\"layout-5-5-5-5-5\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=\",\"title\":\"5 Columns\",\"index\":5,\"hasMenu\":true}}\" data-gp-component-id=\"YLnfJYH7JYp\" tabindex=\"0\"><div class=\"gp-component-id-zI50dJMP6d\">\r\n        <div class=\"gp-component-id-P0_m2XN3EO\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-48la5nGzf4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-UwNNGXzvDkX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-zZkWN3b5uRy\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-6lhmocpI1yK\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-n4MC6JDXF6W\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"n4MC6JDXF6W\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-GfJ_TPvDQrE\">\r\n        <div class=\"gp-component-id-hf05ASWxRB0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-XxbMwkXtXz6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XxbMwkXtXz6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ccN8yDZJ9YW\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"ccN8yDZJ9YW\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-component-id-_Lzv1wr6aoU\">\r\n                    <div class=\"gp-component-id-8JoYdE8dOeO\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-9iLbd69lZ5W\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-bTfiiva4Ot6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wsmyN0fpRIz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"wsmyN0fpRIz\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-CIET96g6EQo\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" data-gp-component-id=\"CIET96g6EQo\" tabindex=\"0\"><div class=\"gp-component-id-kjlXt0MgFJ2\">\r\n                    <div class=\"gp-component-id-Thq0x6Bv0q9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-0QrhhMm_RFJ\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-DZeuL83IjLF\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" tabindex=\"0\" data-gp-component-id=\"DZeuL83IjLF\"><div class=\"gp-component-id-wa5jmQ5EC\">\r\n        <div class=\"gp-component-id-RKlS25caso\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-_SWuC1Z4SM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wHujuRWvn3n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component=\"container\" tabindex=\"0\" data-gp-component-id=\"wHujuRWvn3n\"><div class=\"gp-component gp-component-id-PQtapy3rm04\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" tabindex=\"0\" data-gp-component-id=\"PQtapy3rm04\"><div class=\"gp-component-id-OBdBtO3Gl0\">\r\n                    <div class=\"gp-component-id-iBMUg_wZFj\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-fgCVZ0eFnq\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div></div></div></section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{\"id\":12295330,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/628d015e95545.png\",\"category\":\"No Category\",\"tag\":\"user\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null}\" id=\"rDPeNtfic0w\" style=\"\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.Â Includes Domain, Theme, Plugins,Â Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong><em>(retail value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.Â We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong><em>(retail value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Messing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong><em>(retail value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_ dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.Â Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong><em>(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.Â Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong><em>(Retail Value $650)Â </em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.Â Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.Â </p><p class=\"gp-component-id-k4R7SI080\"><strong><em>(Retail Price $497)Â </em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.Â Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong><em>(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.Â Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong>(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section>\r\n    \r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(64,'2022-07-06 10:37:53','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"LWT9gxVJXbU\" class=\"style-LWT9gxVJXbU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQoyVMq30ru\" class=\"style-FQoyVMq30ru\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Leqb4xP8b3\" class=\"style-Leqb4xP8b3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhdaAJMa_Vb\" class=\"style-jhdaAJMa_Vb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D0PMvn9OzWP\" class=\"style-D0PMvn9OzWP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eSHr0GjFMF6\" class=\"style-eSHr0GjFMF6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoANoMnyCy\" class=\"style-eoANoMnyCy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\" class=\"style-04K8AGERBs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz-overlay\">\r\n        \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nbGPlwD9e\" class=\"style-nbGPlwD9e\">\r\n        \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RYKkfiWJUh\" class=\"style-RYKkfiWJUh\">\r\n        \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IVwF60zTeZ\" class=\"style-IVwF60zTeZ\">\r\n        \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gl9cxAwaIO\" class=\"style-gl9cxAwaIO\">\r\n        \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yW3HWfv6uh\" class=\"style-yW3HWfv6uh\">\r\n        \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qVhSWuYVyr\" class=\"style-qVhSWuYVyr\">\r\n        \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Nf_wtmCq2o\" class=\"style-Nf_wtmCq2o\">\r\n        \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VFm3GmgY2R\" class=\"style-VFm3GmgY2R\">\r\n        \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gcjc443D1Q\" class=\"style-Gcjc443D1Q\">\r\n        \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gpaOSSTYJBm\" class=\"style-gpaOSSTYJBm\">\r\n        \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A4ayDdm1iX7\" class=\"style-A4ayDdm1iX7\">\r\n        \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0AN508oW9rf\" class=\"style-0AN508oW9rf\">\r\n        \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WjrpIspQdjx\" class=\"style-WjrpIspQdjx\">\r\n        \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M3A5Z9KLTKi\" class=\"style-M3A5Z9KLTKi\">\r\n        \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12jtMtHeg9_\" class=\"style-12jtMtHeg9_\">\r\n        \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RVfYN8k3yCi\" class=\"style-RVfYN8k3yCi\">\r\n        \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OVR9DvuYB\" class=\"style-OVR9DvuYB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fZAUSKs07p\" class=\"style-fZAUSKs07p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qJmcd4rcKU\" class=\"style-qJmcd4rcKU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ebi92jiPE30\" class=\"style-ebi92jiPE30\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S18Vg1s2YPL\" class=\"style-S18Vg1s2YPL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8JLwUwZggI\" class=\"style-Y8JLwUwZggI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7jl0Ww7mIpK\" class=\"style-7jl0Ww7mIpK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"V7_mhY5y0gH\" class=\"style-V7_mhY5y0gH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LDuD24a1IKj\" class=\"style-LDuD24a1IKj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yx9ekF4Ove1\" class=\"style-Yx9ekF4Ove1\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"imE7sdmLQ\" class=\"style-imE7sdmLQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O5eOQDEAWC\" class=\"style-O5eOQDEAWC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yoj78FNsen\" class=\"style-Yoj78FNsen\">\r\n        \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5 style-djAXHkaDU5-overlay\">\r\n        \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }</style><style data-gp-styled-element=\"i09A53v00A\" class=\"style-i09A53v00A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 640px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 768px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 992px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 1200px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bkCV1UafxN\" class=\"style-bkCV1UafxN\">\r\n        \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;margin-right: 20px;margin-left: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WisjZ1aZWk\" class=\"style-WisjZ1aZWk\">\r\n        \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 15px;margin-bottom: 0px;margin-right: 15px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DBMrHfjbn\" class=\"style-DBMrHfjbn\">\r\n        \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lJNYEBqNhi\" class=\"style-lJNYEBqNhi\">\r\n        \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XHWj27ckWT\" class=\"style-XHWj27ckWT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fd4magzcP_\" class=\"style-fd4magzcP_\">\r\n        \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GDuDIPyjPeC\" class=\"style-GDuDIPyjPeC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fyTas0JhDP\" class=\"style-fyTas0JhDP\">\r\n        \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GMq_0xd09Wj\" class=\"style-GMq_0xd09Wj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7XX3NRH9VF\" class=\"style-7XX3NRH9VF\">\r\n        \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JVkiPmXCBxf\" class=\"style-JVkiPmXCBxf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3XqiRWPtn\" class=\"style-3XqiRWPtn\">\r\n        \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vb4TuNDxzU\" class=\"style-vb4TuNDxzU\">\r\n        \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P6SkHmDNxNj\" class=\"style-P6SkHmDNxNj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WpYaLyiKvY\" class=\"style-WpYaLyiKvY\">\r\n        \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rhG6OD85L2L\" class=\"style-rhG6OD85L2L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JL3HMeBX8\" class=\"style-JL3HMeBX8\">\r\n        \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tb8QZhOqvza\" class=\"style-tb8QZhOqvza\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0mvTj1eP4m\" class=\"style-0mvTj1eP4m\">\r\n        \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DdkgqhZtI2J\" class=\"style-DdkgqhZtI2J\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n4MC6JDXF6W\" class=\"style-n4MC6JDXF6W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GfJ_TPvDQrE\" class=\"style-GfJ_TPvDQrE\">\r\n        \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hf05ASWxRB0\" class=\"style-hf05ASWxRB0\">\r\n        \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XxbMwkXtXz6\" class=\"style-XxbMwkXtXz6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ccN8yDZJ9YW\" class=\"style-ccN8yDZJ9YW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_Lzv1wr6aoU\" class=\"style-_Lzv1wr6aoU\">\r\n        \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8JoYdE8dOeO\" class=\"style-8JoYdE8dOeO\">\r\n        \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9iLbd69lZ5W\" class=\"style-9iLbd69lZ5W\">\r\n        \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bTfiiva4Ot6\" class=\"style-bTfiiva4Ot6\">\r\n        \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wsmyN0fpRIz\" class=\"style-wsmyN0fpRIz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIET96g6EQo\" class=\"style-CIET96g6EQo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjlXt0MgFJ2\" class=\"style-kjlXt0MgFJ2\">\r\n        \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Thq0x6Bv0q9\" class=\"style-Thq0x6Bv0q9\">\r\n        \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QrhhMm_RFJ\" class=\"style-0QrhhMm_RFJ\">\r\n        \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DZeuL83IjLF\" class=\"style-DZeuL83IjLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wa5jmQ5EC\" class=\"style-wa5jmQ5EC\">\r\n        \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RKlS25caso\" class=\"style-RKlS25caso\">\r\n        \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_SWuC1Z4SM\" class=\"style-_SWuC1Z4SM\">\r\n        \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wHujuRWvn3n\" class=\"style-wHujuRWvn3n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PQtapy3rm04\" class=\"style-PQtapy3rm04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OBdBtO3Gl0\" class=\"style-OBdBtO3Gl0\">\r\n        \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iBMUg_wZFj\" class=\"style-iBMUg_wZFj\">\r\n        \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fgCVZ0eFnq\" class=\"style-fgCVZ0eFnq\">\r\n        \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7Ro9nvVLG\" class=\"style-g7Ro9nvVLG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{\"id\":7610,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png\",\"category\":\"Navigation bars\",\"tag\":\"user\",\"user_id\":\"5df98d83cf362c0e9cf8723d\",\"filename\":null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\" tabindex=\"0\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?s=noauth\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\">Every Marketers Dream!</h1><h1 class=\"gp-component-id-g7Ro9nvVLG\"><strong>Instant FREE Traffic...</strong></h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-O5eOQDEAWC\">Start growing your online business using our proven extensions. From page builders, to email marketing</p><p class=\"gp-component-id-NfeuVlmvqT\">and payment gateways, for one single and affordable monthly fee.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653419955_3d-welcome-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-imE7sdmLQ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"imE7sdmLQ\" tabindex=\"0\"></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-ww47D26mJz\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12301095\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":12301095,\"type\":\"block\",\"thumbnail\":\"//assets.grooveapps.com/pages-previews/62bdf8867004d.png\",\"category\":\"Personalized Templates\",\"tag\":\"designed\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null,\"height\":358,\"global\":0}\" data-gp-component-id=\"ww47D26mJz\" id=\"ww47D26mJz\" tabindex=\"0\" style=\"\"><a name=\"ww47D26mJz\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"eoANoMnyCy\">\r\n        \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\">\r\n        \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-RYKkfiWJUh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"RYKkfiWJUh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IVwF60zTeZ gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"IVwF60zTeZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-gl9cxAwaIO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gl9cxAwaIO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Oaku6Kh_7t dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Oaku6Kh_7t\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-04K8AGERBs\">GET ALL THIS 100% FREE!!</h1></div><ul class=\"gp-component-id-yW3HWfv6uh gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"yW3HWfv6uh\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-qVhSWuYVyr\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qVhSWuYVyr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/NyF2trOxc1kli2y6XUaBk2j0J46YMjRUi5exmRLmNlg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjA4MzY4XzM2LU5vdGlmaWNhdGlvbi5wbmc.webp\" alt=\"\" class=\"gp-component gp-component-id-Nf_wtmCq2o\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Nf_wtmCq2o\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-wBONUKqVm6 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"wBONUKqVm6\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eoANoMnyCy\">1,000 AD CREDITS</h2></div></ul><ul class=\"gp-component gp-component-id-VFm3GmgY2R\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"VFm3GmgY2R\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-Leqb4xP8b3\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"Leqb4xP8b3\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-Gcjc443D1Q\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"Gcjc443D1Q\" tabindex=\"0\"><img src=\"https://images.groovetech.io/vTMQkRRTqPWVHvFirgncAtE1DFpn41TjjxJEzGHDwpo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2NzYwXzM1LU1lc3NhZ2UucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-gpaOSSTYJBm\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"gpaOSSTYJBm\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l3yIQ6CVHq0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l3yIQ6CVHq0\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eSHr0GjFMF6\">EMAIL & SMS SENDER</h2></div></ul><ul class=\"gp-component gp-component-id-A4ayDdm1iX7\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"A4ayDdm1iX7\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-FQoyVMq30ru\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"FQoyVMq30ru\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-0AN508oW9rf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0AN508oW9rf\" tabindex=\"0\"><img src=\"https://images.groovetech.io/bO03g-U5sgytnMCNmjm2pO_NUSKgS0hI8Xyw8zsRdKM/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODAyXzM0LVZvdWNoZXIucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-WjrpIspQdjx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"WjrpIspQdjx\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zVUIhCaMN0d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zVUIhCaMN0d\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-D0PMvn9OzWP\">PAGE BUILDER</h2></div></ul><ul class=\"gp-component gp-component-id-M3A5Z9KLTKi\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"M3A5Z9KLTKi\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-LWT9gxVJXbU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"LWT9gxVJXbU\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-12jtMtHeg9_\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"12jtMtHeg9_\" tabindex=\"0\"><img src=\"https://images.groovetech.io/SYCBkqwZYbmNu-YE4YPljBO0onhh8WBeopCR3qYIC7Y/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODMwXzAyLVJhdGUucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-RVfYN8k3yCi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"RVfYN8k3yCi\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-qt3o2nLbXte\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"qt3o2nLbXte\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-jhdaAJMa_Vb\">LEAD & TASK CRM</h2></div></ul></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and you are ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENTICE NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking your links and visiting your pages</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-djAXHkaDU5\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"djAXHkaDU5\" tabindex=\"0\" data-gp-block=\"true\" data-gp-block-id=\"12295329\" data-gp-block-data=\"{\"id\":12295329,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/628d015317aed.png\",\"category\":\"No Category\",\"tag\":\"user\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null}\" id=\"djAXHkaDU5\" style=\"\"><a name=\"djAXHkaDU5\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><a name=\"djAXHkaDU5\" class=\"gp-component-id-Yoj78FNsen\"></a><div class=\"\" data-section-overlay=\"\"></div><div class=\"gp-component gp-component-id-i09A53v00A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i09A53v00A\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1584986169_Group.png\" alt=\"\" class=\"gp-component gp-component-id-bkCV1UafxN\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"image\" data-gp-component-id=\"bkCV1UafxN\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-FfP91Xsqh5 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"FfP91Xsqh5\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-WisjZ1aZWk\">Get These <strong>PREMIUM</strong> Tools 100%Â <strong>FREE...</strong></h2></div><div class=\"gp-text-container gp-component gp-component-id-oOAolUKIIW dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"oOAolUKIIW\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-fZAUSKs07p\"><strong><em><u>Using These Methods</u></em></strong></h2></div><div class=\"gp-component-id-OVR9DvuYB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"OVR9DvuYB\"><div class=\"gp-component-id-qJmcd4rcKU gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{\"id\":51,\"name\":\"layout-4-4-4-4\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=\",\"title\":\"4 Columns\",\"index\":4,\"hasMenu\":true}}\" data-gp-component-id=\"qJmcd4rcKU\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DBMrHfjbn\">\r\n        <div class=\"gp-component-id-lJNYEBqNhi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-XHWj27ckWT gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XHWj27ckWT\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279649_kissclipart-free-clip-art-enter-to-win-clipart-logo-clip-art-09cf8748b55e1037.png\" alt=\"\" class=\"gp-component gp-component-id-Yx9ekF4Ove1 dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Yx9ekF4Ove1\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fd4magzcP_\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GDuDIPyjPeC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GDuDIPyjPeC\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279626_images8.jpg\" alt=\"\" class=\"gp-component gp-component-id-LDuD24a1IKj dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"LDuD24a1IKj\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fyTas0JhDP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-GMq_0xd09Wj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GMq_0xd09Wj\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279754_images9.png\" alt=\"\" class=\"gp-component gp-component-id-V7_mhY5y0gH dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"V7_mhY5y0gH\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-7XX3NRH9VF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-JVkiPmXCBxf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"JVkiPmXCBxf\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279813_images11.jpg\" alt=\"\" class=\"gp-component gp-component-id-7jl0Ww7mIpK dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7jl0Ww7mIpK\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-ebi92jiPE30 dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{\"id\":51,\"name\":\"layout-4-4-4-4\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=\",\"title\":\"4 Columns\",\"index\":4,\"hasMenu\":true}}\" data-gp-component-id=\"ebi92jiPE30\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3XqiRWPtn\">\r\n        <div class=\"gp-component-id-vb4TuNDxzU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-P6SkHmDNxNj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"P6SkHmDNxNj\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-WpYaLyiKvY\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-rhG6OD85L2L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"rhG6OD85L2L\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279886_360F268693414ooIZMf3gtkOy6Ccvx0cDz1SZefpR6pNl.jpg\" alt=\"\" class=\"gp-component gp-component-id-Y8JLwUwZggI dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Y8JLwUwZggI\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JL3HMeBX8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-tb8QZhOqvza\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tb8QZhOqvza\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279947_unnamed.png\" alt=\"\" class=\"gp-component gp-component-id-S18Vg1s2YPL dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"S18Vg1s2YPL\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0mvTj1eP4m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DdkgqhZtI2J\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DdkgqhZtI2J\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component gp-component-id-b8nu7QWuu06\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"b8nu7QWuu06\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ZlBFaBtPLHd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{\"id\":52,\"name\":\"layout-5-5-5-5-5\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=\",\"title\":\"5 Columns\",\"index\":5,\"hasMenu\":true}}\" data-gp-component-id=\"ZlBFaBtPLHd\" tabindex=\"0\"><div class=\"gp-component-id-BoQ8QJirkA\">\r\n        <div class=\"gp-component-id-6t0COZ5WZN\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-EbYsu0aPyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-TDC0YLY3aY\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-XtllE0d0GD\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-5bUzwR7LMz\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div><div class=\"gp-component gp-component-id-YLnfJYH7JYp\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{\"id\":52,\"name\":\"layout-5-5-5-5-5\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=\",\"title\":\"5 Columns\",\"index\":5,\"hasMenu\":true}}\" data-gp-component-id=\"YLnfJYH7JYp\" tabindex=\"0\"><div class=\"gp-component-id-zI50dJMP6d\">\r\n        <div class=\"gp-component-id-P0_m2XN3EO\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-48la5nGzf4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-UwNNGXzvDkX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-zZkWN3b5uRy\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-6lhmocpI1yK\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-n4MC6JDXF6W\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"n4MC6JDXF6W\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-GfJ_TPvDQrE\">\r\n        <div class=\"gp-component-id-hf05ASWxRB0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-XxbMwkXtXz6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XxbMwkXtXz6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ccN8yDZJ9YW\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"ccN8yDZJ9YW\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-component-id-_Lzv1wr6aoU\">\r\n                    <div class=\"gp-component-id-8JoYdE8dOeO\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-9iLbd69lZ5W\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-bTfiiva4Ot6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wsmyN0fpRIz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"wsmyN0fpRIz\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-CIET96g6EQo\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" data-gp-component-id=\"CIET96g6EQo\" tabindex=\"0\"><div class=\"gp-component-id-kjlXt0MgFJ2\">\r\n                    <div class=\"gp-component-id-Thq0x6Bv0q9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-0QrhhMm_RFJ\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-DZeuL83IjLF\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" tabindex=\"0\" data-gp-component-id=\"DZeuL83IjLF\"><div class=\"gp-component-id-wa5jmQ5EC\">\r\n        <div class=\"gp-component-id-RKlS25caso\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-_SWuC1Z4SM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wHujuRWvn3n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component=\"container\" tabindex=\"0\" data-gp-component-id=\"wHujuRWvn3n\"><div class=\"gp-component gp-component-id-PQtapy3rm04\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" tabindex=\"0\" data-gp-component-id=\"PQtapy3rm04\"><div class=\"gp-component-id-OBdBtO3Gl0\">\r\n                    <div class=\"gp-component-id-iBMUg_wZFj\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-fgCVZ0eFnq\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div></div></div></section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{\"id\":12295330,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/628d015e95545.png\",\"category\":\"No Category\",\"tag\":\"user\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null}\" id=\"rDPeNtfic0w\" style=\"\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.Â Includes Domain, Theme, Plugins,Â Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong><em>(Retail Value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.Â We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong><em>(Retail Value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Marketing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_ dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.Â Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong><em>(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.Â Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong><em>(Retail Value $650)Â </em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.Â Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.Â </p><p class=\"gp-component-id-k4R7SI080\"><strong><em>(Retail Value $497)Â </em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.Â Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong><em>(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.Â Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong>(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section>\r\n    \r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_templates_backups` (`id`, `savetime`, `template_name`, `template_data`) VALUES (65,'2022-07-06 10:38:18','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] {\r\n          z-index: auto;\r\n          position: relative;\r\n          min-height: 50px;\r\n        }\r\n        section[data-gp-block].textediting {\r\n          z-index: 99 !important;\r\n        }\r\n        section[data-gp-block].fix-top, section[data-gp-block].fix-bottom {\r\n          z-index: 20 !important;\r\n        }\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-container] .gp-text-container * {\r\n          overflow-wrap: break-word;\r\n        }\r\n        [data-gp-text] {\r\n          display: flex;\r\n          flex-direction: column;\r\n        }\r\n        [data-gp-component=\'slider-block\'].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]),\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n          position: relative;\r\n        }\r\n        \r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n        [data-gp-component=\"video-background\"] {\r\n            position: absolute !important;\r\n            z-index: 11;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            height: 100%;\r\n            max-height: 100%;\r\n            overflow-y: hidden;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] > [data-gp-component=\"video-overlay\"] {\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"video-background\"] [data-gp-video-bg-container] iframe {\r\n            position: absolute;\r\n            width: 100%;\r\n            height: 100%;\r\n            pointer-events: none;\r\n        }\r\n        \r\n        [data-gp-component=\"image\"] img {\r\n          width: 100%;\r\n        }\r\n\r\n        [data-gp-component=\"pattern-background\"] {\r\n          position: absolute !important;\r\n          z-index: 10;\r\n          top: 0;\r\n          left: 0;\r\n          right: 0;\r\n          height: 100%;\r\n          max-height: 100%;\r\n          overflow-y: hidden;\r\n          pointer-events: none;\r\n        }\r\n        .hidden-block {\r\n          display: none !important;\r\n        }\r\n      </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"LWT9gxVJXbU\" class=\"style-LWT9gxVJXbU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQoyVMq30ru\" class=\"style-FQoyVMq30ru\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Leqb4xP8b3\" class=\"style-Leqb4xP8b3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhdaAJMa_Vb\" class=\"style-jhdaAJMa_Vb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D0PMvn9OzWP\" class=\"style-D0PMvn9OzWP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eSHr0GjFMF6\" class=\"style-eSHr0GjFMF6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoANoMnyCy\" class=\"style-eoANoMnyCy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\" class=\"style-04K8AGERBs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 45px !important;font-weight: 900 !important;color: rgba(255, 255, 255, 1);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz-overlay\">\r\n        \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgba(4, 81, 174, 1);position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nbGPlwD9e\" class=\"style-nbGPlwD9e\">\r\n        \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nbGPlwD9e {\r\n          text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer;background-color: transparent;color: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RYKkfiWJUh\" class=\"style-RYKkfiWJUh\">\r\n        \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IVwF60zTeZ\" class=\"style-IVwF60zTeZ\">\r\n        \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gl9cxAwaIO\" class=\"style-gl9cxAwaIO\">\r\n        \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yW3HWfv6uh\" class=\"style-yW3HWfv6uh\">\r\n        \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qVhSWuYVyr\" class=\"style-qVhSWuYVyr\">\r\n        \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Nf_wtmCq2o\" class=\"style-Nf_wtmCq2o\">\r\n        \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VFm3GmgY2R\" class=\"style-VFm3GmgY2R\">\r\n        \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gcjc443D1Q\" class=\"style-Gcjc443D1Q\">\r\n        \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gpaOSSTYJBm\" class=\"style-gpaOSSTYJBm\">\r\n        \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A4ayDdm1iX7\" class=\"style-A4ayDdm1iX7\">\r\n        \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0AN508oW9rf\" class=\"style-0AN508oW9rf\">\r\n        \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WjrpIspQdjx\" class=\"style-WjrpIspQdjx\">\r\n        \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M3A5Z9KLTKi\" class=\"style-M3A5Z9KLTKi\">\r\n        \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12jtMtHeg9_\" class=\"style-12jtMtHeg9_\">\r\n        \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RVfYN8k3yCi\" class=\"style-RVfYN8k3yCi\">\r\n        \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OVR9DvuYB\" class=\"style-OVR9DvuYB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OVR9DvuYB[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 6px;border-right-width: 6px;border-top-width: 6px;border-bottom-width: 6px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fZAUSKs07p\" class=\"style-fZAUSKs07p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 30px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fZAUSKs07p {\r\n          font-size: 36px;font-weight: 400;text-align: center;font-family: \"Work Sans\";margin-left: 0px;margin-right: 0px;margin-top: 16px;margin-bottom: 40px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qJmcd4rcKU\" class=\"style-qJmcd4rcKU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qJmcd4rcKU[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ebi92jiPE30\" class=\"style-ebi92jiPE30\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ebi92jiPE30[data-gp-component] {\r\n          padding-left: 8px;padding-right: 8px;padding-top: 0px;padding-bottom: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"S18Vg1s2YPL\" class=\"style-S18Vg1s2YPL\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-S18Vg1s2YPL[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 200px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Y8JLwUwZggI\" class=\"style-Y8JLwUwZggI\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Y8JLwUwZggI[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7jl0Ww7mIpK\" class=\"style-7jl0Ww7mIpK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7jl0Ww7mIpK[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"V7_mhY5y0gH\" class=\"style-V7_mhY5y0gH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-V7_mhY5y0gH[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LDuD24a1IKj\" class=\"style-LDuD24a1IKj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LDuD24a1IKj[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yx9ekF4Ove1\" class=\"style-Yx9ekF4Ove1\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yx9ekF4Ove1[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 185px;height: 220px;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"imE7sdmLQ\" class=\"style-imE7sdmLQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O5eOQDEAWC\" class=\"style-O5eOQDEAWC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-O5eOQDEAWC {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5 {\r\n          position: relative;z-index: 10;padding-bottom: 0px;padding-top: 0px;padding-right: 0px;padding-left: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Yoj78FNsen\" class=\"style-Yoj78FNsen\">\r\n        \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Yoj78FNsen {\r\n          text-decoration-color: initial;text-decoration-style: initial;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;background-color: transparent;\r\n      }\r\n        }</style><style data-gp-styled-element=\"djAXHkaDU5\" class=\"style-djAXHkaDU5 style-djAXHkaDU5-overlay\">\r\n        \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-djAXHkaDU5.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;background-color: rgba(24, 205, 94, 0);\r\n      }\r\n        }</style><style data-gp-styled-element=\"i09A53v00A\" class=\"style-i09A53v00A\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 640px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 768px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 992px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-i09A53v00A {\r\n          display: flex;align-items: center;flex-direction: column;max-width: 1200px;width: 100%;margin-bottom: 0px;margin-right: auto;margin-left: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bkCV1UafxN\" class=\"style-bkCV1UafxN\">\r\n        \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;margin-right: 20px;margin-left: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bkCV1UafxN {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: flex;margin-top: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WisjZ1aZWk\" class=\"style-WisjZ1aZWk\">\r\n        \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 15px;margin-bottom: 0px;margin-right: 15px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WisjZ1aZWk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 16px;overflow-wrap: break-word;font-family: \"Work Sans\";text-align: center;font-weight: 400;font-size: 36px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DBMrHfjbn\" class=\"style-DBMrHfjbn\">\r\n        \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DBMrHfjbn {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lJNYEBqNhi\" class=\"style-lJNYEBqNhi\">\r\n        \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lJNYEBqNhi {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XHWj27ckWT\" class=\"style-XHWj27ckWT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XHWj27ckWT {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fd4magzcP_\" class=\"style-fd4magzcP_\">\r\n        \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fd4magzcP_ {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GDuDIPyjPeC\" class=\"style-GDuDIPyjPeC\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GDuDIPyjPeC {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fyTas0JhDP\" class=\"style-fyTas0JhDP\">\r\n        \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fyTas0JhDP {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GMq_0xd09Wj\" class=\"style-GMq_0xd09Wj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GMq_0xd09Wj {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7XX3NRH9VF\" class=\"style-7XX3NRH9VF\">\r\n        \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 100%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7XX3NRH9VF {\r\n          padding-left: 8px;width: 25%;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JVkiPmXCBxf\" class=\"style-JVkiPmXCBxf\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JVkiPmXCBxf {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3XqiRWPtn\" class=\"style-3XqiRWPtn\">\r\n        \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3XqiRWPtn {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vb4TuNDxzU\" class=\"style-vb4TuNDxzU\">\r\n        \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vb4TuNDxzU {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P6SkHmDNxNj\" class=\"style-P6SkHmDNxNj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P6SkHmDNxNj {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WpYaLyiKvY\" class=\"style-WpYaLyiKvY\">\r\n        \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WpYaLyiKvY {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rhG6OD85L2L\" class=\"style-rhG6OD85L2L\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rhG6OD85L2L {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JL3HMeBX8\" class=\"style-JL3HMeBX8\">\r\n        \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JL3HMeBX8 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"tb8QZhOqvza\" class=\"style-tb8QZhOqvza\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-tb8QZhOqvza {\r\n          display: flex;align-items: center;justify-content: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0mvTj1eP4m\" class=\"style-0mvTj1eP4m\">\r\n        \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 100%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0mvTj1eP4m {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;width: 25%;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DdkgqhZtI2J\" class=\"style-DdkgqhZtI2J\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DdkgqhZtI2J {\r\n          display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"n4MC6JDXF6W\" class=\"style-n4MC6JDXF6W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-n4MC6JDXF6W {\r\n          margin-top: 48px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GfJ_TPvDQrE\" class=\"style-GfJ_TPvDQrE\">\r\n        \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GfJ_TPvDQrE {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hf05ASWxRB0\" class=\"style-hf05ASWxRB0\">\r\n        \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hf05ASWxRB0 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XxbMwkXtXz6\" class=\"style-XxbMwkXtXz6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XxbMwkXtXz6 {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ccN8yDZJ9YW\" class=\"style-ccN8yDZJ9YW\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ccN8yDZJ9YW {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_Lzv1wr6aoU\" class=\"style-_Lzv1wr6aoU\">\r\n        \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_Lzv1wr6aoU {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8JoYdE8dOeO\" class=\"style-8JoYdE8dOeO\">\r\n        \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8JoYdE8dOeO {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9iLbd69lZ5W\" class=\"style-9iLbd69lZ5W\">\r\n        \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9iLbd69lZ5W {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bTfiiva4Ot6\" class=\"style-bTfiiva4Ot6\">\r\n        \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bTfiiva4Ot6 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wsmyN0fpRIz\" class=\"style-wsmyN0fpRIz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wsmyN0fpRIz {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CIET96g6EQo\" class=\"style-CIET96g6EQo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CIET96g6EQo {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjlXt0MgFJ2\" class=\"style-kjlXt0MgFJ2\">\r\n        \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjlXt0MgFJ2 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Thq0x6Bv0q9\" class=\"style-Thq0x6Bv0q9\">\r\n        \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Thq0x6Bv0q9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0QrhhMm_RFJ\" class=\"style-0QrhhMm_RFJ\">\r\n        \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0QrhhMm_RFJ {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DZeuL83IjLF\" class=\"style-DZeuL83IjLF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DZeuL83IjLF {\r\n          margin-top: 72px;padding-left: 8px;padding-right: 8px;width: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wa5jmQ5EC\" class=\"style-wa5jmQ5EC\">\r\n        \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wa5jmQ5EC {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RKlS25caso\" class=\"style-RKlS25caso\">\r\n        \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RKlS25caso {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_SWuC1Z4SM\" class=\"style-_SWuC1Z4SM\">\r\n        \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_SWuC1Z4SM {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"wHujuRWvn3n\" class=\"style-wHujuRWvn3n\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-wHujuRWvn3n {\r\n          width: 100%;height: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PQtapy3rm04\" class=\"style-PQtapy3rm04\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PQtapy3rm04 {\r\n          padding-left: 8px;padding-right: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"OBdBtO3Gl0\" class=\"style-OBdBtO3Gl0\">\r\n        \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-OBdBtO3Gl0 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iBMUg_wZFj\" class=\"style-iBMUg_wZFj\">\r\n        \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iBMUg_wZFj {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 33.3333%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fgCVZ0eFnq\" class=\"style-fgCVZ0eFnq\">\r\n        \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-fgCVZ0eFnq {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 66.6667%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"g7Ro9nvVLG\" class=\"style-g7Ro9nvVLG\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-g7Ro9nvVLG {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{\"id\":7610,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png\",\"category\":\"Navigation bars\",\"tag\":\"user\",\"user_id\":\"5df98d83cf362c0e9cf8723d\",\"filename\":null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\" tabindex=\"0\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?s=noauth\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\">Every Marketers Dream!</h1><h1 class=\"gp-component-id-g7Ro9nvVLG\"><strong>Instant FREE Traffic...</strong></h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-O5eOQDEAWC\">Start growing your online business using our proven extensions. From page builders, to email marketing</p><p class=\"gp-component-id-NfeuVlmvqT\">and payment gateways, for one single and affordable monthly fee.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653419955_3d-welcome-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-imE7sdmLQ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"imE7sdmLQ\" tabindex=\"0\"></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-ww47D26mJz\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12301095\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":12301095,\"type\":\"block\",\"thumbnail\":\"//assets.grooveapps.com/pages-previews/62bdf8867004d.png\",\"category\":\"Personalized Templates\",\"tag\":\"designed\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null,\"height\":358,\"global\":0}\" data-gp-component-id=\"ww47D26mJz\" id=\"ww47D26mJz\" tabindex=\"0\" style=\"\"><a name=\"ww47D26mJz\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"eoANoMnyCy\">\r\n        \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\">\r\n        \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-RYKkfiWJUh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"RYKkfiWJUh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IVwF60zTeZ gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{\"id\":48,\"name\":\"layout-1\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==\",\"title\":\"1 Column\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"IVwF60zTeZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-gl9cxAwaIO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gl9cxAwaIO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-Oaku6Kh_7t dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Oaku6Kh_7t\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-04K8AGERBs\">GET ALL THIS 100% FREE!!</h1></div><ul class=\"gp-component-id-yW3HWfv6uh gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"yW3HWfv6uh\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-qVhSWuYVyr\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"qVhSWuYVyr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/NyF2trOxc1kli2y6XUaBk2j0J46YMjRUi5exmRLmNlg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjA4MzY4XzM2LU5vdGlmaWNhdGlvbi5wbmc.webp\" alt=\"\" class=\"gp-component gp-component-id-Nf_wtmCq2o\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Nf_wtmCq2o\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-wBONUKqVm6 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"wBONUKqVm6\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eoANoMnyCy\">1,000 AD CREDITS</h2></div></ul><ul class=\"gp-component gp-component-id-VFm3GmgY2R\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"VFm3GmgY2R\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-Leqb4xP8b3\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"Leqb4xP8b3\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-Gcjc443D1Q\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"Gcjc443D1Q\" tabindex=\"0\"><img src=\"https://images.groovetech.io/vTMQkRRTqPWVHvFirgncAtE1DFpn41TjjxJEzGHDwpo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2NzYwXzM1LU1lc3NhZ2UucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-gpaOSSTYJBm\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"gpaOSSTYJBm\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l3yIQ6CVHq0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l3yIQ6CVHq0\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eSHr0GjFMF6\">EMAIL & SMS SENDER</h2></div></ul><ul class=\"gp-component gp-component-id-A4ayDdm1iX7\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"A4ayDdm1iX7\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-FQoyVMq30ru\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"FQoyVMq30ru\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-0AN508oW9rf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"0AN508oW9rf\" tabindex=\"0\"><img src=\"https://images.groovetech.io/bO03g-U5sgytnMCNmjm2pO_NUSKgS0hI8Xyw8zsRdKM/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODAyXzM0LVZvdWNoZXIucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-WjrpIspQdjx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"WjrpIspQdjx\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zVUIhCaMN0d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zVUIhCaMN0d\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-D0PMvn9OzWP\">PAGE BUILDER</h2></div></ul><ul class=\"gp-component gp-component-id-M3A5Z9KLTKi\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"M3A5Z9KLTKi\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-LWT9gxVJXbU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"LWT9gxVJXbU\" aria-hidden=\"true\"></span></ul><ul class=\"gp-component gp-component-id-12jtMtHeg9_\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"12jtMtHeg9_\" tabindex=\"0\"><img src=\"https://images.groovetech.io/SYCBkqwZYbmNu-YE4YPljBO0onhh8WBeopCR3qYIC7Y/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODMwXzAyLVJhdGUucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-RVfYN8k3yCi\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"RVfYN8k3yCi\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-qt3o2nLbXte\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"qt3o2nLbXte\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-jhdaAJMa_Vb\">LEAD & TASK CRM</h2></div></ul></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and you are ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENTICE NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking your links and visiting your pages</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-djAXHkaDU5\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"djAXHkaDU5\" tabindex=\"0\" data-gp-block=\"true\" data-gp-block-id=\"12295329\" data-gp-block-data=\"{\"id\":12295329,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/628d015317aed.png\",\"category\":\"No Category\",\"tag\":\"user\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null}\" id=\"djAXHkaDU5\" style=\"\"><a name=\"djAXHkaDU5\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><style data-gp-styled-element=\"6lhmocpI1yK\" class=\"style-6lhmocpI1yK\"></style><style data-gp-styled-element=\"zZkWN3b5uRy\" class=\"style-zZkWN3b5uRy\"></style><style data-gp-styled-element=\"UwNNGXzvDkX\" class=\"style-UwNNGXzvDkX\"></style><style data-gp-styled-element=\"48la5nGzf4\" class=\"style-48la5nGzf4\"></style><style data-gp-styled-element=\"P0_m2XN3EO\" class=\"style-P0_m2XN3EO\"></style><style data-gp-styled-element=\"zI50dJMP6d\" class=\"style-zI50dJMP6d\"></style><style data-gp-styled-element=\"YLnfJYH7JYp\" class=\"style-YLnfJYH7JYp\"></style><style data-gp-styled-element=\"5bUzwR7LMz\" class=\"style-5bUzwR7LMz\"></style><style data-gp-styled-element=\"XtllE0d0GD\" class=\"style-XtllE0d0GD\"></style><style data-gp-styled-element=\"TDC0YLY3aY\" class=\"style-TDC0YLY3aY\"></style><style data-gp-styled-element=\"EbYsu0aPyA\" class=\"style-EbYsu0aPyA\"></style><style data-gp-styled-element=\"6t0COZ5WZN\" class=\"style-6t0COZ5WZN\"></style><style data-gp-styled-element=\"BoQ8QJirkA\" class=\"style-BoQ8QJirkA\"></style><style data-gp-styled-element=\"ZlBFaBtPLHd\" class=\"style-ZlBFaBtPLHd\"></style><style data-gp-styled-element=\"b8nu7QWuu06\" class=\"style-b8nu7QWuu06\"></style><a name=\"djAXHkaDU5\" class=\"gp-component-id-Yoj78FNsen\"></a><div class=\"\" data-section-overlay=\"\"></div><div class=\"gp-component gp-component-id-i09A53v00A\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"i09A53v00A\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5df98d83cf362c0e9cf8723d/1584986169_Group.png\" alt=\"\" class=\"gp-component gp-component-id-bkCV1UafxN\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"image\" data-gp-component-id=\"bkCV1UafxN\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-FfP91Xsqh5 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"FfP91Xsqh5\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-WisjZ1aZWk\">Get These <strong>PREMIUM</strong> Tools 100%Â <strong>FREE...</strong></h2></div><div class=\"gp-text-container gp-component gp-component-id-oOAolUKIIW dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"oOAolUKIIW\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-fZAUSKs07p\"><strong><em><u>Using These Methods</u></em></strong></h2></div><div class=\"gp-component-id-OVR9DvuYB gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"OVR9DvuYB\"><div class=\"gp-component-id-qJmcd4rcKU gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{\"id\":51,\"name\":\"layout-4-4-4-4\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=\",\"title\":\"4 Columns\",\"index\":4,\"hasMenu\":true}}\" data-gp-component-id=\"qJmcd4rcKU\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-DBMrHfjbn\">\r\n        <div class=\"gp-component-id-lJNYEBqNhi\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-XHWj27ckWT gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XHWj27ckWT\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279649_kissclipart-free-clip-art-enter-to-win-clipart-logo-clip-art-09cf8748b55e1037.png\" alt=\"\" class=\"gp-component gp-component-id-Yx9ekF4Ove1 dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Yx9ekF4Ove1\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fd4magzcP_\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-GDuDIPyjPeC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GDuDIPyjPeC\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279626_images8.jpg\" alt=\"\" class=\"gp-component gp-component-id-LDuD24a1IKj dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"LDuD24a1IKj\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-fyTas0JhDP\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-GMq_0xd09Wj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"GMq_0xd09Wj\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279754_images9.png\" alt=\"\" class=\"gp-component gp-component-id-V7_mhY5y0gH dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"V7_mhY5y0gH\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-7XX3NRH9VF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-JVkiPmXCBxf gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"JVkiPmXCBxf\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279813_images11.jpg\" alt=\"\" class=\"gp-component gp-component-id-7jl0Ww7mIpK dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"7jl0Ww7mIpK\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-ebi92jiPE30 dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-4-4-4-4\" data-gp-component-data=\"{\"id\":51,\"name\":\"layout-4-4-4-4\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOSAyNyI+CiAgICA8cGF0aCBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik0yNiAwYTIuMzggMi4zOCAwIDAgMSAyLjM4IDIuMzhWMjRBMi4zOCAyLjM4IDAgMCAxIDI2IDI2LjM4SDIuMzhBMi4zOCAyLjM4IDAgMCAxIDAgMjRWMi4zOEEyLjM4IDIuMzggMCAwIDEgMi4zOCAwSDI2em0xLjY3IDUuNjU5SC43NVYyNGMwIC45LjczIDEuNjMgMS42MyAxLjYzSDI2QTEuNjMgMS42MyAwIDAgMCAyNy42NyAyNFY1LjY1OXpNNy43OSA4LjA5YS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVINC4zM2EuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNWgzLjQ2em01LjQxIDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNUg5Ljc0YS41LjUgMCAwIDEtLjUtLjVWOC41OWEuNS41IDAgMCAxIC41LS41aDMuNDZ6bTUuNCAwYS41LjUgMCAwIDEgLjUuNXYxNC4wNmEuNS41IDAgMCAxLS41LjVoLTMuNDZhLjUuNSAwIDAgMS0uNS0uNVY4LjU5YS41LjUgMCAwIDEgLjUtLjVoMy40NnptNS40IDBhLjUuNSAwIDAgMSAuNS41djE0LjA2YS41LjUgMCAwIDEtLjUuNWgtMy40NmEuNS41IDAgMCAxLS41LS41VjguNTlhLjUuNSAwIDAgMSAuNS0uNUgyNHptMi03LjM0SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41MjloMjYuOTJWMi4zOEExLjYzIDEuNjMgMCAwIDAgMjYgLjc1ek0zLjU4IDIuM2EuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMMy41OCAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMNi40NiAyLjN6bTIuODggMGEuNzQuNzQgMCAwIDEgLjczMi42MzJsLjAwOC4xMThhLjc1Ljc1IDAgMCAxLS42NC43NDJsLS4xLjAwOGEuNzYuNzYgMCAwIDEtLjc1LS43NS43NS43NSAwIDAgMSAuNjQ4LS43NDNMOS4zNCAyLjN6Ii8+Cjwvc3ZnPgo=\",\"title\":\"4 Columns\",\"index\":4,\"hasMenu\":true}}\" data-gp-component-id=\"ebi92jiPE30\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3XqiRWPtn\">\r\n        <div class=\"gp-component-id-vb4TuNDxzU\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-P6SkHmDNxNj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"P6SkHmDNxNj\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-WpYaLyiKvY\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-rhG6OD85L2L\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"rhG6OD85L2L\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279886_360F268693414ooIZMf3gtkOy6Ccvx0cDz1SZefpR6pNl.jpg\" alt=\"\" class=\"gp-component gp-component-id-Y8JLwUwZggI dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Y8JLwUwZggI\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-JL3HMeBX8\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-tb8QZhOqvza\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"tb8QZhOqvza\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653279947_unnamed.png\" alt=\"\" class=\"gp-component gp-component-id-S18Vg1s2YPL dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"S18Vg1s2YPL\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n        <div class=\"gp-component-id-0mvTj1eP4m\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DdkgqhZtI2J\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DdkgqhZtI2J\" data-gp-component=\"container\" tabindex=\"0\" style=\"\"></div>\r\n        </div>\r\n      </div>\r\n    </div></div><div class=\"gp-component gp-component-id-b8nu7QWuu06\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"b8nu7QWuu06\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ZlBFaBtPLHd\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{\"id\":52,\"name\":\"layout-5-5-5-5-5\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=\",\"title\":\"5 Columns\",\"index\":5,\"hasMenu\":true}}\" data-gp-component-id=\"ZlBFaBtPLHd\" tabindex=\"0\"><div class=\"gp-component-id-BoQ8QJirkA\">\r\n        <div class=\"gp-component-id-6t0COZ5WZN\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-EbYsu0aPyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-TDC0YLY3aY\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-XtllE0d0GD\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-5bUzwR7LMz\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div><div class=\"gp-component gp-component-id-YLnfJYH7JYp\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-5-5-5-5-5\" data-gp-component-data=\"{\"id\":52,\"name\":\"layout-5-5-5-5-5\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjlweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjkgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT41LWNvbHM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iNS1jb2xzIiBmaWxsPSIjQTRBOEMwIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8cGF0aCBkPSJNMjYsMCBDMjcuMzE0NDM3NywwIDI4LjM4LDEuMDY1NTYyMyAyOC4zOCwyLjM4IEwyOC4zOCwyNCBDMjguMzgsMjUuMzE0NDM3NyAyNy4zMTQ0Mzc3LDI2LjM4IDI2LDI2LjM4IEwyLjM4LDI2LjM4IEMxLjA2NTU2MjMsMjYuMzggMCwyNS4zMTQ0Mzc3IDAsMjQgTDAsMi4zOCBDMCwxLjA2NTU2MjMgMS4wNjU1NjIzLDAgMi4zOCwwIEwyNiwwIFogTTI3LjY3MDAwMDEsNS42NTkgTDAuNzUsNS42NTkgTDAuNzUsMjQgQzAuNzUsMjQuOSAxLjQ4LDI1LjYzIDIuMzgsMjUuNjMgTDI2LDI1LjYzIEMyNi40MzkxOTExLDI1LjY0MDc4MSAyNi44NjQxMzg5LDI1LjQ3MzgyMDYgMjcuMTc4NTI5OCwyNS4xNjY5NiBDMjcuNDkyOTIwNywyNC44NjAwOTk0IDI3LjY3MDAwMDEsMjQuNDM5MzIzNCAyNy42NzAwMDAxLDI0IEwyNy42NzAwMDAxLDUuNjU5IEwyNy42NzAwMDAxLDUuNjU5IFogTTYuOTAyMTA3NjIsOC4wOSBDNy4xMTYzMzQ2Nyw4LjA5IDcuMjksOC4zMTM4NTc2MyA3LjI5LDguNTkgTDcuMjksMjIuNjUgQzcuMjksMjIuOTI2MTQyNCA3LjExNjMzNDY3LDIzLjE1IDYuOTAyMTA3NjIsMjMuMTUgTDQuMjE3ODkyMzgsMjMuMTUgQzQuMDAzNjY1MzMsMjMuMTUgMy44MywyMi45MjYxNDI0IDMuODMsMjIuNjUgTDMuODMsOC41OSBDMy44Myw4LjMxMzg1NzYzIDQuMDAzNjY1MzMsOC4wOSA0LjIxNzg5MjM4LDguMDkgTDYuOTAyMTA3NjIsOC4wOSBaIE0xMS4yMDQ2MDc2LDguMDkgQzExLjQxODgzNDcsOC4wOSAxMS41OTI1LDguMzEzODU3NjMgMTEuNTkyNSw4LjU5IEwxMS41OTI1LDIyLjY1IEMxMS41OTI1LDIyLjkyNjE0MjQgMTEuNDE4ODM0NywyMy4xNSAxMS4yMDQ2MDc2LDIzLjE1IEw4LjUyMDM5MjM4LDIzLjE1IEM4LjMwNjE2NTMzLDIzLjE1IDguMTMyNSwyMi45MjYxNDI0IDguMTMyNSwyMi42NSBMOC4xMzI1LDguNTkgQzguMTMyNSw4LjMxMzg1NzYzIDguMzA2MTY1MzMsOC4wOSA4LjUyMDM5MjM4LDguMDkgTDExLjIwNDYwNzYsOC4wOSBaIE0xNS41MDcxMDc2LDguMDkgQzE1LjcyMTMzNDcsOC4wOSAxNS44OTUsOC4zMTM4NTc2MyAxNS44OTUsOC41OSBMMTUuODk1LDIyLjY1IEMxNS44OTUsMjIuOTI2MTQyNCAxNS43MjEzMzQ3LDIzLjE1IDE1LjUwNzEwNzYsMjMuMTUgTDEyLjgyMjg5MjQsMjMuMTUgQzEyLjYwODY2NTMsMjMuMTUgMTIuNDM1LDIyLjkyNjE0MjQgMTIuNDM1LDIyLjY1IEwxMi40MzUsOC41OSBDMTIuNDM1LDguMzEzODU3NjMgMTIuNjA4NjY1Myw4LjA5IDEyLjgyMjg5MjQsOC4wOSBMMTUuNTA3MTA3Niw4LjA5IFogTTE5LjgwOTYwNzYsOC4wOSBDMjAuMDIzODM0Nyw4LjA5IDIwLjE5NzUsOC4zMTM4NTc2MyAyMC4xOTc1LDguNTkgTDIwLjE5NzUsMjIuNjUgQzIwLjE5NzUsMjIuOTI2MTQyNCAyMC4wMjM4MzQ3LDIzLjE1IDE5LjgwOTYwNzYsMjMuMTUgTDE3LjEyNTM5MjQsMjMuMTUgQzE2LjkxMTE2NTMsMjMuMTUgMTYuNzM3NSwyMi45MjYxNDI0IDE2LjczNzUsMjIuNjUgTDE2LjczNzUsOC41OSBDMTYuNzM3NSw4LjMxMzg1NzYzIDE2LjkxMTE2NTMsOC4wOSAxNy4xMjUzOTI0LDguMDkgTDE5LjgwOTYwNzYsOC4wOSBaIE0yNC4xMTIxMDc2LDguMDkgQzI0LjMyNjMzNDcsOC4wOSAyNC41LDguMzEzODU3NjMgMjQuNSw4LjU5IEwyNC41LDIyLjY1IEMyNC41LDIyLjkyNjE0MjQgMjQuMzI2MzM0NywyMy4xNSAyNC4xMTIxMDc2LDIzLjE1IEwyMS40Mjc4OTI0LDIzLjE1IEMyMS4yMTM2NjUzLDIzLjE1IDIxLjA0LDIyLjkyNjE0MjQgMjEuMDQsMjIuNjUgTDIxLjA0LDguNTkgQzIxLjA0LDguMzEzODU3NjMgMjEuMjEzNjY1Myw4LjA5IDIxLjQyNzg5MjQsOC4wOSBMMjQuMTEyMTA3Niw4LjA5IFogTTI2LDAuNzUgTDIuMzgsMC43NSBDMS40OCwwLjc1IDAuNzUsMS40OCAwLjc1LDIuMzggTDAuNzUsNC45MDkgTDI3LjY3MDAwMDEsNC45MDkgTDI3LjY3MDAwMDEsMi4zOCBDMjcuNjcwMDAwMSwxLjk0MDY3NjU4IDI3LjQ5MjkyMDcsMS41MTk5MDA2NSAyNy4xNzg1Mjk4LDEuMjEzMDQwMDUgQzI2Ljg2NDEzODksMC45MDYxNzk0NDQgMjYuNDM5MTkxMSwwLjczOTIxOTAzNyAyNiwwLjc1IFogTTMuNTgsMi4zIEMzLjk0Njk0NzkyLDIuMzAwMDM3OTMgNC4yNTg0NDU0NCwyLjU2ODk4MTE0IDQuMzEyLDIuOTMyIEw0LjMyMDAwMDAxLDMuMDUgQzQuMzIwMDU0NzgsMy40MjE3NzA3MSA0LjA0Nzc1MDM3LDMuNzM3NDczNjMgMy42OCwzLjc5MiBMMy41OCwzLjggQzMuMTY4MDM3OTQsMy43OTQ2MTQxOSAyLjgzNTM4NTgxLDMuNDYxOTYyMDYgMi44MywzLjA1IEMyLjgzMDAxNTgsMi42NzUyMTQyMiAzLjEwNjY5NjQyLDIuMzU3OTcwODcgMy40NzgsMi4zMDcgTDMuNTgsMi4zIFogTTYuNDYsMi4zIEM2LjgyNjk0NzkyLDIuMzAwMDM3OTMgNy4xMzg0NDU0NCwyLjU2ODk4MTE0IDcuMTkyLDIuOTMyIEw3LjIwMDAwMDAxLDMuMDUgQzcuMjAwMDU0NzgsMy40MjE3NzA3MSA2LjkyNzc1MDM3LDMuNzM3NDczNjMgNi41NiwzLjc5MiBMNi40NiwzLjggQzYuMDQ4MDM3OTQsMy43OTQ2MTQxOSA1LjcxNTM4NTgxLDMuNDYxOTYyMDYgNS43MSwzLjA1IEM1LjcxMDAxNTgsMi42NzUyMTQyMiA1Ljk4NjY5NjQyLDIuMzU3OTcwODcgNi4zNTgsMi4zMDcgTDYuNDYsMi4zIFogTTkuMzQsMi4zIEM5LjcwNjk0NzkyLDIuMzAwMDM3OTMgMTAuMDE4NDQ1NCwyLjU2ODk4MTE0IDEwLjA3MiwyLjkzMiBMMTAuMDgsMy4wNSBDMTAuMDgwMDU0OCwzLjQyMTc3MDcxIDkuODA3NzUwMzcsMy43Mzc0NzM2MyA5LjQ0LDMuNzkyIEw5LjM0LDMuOCBDOC45MjgwMzc5NCwzLjc5NDYxNDE5IDguNTk1Mzg1ODEsMy40NjE5NjIwNiA4LjU5LDMuMDUgQzguNTkwMDE1OCwyLjY3NTIxNDIyIDguODY2Njk2NDIsMi4zNTc5NzA4NyA5LjIzOCwyLjMwNyBMOS4zNCwyLjMgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=\",\"title\":\"5 Columns\",\"index\":5,\"hasMenu\":true}}\" data-gp-component-id=\"YLnfJYH7JYp\" tabindex=\"0\"><div class=\"gp-component-id-zI50dJMP6d\">\r\n        <div class=\"gp-component-id-P0_m2XN3EO\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-48la5nGzf4\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-UwNNGXzvDkX\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-zZkWN3b5uRy\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-6lhmocpI1yK\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div><div class=\"gp-component gp-component-id-n4MC6JDXF6W\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" data-gp-component-id=\"n4MC6JDXF6W\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-GfJ_TPvDQrE\">\r\n        <div class=\"gp-component-id-hf05ASWxRB0\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-XxbMwkXtXz6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"XxbMwkXtXz6\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-ccN8yDZJ9YW\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"ccN8yDZJ9YW\" data-gp-component=\"null\" tabindex=\"0\"><div class=\"gp-component-id-_Lzv1wr6aoU\">\r\n                    <div class=\"gp-component-id-8JoYdE8dOeO\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-9iLbd69lZ5W\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-bTfiiva4Ot6\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wsmyN0fpRIz\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"wsmyN0fpRIz\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-CIET96g6EQo\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" data-gp-component-id=\"CIET96g6EQo\" tabindex=\"0\"><div class=\"gp-component-id-kjlXt0MgFJ2\">\r\n                    <div class=\"gp-component-id-Thq0x6Bv0q9\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-0QrhhMm_RFJ\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-DZeuL83IjLF\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-2-2\" tabindex=\"0\" data-gp-component-id=\"DZeuL83IjLF\"><div class=\"gp-component-id-wa5jmQ5EC\">\r\n        <div class=\"gp-component-id-RKlS25caso\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n        <div class=\"gp-component-id-_SWuC1Z4SM\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-wHujuRWvn3n\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component=\"container\" tabindex=\"0\" data-gp-component-id=\"wHujuRWvn3n\"><div class=\"gp-component gp-component-id-PQtapy3rm04\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"null\" tabindex=\"0\" data-gp-component-id=\"PQtapy3rm04\"><div class=\"gp-component-id-OBdBtO3Gl0\">\r\n                    <div class=\"gp-component-id-iBMUg_wZFj\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                    <div class=\"gp-component-id-fgCVZ0eFnq\" data-gp-grid-col=\"\">\r\n                        \r\n                    </div>\r\n                </div></div></div>\r\n        </div>\r\n      </div></div></div></section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{\"id\":12295330,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/pages-previews/628d015e95545.png\",\"category\":\"No Category\",\"tag\":\"user\",\"user_id\":\"5f4d20c97584a2006d495f30\",\"filename\":null}\" id=\"rDPeNtfic0w\" style=\"\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.Â Includes Domain, Theme, Plugins,Â Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong><em>(Retail Value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.Â We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong><em>(Retail Value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Marketing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_ dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.Â Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong><em>(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.Â Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong><em>(Retail Value $650)Â </em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.Â Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.Â </p><p class=\"gp-component-id-k4R7SI080\"><strong><em>(Retail Value $497)Â </em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.Â Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong><em>(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.Â Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong>(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section>\r\n    \r\n    </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(66,'2022-07-18 12:30:16','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&amp;rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"1LEqaIAdqw\" class=\"style-1LEqaIAdqw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\" class=\"style-04K8AGERBs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz-overlay\">\r\n        \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kX91V0_dR\" class=\"style-kX91V0_dR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uqeByIC70w\" class=\"style-uqeByIC70w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TREtKfV38T2\" class=\"style-TREtKfV38T2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JNy4h2WJI4\" class=\"style-JNy4h2WJI4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u7Z6yTqx9W\" class=\"style-u7Z6yTqx9W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4tdLR5hlk5\" class=\"style-4tdLR5hlk5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2z28_6Nnyn\" class=\"style-2z28_6Nnyn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f0Ck0UiXu5\" class=\"style-f0Ck0UiXu5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VdUz9YHjxr\" class=\"style-VdUz9YHjxr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9VQsoL5ryR\" class=\"style-9VQsoL5ryR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_RRMD2PDDk\" class=\"style-_RRMD2PDDk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C73ICmkwHK\" class=\"style-C73ICmkwHK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zckvkQ2aDE\" class=\"style-zckvkQ2aDE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y_uio9Sbn7\" class=\"style-y_uio9Sbn7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnl7T0ReQ4\" class=\"style-Mnl7T0ReQ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DYFqMPa0Bj\" class=\"style-DYFqMPa0Bj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YVMx3V0m\" class=\"style-7YVMx3V0m\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"itLC_h3mnyn\" class=\"style-itLC_h3mnyn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QOGeXZZHNSu\" class=\"style-QOGeXZZHNSu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4W8Pqferbs7\" class=\"style-4W8Pqferbs7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 85%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 70%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B2y1thTLg05\" class=\"style-B2y1thTLg05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZUrCwc6YHfB\" class=\"style-ZUrCwc6YHfB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YG8898hf0R6\" class=\"style-YG8898hf0R6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hb7NHX9gcRa\" class=\"style-hb7NHX9gcRa\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cUwOisgmfWY\" class=\"style-cUwOisgmfWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Slmvcvuiq6p\" class=\"style-Slmvcvuiq6p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SvU2lGGwS\" class=\"style-SvU2lGGwS-overlay\">\r\n        \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SvU2lGGwS\" class=\"style-SvU2lGGwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LWT9gxVJXbU\" class=\"style-LWT9gxVJXbU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQoyVMq30ru\" class=\"style-FQoyVMq30ru\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Leqb4xP8b3\" class=\"style-Leqb4xP8b3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhdaAJMa_Vb\" class=\"style-jhdaAJMa_Vb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D0PMvn9OzWP\" class=\"style-D0PMvn9OzWP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eSHr0GjFMF6\" class=\"style-eSHr0GjFMF6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoANoMnyCy\" class=\"style-eoANoMnyCy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RYKkfiWJUh\" class=\"style-RYKkfiWJUh\">\r\n        \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IVwF60zTeZ\" class=\"style-IVwF60zTeZ\">\r\n        \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gl9cxAwaIO\" class=\"style-gl9cxAwaIO\">\r\n        \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yW3HWfv6uh\" class=\"style-yW3HWfv6uh\">\r\n        \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qVhSWuYVyr\" class=\"style-qVhSWuYVyr\">\r\n        \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Nf_wtmCq2o\" class=\"style-Nf_wtmCq2o\">\r\n        \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VFm3GmgY2R\" class=\"style-VFm3GmgY2R\">\r\n        \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gcjc443D1Q\" class=\"style-Gcjc443D1Q\">\r\n        \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gpaOSSTYJBm\" class=\"style-gpaOSSTYJBm\">\r\n        \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A4ayDdm1iX7\" class=\"style-A4ayDdm1iX7\">\r\n        \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0AN508oW9rf\" class=\"style-0AN508oW9rf\">\r\n        \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WjrpIspQdjx\" class=\"style-WjrpIspQdjx\">\r\n        \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M3A5Z9KLTKi\" class=\"style-M3A5Z9KLTKi\">\r\n        \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12jtMtHeg9_\" class=\"style-12jtMtHeg9_\">\r\n        \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RVfYN8k3yCi\" class=\"style-RVfYN8k3yCi\">\r\n        \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"imE7sdmLQ\" class=\"style-imE7sdmLQ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;margin-top: 20px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-imE7sdmLQ[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;background-size: cover;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{&quot;id&quot;:7610,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png&quot;,&quot;category&quot;:&quot;Navigation bars&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5df98d83cf362c0e9cf8723d&quot;,&quot;filename&quot;:null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\" tabindex=\"0\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?s=noauth\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\" style=\"\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\">Fast, Effective, Free</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-dN8ut9UnD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"dN8ut9UnD\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-1LEqaIAdqw\">Solo ADS!</h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-NfeuVlmvqT\">Grow your online business using our proven Traffic Network. Take advantage of our Premium FREE marketing tools to give you every advantage.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653419955_3d-welcome-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-imE7sdmLQ\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"imE7sdmLQ\" tabindex=\"0\"></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-ww47D26mJz\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12301095\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:12301095,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;//assets.grooveapps.com/pages-previews/62bdf8867004d.png&quot;,&quot;category&quot;:&quot;Personalized Templates&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null,&quot;height&quot;:358,&quot;global&quot;:0}\" data-gp-component-id=\"ww47D26mJz\" id=\"ww47D26mJz\" tabindex=\"0\" style=\"\"><a name=\"ww47D26mJz\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"eoANoMnyCy\">\r\n        \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\">\r\n        \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-RYKkfiWJUh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"RYKkfiWJUh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IVwF60zTeZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{&quot;id&quot;:48,&quot;name&quot;:&quot;layout-1&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==&quot;,&quot;title&quot;:&quot;1 Column&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"IVwF60zTeZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-gl9cxAwaIO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gl9cxAwaIO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IJK08VECM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IJK08VECM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-uqeByIC70w\">GET ALL THIS 100% <span style=\"color: rgb(251, 214, 0);\">FREE!!</span></h1></div><ul class=\"gp-component-id-kX91V0_dR gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"kX91V0_dR\" tabindex=\"0\"><ul class=\"gp-component-id-yW3HWfv6uh gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"yW3HWfv6uh\" tabindex=\"0\" style=\"\"><ul class=\"gp-component gp-component-id-qVhSWuYVyr\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"qVhSWuYVyr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/NyF2trOxc1kli2y6XUaBk2j0J46YMjRUi5exmRLmNlg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjA4MzY4XzM2LU5vdGlmaWNhdGlvbi5wbmc.webp\" alt=\"\" class=\"gp-component gp-component-id-Nf_wtmCq2o\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Nf_wtmCq2o\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-wBONUKqVm6 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"wBONUKqVm6\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eoANoMnyCy\">1,000 AD CREDITS</h2></div></ul><ul class=\"gp-component gp-component-id-VFm3GmgY2R\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"VFm3GmgY2R\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-Leqb4xP8b3\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"Leqb4xP8b3\" aria-hidden=\"true\" tabindex=\"0\"></span></ul><ul class=\"gp-component gp-component-id-Gcjc443D1Q\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"Gcjc443D1Q\" tabindex=\"0\"><img src=\"https://images.groovetech.io/vTMQkRRTqPWVHvFirgncAtE1DFpn41TjjxJEzGHDwpo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2NzYwXzM1LU1lc3NhZ2UucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-gpaOSSTYJBm\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"gpaOSSTYJBm\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l3yIQ6CVHq0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l3yIQ6CVHq0\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eSHr0GjFMF6\">EMAIL &amp; SMS SENDER</h2></div></ul><ul class=\"gp-component gp-component-id-A4ayDdm1iX7\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"A4ayDdm1iX7\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-FQoyVMq30ru\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"FQoyVMq30ru\" aria-hidden=\"true\" tabindex=\"0\"></span></ul><ul class=\"gp-component gp-component-id-0AN508oW9rf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"0AN508oW9rf\" tabindex=\"0\"><img src=\"https://images.groovetech.io/bO03g-U5sgytnMCNmjm2pO_NUSKgS0hI8Xyw8zsRdKM/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODAyXzM0LVZvdWNoZXIucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-WjrpIspQdjx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"WjrpIspQdjx\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zVUIhCaMN0d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zVUIhCaMN0d\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-D0PMvn9OzWP\">PAGE BUILDER</h2></div></ul><ul class=\"gp-component gp-component-id-M3A5Z9KLTKi\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"M3A5Z9KLTKi\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-LWT9gxVJXbU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"LWT9gxVJXbU\" aria-hidden=\"true\" tabindex=\"0\" style=\"\"></span></ul><ul class=\"gp-component gp-component-id-12jtMtHeg9_\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"12jtMtHeg9_\" tabindex=\"0\"><img src=\"https://images.groovetech.io/SYCBkqwZYbmNu-YE4YPljBO0onhh8WBeopCR3qYIC7Y/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODMwXzAyLVJhdGUucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-RVfYN8k3yCi dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"RVfYN8k3yCi\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-qt3o2nLbXte\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"qt3o2nLbXte\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-jhdaAJMa_Vb\">LEAD &amp; TASK CRM</h2></div></ul></ul><div class=\"gp-text-container gp-component gp-component-id-Oaku6Kh_7t dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Oaku6Kh_7t\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-04K8AGERBs\"><span style=\"color: rgb(251, 214, 0);\">PLUS...</span> Link Tracker System, With Rotator</h1></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and your ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENJOY NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking our your links and visiting your pages</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-SvU2lGGwS\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12303359\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:12303359,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;//assets.grooveapps.com/pages-previews/62d1eb4c12cac.png&quot;,&quot;category&quot;:&quot;Personalized Templates&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null,&quot;height&quot;:769,&quot;global&quot;:0}\" data-gp-component-id=\"SvU2lGGwS\" id=\"SvU2lGGwS\" tabindex=\"0\" style=\"\"><a name=\"SvU2lGGwS\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-Slmvcvuiq6p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Slmvcvuiq6p\" tabindex=\"0\" data-gp-component=\"container\"><div class=\"gp-component gp-component-id-cUwOisgmfWY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"cUwOisgmfWY\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-hb7NHX9gcRa\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"hb7NHX9gcRa\" tabindex=\"0\"><div class=\"gp-component gp-component-id-YG8898hf0R6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"YG8898hf0R6\" tabindex=\"0\"><img src=\"https://images.groovetech.io/jZ23q2xM3tGFyzdakxZ1YyGdCDlAhlESXoKCJ5fSxqE/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU3OTI3ODc1X0dPTURNaWNvbm9zY2hhZmEzLnBuZw.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZUrCwc6YHfB\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZUrCwc6YHfB\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-B2y1thTLg05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"B2y1thTLg05\" tabindex=\"0\"><img src=\"https://images.groovetech.io/YIGbKeuWkpM2oFj9FaCsULt5KaDHEAKUDRR5i7Vq3pY/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU3OTI3OTI4X0RFU0NNRE1pY29ub3NjaGFmYTMucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-4W8Pqferbs7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"4W8Pqferbs7\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-QOGeXZZHNSu\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"QOGeXZZHNSu\" tabindex=\"0\"><div class=\"gp-component gp-component-id-TREtKfV38T2 dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"TREtKfV38T2\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-itLC_h3mnyn\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"itLC_h3mnyn\" tabindex=\"0\"><div class=\"gp-component gp-component-id-7YVMx3V0m\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"7YVMx3V0m\" tabindex=\"0\"><div class=\"gp-component gp-component-id-DYFqMPa0Bj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"DYFqMPa0Bj\" tabindex=\"0\"><img src=\"https://images.groovetech.io/e9TLQQ3wr5FhqQ8ZG3VTFKath3qiCibtoAqscKkFW4M/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NjQ5X2tpc3NjbGlwYXJ0LWZyZWUtY2xpcC1hcnQtZW50ZXItdG8td2luLWNsaXBhcnQtbG9nby1jbGlwLWFydC0wOWNmODc0OGI1NWUxMDM3LnBuZw.webp\" alt=\"\" class=\"gp-component gp-component-id-Mnl7T0ReQ4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Mnl7T0ReQ4\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-y_uio9Sbn7\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"y_uio9Sbn7\" tabindex=\"0\"><img src=\"https://images.groovetech.io/qhrAgFaGUbBhqazjuf92gTC1s7rTbPHK5h6MAo7D9Gw/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NjI2X2ltYWdlczguanBn.webp\" alt=\"\" class=\"gp-component gp-component-id-zckvkQ2aDE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zckvkQ2aDE\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-C73ICmkwHK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"C73ICmkwHK\" tabindex=\"0\"><img src=\"https://images.groovetech.io/LDTSYD8Fp2IzoWMF_dTeZK_fA3onbZNQL_dw17Rbf1k/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NzU0X2ltYWdlczkucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-_RRMD2PDDk\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"_RRMD2PDDk\" tabindex=\"0\"></div></div><div class=\"gp-component gp-component-id-9VQsoL5ryR\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"9VQsoL5ryR\" tabindex=\"0\"><div class=\"gp-component gp-component-id-VdUz9YHjxr\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"VdUz9YHjxr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/dnfZbGZi5cVNOX8URYiINZ9YcS0YbQ6aH7NU-m16WcQ/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5ODEzX2ltYWdlczExLmpwZw.webp\" alt=\"\" class=\"gp-component gp-component-id-f0Ck0UiXu5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"f0Ck0UiXu5\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-2z28_6Nnyn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"2z28_6Nnyn\" tabindex=\"0\"><img src=\"https://images.groovetech.io/ZGqdqa3HLQU7JQ_IXaJMhWxsHpxfomwScWLVvb9QAgc/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5ODg2XzM2MEYyNjg2OTM0MTRvb0laTWYzZ3RrT3k2Q2N2eDBjRHoxU1plZnBSNnBObC5qcGc.webp\" alt=\"\" class=\"gp-component gp-component-id-4tdLR5hlk5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"4tdLR5hlk5\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-u7Z6yTqx9W\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"u7Z6yTqx9W\" tabindex=\"0\"><img src=\"https://images.groovetech.io/AoELaGnF0SF7CCtM2wOAbAQjEkI7z2S81OkpFN8H4eg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5OTQ3X3VubmFtZWQucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-JNy4h2WJI4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JNy4h2WJI4\" tabindex=\"0\"></div></div></ul></div></div></ul></div></div>\r\n    </section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{&quot;id&quot;:12295330,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/628d015e95545.png&quot;,&quot;category&quot;:&quot;No Category&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null}\" id=\"rDPeNtfic0w\" style=\"\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.&nbsp;Includes Domain, Theme, Plugins,&nbsp;Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong><em>(retail value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.&nbsp;We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong><em>(retail value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Messing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong><em>(retail value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_ dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.&nbsp;Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong><em>(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.&nbsp;Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong><em>(Retail Value $650)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.&nbsp;Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.&nbsp;</p><p class=\"gp-component-id-k4R7SI080\"><strong><em>(Retail Price $497)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.&nbsp;Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong><em>(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.&nbsp;Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong>(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
INSERT INTO `oto_templates_backups` (`id`, `savetime`, `template_name`, `template_data`) VALUES (67,'2022-07-19 09:44:36','Sales Page','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Solo Swaps</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      html {\r\n    \r\n      font-family: sans-serif;\r\n      text-size-adjust: 100%;\r\n      line-height: 1.25;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  body {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  body * {\r\n    \r\n      border-image-repeat: initial;\r\n      border-image-outset: initial;\r\n      border-image-width: initial;\r\n      border-image-slice: initial;\r\n      border-image-source: initial;\r\n      border-left-color: rgb(173, 183, 194);\r\n      border-bottom-color: rgb(173, 183, 194);\r\n      border-right-color: rgb(173, 183, 194);\r\n      border-top-color: rgb(173, 183, 194);\r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      border-left-width: 0px;\r\n      border-bottom-width: 0px;\r\n      border-right-width: 0px;\r\n      border-top-width: 0px;\r\n      box-sizing: inherit;\r\n  }\r\n\r\n  main {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  h1 {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      font-size: 2em;\r\n  }\r\n\r\n  hr {\r\n    \r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      height: 0px;\r\n      box-sizing: content-box;\r\n  }\r\n\r\n  pre {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  b {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  strong {\r\n    \r\n      font-weight: bolder;\r\n  }\r\n\r\n  code {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  kbd {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  samp {\r\n    \r\n      font-family: monospace, monospace;\r\n      font-size: 1em;\r\n  }\r\n\r\n  small {\r\n    \r\n      font-size: 80%;\r\n  }\r\n\r\n  sub {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      bottom: -0.25em;\r\n  }\r\n\r\n  sup {\r\n    \r\n      vertical-align: baseline;\r\n      position: relative;\r\n      line-height: 0;\r\n      font-size: 75%;\r\n      top: -0.5em;\r\n  }\r\n\r\n  img {\r\n    \r\n      border-left-style: solid;\r\n      border-bottom-style: solid;\r\n      border-right-style: solid;\r\n      border-top-style: solid;\r\n      height: auto;\r\n      max-width: 100%;\r\n  }\r\n\r\n  button {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n      text-transform: none;\r\n      appearance: button;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      background-color: transparent;\r\n      background-clip: initial;\r\n      background-origin: initial;\r\n      background-attachment: initial;\r\n      background-repeat-y: initial;\r\n      background-repeat-x: initial;\r\n      background-size: initial;\r\n      background-position-y: initial;\r\n      background-position-x: initial;\r\n      background-image: initial;\r\n      cursor: pointer;\r\n  }\r\n\r\n  input {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: visible;\r\n      overflow-x: visible;\r\n  }\r\n\r\n  optgroup {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n  }\r\n\r\n  select {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      text-transform: none;\r\n  }\r\n\r\n  textarea {\r\n    \r\n      font-family: inherit;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      line-height: 1.15;\r\n      font-size: 100%;\r\n      overflow-y: auto;\r\n      overflow-x: auto;\r\n      resize: vertical;\r\n  }\r\n\r\n  fieldset {\r\n    \r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  legend {\r\n    \r\n      white-space: normal;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      max-width: 100%;\r\n      display: table;\r\n      color: inherit;\r\n      box-sizing: border-box;\r\n  }\r\n\r\n  progress {\r\n    \r\n      vertical-align: baseline;\r\n  }\r\n\r\n  details {\r\n    \r\n      display: block;\r\n  }\r\n\r\n  summary {\r\n    \r\n      display: list-item;\r\n  }\r\n\r\n  template {\r\n    \r\n      display: none;\r\n  }\r\n\r\n  blockquote {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dd {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  dl {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  figure {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  p {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n  }\r\n\r\n  ol {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      list-style-position: inside;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n  }\r\n\r\n  ul {\r\n    \r\n      margin-left: 0px;\r\n      margin-bottom: 0px;\r\n      margin-right: 0px;\r\n      margin-top: 0px;\r\n      padding-left: 0px;\r\n      padding-bottom: 0px;\r\n      padding-right: 0px;\r\n      padding-top: 0px;\r\n      list-style-type: none;\r\n      list-style-image: initial;\r\n      list-style-position: initial;\r\n  }\r\n\r\n  table {\r\n    \r\n      border-collapse: collapse;\r\n  }\r\n\r\n  a {\r\n    \r\n      text-decoration-color: initial;\r\n      text-decoration-style: solid;\r\n      text-decoration-thickness: initial;\r\n      text-decoration-line: none;\r\n      cursor: pointer;\r\n      background-color: transparent;\r\n  }\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/soloswaps-hp/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"628d336817d76f78ca76ecc2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"lNF_S3o-L\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&amp;rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"628d336817d76f78ca76ecc2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJsTkZfUzNvLUwiOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Cheat Sheet Landing Page\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"628d336817d76f78ca76ecc2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"lNF_S3o-L\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"CWaxQVasN\" class=\"style-CWaxQVasN\">\r\n        \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CWaxQVasN {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"1LEqaIAdqw\" class=\"style-1LEqaIAdqw\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-1LEqaIAdqw {\r\n          font-size: 60px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\" class=\"style-04K8AGERBs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-04K8AGERBs {\r\n          font-size: 48px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz[data-gp-component] {\r\n          padding-top: 50px;padding-bottom: 40px;z-index: 10;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ww47D26mJz\" class=\"style-ww47D26mJz-overlay\">\r\n        \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ww47D26mJz.gp-component [data-section-overlay] {\r\n          background-color: rgb(4, 81, 174);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kX91V0_dR\" class=\"style-kX91V0_dR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kX91V0_dR[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uqeByIC70w\" class=\"style-uqeByIC70w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-uqeByIC70w {\r\n          font-size: 60px !important;font-weight: 900 !important;color: rgb(255, 255, 255);text-align: center;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TREtKfV38T2\" class=\"style-TREtKfV38T2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TREtKfV38T2[data-gp-component] {\r\n          border-top-left-radius: 40px;border-top-right-radius: 40px;border-bottom-left-radius: 40px;border-bottom-right-radius: 40px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(251, 214, 0, 1);border-right-color: rgba(251, 214, 0, 1);border-top-color: rgba(251, 214, 0, 1);border-bottom-color: rgba(251, 214, 0, 1);width: 57%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"JNy4h2WJI4\" class=\"style-JNy4h2WJI4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-JNy4h2WJI4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"u7Z6yTqx9W\" class=\"style-u7Z6yTqx9W\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-u7Z6yTqx9W[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4tdLR5hlk5\" class=\"style-4tdLR5hlk5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4tdLR5hlk5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"2z28_6Nnyn\" class=\"style-2z28_6Nnyn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-2z28_6Nnyn[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f0Ck0UiXu5\" class=\"style-f0Ck0UiXu5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 40%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f0Ck0UiXu5[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VdUz9YHjxr\" class=\"style-VdUz9YHjxr\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VdUz9YHjxr[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9VQsoL5ryR\" class=\"style-9VQsoL5ryR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9VQsoL5ryR[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_RRMD2PDDk\" class=\"style-_RRMD2PDDk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_RRMD2PDDk[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"C73ICmkwHK\" class=\"style-C73ICmkwHK\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-C73ICmkwHK[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zckvkQ2aDE\" class=\"style-zckvkQ2aDE\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zckvkQ2aDE[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"y_uio9Sbn7\" class=\"style-y_uio9Sbn7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-y_uio9Sbn7[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mnl7T0ReQ4\" class=\"style-Mnl7T0ReQ4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 45%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;min-width: 120px;max-width: 120px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Mnl7T0ReQ4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;width: 100px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DYFqMPa0Bj\" class=\"style-DYFqMPa0Bj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          margin-bottom: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DYFqMPa0Bj[data-gp-component] {\r\n          width: 100%;flex-direction: row;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7YVMx3V0m\" class=\"style-7YVMx3V0m\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 30px;width: 100%;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7YVMx3V0m[data-gp-component] {\r\n          padding-top: 20px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"itLC_h3mnyn\" class=\"style-itLC_h3mnyn\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 30px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-itLC_h3mnyn[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 0px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QOGeXZZHNSu\" class=\"style-QOGeXZZHNSu\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QOGeXZZHNSu[data-gp-component] {\r\n          width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4W8Pqferbs7\" class=\"style-4W8Pqferbs7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 85%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4W8Pqferbs7[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;height: auto;max-width: 70%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"B2y1thTLg05\" class=\"style-B2y1thTLg05\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-B2y1thTLg05[data-gp-component] {\r\n          margin-bottom: 55px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ZUrCwc6YHfB\" class=\"style-ZUrCwc6YHfB\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ZUrCwc6YHfB[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YG8898hf0R6\" class=\"style-YG8898hf0R6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YG8898hf0R6[data-gp-component] {\r\n          margin-top: 50px;margin-bottom: 10px;width: 100%;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hb7NHX9gcRa\" class=\"style-hb7NHX9gcRa\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hb7NHX9gcRa[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 16px;padding-right: 0px;padding-top: 16px;padding-bottom: 16px;list-style-position: inside;list-style-image: initial;list-style-type: inherit;\r\n      }\r\n        }</style><style data-gp-styled-element=\"cUwOisgmfWY\" class=\"style-cUwOisgmfWY\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;justify-content: center;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-cUwOisgmfWY[data-gp-component] {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Slmvcvuiq6p\" class=\"style-Slmvcvuiq6p\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;z-index: 15;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Slmvcvuiq6p[data-gp-component] {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;z-index: 15;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SvU2lGGwS\" class=\"style-SvU2lGGwS-overlay\">\r\n        \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS.gp-component [data-section-overlay] {\r\n          background-color: rgb(255, 255, 255);z-index: 14 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SvU2lGGwS\" class=\"style-SvU2lGGwS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SvU2lGGwS[data-gp-component] {\r\n          padding-left: 20px;padding-right: 20px;padding-top: 0px;padding-bottom: 40px;z-index: 10;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LWT9gxVJXbU\" class=\"style-LWT9gxVJXbU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LWT9gxVJXbU[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"FQoyVMq30ru\" class=\"style-FQoyVMq30ru\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FQoyVMq30ru[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"Leqb4xP8b3\" class=\"style-Leqb4xP8b3\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Leqb4xP8b3[data-gp-component] {\r\n          font-size: 42px !important;color: rgba(251, 214, 0, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"jhdaAJMa_Vb\" class=\"style-jhdaAJMa_Vb\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-jhdaAJMa_Vb {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D0PMvn9OzWP\" class=\"style-D0PMvn9OzWP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-D0PMvn9OzWP {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eSHr0GjFMF6\" class=\"style-eSHr0GjFMF6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eSHr0GjFMF6 {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"eoANoMnyCy\" class=\"style-eoANoMnyCy\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-eoANoMnyCy {\r\n          font-size: 20px !important;font-weight: 700 !important;color: rgba(255, 255, 255, 1);margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RYKkfiWJUh\" class=\"style-RYKkfiWJUh\">\r\n        \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RYKkfiWJUh {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IVwF60zTeZ\" class=\"style-IVwF60zTeZ\">\r\n        \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IVwF60zTeZ {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VoF8EIDGf\" class=\"style-VoF8EIDGf\">\r\n        \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VoF8EIDGf {\r\n          margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"flstvjFUCs\" class=\"style-flstvjFUCs\">\r\n        \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-flstvjFUCs {\r\n          padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gl9cxAwaIO\" class=\"style-gl9cxAwaIO\">\r\n        \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gl9cxAwaIO {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yW3HWfv6uh\" class=\"style-yW3HWfv6uh\">\r\n        \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yW3HWfv6uh {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;justify-content: center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"qVhSWuYVyr\" class=\"style-qVhSWuYVyr\">\r\n        \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-qVhSWuYVyr {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Nf_wtmCq2o\" class=\"style-Nf_wtmCq2o\">\r\n        \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Nf_wtmCq2o {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"VFm3GmgY2R\" class=\"style-VFm3GmgY2R\">\r\n        \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-VFm3GmgY2R {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gcjc443D1Q\" class=\"style-Gcjc443D1Q\">\r\n        \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gcjc443D1Q {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gpaOSSTYJBm\" class=\"style-gpaOSSTYJBm\">\r\n        \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gpaOSSTYJBm {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"A4ayDdm1iX7\" class=\"style-A4ayDdm1iX7\">\r\n        \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-A4ayDdm1iX7 {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0AN508oW9rf\" class=\"style-0AN508oW9rf\">\r\n        \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0AN508oW9rf {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WjrpIspQdjx\" class=\"style-WjrpIspQdjx\">\r\n        \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WjrpIspQdjx {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"M3A5Z9KLTKi\" class=\"style-M3A5Z9KLTKi\">\r\n        \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-M3A5Z9KLTKi {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 20px;padding-bottom: 0px;padding-right: 20px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"12jtMtHeg9_\" class=\"style-12jtMtHeg9_\">\r\n        \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-12jtMtHeg9_ {\r\n          margin-left: 0px;margin-bottom: 16px;margin-right: 0px;margin-top: 0px;padding-left: 0px;padding-bottom: 0px;padding-right: 0px;padding-top: 0px;list-style-type: none;list-style-image: initial;list-style-position: initial;display: flex;align-items: center;justify-content: center;flex-direction: column;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RVfYN8k3yCi\" class=\"style-RVfYN8k3yCi\">\r\n        \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RVfYN8k3yCi {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;display: inline-flex;align-items: flex-start;justify-content: flex-start;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"5PSb1qKWM\" class=\"style-5PSb1qKWM\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-5PSb1qKWM {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3YddfZaMV\" class=\"style-3YddfZaMV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-3YddfZaMV {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"k4R7SI080\" class=\"style-k4R7SI080\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-k4R7SI080 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RyPeZQeWt\" class=\"style-RyPeZQeWt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RyPeZQeWt {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"EWbnps1rS\" class=\"style-EWbnps1rS\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EWbnps1rS {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dn54o_9O0\" class=\"style-dn54o_9O0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-dn54o_9O0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FMXi5Mdjo\" class=\"style-FMXi5Mdjo\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-FMXi5Mdjo {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"49qNyAHC0\" class=\"style-49qNyAHC0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-49qNyAHC0 {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"fSZi9dKnl\" class=\"style-fSZi9dKnl\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-fSZi9dKnl {\r\n          font-size: 16px;color: rgba(251, 214, 0, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 12px;margin-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653413696_tyje4.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje[data-gp-component] {\r\n          background-image: url(\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421618_fke16.jpg\");background-size: cover;background-attachment: fixed;padding-left: 0px;padding-right: 0px;padding-top: 100px;padding-bottom: 100px;z-index: auto !important;background-position-y: 50%;background-position-x: 50%;min-height: 50px;position: relative;\r\n      }\r\n        .gp-component-id-HiYrth4jje[data-gp-component]:hover,.gp-component-id-HiYrth4jje[data-gp-component].gp-hover {\r\n          background-size: cover;background-attachment: fixed;background-position-y: 50%;background-position-x: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3Kf00XQBGt\" class=\"style-3Kf00XQBGt\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3Kf00XQBGt[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(47, 31, 255, 1);padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:hover,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-3Kf00XQBGt[data-gp-component]:active,.gp-component-id-3Kf00XQBGt[data-gp-component].gp-active {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        }</style><style data-gp-styled-element=\"YxShJzzqi1_\" class=\"style-YxShJzzqi1_\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YxShJzzqi1_[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 50px;padding-bottom: 50px;z-index: auto !important;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rDPeNtfic0w\" class=\"style-rDPeNtfic0w-overlay\">\r\n        \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgb(15, 7, 110);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rDPeNtfic0w.gp-component [data-section-overlay] {\r\n          background-color: rgba(0, 75, 190, 1);z-index: -1;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Mzn_rU4G7c\" class=\"style-Mzn_rU4G7c\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Mzn_rU4G7c {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RX84Yvr8oR\" class=\"style-RX84Yvr8oR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-RX84Yvr8oR {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-left: 20px;padding-right: 20px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0p1oioIC_S\" class=\"style-0p1oioIC_S\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: center;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgb(255, 255, 255);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-0p1oioIC_S {\r\n          font-size: 18px;color: rgba(0, 0, 0, 1);text-align: left;line-height: 1.5;margin-left: 20px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hEVuhRoepm\" class=\"style-hEVuhRoepm\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hEVuhRoepm[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"D1c1juarRF\" class=\"style-D1c1juarRF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 48px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 64px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(36, 142, 255);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-D1c1juarRF[data-gp-component] {\r\n          border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgba(0, 232, 158, 1);background-size: cover;box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 8px 0px, rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;margin-bottom: 0px;padding-left: 15px;padding-right: 15px;padding-top: 25px;padding-bottom: 15px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bY4f1XycWz\" class=\"style-bY4f1XycWz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgb(0, 123, 255);padding-left: 15px;padding-right: 15px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bY4f1XycWz[data-gp-component] {\r\n          background-color: rgba(0, 35, 198, 1);padding-left: 0px;padding-right: 0px;padding-top: 30px;padding-bottom: 30px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"SXlDep6d9C\" class=\"style-SXlDep6d9C\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 0px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-SXlDep6d9C[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-right: 24px;width: 100%;height: auto;max-width: 350px;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6JFeuC2ws9R\" class=\"style-6JFeuC2ws9R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          padding-right: 20px;width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6JFeuC2ws9R[data-gp-component] {\r\n          width: 100%;height: 100%;flex-direction: column;align-items: center;display: flex;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bl6rnwi0n6\" class=\"style-Bl6rnwi0n6\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Bl6rnwi0n6 {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x-overlay\"></style><style data-gp-styled-element=\"F2ANJ7ZGDs\" class=\"style-F2ANJ7ZGDs\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 20px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-F2ANJ7ZGDs {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 20px;padding-right: 20px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gin05LLQgx\" class=\"style-Gin05LLQgx\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-Gin05LLQgx {\r\n          font-size: 22px !important;font-weight: 600 !important;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 25px;padding-bottom: 0px;box-sizing: border-box;cursor: text;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DAyyb0NBp\" class=\"style-DAyyb0NBp\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 45%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 30%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 25%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 20%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DAyyb0NBp[data-gp-component] {\r\n          font-size: 18px;font-weight: 600;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 5.6px;border-top-right-radius: 5.6px;border-bottom-left-radius: 5.6px;border-bottom-right-radius: 5.6px;background-color: rgb(47, 31, 255);margin-right: 10px;padding-left: 10px;padding-right: 10px;padding-top: 10px;padding-bottom: 10px;width: 15%;align-items: center;display: inline-flex;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:hover,.gp-component-id-DAyyb0NBp[data-gp-component].gp-hover {\r\n          background-color: rgb(15, 7, 110);\r\n      }\r\n        .gp-component-id-DAyyb0NBp[data-gp-component]:active,.gp-component-id-DAyyb0NBp[data-gp-component].gp-active {\r\n          background-color: rgba(15, 7, 110, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"qZP4B9Cyob\" class=\"style-qZP4B9Cyob\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 30px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-qZP4B9Cyob {\r\n          font-size: 36px;font-weight: 700;color: rgba(15, 7, 110, 1);text-align: center;line-height: 1.5;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 10px;padding-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3_NGA00R6m\" class=\"style-3_NGA00R6m\"></style><style data-gp-styled-element=\"EYBMhH0pM8\" class=\"style-EYBMhH0pM8\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 29px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 26px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 35px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-EYBMhH0pM8 {\r\n          font-size: 41px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: left;line-height: 1.25;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-bottom: 0px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"NfeuVlmvqT\" class=\"style-NfeuVlmvqT\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: center;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 18px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-NfeuVlmvqT {\r\n          font-size: 20px !important;font-weight: 400 !important;color: rgb(219, 235, 255);text-align: left;line-height: 1.5;font-family: Poppins !important;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;cursor: text;box-sizing: border-box;overflow-wrap: break-word;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aVksu3Ybqh\" class=\"style-aVksu3Ybqh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 10px;padding-right: 10px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aVksu3Ybqh[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"uGXL0Gbyb0\" class=\"style-uGXL0Gbyb0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;padding-left: 20px;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-uGXL0Gbyb0[data-gp-component] {\r\n          font-family: Poppins;width: 100%;height: 100%;flex-direction: column;justify-content: center;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"T3qGpbgfut\" class=\"style-T3qGpbgfut\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-T3qGpbgfut[data-gp-component] {\r\n          font-family: Poppins;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"TZZtjAfk7DU\" class=\"style-TZZtjAfk7DU\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component] {\r\n          font-size: 16px;color: rgb(255, 255, 255);text-align: center;background-color: rgb(255, 213, 43);margin-left: 0px;margin-right: 0px;padding-left: 30px;padding-right: 30px;padding-top: 15px;padding-bottom: 15px;max-width: 100%;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: initial;text-decoration-line: none;cursor: pointer;\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:hover,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-hover {\r\n          background-color: rgb(255, 204, 36);\r\n      }\r\n        .gp-component-id-TZZtjAfk7DU[data-gp-component]:active,.gp-component-id-TZZtjAfk7DU[data-gp-component].gp-active {\r\n          background-color: rgba(255, 204, 36, 1);\r\n      }\r\n        }</style><style data-gp-styled-element=\"dKe2a_hN679\" class=\"style-dKe2a_hN679\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dKe2a_hN679[data-gp-component] {\r\n          font-size: 25px !important;font-weight: 700 !important;color: rgba(15, 24, 36, 1);font-family: Poppins !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"egjXt0e20Fh\" class=\"style-egjXt0e20Fh\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-egjXt0e20Fh[data-gp-component] {\r\n          color: rgba(255, 255, 255, 1);margin-top: 0px;width: 100%;flex-direction: column;align-items: center;display: flex;position: relative;min-height: 120px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"08Vyj09of_R\" class=\"style-08Vyj09of_R\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 30px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 36px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-08Vyj09of_R {\r\n          font-size: 48px;font-weight: 700;color: rgba(255, 255, 255, 1);text-align: center;font-family: Montserrat, sans-serif;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;height: 100%;overflow-wrap: break-word;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"F6tXkq0J1Mj\" class=\"style-F6tXkq0J1Mj\">\r\n        \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-F6tXkq0J1Mj {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0pu32Kk5qZ\" class=\"style-h0pu32Kk5qZ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0pu32Kk5qZ {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 20px;margin-top: 40px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"_VfVMJ5GI2\" class=\"style-_VfVMJ5GI2\">\r\n        \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-_VfVMJ5GI2 {\r\n          margin-left: -8px;margin-right: -8px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"7bhSxgp7wb\" class=\"style-7bhSxgp7wb\">\r\n        \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-7bhSxgp7wb {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ml9qBTlgsaR\" class=\"style-Ml9qBTlgsaR\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ml9qBTlgsaR {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kSbaBvrQsBO\" class=\"style-kSbaBvrQsBO\">\r\n        \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kSbaBvrQsBO {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 94px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"nOHihAeTssA\" class=\"style-nOHihAeTssA\">\r\n        \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-nOHihAeTssA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"ctLGRUW16Qv\" class=\"style-ctLGRUW16Qv\">\r\n        \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-ctLGRUW16Qv {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"h0UJAo6K0M\" class=\"style-h0UJAo6K0M\">\r\n        \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-h0UJAo6K0M {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"If4n0QzLf5E\" class=\"style-If4n0QzLf5E\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-If4n0QzLf5E {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"bM4s_VFLsnE\" class=\"style-bM4s_VFLsnE\">\r\n        \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-bM4s_VFLsnE {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 99px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PFT4yQl6Xr7\" class=\"style-PFT4yQl6Xr7\">\r\n        \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PFT4yQl6Xr7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"J0UvRwHe3Za\" class=\"style-J0UvRwHe3Za\">\r\n        \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-J0UvRwHe3Za {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"FSsFNWVwKF\" class=\"style-FSsFNWVwKF\">\r\n        \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-FSsFNWVwKF {\r\n          width: 33.3333%;padding-left: 8px;padding-right: 8px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Ud9dkZJ7EE5\" class=\"style-Ud9dkZJ7EE5\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Ud9dkZJ7EE5 {\r\n          min-height: 120px;display: flex;align-items: center;justify-content: flex-start;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dLkfjsPHMWb\" class=\"style-dLkfjsPHMWb\">\r\n        \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dLkfjsPHMWb {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 86px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gmP9DoptSYA\" class=\"style-gmP9DoptSYA\">\r\n        \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gmP9DoptSYA {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;font-weight: 700;font-size: 20px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xwEuF8kwoq6\" class=\"style-xwEuF8kwoq6\">\r\n        \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xwEuF8kwoq6 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mz8QyP_KVAj\" class=\"style-mz8QyP_KVAj\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mz8QyP_KVAj {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"3FzfCpX_xa\" class=\"style-3FzfCpX_xa\">\r\n        \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-3FzfCpX_xa {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"aYCpxkVxIf\" class=\"style-aYCpxkVxIf\">\r\n        \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-aYCpxkVxIf {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"osw6II6XByk\" class=\"style-osw6II6XByk\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-bottom: 0px;margin-top: 0px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-osw6II6XByk {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;text-align: justify;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W63XOhCQoZG\" class=\"style-W63XOhCQoZG\">\r\n        \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-W63XOhCQoZG {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 129px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"a5qjUC7Wp9z\" class=\"style-a5qjUC7Wp9z\">\r\n        \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-a5qjUC7Wp9z {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xT9JDhgnvNs\" class=\"style-xT9JDhgnvNs\">\r\n        \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xT9JDhgnvNs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"StmjzJFIjB\" class=\"style-StmjzJFIjB\">\r\n        \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-StmjzJFIjB {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"UpipIN6pIa2\" class=\"style-UpipIN6pIa2\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-UpipIN6pIa2 {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"mUtRmiETVPe\" class=\"style-mUtRmiETVPe\">\r\n        \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-mUtRmiETVPe {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 96px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"LrJ5picDtu_\" class=\"style-LrJ5picDtu_\">\r\n        \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-LrJ5picDtu_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9gp5x1peAbq\" class=\"style-9gp5x1peAbq\">\r\n        \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9gp5x1peAbq {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNSs7bbRzn\" class=\"style-XNSs7bbRzn\">\r\n        \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNSs7bbRzn {\r\n          flex-grow: 0;flex-shrink: 0;flex-basis: auto;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"CeJIkT6pRJH\" class=\"style-CeJIkT6pRJH\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-CeJIkT6pRJH {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"O08UV0ZAxx9\" class=\"style-O08UV0ZAxx9\">\r\n        \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-O08UV0ZAxx9 {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 111px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Cd3XSUUHAF_\" class=\"style-Cd3XSUUHAF_\">\r\n        \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Cd3XSUUHAF_ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Gg95jM9D0pT\" class=\"style-Gg95jM9D0pT\">\r\n        \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Gg95jM9D0pT {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"c4Qg20fpP3t\" class=\"style-c4Qg20fpP3t\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-c4Qg20fpP3t {\r\n          width: 100%;padding-right: 8px;padding-left: 8px;margin-bottom: 30px;margin-top: 30px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"kjWBBdN0mF\" class=\"style-kjWBBdN0mF\">\r\n        \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-kjWBBdN0mF {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WJTPojaUis\" class=\"style-WJTPojaUis\">\r\n        \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WJTPojaUis {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DLGADn9lo1i\" class=\"style-DLGADn9lo1i\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DLGADn9lo1i {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"iXz4bmPtCUj\" class=\"style-iXz4bmPtCUj\">\r\n        \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-iXz4bmPtCUj {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 97px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 95px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"8t0OWoenBo7\" class=\"style-8t0OWoenBo7\">\r\n        \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-8t0OWoenBo7 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"P37i70_Us6O\" class=\"style-P37i70_Us6O\">\r\n        \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-P37i70_Us6O {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"r4FmPX4laV\" class=\"style-r4FmPX4laV\">\r\n        \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-r4FmPX4laV {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"lQQhJfKl3pV\" class=\"style-lQQhJfKl3pV\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-lQQhJfKl3pV {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vv483rBJ_8e\" class=\"style-vv483rBJ_8e\">\r\n        \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vv483rBJ_8e {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 98px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 103px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Wd9i3TimhSi\" class=\"style-Wd9i3TimhSi\">\r\n        \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Wd9i3TimhSi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"auEOSw09B5C\" class=\"style-auEOSw09B5C\">\r\n        \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-auEOSw09B5C {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;cursor: text;box-sizing: border-box;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"yIZru6Mqgii\" class=\"style-yIZru6Mqgii\">\r\n        \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 100%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-yIZru6Mqgii {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;width: 33.3333%;padding-right: 8px;padding-left: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"hXqEisAdaep\" class=\"style-hXqEisAdaep\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;margin-top: 30px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-hXqEisAdaep {\r\n          min-height: 120px;display: flex;align-items: center;flex-direction: column;height: 100%;width: 100%;padding-right: 15px;padding-left: 15px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YbxNu_xV9IP\" class=\"style-YbxNu_xV9IP\">\r\n        \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: auto;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YbxNu_xV9IP {\r\n          border-left-style: solid;border-bottom-style: solid;border-right-style: solid;border-top-style: solid;height: 99px;max-width: 100%;object-position: center center;object-fit: cover;justify-content: flex-start;align-items: flex-start;display: inline-flex;width: 100px;position: relative;\r\n      }\r\n        }</style><style data-gp-styled-element=\"4CvKpgoC0Ve\" class=\"style-4CvKpgoC0Ve\">\r\n        \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-4CvKpgoC0Ve {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;text-align: center;font-weight: 700;font-size: 20px;font-family: Montserrat, sans-serif;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DjvN1jSRTyk\" class=\"style-DjvN1jSRTyk\">\r\n        \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DjvN1jSRTyk {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 12px;overflow-wrap: break-word;box-sizing: border-box;cursor: text;font-family: Montserrat, sans-serif;text-align: center;font-size: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YkyQY3OGW85\" class=\"style-YkyQY3OGW85\">\r\n        \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;overflow-wrap: break-word;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YkyQY3OGW85 {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 36px;overflow-wrap: break-word;font-weight: 700;text-align: center;font-family: Montserrat, sans-serif;box-sizing: border-box;cursor: text;\r\n      }\r\n        }</style><style data-gp-styled-element=\"zWVoP077c1r\" class=\"style-zWVoP077c1r\">\r\n        \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-zWVoP077c1r {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"rw7T3zCd_M\" class=\"style-rw7T3zCd_M\">\r\n        \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-rw7T3zCd_M {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QI7XhC2IyA\" class=\"style-QI7XhC2IyA\">\r\n        \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QI7XhC2IyA {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"WrgxvAnA8x\" class=\"style-WrgxvAnA8x\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 16px;padding-right: 16px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-WrgxvAnA8x[data-gp-component] {\r\n          padding-left: 0px;padding-right: 0px;padding-top: 80px;padding-bottom: 80px;z-index: auto !important;position: relative;min-height: 50px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"d1o1zVUpEds\" class=\"style-d1o1zVUpEds\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-d1o1zVUpEds[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"dX0zfUQ9Ag4\" class=\"style-dX0zfUQ9Ag4\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-dX0zfUQ9Ag4[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-position: center center;object-fit: cover;\r\n      }\r\n        }</style><style data-gp-styled-element=\"IE1xSvF80B\" class=\"style-IE1xSvF80B\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-IE1xSvF80B[data-gp-component] {\r\n          border-left-style: solid;border-right-style: solid;border-top-style: solid;border-bottom-style: solid;margin-bottom: 25px;width: 80px;height: auto;max-width: 100%;justify-content: flex-start;align-items: flex-start;display: inline-flex;object-fit: cover;object-position: center center;\r\n      }\r\n        }</style><style data-gp-styled-element=\"f5fbVFBcew\" class=\"style-f5fbVFBcew\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-f5fbVFBcew[data-gp-component] {\r\n          margin-top: 30px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"HiYrth4jje\" class=\"style-HiYrth4jje-overlay\">\r\n        \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          z-index: 0 !important;background-color: rgb(251, 251, 255);right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-HiYrth4jje.gp-component [data-section-overlay] {\r\n          background-color: rgba(3, 23, 48, 0.58);z-index: 0 !important;right: 0px;left: 0px;top: 0px;bottom: 0px;position: absolute;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AJjDGhhrNqR\" class=\"style-AJjDGhhrNqR\">\r\n        \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AJjDGhhrNqR {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xdt7vRb_0b\" class=\"style-xdt7vRb_0b\">\r\n        \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xdt7vRb_0b {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Bn3Dbn1NE5\" class=\"style-Bn3Dbn1NE5\">\r\n        \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 100%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Bn3Dbn1NE5 {\r\n          width: 33.3333%;padding-left: 32px;padding-right: 32px;flex-grow: 0;flex-shrink: 0;flex-basis: auto;\r\n      }\r\n        }</style><style data-gp-styled-element=\"9lJJcmktUZ\" class=\"style-9lJJcmktUZ\">\r\n        \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-9lJJcmktUZ {\r\n          margin-left: -32px;margin-right: -32px;flex-wrap: wrap;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"0i4_qAg2ph\" class=\"style-0i4_qAg2ph\">\r\n        \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-0i4_qAg2ph {\r\n          width: 100%;padding-left: 8px;padding-right: 8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"szB9RA3rL7\" class=\"style-szB9RA3rL7\">\r\n        \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-szB9RA3rL7 {\r\n          margin-left: -8px;margin-right: -8px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AZCEFoZOfx\" class=\"style-AZCEFoZOfx\">\r\n        \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AZCEFoZOfx {\r\n          width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"QELtjl1rVF\" class=\"style-QELtjl1rVF\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-QELtjl1rVF {\r\n          margin-left: auto;margin-right: auto;padding-left: 0px;padding-right: 0px;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6Ky9wjruI4\" class=\"style-6Ky9wjruI4\">\r\n        \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6Ky9wjruI4 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"gzk30H0XQ9\" class=\"style-gzk30H0XQ9\">\r\n        \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-gzk30H0XQ9 {\r\n          flex-basis: auto;flex-shrink: 0;flex-grow: 0;padding-right: 8px;padding-left: 8px;width: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XTbwB46Xg8\" class=\"style-XTbwB46Xg8\">\r\n        \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XTbwB46Xg8 {\r\n          flex-wrap: wrap;margin-right: -8px;margin-left: -8px;display: flex;\r\n      }\r\n        }</style><style data-gp-styled-element=\"36i5Hlc4v0\" class=\"style-36i5Hlc4v0\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;padding-left: 15px;padding-right: 15px;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-36i5Hlc4v0 {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"DVE3HtUVz0\" class=\"style-DVE3HtUVz0\">\r\n        \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-DVE3HtUVz0 {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"GD1Nl9JLAL\" class=\"style-GD1Nl9JLAL\">\r\n        \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-GD1Nl9JLAL {\r\n          display: flex;flex-grow: 1;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"18tdvMH4e3\" class=\"style-18tdvMH4e3\">\r\n        \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-18tdvMH4e3 {\r\n          background-color: transparent;cursor: pointer;text-decoration-line: none;text-decoration-thickness: initial;text-decoration-style: solid;text-decoration-color: initial;\r\n      }\r\n        }</style><style data-gp-styled-element=\"XNQPf1fPwh\" class=\"style-XNQPf1fPwh\">\r\n        \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-XNQPf1fPwh {\r\n          display: flex;align-items: center;position: static !important;\r\n      }\r\n        }</style><style data-gp-styled-element=\"07G_mM2u7\" class=\"style-07G_mM2u7\">\r\n        \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-07G_mM2u7 {\r\n          display: flex;margin-left: auto;margin-right: auto;justify-content: space-between;align-items: center;width: 100%;position: relative;max-width: 1200px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"RLsW0gVwDb\" class=\"style-RLsW0gVwDb\">\r\n        \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-RLsW0gVwDb {\r\n          z-index: 20 !important;position: relative;background-color: rgb(240, 242, 244);\r\n      }\r\n        }</style><section class=\"gp-component gp-component-id-RLsW0gVwDb\" data-gp-style=\"\" id=\"RLsW0gVwDb\" data-gp-block=\"true\" data-gp-component-id=\"RLsW0gVwDb\" data-gp-component=\"null\" data-gp-block-id=\"7610\" data-gp-block-data=\"{&quot;id&quot;:7610,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/5f3d3093d2522.png&quot;,&quot;category&quot;:&quot;Navigation bars&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5df98d83cf362c0e9cf8723d&quot;,&quot;filename&quot;:null}\" tabindex=\"0\" style=\"\"><a name=\"RLsW0gVwDb\" data-gp-block-anchor=\"\"></a>\r\n\r\n        <div data-gp-container=\"\" class=\"\" tabindex=\"0\">\r\n\r\n            <div data-gp-component=\"navbar_7\" data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component gp-component-id-bY4f1XycWz topdragger\" data-gp-component-id=\"bY4f1XycWz\" tabindex=\"0\"><div class=\"gp-component-id-07G_mM2u7\" data-gp-container=\"\" tabindex=\"0\">\r\n                    <div class=\"gp-component-id-XNQPf1fPwh\">\r\n                        <a href=\"#\" class=\"gp-component-id-18tdvMH4e3\">\r\n                            <img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653421114_solo-01.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center topdragger gp-component gp-component-id-SXlDep6d9C\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"SXlDep6d9C\" style=\"\" tabindex=\"0\">\r\n                        </a>\r\n                    </div>\r\n    \r\n                    <div class=\"gp-component-id-GD1Nl9JLAL\"></div>\r\n    \r\n                    <div class=\"gp-component-id-DVE3HtUVz0\">\r\n    \r\n                        \r\n    \r\n                        \r\n    \r\n                    </div>\r\n                <a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"qhr-HAmsC\" class=\"topdragger items-center gp-component gp-component-id-DAyyb0NBp\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"DAyyb0NBp\" style=\"\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-q_UHppK_9\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"q_UHppK_9\">Join Now</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><a href=\"https://soloswaps.com/login.php?s=noauth\" data-gp-button-id=\"iNKnlpX_9\" class=\"topdragger items-center gp-component gp-component-id-3Kf00XQBGt\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"3Kf00XQBGt\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-3_NGA00R6m\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"3_NGA00R6m\">Login Here</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></div>\r\n\r\n        </div>\r\n\r\n    </section><section class=\"gp-component gp-component-id-HiYrth4jje\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"HiYrth4jje\" data-gp-block-id=\"7611\" tabindex=\"0\" id=\"HiYrth4jje\" style=\"\"><a name=\"HiYrth4jje\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-36i5Hlc4v0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"36i5Hlc4v0\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-aVksu3Ybqh\" data-gp-component=\"layout-2-2\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"aVksu3Ybqh\" tabindex=\"0\">\r\n                <div class=\"gp-component-id-XTbwB46Xg8\">\r\n                    <div class=\"gp-component-id-gzk30H0XQ9\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-uGXL0Gbyb0\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"uGXL0Gbyb0\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0RnwyWH31 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"0RnwyWH31\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-EYBMhH0pM8\">Fast, Effective, Free</h1></div><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-dN8ut9UnD\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text\" data-gp-dnd=\"\" data-gp-component-id=\"dN8ut9UnD\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-1LEqaIAdqw\">Solo ADS!</h1></div><div class=\"gp-text-container gp-component gp-component-id-CibnsJLaD dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"CibnsJLaD\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-NfeuVlmvqT\">Grow your online business using our proven Traffic Network. Take advantage of our Premium FREE marketing tools to give you every advantage.</p></div></div>\r\n                    </div>\r\n                    <div class=\"gp-component-id-6Ky9wjruI4\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-6JFeuC2ws9R\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"6JFeuC2ws9R\" data-gp-component=\"container\" tabindex=\"0\"><div data-gp-dnd=\"\" data-gp-style=\"\" class=\"gp-component-id-CWaxQVasN gp-component dndbefore-bottom\" data-gp-classes=\"\" data-gp-component=\"video-all\" data-gp-component-id=\"CWaxQVasN\">\r\n        <div class=\"bg-black cursor-pointer\" style=\"padding-bottom: 56.25%;\">\r\n        <svg fill=\"rgba(32, 45, 60, 0.85)\" style=\"position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:15%;z-index:1;\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\r\n        <rect width=\"24\" height=\"24\" fill=\"none\"></rect>\r\n        <path d=\"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm-2 14.5v-9l6 4.5z\"></path></svg>\r\n        <img data-gp-img-placeholder=\"1O6yTMzUQ\" class=\"absolute h-full w-full object-cover\" src=\"https://images.groovetech.io/M3ja4jARec7pb1dZTl8btw67-YRdvJ6DtLJqfxXUD74/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU4MjQxODM4X1RobWIxLnBuZw.webp\">\r\n        \r\n    <script id=\"script-h9D-faIX6\">\r\n    function setvIframe(vIframe){\r\n      \r\n      var vIframeSrc = vIframe.getAttribute(\'src\') + \'&autoplay=1&mute=1\';\r\n  if (!window.inBuilder) {\r\n    vIframe.setAttribute(\'src\',vIframeSrc);\r\n  }\r\n    }\r\n      \r\n    if(!window.inBuilder) document.querySelector(\'[data-gp-img-placeholder=\"1O6yTMzUQ\"]\').parentNode.addEventListener(\"click\", function() {\r\n      document.querySelector(\'[data-gp-img-placeholder=\"1O6yTMzUQ\"]\').parentNode.innerHTML=\'<iframe src=\"https://player.vimeo.com/video/731364219?portrait=0&transparent=1\" data-gp-vembed-id=\"1O6yTMzUQ\" allow=\"autoplay; fullscreen\" allowfullscreen frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"></iframe>\';\r\n      setvIframe(document.querySelector(\'[data-gp-vembed-id=\"1O6yTMzUQ\"]\'));\r\n    });\r\n    ;\r\n    </script>\r\n    \r\n  \r\n        </div>\r\n      </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-ww47D26mJz\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12301095\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:12301095,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;//assets.grooveapps.com/pages-previews/62bdf8867004d.png&quot;,&quot;category&quot;:&quot;Personalized Templates&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null,&quot;height&quot;:358,&quot;global&quot;:0}\" data-gp-component-id=\"ww47D26mJz\" id=\"ww47D26mJz\" tabindex=\"0\" style=\"\"><a name=\"ww47D26mJz\" data-gp-block-anchor=\"\"></a><style data-gp-styled-element=\"eoANoMnyCy\">\r\n        \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eoANoMnyCy {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"04K8AGERBs\">\r\n        \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-04K8AGERBs {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-RYKkfiWJUh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"RYKkfiWJUh\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component-id-IVwF60zTeZ gp-component dndbefore-bottom\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-data=\"{&quot;id&quot;:48,&quot;name&quot;:&quot;layout-1&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyNyIgdmlld0JveD0iMCAwIDI5IDI3Ij4KICAgIDxwYXRoIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTI2IDBhMi4zOCAyLjM4IDAgMCAxIDIuMzggMi4zOFYyNEEyLjM4IDIuMzggMCAwIDEgMjYgMjYuMzhIMi4zOEEyLjM4IDIuMzggMCAwIDEgMCAyNFYyLjM4QTIuMzggMi4zOCAwIDAgMSAyLjM4IDBIMjZ6bTEuNjcgNS42NkguNzVWMjRjMCAuOS43MyAxLjYzIDEuNjMgMS42M0gyNkExLjYzIDEuNjMgMCAwIDAgMjcuNjcgMjRWNS42NnptLTQuMDkgMi40M2ExIDEgMCAwIDEgMSAxdjEzLjA2YTEgMSAwIDAgMS0xIDFINC44M2ExIDEgMCAwIDEtMS0xVjkuMDlhMSAxIDAgMCAxIDEtMWgxOC43NXpNMjYgLjc1SDIuMzhjLS45IDAtMS42My43My0xLjYzIDEuNjN2Mi41M2gyNi45MlYyLjM4QTEuNjMgMS42MyAwIDAgMCAyNiAuNzV6TTMuNTggMi4zYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0wzLjU4IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w2LjQ2IDIuM3ptMi44OCAwYS43NC43NCAwIDAgMSAuNzMyLjYzMmwuMDA4LjExOGEuNzUuNzUgMCAwIDEtLjY0Ljc0MmwtLjEuMDA4YS43Ni43NiAwIDAgMS0uNzUtLjc1Ljc1Ljc1IDAgMCAxIC42NDgtLjc0M0w5LjM0IDIuM3oiLz4KPC9zdmc+Cg==&quot;,&quot;title&quot;:&quot;1 Column&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"IVwF60zTeZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-VoF8EIDGf\">\r\n        <div class=\"gp-component-id-flstvjFUCs\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-gl9cxAwaIO gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"gl9cxAwaIO\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-IJK08VECM\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"IJK08VECM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-uqeByIC70w\">GET ALL THIS 100% <span style=\"color: rgb(251, 214, 0);\">FREE!!</span></h1></div><ul class=\"gp-component-id-kX91V0_dR gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"kX91V0_dR\" tabindex=\"0\"><ul class=\"gp-component-id-yW3HWfv6uh gp-component dndbefore-bottom\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"yW3HWfv6uh\" tabindex=\"0\" style=\"\"><ul class=\"gp-component gp-component-id-qVhSWuYVyr\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"qVhSWuYVyr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/NyF2trOxc1kli2y6XUaBk2j0J46YMjRUi5exmRLmNlg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjA4MzY4XzM2LU5vdGlmaWNhdGlvbi5wbmc.webp\" alt=\"\" class=\"gp-component gp-component-id-Nf_wtmCq2o\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Nf_wtmCq2o\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-wBONUKqVm6 dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"wBONUKqVm6\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eoANoMnyCy\">1,000 AD CREDITS</h2></div></ul><ul class=\"gp-component gp-component-id-VFm3GmgY2R\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"VFm3GmgY2R\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-Leqb4xP8b3\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"Leqb4xP8b3\" aria-hidden=\"true\" tabindex=\"0\"></span></ul><ul class=\"gp-component gp-component-id-Gcjc443D1Q\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"Gcjc443D1Q\" tabindex=\"0\"><img src=\"https://images.groovetech.io/vTMQkRRTqPWVHvFirgncAtE1DFpn41TjjxJEzGHDwpo/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2NzYwXzM1LU1lc3NhZ2UucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-gpaOSSTYJBm\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"gpaOSSTYJBm\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-l3yIQ6CVHq0\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"l3yIQ6CVHq0\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-eSHr0GjFMF6\">EMAIL &amp; SMS SENDER</h2></div></ul><ul class=\"gp-component gp-component-id-A4ayDdm1iX7\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"A4ayDdm1iX7\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-FQoyVMq30ru\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"FQoyVMq30ru\" aria-hidden=\"true\" tabindex=\"0\"></span></ul><ul class=\"gp-component gp-component-id-0AN508oW9rf\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"0AN508oW9rf\" tabindex=\"0\"><img src=\"https://images.groovetech.io/bO03g-U5sgytnMCNmjm2pO_NUSKgS0hI8Xyw8zsRdKM/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODAyXzM0LVZvdWNoZXIucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-WjrpIspQdjx\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"WjrpIspQdjx\" tabindex=\"0\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-zVUIhCaMN0d\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zVUIhCaMN0d\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-D0PMvn9OzWP\">PAGE BUILDER</h2></div></ul><ul class=\"gp-component gp-component-id-M3A5Z9KLTKi\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"M3A5Z9KLTKi\" tabindex=\"0\"><span class=\"fas fa-plus-square dndbefore-bottom gp-component gp-component-id-LWT9gxVJXbU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"fa-icon\" data-gp-component-id=\"LWT9gxVJXbU\" aria-hidden=\"true\" tabindex=\"0\" style=\"\"></span></ul><ul class=\"gp-component gp-component-id-12jtMtHeg9_\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"12jtMtHeg9_\" tabindex=\"0\"><img src=\"https://images.groovetech.io/SYCBkqwZYbmNu-YE4YPljBO0onhh8WBeopCR3qYIC7Y/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU2NjE2ODMwXzAyLVJhdGUucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-RVfYN8k3yCi dndbefore-bottom\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"RVfYN8k3yCi\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component dndbefore-bottom gp-component-id-qt3o2nLbXte\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"qt3o2nLbXte\" style=\"\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-jhdaAJMa_Vb\">LEAD &amp; TASK CRM</h2></div></ul></ul><div class=\"gp-text-container gp-component gp-component-id-Oaku6Kh_7t dndbefore-bottom\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"Oaku6Kh_7t\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-04K8AGERBs\"><span style=\"color: rgb(251, 214, 0);\">PLUS...</span> Link Tracker System, With Rotator</h1></div></ul></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n    </section><section class=\"gp-component gp-component-id-WrgxvAnA8x\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"WrgxvAnA8x\" tabindex=\"0\" data-gp-block-id=\"14738\" id=\"WrgxvAnA8x\" style=\"\"><a name=\"WrgxvAnA8x\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-QELtjl1rVF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"QELtjl1rVF\" data-gp-component=\"container\" tabindex=\"0\">\r\n            <div class=\"gp-component gp-component-id-AZCEFoZOfx\" data-gp-component=\"layout-1\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-id=\"AZCEFoZOfx\" tabindex=\"0\" style=\"\">\r\n                <div class=\"gp-component-id-szB9RA3rL7\">\r\n                    <div class=\"gp-component-id-0i4_qAg2ph\" data-gp-grid-col=\"\">\r\n                        <div class=\"gp-component gp-component-id-T3qGpbgfut\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"T3qGpbgfut\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-TQTvJE5iCN\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_1\" data-gp-dnd=\"\" data-gp-component-id=\"TQTvJE5iCN\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-qZP4B9Cyob\">GENERATING QUALITY TRAFFIC THE EASY WAY</h2></div><div class=\"gp-component gp-component-id-f5fbVFBcew\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"f5fbVFBcew\" tabindex=\"0\" style=\"\">\r\n      <div class=\"gp-component-id-9lJJcmktUZ\">\r\n        <div class=\"gp-component-id-Bn3Dbn1NE5\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-D1c1juarRF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"D1c1juarRF\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414579_startup-rocket-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-IE1xSvF80B\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"IE1xSvF80B\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-DYADQl665\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"DYADQl665\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Bl6rnwi0n6\">JOIN FOR FREE</p></div><div class=\"gp-text-container gp-component gp-component-id-dQ4homBBa\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"dQ4homBBa\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Mzn_rU4G7c\">Sign up and create your free traffic membership. Login and your ready to receive free traffic.</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-xdt7vRb_0b\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hEVuhRoepm\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hEVuhRoepm\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653414827_link-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-dX0zfUQ9Ag4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dX0zfUQ9Ag4\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-0IFmsubf6\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"0IFmsubf6\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gin05LLQgx\">ADD YOUR PRODUCT URL</p></div><div class=\"gp-text-container gp-component gp-component-id-iAKo2V80U\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"iAKo2V80U\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-0p1oioIC_S\">Tell our traffic system where you want all your new traffic sent by simply entering any page URL</p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-AJjDGhhrNqR\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-YxShJzzqi1_\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YxShJzzqi1_\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653415158_users-user-pngrepo-com.png\" alt=\"\" class=\"inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-d1o1zVUpEds\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"d1o1zVUpEds\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8VxYcBMWQ\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"8VxYcBMWQ\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-F2ANJ7ZGDs\">ENJOY NEW VISITORS TO OFFER</p></div><div class=\"gp-text-container gp-component gp-component-id-NplPYqSl2\" data-gp-style=\"\" data-gp-text=\"\" data-gp-component=\"text_6\" data-gp-dnd=\"\" data-gp-component-id=\"NplPYqSl2\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-RX84Yvr8oR\">Sit back and capitalize on all the new visitors that are clicking our your links and visiting your pages</p></div></div>\r\n        </div>\r\n      </div>\r\n    </div></div>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n        </div>\r\n    </section><section class=\"gp-component gp-component-id-SvU2lGGwS\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"12303359\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:12303359,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;//assets.grooveapps.com/pages-previews/62d1eb4c12cac.png&quot;,&quot;category&quot;:&quot;Personalized Templates&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null,&quot;height&quot;:769,&quot;global&quot;:0}\" data-gp-component-id=\"SvU2lGGwS\" id=\"SvU2lGGwS\" tabindex=\"0\" style=\"\"><a name=\"SvU2lGGwS\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-Slmvcvuiq6p\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Slmvcvuiq6p\" tabindex=\"0\" data-gp-component=\"container\"><div class=\"gp-component gp-component-id-cUwOisgmfWY\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"cUwOisgmfWY\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-hb7NHX9gcRa\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"hb7NHX9gcRa\" tabindex=\"0\"><div class=\"gp-component gp-component-id-YG8898hf0R6\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"YG8898hf0R6\" tabindex=\"0\"><img src=\"https://images.groovetech.io/jZ23q2xM3tGFyzdakxZ1YyGdCDlAhlESXoKCJ5fSxqE/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU3OTI3ODc1X0dPTURNaWNvbm9zY2hhZmEzLnBuZw.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-ZUrCwc6YHfB\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"ZUrCwc6YHfB\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-B2y1thTLg05\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"B2y1thTLg05\" tabindex=\"0\"><img src=\"https://images.groovetech.io/YIGbKeuWkpM2oFj9FaCsULt5KaDHEAKUDRR5i7Vq3pY/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjU3OTI3OTI4X0RFU0NNRE1pY29ub3NjaGFmYTMucG5n.webp\" alt=\"\" class=\"dndbefore-bottom inline-flex items-start justify-start object-cover object-center gp-component gp-component-id-4W8Pqferbs7\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"4W8Pqferbs7\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-QOGeXZZHNSu\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"QOGeXZZHNSu\" tabindex=\"0\"><div class=\"gp-component gp-component-id-TREtKfV38T2 dndbefore-bottom\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"TREtKfV38T2\" tabindex=\"0\"><ul class=\"gp-component gp-component-id-itLC_h3mnyn\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"itLC_h3mnyn\" tabindex=\"0\"><div class=\"gp-component gp-component-id-7YVMx3V0m\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"7YVMx3V0m\" tabindex=\"0\"><div class=\"gp-component gp-component-id-DYFqMPa0Bj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"DYFqMPa0Bj\" tabindex=\"0\"><img src=\"https://images.groovetech.io/e9TLQQ3wr5FhqQ8ZG3VTFKath3qiCibtoAqscKkFW4M/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NjQ5X2tpc3NjbGlwYXJ0LWZyZWUtY2xpcC1hcnQtZW50ZXItdG8td2luLWNsaXBhcnQtbG9nby1jbGlwLWFydC0wOWNmODc0OGI1NWUxMDM3LnBuZw.webp\" alt=\"\" class=\"gp-component gp-component-id-Mnl7T0ReQ4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"Mnl7T0ReQ4\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-y_uio9Sbn7\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"y_uio9Sbn7\" tabindex=\"0\"><img src=\"https://images.groovetech.io/qhrAgFaGUbBhqazjuf92gTC1s7rTbPHK5h6MAo7D9Gw/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NjI2X2ltYWdlczguanBn.webp\" alt=\"\" class=\"gp-component gp-component-id-zckvkQ2aDE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"zckvkQ2aDE\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-C73ICmkwHK\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"C73ICmkwHK\" tabindex=\"0\"><img src=\"https://images.groovetech.io/LDTSYD8Fp2IzoWMF_dTeZK_fA3onbZNQL_dw17Rbf1k/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5NzU0X2ltYWdlczkucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-_RRMD2PDDk\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"_RRMD2PDDk\" tabindex=\"0\"></div></div><div class=\"gp-component gp-component-id-9VQsoL5ryR\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"9VQsoL5ryR\" tabindex=\"0\"><div class=\"gp-component gp-component-id-VdUz9YHjxr\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"VdUz9YHjxr\" tabindex=\"0\"><img src=\"https://images.groovetech.io/dnfZbGZi5cVNOX8URYiINZ9YcS0YbQ6aH7NU-m16WcQ/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5ODEzX2ltYWdlczExLmpwZw.webp\" alt=\"\" class=\"gp-component gp-component-id-f0Ck0UiXu5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"f0Ck0UiXu5\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-2z28_6Nnyn\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"2z28_6Nnyn\" tabindex=\"0\"><img src=\"https://images.groovetech.io/ZGqdqa3HLQU7JQ_IXaJMhWxsHpxfomwScWLVvb9QAgc/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5ODg2XzM2MEYyNjg2OTM0MTRvb0laTWYzZ3RrT3k2Q2N2eDBjRHoxU1plZnBSNnBObC5qcGc.webp\" alt=\"\" class=\"gp-component gp-component-id-4tdLR5hlk5\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"4tdLR5hlk5\" tabindex=\"0\"></div><div class=\"gp-component gp-component-id-u7Z6yTqx9W\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"u7Z6yTqx9W\" tabindex=\"0\"><img src=\"https://images.groovetech.io/AoELaGnF0SF7CCtM2wOAbAQjEkI7z2S81OkpFN8H4eg/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzMjc5OTQ3X3VubmFtZWQucG5n.webp\" alt=\"\" class=\"gp-component gp-component-id-JNy4h2WJI4\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"JNy4h2WJI4\" tabindex=\"0\"></div></div></ul></div></div></ul></div></div>\r\n    </section><section class=\"gp-component gp-component-id-rDPeNtfic0w\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block=\"true\" data-gp-component-id=\"rDPeNtfic0w\" tabindex=\"0\" data-gp-block-id=\"12295330\" data-gp-block-data=\"{&quot;id&quot;:12295330,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/pages-previews/628d015e95545.png&quot;,&quot;category&quot;:&quot;No Category&quot;,&quot;tag&quot;:&quot;user&quot;,&quot;user_id&quot;:&quot;5f4d20c97584a2006d495f30&quot;,&quot;filename&quot;:null}\" id=\"rDPeNtfic0w\" style=\"\"><a name=\"rDPeNtfic0w\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-F6tXkq0J1Mj\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"F6tXkq0J1Mj\" data-gp-component=\"container\" tabindex=\"0\"><div class=\"gp-component gp-component-id-egjXt0e20Fh\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-id=\"egjXt0e20Fh\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-nchBlmn63zC\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"nchBlmn63zC\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-08Vyj09of_R\">HERE\'S WHAT YOU CAN WIN</h1></div><div class=\"gp-component gp-component-id-h0pu32Kk5qZ\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"h0pu32Kk5qZ\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-_VfVMJ5GI2\">\r\n        <div class=\"gp-component-id-7bhSxgp7wb\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component-id-Ml9qBTlgsaR gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ml9qBTlgsaR\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284146_WEBDESIGN.png\" alt=\"\" class=\"gp-component gp-component-id-kSbaBvrQsBO\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"kSbaBvrQsBO\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UMdiAO61JGU\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"UMdiAO61JGU\" data-gp-component=\"null\" tabindex=\"0\"><h2 class=\"gp-component-id-nOHihAeTssA\">Custom Designed Website</h2></div><div class=\"gp-text-container gp-component gp-component-id-4X48qaHiWof dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"4X48qaHiWof\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-ctLGRUW16Qv\">Win one of 10 premium custom designed websites.&nbsp;Includes Domain, Theme, Plugins,&nbsp;Development, Setup, Integrations and Hosting</p><p class=\"gp-component-id-fSZi9dKnl\"><strong><em>(retail value $2,500)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-h0UJAo6K0M\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-If4n0QzLf5E\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"If4n0QzLf5E\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284711_MobileApplicationDesign.png\" alt=\"\" class=\"gp-component gp-component-id-bM4s_VFLsnE\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"bM4s_VFLsnE\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-gpvIiwe8aGv dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"gpvIiwe8aGv\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PFT4yQl6Xr7\">Mobile App</h2></div><div class=\"gp-text-container gp-component gp-component-id-etTPHSE3zY4 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"etTPHSE3zY4\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-J0UvRwHe3Za\">Win one of 10 custom Mobile Apps.&nbsp;We will build you a native android or iOS app.</p><p class=\"gp-component-id-49qNyAHC0\"><strong><em>(retail value $2,997)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-FSsFNWVwKF\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-Ud9dkZJ7EE5\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"Ud9dkZJ7EE5\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653284636_1.png\" alt=\"\" class=\"gp-component gp-component-id-dLkfjsPHMWb\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"dLkfjsPHMWb\" tabindex=\"0\" style=\"\"><div class=\"gp-text-container gp-component gp-component-id-s_7vNDjY1JM\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"s_7vNDjY1JM\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-gmP9DoptSYA\">SMS Messing Software</h2></div><div class=\"gp-text-container gp-component gp-component-id-I95Zswo41na dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"I95Zswo41na\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-xwEuF8kwoq6\">Win one of 50 SMS Marketing Software and send unlimited SMS messages on us</p><p class=\"gp-component-id-FMXi5Mdjo\"><strong><em>(retail value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-mz8QyP_KVAj\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"mz8QyP_KVAj\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-3FzfCpX_xa\">\r\n        <div class=\"gp-component-id-aYCpxkVxIf\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-osw6II6XByk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"osw6II6XByk\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285396_AIDA.png\" alt=\"\" class=\"gp-component gp-component-id-W63XOhCQoZG\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"W63XOhCQoZG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ByDzrrBh1yo\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ByDzrrBh1yo\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-a5qjUC7Wp9z\">Funnel Builder</h2></div><div class=\"gp-text-container gp-component gp-component-id-m19jYJQj04_ dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"m19jYJQj04_\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-xT9JDhgnvNs\">Win one of 50 cutting edge Funnel Builders.&nbsp;Create and build unlimited funnels for unlimited products.</p><p class=\"gp-component-id-dn54o_9O0\"><strong><em>(Retail Value $97 per month)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-StmjzJFIjB\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-UpipIN6pIa2\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"UpipIN6pIa2\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653285799_1565-Vault.png\" alt=\"\" class=\"gp-component gp-component-id-mUtRmiETVPe\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"mUtRmiETVPe\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ToRi0R0PUV5\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"ToRi0R0PUV5\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-LrJ5picDtu_\">Unlock The Rewards Vault</h2></div><div class=\"gp-text-container gp-component gp-component-id-LCxfsPmmBNS dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"LCxfsPmmBNS\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-9gp5x1peAbq\">Gain access to the Reward Vault and claim 50 best selling Marketing Courses and Marketing Automation Software Products.</p><p class=\"gp-component-id-EWbnps1rS\"><strong><em>(Retail Value $1,942)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-XNSs7bbRzn\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-CeJIkT6pRJH\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"CeJIkT6pRJH\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286342_INTERFACE.png\" alt=\"\" class=\"gp-component gp-component-id-O08UV0ZAxx9\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"O08UV0ZAxx9\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-rlHvIOJNkis\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"rlHvIOJNkis\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Cd3XSUUHAF_\">Social Ads</h2></div><div class=\"gp-text-container gp-component gp-component-id-V1tgZF72AzT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"V1tgZF72AzT\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-Gg95jM9D0pT\">Win one of 20 Social PPC Ads Packages.&nbsp;Each winner will receive 1,000 Social Media clicks to any offer they choose.</p><p class=\"gp-component-id-RyPeZQeWt\"><strong><em>(Retail Value $650)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-component gp-component-id-c4Qg20fpP3t\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-3-3-3\" data-gp-component-id=\"c4Qg20fpP3t\" tabindex=\"0\">\r\n      <div class=\"gp-component-id-kjWBBdN0mF\">\r\n        <div class=\"gp-component-id-WJTPojaUis\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-DLGADn9lo1i\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"DLGADn9lo1i\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653286628_SALESFORCASTING.png\" alt=\"\" class=\"gp-component gp-component-id-iXz4bmPtCUj\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"iXz4bmPtCUj\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JQv84H3q_By\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"JQv84H3q_By\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h2 class=\"gp-component-id-8t0OWoenBo7\">Whitelabel Reseller Product</h2></div><div class=\"gp-text-container gp-component gp-component-id-BsVCnceAeuT dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"BsVCnceAeuT\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p class=\"gp-component-id-P37i70_Us6O\">Win 1 of 50 White label Marketing Products.&nbsp;Full reseller funnels includes high demand marketing product, all sale pages, thank you pages and hosting.&nbsp;</p><p class=\"gp-component-id-k4R7SI080\"><strong><em>(Retail Price $497)&nbsp;</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-r4FmPX4laV\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-lQQhJfKl3pV\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"lQQhJfKl3pV\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287181_RobotAvatars13.png\" alt=\"\" class=\"gp-component gp-component-id-vv483rBJ_8e\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"vv483rBJ_8e\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-uNtwZ89Ba0c\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"uNtwZ89Ba0c\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-Wd9i3TimhSi\">Lead Gen Bot</h2></div><div class=\"gp-text-container gp-component gp-component-id-TUkOVkQIaYh dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"TUkOVkQIaYh\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-auEOSw09B5C\">Win 1 of 50 custom designed lead generation chat bots.&nbsp;Up your marketing game with one of our lead and sales bots.</p><p class=\"gp-component-id-3YddfZaMV\"><strong><em>(Retail Value $1,497)</em></strong></p></div></div>\r\n        </div>\r\n        <div class=\"gp-component-id-yIZru6Mqgii\" data-gp-grid-col=\"\">\r\n          <div class=\"gp-component gp-component-id-hXqEisAdaep\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"hXqEisAdaep\" data-gp-component=\"container\" tabindex=\"0\"><img src=\"https://assets.grooveapps.com/images/5f4d20c97584a2006d495f30/1653287586_4-video.png\" alt=\"\" class=\"gp-component gp-component-id-YbxNu_xV9IP\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"image\" data-gp-component-id=\"YbxNu_xV9IP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-NeOmVbJS6tO\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"NeOmVbJS6tO\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-4CvKpgoC0Ve\">Push Notification Campaign</h2></div><div class=\"gp-text-container gp-component gp-component-id-OvSutH108V1 dndbefore-bottom\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"OvSutH108V1\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-DjvN1jSRTyk\">Win 1 of 50 push notification campaign packages.&nbsp;Includes software with unlimited subscriber and messaging.</p><p class=\"gp-component-id-5PSb1qKWM\"><strong>(Retail Value $49 per month)</strong></p></div></div>\r\n        </div>\r\n      </div>\r\n    </div><div class=\"gp-text-container gp-component gp-component-id-qwIoaJb9s4m\" data-gp-style=\"\" data-gp-text=\"\" data-gp-dnd=\"\" data-gp-component-id=\"qwIoaJb9s4m\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h1 class=\"gp-component-id-YkyQY3OGW85\">And many more!</h1></div><a href=\"https://soloswaps.com/signup.php\" data-gp-button-id=\"binaOcms7\" class=\"items-center gp-component gp-component-id-TZZtjAfk7DU\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"TZZtjAfk7DU\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-dKe2a_hN679\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"dKe2a_hN679\">Get Started For FREE</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a><div class=\"gp-component-id-zWVoP077c1r gp-component\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"layout-1\" data-gp-component-id=\"zWVoP077c1r\" tabindex=\"0\"><div class=\"gp-component-id-rw7T3zCd_M\">\r\n        <div class=\"gp-component-id-QI7XhC2IyA\" data-gp-grid-col=\"\">\r\n          \r\n        </div>\r\n      </div></div></div></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(74,'2022-08-18 11:09:27','faqs','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <meta name=\"robots\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n    <link href=\"https://app.groove.cm/groovepages/css/inpage_published.css\" rel=\"stylesheet\">\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n     </style>\r\n     <style id=\"custom-css\">\r\n       *{} html {\r\n  font-family: sans-serif;\r\n  text-size-adjust: 100%;\r\n  line-height: 1.25;\r\n  box-sizing: border-box;\r\n}\r\n\r\nbody {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  border-image-repeat: initial;\r\n  border-image-outset: initial;\r\n  border-image-width: initial;\r\n  border-image-slice: initial;\r\n  border-image-source: initial;\r\n  border-left-color: rgb(173, 183, 194);\r\n  border-bottom-color: rgb(173, 183, 194);\r\n  border-right-color: rgb(173, 183, 194);\r\n  border-top-color: rgb(173, 183, 194);\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  border-left-width: 0px;\r\n  border-bottom-width: 0px;\r\n  border-right-width: 0px;\r\n  border-top-width: 0px;\r\n  box-sizing: inherit;\r\n}\r\n\r\nbody * {\r\n  border-image-repeat: initial;\r\n  border-image-outset: initial;\r\n  border-image-width: initial;\r\n  border-image-slice: initial;\r\n  border-image-source: initial;\r\n  border-left-color: rgb(173, 183, 194);\r\n  border-bottom-color: rgb(173, 183, 194);\r\n  border-right-color: rgb(173, 183, 194);\r\n  border-top-color: rgb(173, 183, 194);\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  border-left-width: 0px;\r\n  border-bottom-width: 0px;\r\n  border-right-width: 0px;\r\n  border-top-width: 0px;\r\n  box-sizing: inherit;\r\n}\r\n\r\nmain {\r\n  display: block;\r\n}\r\n\r\nh1 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  font-size: 2em;\r\n}\r\n\r\nhr {\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n  height: 0px;\r\n  box-sizing: content-box;\r\n}\r\n\r\npre {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\na {\r\n  background-color: transparent;\r\n  text-decoration-color: initial;\r\n  text-decoration-style: initial;\r\n  text-decoration-line: none;\r\n  cursor: pointer;\r\n}\r\n\r\nb {\r\n  font-weight: bolder;\r\n}\r\n\r\nstrong {\r\n  font-weight: bolder;\r\n}\r\n\r\ncode {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nkbd {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nsamp {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nsmall {\r\n  font-size: 80%;\r\n}\r\n\r\nsub {\r\n  vertical-align: baseline;\r\n  position: relative;\r\n  line-height: 0;\r\n  font-size: 75%;\r\n  bottom: -0.25em;\r\n}\r\n\r\nsup {\r\n  vertical-align: baseline;\r\n  position: relative;\r\n  line-height: 0;\r\n  font-size: 75%;\r\n  top: -0.5em;\r\n}\r\n\r\nimg {\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  height: auto;\r\n  max-width: 100%;\r\n}\r\n\r\nbutton {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n  text-transform: none;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  background-color: transparent;\r\n  background-clip: initial;\r\n  background-origin: initial;\r\n  background-attachment: initial;\r\n  background-repeat-y: initial;\r\n  background-repeat-x: initial;\r\n  background-size: initial;\r\n  background-position-y: initial;\r\n  background-position-x: initial;\r\n  background-image: initial;\r\n  cursor: pointer;\r\n}\r\n\r\ninput {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n}\r\n\r\noptgroup {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n}\r\n\r\nselect {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  text-transform: none;\r\n}\r\n\r\ntextarea {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: auto;\r\n  overflow-x: auto;\r\n  resize: vertical;\r\n}\r\n\r\nfieldset {\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nlegend {\r\n  white-space: normal;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  max-width: 100%;\r\n  display: table;\r\n  color: inherit;\r\n  box-sizing: border-box;\r\n}\r\n\r\nprogress {\r\n  vertical-align: baseline;\r\n}\r\n\r\ndetails {\r\n  display: block;\r\n}\r\n\r\nsummary {\r\n  display: list-item;\r\n}\r\n\r\ntemplate {\r\n  display: none;\r\n}\r\n\r\nblockquote {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\ndd {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\ndl {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nfigure {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh2 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh3 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh4 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh5 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh6 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\np {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nol {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  list-style-position: inside;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n}\r\n\r\nul {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  list-style-type: none;\r\n  list-style-image: initial;\r\n  list-style-position: initial;\r\n}\r\n\r\ntable {\r\n  border-collapse: collapse;\r\n}\r\n/*endBaseStyles*/\r\n/*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-faqs/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62fe7a1ceb7e6f1e322e29d2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"TuSXI7Y2G\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&amp;rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62fe7a1ceb7e6f1e322e29d2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJUdVNYSTdZMkciOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62fe7a1ceb7e6f1e322e29d2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"TuSXI7Y2G\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\">\r\n        <style data-gp-styled-element=\"true\"></style>\r\n        <style data-gp-styled-element=\"zA7G9Hp3h\" class=\"style-zA7G9Hp3h\"> @media (max-width: 639px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } }</style><style data-gp-styled-element=\"YPEulP8JM3\" class=\"style-YPEulP8JM3\"> @media (max-width: 639px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 340px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 1000px;max-width: 1200px; } }</style>\r\n        \r\n        \r\n        \r\n        \r\n        \r\n        \r\n        <style data-gp-styled-element=\"NetWXN0xfc\" class=\"style-NetWXN0xfc-overlay\"> .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } @media (max-width: 639px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (min-width: 1200px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } }</style>\r\n        \r\n        <style data-gp-styled-element=\"RhUuNNcB9\" class=\"style-RhUuNNcB9\"> @media (max-width: 639px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } }</style><style data-gp-styled-element=\"5rkV3Gx5jX\" class=\"style-5rkV3Gx5jX\"> @media (max-width: 639px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (min-width: 1200px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } }</style><style data-gp-styled-element=\"KYESmORVI\" class=\"style-KYESmORVI\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } }</style><style data-gp-styled-element=\"qpy30C0wF\" class=\"style-qpy30C0wF\"> @media (max-width: 639px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style>\r\n        <style data-gp-styled-element=\"c4vRp_fwV8\" class=\"style-c4vRp_fwV8\"> @media (max-width: 639px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"5TCePZSQN\" class=\"style-5TCePZSQN\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"wQ0tZVPlG\" class=\"style-wQ0tZVPlG\"> @media (max-width: 639px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"1Bk7ME6UQZ\" class=\"style-1Bk7ME6UQZ\"> @media (max-width: 639px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (min-width: 1200px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } }</style><style data-gp-styled-element=\"m92WplxFp\" class=\"style-m92WplxFp\"> @media (max-width: 639px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"QRE607maOK\" class=\"style-QRE607maOK\"> @media (max-width: 639px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"NK0LxWTgk\" class=\"style-NK0LxWTgk\"> @media (max-width: 639px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"AYzlFCyQC\" class=\"style-AYzlFCyQC\"> @media (max-width: 639px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"GGaAgqGOG\" class=\"style-GGaAgqGOG\"> @media (max-width: 639px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"U8g_CY3eC\" class=\"style-U8g_CY3eC\"> @media (max-width: 639px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"lRl3Wpap2\" class=\"style-lRl3Wpap2\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }</style><style data-gp-styled-element=\"lRl3Wpap2\"> .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } @media (max-width: 639px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (min-width: 1200px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } }</style><style data-gp-styled-element=\"TctE0nx3C\" class=\"style-TctE0nx3C\"> @media (max-width: 639px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (min-width: 1200px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } }</style>\r\n        <style data-gp-styled-element=\"NetWXN0xfc\" class=\"style-NetWXN0xfc\"> .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } @media (max-width: 639px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (min-width: 1200px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } }</style>\r\n        \r\n      <section class=\"gp-component-id-NetWXN0xfc gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{&quot;id&quot;:79395,&quot;type&quot;:&quot;block&quot;,&quot;thumbnail&quot;:&quot;https://assets.grooveapps.com/elements-previews/thumbs/empty.png&quot;,&quot;category&quot;:&quot;Empty blocks&quot;,&quot;tag&quot;:&quot;designed&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;filename&quot;:&quot;_empty_0&quot;,&quot;height&quot;:0,&quot;global&quot;:1}\" data-gp-component-id=\"NetWXN0xfc\" data-gp-block-type=\"block\" id=\"NetWXN0xfc\" tabindex=\"0\" style=\"\"><a name=\"NetWXN0xfc\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-YPEulP8JM3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YPEulP8JM3\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-TctE0nx3C gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:56,&quot;name&quot;:&quot;list-container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Lists&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;List Container&quot;,&quot;index&quot;:1,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"TctE0nx3C\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-U8g_CY3eC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"U8g_CY3eC\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UoUMGqaApZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UoUMGqaApZ\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-lRl3Wpap2\" data-id=\"quill-node-0\">Solo Swaps FAQs</h1></div></div><div class=\"gp-component gp-component-id-NK0LxWTgk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"NK0LxWTgk\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-zxL0lDbvQt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zxL0lDbvQt\" data-gp-component=\"null\" tabindex=\"0\"><p class=\"gp-component-id-QRE607maOK\" data-id=\"quill-node-0\">What is a viral mailer?</p></div></div><div class=\"gp-component gp-component-id-m92WplxFp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"m92WplxFp\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JyUBYMttFB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JyUBYMttFB\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p data-id=\"quill-node-0\" class=\"gp-component-id-1Bk7ME6UQZ\">Viral Mailers are online services where members can e-mail each other.</p><p class=\"gp-component-id-1Bk7ME6UQZ\" data-id=\"quill-node-1\">You can send an e-mail promoting your web site in return for viewing the e-mails sent by the other members.</p></div></div><div class=\"gp-component gp-component-id-wQ0tZVPlG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"wQ0tZVPlG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-m6rJ3Eu34P\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"m6rJ3Eu34P\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-c4vRp_fwV8\" data-id=\"quill-node-0\">How Do I Receive Credits?</p></div></div><div class=\"gp-component gp-component-id-qpy30C0wF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"qpy30C0wF\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-WkoceXjwiU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"WkoceXjwiU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p data-id=\"quill-node-0\" class=\"gp-component-id-5rkV3Gx5jX\">Look for e-mails from other members.</p><p data-id=\"quill-node-1\" class=\"gp-component-id-5rkV3Gx5jX\">At the bottom of each e-mail, there should be a link you can click to view their site and earn credit.</p><p class=\"gp-component-id-5rkV3Gx5jX\" data-id=\"quill-node-2\">For each credit you earn, you will be able to mail another member of instantlist.</p></div></div><div class=\"gp-component-id-GGaAgqGOG gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"GGaAgqGOG\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8cKOvwIwqQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"8cKOvwIwqQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5TCePZSQN\" data-id=\"quill-node-0\">My Question Isn\'t Listed On This Page...</p></div></div><div class=\"gp-component-id-AYzlFCyQC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"AYzlFCyQC\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mfz3sICuSL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mfz3sICuSL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-KYESmORVI\" data-id=\"quill-node-0\">Please click the button below to contact us.</p></div></div><div class=\"gp-component-id-RhUuNNcB9 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{&quot;id&quot;:17,&quot;name&quot;:&quot;container&quot;,&quot;type&quot;:&quot;component&quot;,&quot;user_id&quot;:&quot;global&quot;,&quot;data&quot;:{&quot;section&quot;:&quot;Layout&quot;,&quot;icon&quot;:&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+&quot;,&quot;title&quot;:&quot;Container&quot;,&quot;index&quot;:0,&quot;hasMenu&quot;:true}}\" data-gp-component-id=\"RhUuNNcB9\" tabindex=\"0\"><a target=\"_blank\" href=\"https://5-dollar-friday.tawk.help/\" data-gp-button-id=\"nstLM2H2eX\" class=\"items-center gp-component gp-component-id-zA7G9Hp3h\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zA7G9Hp3h\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-sf8QWnaXu\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"sf8QWnaXu\">CONTACT US</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></ul></div>\r\n    </section>\r\n      \r\n      </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(75,'2022-10-08 07:59:02','Homepage Body','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n     </style>\r\n     <style id=\"custom-css\">\r\n      \r\n      *{}\r\n      /*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/login/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62e91cb21a271b54d91cb522\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"PsSXMMc7H\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62e91cb21a271b54d91cb522\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJQc1NYTU1jN0giOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62e91cb21a271b54d91cb522\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"PsSXMMc7H\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\"><style data-gp-styled-element=\"true\"></style><style data-gp-styled-element=\"eN5mGH9VP\" class=\"style-eN5mGH9VP\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-eN5mGH9VP[data-gp-component] {\r\n          border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-bottom: 20px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"vQ7eQdDJz\" class=\"style-vQ7eQdDJz\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-vQ7eQdDJz[data-gp-component] {\r\n          border-left-width: 2px;border-right-width: 2px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);background-color: rgb(255, 255, 255);padding-top: 20px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"Z8RijvnQJ\" class=\"style-Z8RijvnQJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-Z8RijvnQJ[data-gp-component] {\r\n          color: rgb(255, 255, 255);border-top-left-radius: 20px;border-top-right-radius: 20px;background-color: rgba(0, 118, 180, 1);margin-top: 100px;padding-top: 15px;padding-bottom: 15px;width: 100%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"W3F_VLruj0\" class=\"style-gp-body\">\r\n        @media (max-width: 639px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        body {\r\n          background-image: url(\"https://images.groovetech.io/_PTS0yA9W23YXGSRVsPnScYIInfa4Z8BLBS8g08wOZU/rs:fit:0:0:0/g:no:0:0/c:0:0/aHR0cHM6Ly9hc3NldHMuZ3Jvb3ZlYXBwcy5jb20vaW1hZ2VzLzVmNGQyMGM5NzU4NGEyMDA2ZDQ5NWYzMC8xNjUzNDIxNjE4X2ZrZTE2LmpwZw.webp\");background-size: cover;background-position-x: 50%;background-position-y: 50%;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YK6e_A_8hu\" class=\"style-YK6e_A_8hu-overlay\">\r\n        \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu.gp-component > [data-section-overlay] {\r\n          position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xygdjUPmZ\" class=\"style-xygdjUPmZ\">\r\n        \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xygdjUPmZ {\r\n          width: 100%;padding-left: 16px;padding-right: 16px;padding-top: 16px;padding-bottom: 16px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PxljAz0oi\" class=\"style-PxljAz0oi\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-PxljAz0oi {\r\n          font-size: 16px !important;color: rgba(4, 81, 174, 1);text-align: center;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"PxljAz0oi\">\r\n        \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-PxljAz0oi {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"xvcTfaKq7\" class=\"style-xvcTfaKq7\">\r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-xvcTfaKq7[data-gp-component] {\r\n          margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 16px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 20px;list-style-position: initial;list-style-image: initial;list-style-type: none;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuoTiuOJ\" class=\"style-6DuoTiuOJ\">\r\n        @media (max-width: 639px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        [data-gp-text] .gp-component-id-6DuoTiuOJ {\r\n          font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;\r\n      }\r\n        }</style><style data-gp-styled-element=\"6DuoTiuOJ\">\r\n        \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-6DuoTiuOJ {\r\n          margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em;\r\n      }\r\n        }</style><style data-gp-styled-element=\"YK6e_A_8hu\" class=\"style-YK6e_A_8hu\">\r\n        \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-YK6e_A_8hu {\r\n          min-height: 50px;position: relative;z-index: 10;\r\n      }\r\n        }</style><style data-gp-styled-element=\"AsoY4kq8qp\" class=\"style-AsoY4kq8qp\">\r\n        \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        \r\n        @media (max-width: 639px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;\r\n      }\r\n        }\r\n        @media (max-width: 767px) and (min-width: 640px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 640px;\r\n      }\r\n        }\r\n        @media (max-width: 991px) and (min-width: 768px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 768px;\r\n      }\r\n        }\r\n        @media (max-width: 1199px) and (min-width: 992px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 992px;\r\n      }\r\n        }\r\n        @media (min-width: 1200px) {\r\n          \r\n        .gp-component-id-AsoY4kq8qp {\r\n          margin-left: auto;margin-right: auto;width: 100%;max-width: 1200px;\r\n      }\r\n        }</style><section class=\"gp-component-id-YK6e_A_8hu gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"YK6e_A_8hu\" style=\"\" id=\"YK6e_A_8hu\" tabindex=\"0\"><a name=\"YK6e_A_8hu\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-AsoY4kq8qp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"AsoY4kq8qp\" data-gp-component=\"container\" style=\"\" tabindex=\"0\"><ul class=\"gp-component-id-xvcTfaKq7 gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"xvcTfaKq7\" tabindex=\"0\"><div class=\"gp-component-id-Z8RijvnQJ gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"Z8RijvnQJ\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-ujNEkUUOGR\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"ujNEkUUOGR\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><h1 class=\"gp-component-id-6DuoTiuOJ\" data-id=\"quill-node-0\">Member Login</h1></div></div><div class=\"gp-component-id-vQ7eQdDJz gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"vQ7eQdDJz\" tabindex=\"0\"><table border=\"0\" cellpadding=\"4\" cellspacing=\"0\" width=\"100%\">\r\n	<tbody>\r\n		<tr>\r\n			<td align=\"left\" valign=\"top\">Â \r\n\r\n			<form action=\"members.php\" method=\"post\" name=\"loginfrm\">\r\n			<table align=\"center\" border=\"0\" cellpadding=\"4\" cellspacing=\"0\" height=\"350\" width=\"720\">\r\n				<tbody>\r\n					<tr style=\"padding-top:0; padding-bottom:0\">\r\n						<td align=\"center\" width=\"50%\"><strong style=\"font-size:30px\">Username:</strong></td>\r\n						<td align=\"center\"><input name=\"login\" style=\"height:50px; background-color:#efefef; border-radius: 100px\" size=\"50\" type=\"text\" /></td>\r\n					</tr>\r\n					<tr style=\"padding-top:0; padding-bottom:0\">\r\n						<td align=\"center\"><strong style=\"font-size:30px\">Password:</strong></td>\r\n						<td align=\"center\"><input name=\"password\" style=\"height:50px; background-color:#efefef; border-radius: 100px\" size=\"50\" type=\"password\" /></td>\r\n					</tr>\r\n					<tr>\r\n						<td align=\"center\" colspan=\"2\"><input name=\"Submit\" style=\"background-color:#0076B4; color:white; border-color:#0076B4; border-radius: 100px; font-size:16px; width:320px; height:50px\" type=\"submit\" value=\"Login\" /></td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</form>\r\n\r\n			<div align=\"center\">\r\n			<center>\r\n			<table border=\"0\" bordercolor=\"#111111\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"100%\">\r\n				<tbody>\r\n					<tr>\r\n						<td width=\"100%\">\r\n						<p align=\"center\"><script language=\"JavaScript\" src=\"\"></script></p>\r\n						</td>\r\n					</tr>\r\n				</tbody>\r\n			</table>\r\n			</center>\r\n			</div>\r\n			Â \r\n\r\n			<div align=\"center\">\r\n			<center>\r\n			<table border=\"0\" bordercolor=\"#111111\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"100%\">\r\n				\r\n			</table>\r\n			</center>\r\n			</div>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table></div><div class=\"gp-component-id-eN5mGH9VP gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"eN5mGH9VP\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-kKQtt7WQQq\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"kKQtt7WQQq\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><h2 class=\"gp-component-id-PxljAz0oi\" data-id=\"quill-node-0\"><a href=\"signup.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">Register</a> | <a href=\"lostpass.php\" rel=\"noopener noreferrer\" target=\"_self\" class=\"gdil54\">Lost Password</a></h2></div></div><form class=\"gp-component-id-xygdjUPmZ gp-component\" action=\"\" method=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component=\"form-container\" data-gp-component-data=\"{\"id\":32,\"name\":\"form-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Form\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Empty Form\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"xygdjUPmZ\" style=\"\" tabindex=\"0\">\r\n        \r\n        \r\n      </form></ul></div>\r\n    </section></div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>'),(76,'2022-10-08 08:00:44','faqs','<!DOCTYPE html>\r\n    <html lang=\"en\">\r\n      <head>\r\n        \r\n    <meta charset=\"utf-8\" />\r\n    <title>Home</title>\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n    <meta property=\"og:title\" content=\"\" />\r\n    <meta property=\"og:image\" content=\"\" />\r\n    <meta name=\"description\" content=\"\">\r\n    <meta name=\"keywords\" content=\"\" />\r\n    <meta name=\"robots\" content=\"\" />\r\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\">\r\n    <link href=\"https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Amatic+SC:wght@400;700&family=Architects+Daughter&family=Asap:wght@400;700&family=Balsamiq+Sans:wght@400;700&family=Barlow:wght@400;700;900&family=Bebas+Neue&family=Bitter:wght@400;700;900&family=Cabin:wght@400;700&family=Cairo:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=Crimson+Text:wght@400;700&family=Dancing+Script:wght@400;700&family=Fira+Sans:wght@400;700;900&family=Fjalla+One&family=Indie+Flower&family=Josefin+Sans:wght@400;700&family=Lato:wght@400;700;900&family=Libre+Baskerville:wght@400;700&family=Libre+Franklin:wght@400;700;900&family=Lobster&family=Lora:wght@400;700&family=Martel:wght@400;700;900&family=Merriweather:wght@400;700;900&family=Montserrat:wght@400;700;900&family=Mukta:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+KR:wght@400;700;900&family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&family=Nunito+Sans:wght@200;300;400;700;900&family=Nunito:wght@300;400;700;900&family=Old+Standard+TT:wght@400;700&family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:wght@300;400;700&family=Oswald:wght@400;700&family=Overpass:wght@400;700;900&family=Oxygen:wght@300;400;700&family=PT+Sans+Narrow:wght@400;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&family=Pacifico&family=Playfair+Display:wght@400;700;900&family=Poppins:ital,wght@0,400;0,700;1,900&family=Raleway:wght@400;700;900&family=Roboto+Condensed:wght@400;700&family=Roboto+Slab:wght@400;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,400;0,700;1,900&family=Shadows+Into+Light&family=Signika:wght@400;700&family=Slabo+27px&family=Source+Code+Pro:wght@400;700;900&family=Source+Sans+Pro:wght@400;700;900&family=Source+Serif+Pro:wght@400;700;900&family=Tajawal:wght@400;700;900&family=Titillium+Web:wght@400;700;900&family=Ubuntu:wght@400;700&family=Work+Sans:wght@400;700;900&display=swap\" rel=\"stylesheet\">\r\n    <style id=\"global-styles\">\r\n      \r\n    </style>\r\n\r\n    \r\n    \r\n     <script src=\"https://kit.fontawesome.com/e7647a48d4.js\" crossorigin=\"anonymous\"></script>\r\n     <style id=\"IE-warning-style\">\r\n      #IE-warning {\r\n        display: none;\r\n        position: fixed;\r\n        width: 100%;\r\n        height: 100%;\r\n        z-index: 9999;\r\n        background: white;\r\n      }\r\n      .IE-warning-message {\r\n        position: absolute;\r\n        left: 50%;\r\n        top: 50%;\r\n        transform: translate(-50%, -50%);\r\n        text-align: center;\r\n      }\r\n     </style>\r\n     <style id=\"page-css\">\r\n      \r\n     </style>\r\n     <style id=\"section-block\">\r\n        section[data-gp-block] > *:not([data-section-overlay]) {\r\n          position: relative;\r\n        }\r\n        [data-gp-block].gp-component > :not([data-section-overlay]):not([data-gp-component=\'pattern-background\']):not([data-gp-component=\"video-background\"]) {\r\n          z-index: 15;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-section-overlay]{\r\n          z-index: 14 !important;\r\n        }\r\n        section[data-gp-block].gp-component > div[data-gp-component=\'pattern-background\'] {\r\n          z-index: 12 !important;\r\n        }\r\n     </style>\r\n     <style id=\"custom-css\">\r\n       *{} html {\r\n  font-family: sans-serif;\r\n  text-size-adjust: 100%;\r\n  line-height: 1.25;\r\n  box-sizing: border-box;\r\n}\r\n\r\nbody {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  border-image-repeat: initial;\r\n  border-image-outset: initial;\r\n  border-image-width: initial;\r\n  border-image-slice: initial;\r\n  border-image-source: initial;\r\n  border-left-color: rgb(173, 183, 194);\r\n  border-bottom-color: rgb(173, 183, 194);\r\n  border-right-color: rgb(173, 183, 194);\r\n  border-top-color: rgb(173, 183, 194);\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  border-left-width: 0px;\r\n  border-bottom-width: 0px;\r\n  border-right-width: 0px;\r\n  border-top-width: 0px;\r\n  box-sizing: inherit;\r\n}\r\n\r\nbody * {\r\n  border-image-repeat: initial;\r\n  border-image-outset: initial;\r\n  border-image-width: initial;\r\n  border-image-slice: initial;\r\n  border-image-source: initial;\r\n  border-left-color: rgb(173, 183, 194);\r\n  border-bottom-color: rgb(173, 183, 194);\r\n  border-right-color: rgb(173, 183, 194);\r\n  border-top-color: rgb(173, 183, 194);\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  border-left-width: 0px;\r\n  border-bottom-width: 0px;\r\n  border-right-width: 0px;\r\n  border-top-width: 0px;\r\n  box-sizing: inherit;\r\n}\r\n\r\nmain {\r\n  display: block;\r\n}\r\n\r\nh1 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  font-size: 2em;\r\n}\r\n\r\nhr {\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n  height: 0px;\r\n  box-sizing: content-box;\r\n}\r\n\r\npre {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\na {\r\n  background-color: transparent;\r\n  text-decoration-color: initial;\r\n  text-decoration-style: initial;\r\n  text-decoration-line: none;\r\n  cursor: pointer;\r\n}\r\n\r\nb {\r\n  font-weight: bolder;\r\n}\r\n\r\nstrong {\r\n  font-weight: bolder;\r\n}\r\n\r\ncode {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nkbd {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nsamp {\r\n  font-family: monospace, monospace;\r\n  font-size: 1em;\r\n}\r\n\r\nsmall {\r\n  font-size: 80%;\r\n}\r\n\r\nsub {\r\n  vertical-align: baseline;\r\n  position: relative;\r\n  line-height: 0;\r\n  font-size: 75%;\r\n  bottom: -0.25em;\r\n}\r\n\r\nsup {\r\n  vertical-align: baseline;\r\n  position: relative;\r\n  line-height: 0;\r\n  font-size: 75%;\r\n  top: -0.5em;\r\n}\r\n\r\nimg {\r\n  border-left-style: solid;\r\n  border-bottom-style: solid;\r\n  border-right-style: solid;\r\n  border-top-style: solid;\r\n  height: auto;\r\n  max-width: 100%;\r\n}\r\n\r\nbutton {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n  text-transform: none;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  background-color: transparent;\r\n  background-clip: initial;\r\n  background-origin: initial;\r\n  background-attachment: initial;\r\n  background-repeat-y: initial;\r\n  background-repeat-x: initial;\r\n  background-size: initial;\r\n  background-position-y: initial;\r\n  background-position-x: initial;\r\n  background-image: initial;\r\n  cursor: pointer;\r\n}\r\n\r\ninput {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: visible;\r\n  overflow-x: visible;\r\n}\r\n\r\noptgroup {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n}\r\n\r\nselect {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  text-transform: none;\r\n}\r\n\r\ntextarea {\r\n  font-family: inherit;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  line-height: 1.15;\r\n  font-size: 100%;\r\n  overflow-y: auto;\r\n  overflow-x: auto;\r\n  resize: vertical;\r\n}\r\n\r\nfieldset {\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nlegend {\r\n  white-space: normal;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  max-width: 100%;\r\n  display: table;\r\n  color: inherit;\r\n  box-sizing: border-box;\r\n}\r\n\r\nprogress {\r\n  vertical-align: baseline;\r\n}\r\n\r\ndetails {\r\n  display: block;\r\n}\r\n\r\nsummary {\r\n  display: list-item;\r\n}\r\n\r\ntemplate {\r\n  display: none;\r\n}\r\n\r\nblockquote {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\ndd {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\ndl {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nfigure {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh2 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh3 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh4 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh5 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nh6 {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\np {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n}\r\n\r\nol {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  list-style-position: inside;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n}\r\n\r\nul {\r\n  margin-left: 0px;\r\n  margin-bottom: 0px;\r\n  margin-right: 0px;\r\n  margin-top: 0px;\r\n  padding-left: 0px;\r\n  padding-bottom: 0px;\r\n  padding-right: 0px;\r\n  padding-top: 0px;\r\n  list-style-type: none;\r\n  list-style-image: initial;\r\n  list-style-position: initial;\r\n}\r\n\r\ntable {\r\n  border-collapse: collapse;\r\n}\r\n/*endBaseStyles*/\r\n/*endBaseStyles*/\r\n     </style>\r\n     <script type=\"text/javascript\">\r\n        window.websiteurl = \"https://htmltest.groovepages.com/ss-faqs/\"\r\n     </script>\r\n     <script>window.site||window.encodeSite||(window.encodeSite=function(e,s){return e.pages=JSON.parse(atob(e.pages)),window.site=function(e){try{const s={...e.pages}||{};return new Proxy({},{})instanceof Object?(delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})):void 0}catch(e){}const s={...e.pages}||{};if(new Proxy({},{})instanceof Object)return delete e.pages,e.isProxy=!0,new Proxy(e,{pages:s,get(e,s){return\"pages\"===s&&s in this.pages?this.pages[s]:\"pages\"===s?this.pages:s in e?e[s]:void 0},set:(e,s,t)=>(e[s]=t,!0)})}(e),window.site});</script>\r\n     \r\n        \r\n      <!-- Matomo -->\r\n    <script type=\"text/javascript\">\r\n      var _paq = window._paq || [];\r\n      /* tracker methods like \"setCustomDimension\" should be called before \"trackPageView\" */\r\n      _paq.push([\"setDocumentTitle\", document.domain + \"/\" + document.title]);\r\n      _paq.push([\"setCookieDomain\", \"*.localhost\"]);\r\n      _paq.push([\"setDomains\", [\"*.localhost\"]]);\r\n      _paq.push([\'setCustomDimension\', 1, \"62fe7a1ceb7e6f1e322e29d2\"]);\r\n      _paq.push([\'setCustomDimension\', 2, \"TuSXI7Y2G\"]);\r\n      _paq.push([\'trackPageView\']);\r\n      _paq.push([\'enableLinkTracking\']);\r\n      (function() {\r\n        var u=\"//matomo.groovetech.io/\";\r\n        _paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\r\n        _paq.push([\'setSiteId\', \'4\']);\r\n        var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\r\n        g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\r\n      })();\r\n    </script>\r\n    <noscript><p><img src=\"//matomo.groovetech.io/matomo.php?idsite=4&rec=1\" style=\"border:0;\" alt=\"\" /></p></noscript>\r\n    <!-- End Matomo Code -->\r\n      </head>\r\n      <body data-gp-site-id=\"62fe7a1ceb7e6f1e322e29d2\" data-gp-style class=\"gpblsh\">\r\n        <!-- Start Popups -->\r\n        <script> if(!window.mergeContentSettings) { function mergeContentSettings(){}}</script>\r\n        \r\n        <!-- End Popups -->\r\n        \r\n    <div id=\"IE-warning\">\r\n      <div class=\"IE-warning-message\">\r\n        <p><i class=\"fas fa-exclamation-triangle\" style=\"color:red;\"></i> Oops! Sorry!!</p> <br/>\r\n        <p>This site doesn\'t support Internet Explorer. Please <a href=\"https://browser-update.org/update-browser.html?force_outdated=true\">use a modern browser</a> like Chrome, Firefox or Edge.</p>\r\n      </div>\r\n    </div>\r\n    <script id=\"IE-check\">\r\n      (function() {\r\n        if (!!window.navigator.userAgent.match(/MSIE|Trident/)) {\r\n          document.getElementById(\"IE-warning\").style.display = \"block\";\r\n        } else {\r\n          document.getElementById(\"IE-warning\").remove();\r\n        }\r\n      })();\r\n    </script>\r\n    \r\n    <div id=\"custom-top\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var populateSiteSettings = async function() {\r\n          if (window.encodeSite) {\r\n            const result = await encodeSite({\"pages\":\"eyJUdVNYSTdZMkciOnsidXJsIjoiaW5kZXgifX0=\",\"popups\":[],\"navigation\":[{\"url\":\"index\",\"name\":\"Home\",\"megamenu\":null,\"megamenuHideScreens\":[],\"megamenuAlignment\":null,\"megamenuMaxWidth\":null,\"children\":[]}],\"baseURL\":\"https://v1.gdapis.com/api\"}, \"62fe7a1ceb7e6f1e322e29d2\");\r\n            if(!window.inBuilder && window.websiteurl) {\r\n              const separator = window.websiteurl.charAt(window.websiteurl.length-1) === \'/\'?\'\':\'/\';\r\n\r\n              for (const page in window.site.pages) {\r\n                window.site.pages[page].url = window.websiteurl + separator + window.site.pages[page]?.url;\r\n              }\r\n            }\r\n            if (window.site) window.encodeSite = undefined;\r\n            site.subscribed = [];\r\n            site.subscribe = callback => {\r\n              site.subscribed.push(callback);\r\n            };\r\n            var clearSiteCheck = setInterval(function() {\r\n              if (window.site.isProxy) {\r\n                window.dispatchEvent(new Event(\'load\'));\r\n                clearInterval(clearSiteCheck);\r\n              }\r\n            }, 250);\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? populateSiteSettings() : document.addEventListener(\"DOMContentLoaded\", populateSiteSettings);\r\n      })();\r\n    </script>\r\n    <div id=\"page-container\" data-gp-page-id=\"TuSXI7Y2G\">\r\n      <div class=\"blocks-container\" id=\"blocks-container\">\r\n        <style data-gp-styled-element=\"true\"></style>\r\n        <style data-gp-styled-element=\"zA7G9Hp3h\" class=\"style-zA7G9Hp3h\"> @media (max-width: 639px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } } @media (min-width: 1200px) { .gp-component-id-zA7G9Hp3h[data-gp-component] { font-size: 20px !important;font-weight: 700 !important;color: rgb(255, 255, 255);text-align: center;border-top-left-radius: 100px;border-top-right-radius: 100px;border-bottom-left-radius: 100px;border-bottom-right-radius: 100px;background-color: rgba(0, 118, 180, 1);padding-left: 16px;padding-right: 16px;padding-top: 8px;padding-bottom: 8px;width: 230px;height: 60px;align-items: center;display: inline-flex;text-decoration-color: initial;text-decoration-style: solid;text-decoration-thickness: inherit;text-decoration-line: none;cursor: pointer; } .gp-component-id-zA7G9Hp3h[data-gp-component]:hover,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-hover { background-color: rgba(2, 155, 232, 1); } .gp-component-id-zA7G9Hp3h[data-gp-component]:active,.gp-component-id-zA7G9Hp3h[data-gp-component].gp-active { background-color: rgb(32, 45, 60); } }</style><style data-gp-styled-element=\"YPEulP8JM3\" class=\"style-YPEulP8JM3\"> @media (max-width: 639px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 340px; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 640px; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 768px; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 90%;max-width: 992px; } } @media (min-width: 1200px) { .gp-component-id-YPEulP8JM3[data-gp-component] { border-top-left-radius: 20px;border-top-right-radius: 20px;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;border-left-width: 5px;border-right-width: 5px;border-top-width: 5px;border-bottom-width: 5px;border-left-color: rgba(0, 118, 180, 1);border-right-color: rgba(0, 118, 180, 1);border-top-color: rgba(0, 118, 180, 1);border-bottom-color: rgba(0, 118, 180, 1);box-shadow: rgba(46, 140, 255, 0.3) 0px 0px 10px 10px;margin-left: auto;margin-right: auto;margin-top: 40px;margin-bottom: 40px;padding-left: 20px;padding-right: 20px;padding-top: 20px;padding-bottom: 20px;width: 1000px;max-width: 1200px; } }</style>\r\n        \r\n        \r\n        \r\n        \r\n        \r\n        \r\n        <style data-gp-styled-element=\"NetWXN0xfc\" class=\"style-NetWXN0xfc-overlay\"> .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } @media (max-width: 639px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } } @media (min-width: 1200px) { .gp-component-id-NetWXN0xfc.gp-component > [data-section-overlay] { position: absolute;bottom: 0px;top: 0px;left: 0px;right: 0px;z-index: -1; } }</style>\r\n        \r\n        <style data-gp-styled-element=\"RhUuNNcB9\" class=\"style-RhUuNNcB9\"> @media (max-width: 639px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } } @media (min-width: 1200px) { .gp-component-id-RhUuNNcB9[data-gp-component] { width: 100%;justify-content: center;display: flex; } }</style><style data-gp-styled-element=\"5rkV3Gx5jX\" class=\"style-5rkV3Gx5jX\"> @media (max-width: 639px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } } @media (min-width: 1200px) { .gp-component-id-5rkV3Gx5jX { text-align: center; } }</style><style data-gp-styled-element=\"KYESmORVI\" class=\"style-KYESmORVI\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-KYESmORVI { text-align: center; } }</style><style data-gp-styled-element=\"qpy30C0wF\" class=\"style-qpy30C0wF\"> @media (max-width: 639px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-qpy30C0wF[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style>\r\n        <style data-gp-styled-element=\"c4vRp_fwV8\" class=\"style-c4vRp_fwV8\"> @media (max-width: 639px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { .gp-component-id-c4vRp_fwV8 { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"5TCePZSQN\" class=\"style-5TCePZSQN\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-5TCePZSQN { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"wQ0tZVPlG\" class=\"style-wQ0tZVPlG\"> @media (max-width: 639px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-wQ0tZVPlG[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"1Bk7ME6UQZ\" class=\"style-1Bk7ME6UQZ\"> @media (max-width: 639px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } } @media (min-width: 1200px) { .gp-component-id-1Bk7ME6UQZ { text-align: center; } }</style><style data-gp-styled-element=\"m92WplxFp\" class=\"style-m92WplxFp\"> @media (max-width: 639px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-m92WplxFp[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"QRE607maOK\" class=\"style-QRE607maOK\"> @media (max-width: 639px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } } @media (min-width: 1200px) { .gp-component-id-QRE607maOK { font-size: 25px !important;font-weight: 700 !important;text-align: center;font-family: Poppins !important; } }</style><style data-gp-styled-element=\"NK0LxWTgk\" class=\"style-NK0LxWTgk\"> @media (max-width: 639px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-NK0LxWTgk[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"AYzlFCyQC\" class=\"style-AYzlFCyQC\"> @media (max-width: 639px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-AYzlFCyQC[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"GGaAgqGOG\" class=\"style-GGaAgqGOG\"> @media (max-width: 639px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-GGaAgqGOG[data-gp-component] { margin-bottom: 10px;width: 100%; } }</style><style data-gp-styled-element=\"U8g_CY3eC\" class=\"style-U8g_CY3eC\"> @media (max-width: 639px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } } @media (min-width: 1200px) { .gp-component-id-U8g_CY3eC[data-gp-component] { margin-bottom: 20px;width: 100%; } }</style><style data-gp-styled-element=\"lRl3Wpap2\" class=\"style-lRl3Wpap2\"> @media (max-width: 639px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 767px) and (min-width: 640px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 991px) and (min-width: 768px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (max-width: 1199px) and (min-width: 992px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } } @media (min-width: 1200px) { [data-gp-text] .gp-component-id-lRl3Wpap2 { font-size: 40px !important;font-weight: 700;text-align: center;font-family: Poppins;margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px; } }</style><style data-gp-styled-element=\"lRl3Wpap2\"> .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } @media (max-width: 639px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } } @media (min-width: 1200px) { .gp-component-id-lRl3Wpap2 { margin-left: 0px;margin-bottom: 0px;margin-right: 0px;margin-top: 0px;font-size: 2em; } }</style><style data-gp-styled-element=\"TctE0nx3C\" class=\"style-TctE0nx3C\"> @media (max-width: 639px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } } @media (min-width: 1200px) { .gp-component-id-TctE0nx3C[data-gp-component] { margin-left: 0px;margin-right: 0px;margin-top: 0px;margin-bottom: 0px;padding-left: 0px;padding-right: 0px;padding-top: 0px;padding-bottom: 10px;list-style-position: initial;list-style-image: initial;list-style-type: none; } }</style>\r\n        <style data-gp-styled-element=\"NetWXN0xfc\" class=\"style-NetWXN0xfc\"> .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } @media (max-width: 639px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 767px) and (min-width: 640px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 991px) and (min-width: 768px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (max-width: 1199px) and (min-width: 992px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } } @media (min-width: 1200px) { .gp-component-id-NetWXN0xfc { min-height: 50px;position: relative;z-index: 10; } }</style>\r\n        \r\n      <section class=\"gp-component-id-NetWXN0xfc gp-component\" data-gp-component=\"block\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-block-id=\"79395\" data-gp-block=\"true\" data-gp-block-data=\"{\"id\":79395,\"type\":\"block\",\"thumbnail\":\"https://assets.grooveapps.com/elements-previews/thumbs/empty.png\",\"category\":\"Empty blocks\",\"tag\":\"designed\",\"user_id\":\"global\",\"filename\":\"_empty_0\",\"height\":0,\"global\":1}\" data-gp-component-id=\"NetWXN0xfc\" data-gp-block-type=\"block\" id=\"NetWXN0xfc\" tabindex=\"0\" style=\"\"><a name=\"NetWXN0xfc\" data-gp-block-anchor=\"\"></a>\r\n        <div class=\"\" data-section-overlay=\"\"></div>\r\n        <div class=\"gp-component gp-component-id-YPEulP8JM3\" data-gp-container=\"\" data-gp-style=\"\" data-gp-component-id=\"YPEulP8JM3\" data-gp-component=\"container\" tabindex=\"0\"><ul class=\"gp-component-id-TctE0nx3C gp-component\" data-gp-container=\"\" data-gp-dnd=\"\" data-gp-style=\"\" data-gp-component-label=\"List container\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":56,\"name\":\"list-container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Lists\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjIgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU5LjEgKDg2MTQ0KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT50ZW1wbGF0ZXMtaWNvbjwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJ0ZW1wbGF0ZXMtaWNvbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS4wMDAwMDAsIDEuMDAwMDAwKSIgc3Ryb2tlPSIjQTRBOEMwIj4KICAgICAgICAgICAgPHBhdGggZD0iTTE3LjM2LC0xLjMzMjI2NzYzZS0xNSBDMTguNjg1NDgzNCwtMS4zMzIyNjc2M2UtMTUgMTkuNzYsMS4wNzQ1MTY2IDE5Ljc2LDIuNCBMMTkuNzYsMTYuNiBDMTkuNzYsMTcuOTI1NDgzNCAxOC42ODU0ODM0LDE5IDE3LjM2LDE5IEwyLjQsMTkgQzEuMDc0NTE2NiwxOSAyLjIyMDQ0NjA1ZS0xNiwxNy45MjU0ODM0IDIuMjIwNDQ2MDVlLTE2LDE2LjYgTDIuMjIwNDQ2MDVlLTE2LDIuNCBDMi4yMjA0NDYwNWUtMTYsMS4wNzQ1MTY2IDEuMDc0NTE2NiwtMS4zMzIyNjc2M2UtMTUgMi40LC0xLjMzMjI2NzYzZS0xNSBMMTcuMzYsLTEuMzMyMjY3NjNlLTE1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"List Container\",\"index\":1,\"hasMenu\":true}}\" data-gp-component-id=\"TctE0nx3C\" style=\"\" tabindex=\"0\"><div class=\"gp-component-id-U8g_CY3eC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"U8g_CY3eC\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-UoUMGqaApZ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"UoUMGqaApZ\" data-gp-component=\"null\" tabindex=\"0\"><h1 class=\"gp-component-id-lRl3Wpap2\" data-id=\"quill-node-0\">Solo Swaps FAQs</h1></div></div><div class=\"gp-component gp-component-id-NK0LxWTgk\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"NK0LxWTgk\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-zxL0lDbvQt\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"zxL0lDbvQt\" data-gp-component=\"null\" tabindex=\"0\"><p class=\"gp-component-id-QRE607maOK\" data-id=\"quill-node-0\">What is a viral mailer?</p></div></div><div class=\"gp-component gp-component-id-m92WplxFp\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"m92WplxFp\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-JyUBYMttFB\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"JyUBYMttFB\" data-gp-component=\"null\" tabindex=\"0\" style=\"\"><p data-id=\"quill-node-0\" class=\"gp-component-id-1Bk7ME6UQZ\">Viral Mailers are online services where members can e-mail each other.</p><p class=\"gp-component-id-1Bk7ME6UQZ\" data-id=\"quill-node-1\">You can send an e-mail promoting your web site in return for viewing the e-mails sent by the other members.</p></div></div><div class=\"gp-component gp-component-id-wQ0tZVPlG\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"wQ0tZVPlG\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-m6rJ3Eu34P\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"m6rJ3Eu34P\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-c4vRp_fwV8\" data-id=\"quill-node-0\">How Do I Receive Credits?</p></div></div><div class=\"gp-component gp-component-id-qpy30C0wF\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"qpy30C0wF\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-WkoceXjwiU\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"WkoceXjwiU\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p data-id=\"quill-node-0\" class=\"gp-component-id-5rkV3Gx5jX\">Look for e-mails from other members.</p><p data-id=\"quill-node-1\" class=\"gp-component-id-5rkV3Gx5jX\">At the bottom of each e-mail, there should be a link you can click to view their site and earn credit.</p><p class=\"gp-component-id-5rkV3Gx5jX\" data-id=\"quill-node-2\">For each credit you earn, you will be able to mail another member of instantlist.</p></div></div><div class=\"gp-component-id-GGaAgqGOG gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"GGaAgqGOG\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-8cKOvwIwqQ\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"8cKOvwIwqQ\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-5TCePZSQN\" data-id=\"quill-node-0\">My Question Isn\'t Listed On This Page...</p></div></div><div class=\"gp-component-id-AYzlFCyQC gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"AYzlFCyQC\" style=\"\" tabindex=\"0\"><div class=\"gp-text-container gp-component gp-component-id-mfz3sICuSL\" data-gp-style=\"true\" data-gp-text=\"true\" data-gp-dnd=\"true\" data-gp-component-id=\"mfz3sICuSL\" data-gp-component=\"null\" style=\"\" tabindex=\"0\"><p class=\"gp-component-id-KYESmORVI\" data-id=\"quill-node-0\">Please click the button below to contact us.</p></div></div><div class=\"gp-component-id-RhUuNNcB9 gp-component\" data-gp-container=\"\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-component=\"container\" data-gp-component-data=\"{\"id\":17,\"name\":\"container\",\"type\":\"component\",\"user_id\":\"global\",\"data\":{\"section\":\"Layout\",\"icon\":\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjZweCIgaGVpZ2h0PSIyN3B4IiB2aWV3Qm94PSIwIDAgMjYgMjciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYzLjEgKDkyNDUyKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5jYXJkPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9ImNhcmQiIGZpbGw9IiNBNEE4QzAiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMi43MSwwIEMyNC4wMjQ0Mzc3LDAgMjUuMDksMS4wNjU1NjIzIDI1LjA5LDIuMzggTDI1LjA5LDI0IEMyNS4wOSwyNS4zMTQ0Mzc3IDI0LjAyNDQzNzcsMjYuMzggMjIuNzEsMjYuMzggTDIuMzgsMjYuMzggQzEuMDY1NTYyMywyNi4zOCAwLDI1LjMxNDQzNzcgMCwyNCBMMCwyLjM4IEMwLDEuMDY1NTYyMyAxLjA2NTU2MjMsMCAyLjM4LDAgTDIyLjcxLDAgWiBNMjIuNzEsMC43NSBMMi4zOCwwLjc1IEMxLjQ4LDAuNzUgMC43NSwxLjQ4IDAuNzUsMi4zOCBMMC43NSwyNCBDMC43NSwyNC45IDEuNDgsMjUuNjMgMi4zOCwyNS42MyBMMjIuNzEsMjUuNjMgQzIzLjYwNjMxNjQsMjUuNjI0NTAxIDI0LjMzLDI0Ljg5NjMzMzMgMjQuMzMsMjQgTDI0LjMzLDIuMzggQzI0LjMzLDEuNDgzNjY2NjggMjMuNjA2MzE2NCwwLjc1NTQ5ODk3NyAyMi43MSwwLjc1IFoiIGlkPSJTaGFwZSI+PC9wYXRoPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+\",\"title\":\"Container\",\"index\":0,\"hasMenu\":true}}\" data-gp-component-id=\"RhUuNNcB9\" tabindex=\"0\"><a target=\"_blank\" href=\"https://5-dollar-friday.tawk.help/\" data-gp-button-id=\"nstLM2H2eX\" class=\"items-center gp-component gp-component-id-zA7G9Hp3h\" data-gp-style=\"\" data-gp-dnd=\"\" data-gp-classes=\"\" data-gp-component=\"button\" data-gp-component-id=\"zA7G9Hp3h\">\r\n  \r\n  <div style=\"display: inline-block; flex-grow: 1;\">\r\n    <div class=\"gp-component gp-component-id-sf8QWnaXu\" data-gp-component=\"button main-label\" data-gp-style=\"\" data-gp-component-id=\"sf8QWnaXu\">CONTACT US</div>\r\n    \r\n  </div>\r\n  \r\n  \r\n</a></div></ul></div>\r\n    </section>\r\n      \r\n      </div>\r\n      <div id=\"blocks-staging\" style=\"top: 0px; left: 0; position: absolute;\"></div>\r\n    </div>\r\n    <div id=\"custom-bottom\">\r\n      \r\n    </div>\r\n    <script>\r\n      (function() {\r\n        var callSiteCallbacks = function() {\r\n          if(window.site && window.site.subscribed) {\r\n            site.subscribed.forEach(callback => {\r\n              callback();\r\n            });\r\n          }\r\n        };\r\n        document.readyState !== \'loading\' ? callSiteCallbacks() : document.addEventListener(\"DOMContentLoaded\", callSiteCallbacks);\r\n      })();\r\n    </script>\r\n    <script src=\"https://app.groove.cm/groovepages/js/inpage_published.js\"></script>\r\n        \r\n      </body>\r\n    </html>');
/*!40000 ALTER TABLE `oto_templates_backups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_templates_defaults`
--

DROP TABLE IF EXISTS `oto_templates_defaults`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_templates_defaults` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_name` varchar(20) NOT NULL,
  `template_data` mediumtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_templates_defaults`
--

LOCK TABLES `oto_templates_defaults` WRITE;
/*!40000 ALTER TABLE `oto_templates_defaults` DISABLE KEYS */;
INSERT INTO `oto_templates_defaults` (`id`, `template_name`, `template_data`) VALUES (1,'comms_header','<p align=\"left\"><font size=\"3\">You can earn commissions by promoting #SITENAME# using the tools on our Affiliate Toolbox page.  Be sure to enter your PayPal address on your Profile page.</font></p>'),(2,'credlink_expired','&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;title&gt;Link Expired&lt;/title&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;\r\n&lt;center&gt;\r\n\r\n&lt;p&gt;&lt;font size=&quot;6&quot; color=&quot;darkred&quot;&gt;&lt;b&gt;Sorry, this link has expired!&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;\r\n\r\n&lt;p&gt;&lt;font size=&quot;4&quot; color=&quot;black&quot;&gt;&lt;b&gt;But while you\'re here, check out the special bonus below...&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;\r\n\r\n&lt;script language=&quot;JavaScript&quot; src=&quot;https://soloswaps.com/bonuspage/showad.php&quot;&gt;&lt;/script&gt;\r\n\r\n&lt;/center&gt;\r\n&lt;/body&gt;\r\n\r\n&lt;/html&gt;'),(3,'bounce_page','<h2>Attention: Your email address requires attention</h2><p>Your email address at #BOUNCEADDRESS# has been bouncing our messages.  You must update your email address to continue using #SITENAME#.</p>'),(4,'loginlog_header','<div class=\"lfm_title\" style=\"text-align:center\">Login History</div>\r\n<br>\r\n<div class=\"lfm_descr\" style=\"text-align:left\">This is a list of recent logins into your #SITENAME# account.  If you see any login entries that you believe are not authorized, you should immediately change the password on your account.</div>'),(5,'Signup - Thank You','<center>\r\n<br><br>\r\n  <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#111111\" width=\"95%\">\r\n    <tr>\r\n      <td width=\"100%\" align=\"center\" style=\"font-family: Verdana; font-size: 12pt\"> \r\n      <font size=\"5\"><b>Welcome to #SITENAME#!</b></font>\r\n      <BR><BR>\r\n<font size=\"3\">To login to your account, please click this link:<br><br>\r\n<a href=\"login.php\">Login To The Members Area Here</a>\r\n  <br>\r\n</font>\r\n</td>\r\n    </tr>\r\n  </table>\r\n<br><br>\r\n  </center>'),(6,'The Spot','<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"500\">\r\n<tr><td><img border=\"0\" src=\"/images/thespot_top.png\"></td></tr>\r\n<tr><td style=\"background: url(/images/thespot_mid.png)\" align=\"center\">\r\n  <span style=\"font-family:\'Arial\';color:#560000;font-size:34px;font-weight:700;text-shadow: 1px 1px 2px #000000;\">The Spot</span>\r\n  <br><img border=\"0\" width=\"475\" height=\"5\" src=\"/images/thespot_line.png\"><br>\r\n  #SPOTBANNER#\r\n  <br><div style=\"width:475px;text-align:center;font-family:\'Arial\';color:#000000;font-size:18px;font-weight:500;\">#SPOTTEXT#</div><br>\r\n  <div><a target=\"_blank\" href=\"#SPOTLINK#\"><span id=\"spotprizelink\" style=\"font-family:\'Arial\';color:blue;font-size:22px;font-weight:700;\">Click Here For A Prize</span></a></div>\r\n  <br><img border=\"0\" width=\"475\" height=\"5\" src=\"/images/thespot_line.png\"><br>\r\n  <br><span style=\"font-family:\'Arial\';color:blue;font-size:22px;font-weight:700;\"><a target=\"_blank\" href=\"thespot.php\">Put Your Site Here</a></span>\r\n</td></tr>\r\n<tr><td><img border=\"0\" src=\"/images/thespot_bottom.png\"></td></tr>\r\n</table>\r\n\r\n<script language=\"javascript\"  type=\"text/javascript\">\r\n// This script changes the prize link if the member already claimed this prize\r\nif (document.getElementById(\'spotprizelink\')) {\r\n  if (#SPOTCLICKED# == 1) {\r\n    document.getElementById(\'spotprizelink\').innerHTML=\"View This Site\";\r\n  }\r\n}\r\n</script>'),(7,'The Spot Get Page','<h3>Get The Spot</h3>\r\n'),(8,'The Spot Expired','<h3>Expired Link</h3>\r\n\r\n<p>Sorry, but the link you are clicking on has expired.</p>'),(9,'inbox_styles','.inboxtable {\r\n	width: 98%;\r\n	border-collapse:collapse;\r\n	clear:both;\r\n}\r\n\r\n.inboxrow {\r\n	\r\n}\r\n\r\n.inboxalt1 {\r\n	background:#ffffff;\r\n}\r\n\r\n.inboxalt2 {\r\n	background:#f6f6f6;\r\n}\r\n\r\n.inboxn {\r\n	font-size:12pt;\r\n	font-style: italic;\r\n	width:30px;\r\n	border-bottom:1px #aaa solid;\r\n}\r\n\r\n.inboxsubj {\r\n	padding-left:5px;\r\n	font-size:12pt;\r\n	font-weight:bold;\r\n	border-bottom:1px #aaa solid;\r\n}\r\n\r\n.inboxdate {\r\n	padding-left:5px;\r\n	font-size:10pt;\r\n	font-style: italic;\r\n	text-align:right;\r\n	border-bottom:1px #aaa solid;\r\n}\r\n\r\n.inboxmsg {\r\n	width: 98%;\r\n	border-radius:5px;\r\n	margin: 10px auto;\r\n}\r\n\r\n.inboxmsghead {\r\n	border-bottom:1px #999 solid;\r\n}\r\n\r\n.inboxmsgsubj {\r\n	font-size:14pt;\r\n	font-weight:bold;\r\n	text-align:left;\r\n}\r\n\r\n.inboxmsgdate {\r\n	font-size:12pt;\r\n	font-weight:bold;\r\n	font-style: italic;\r\n	text-align:right;\r\n}\r\n\r\n.inboxbodyrow {\r\n	\r\n}\r\n\r\n.inboxmsgbody {\r\n	padding-top:20px;\r\n	font-size:12pt;\r\n}\r\n\r\n.inboxfooter {\r\n	font-size:10pt;\r\n	font-weight:bold;\r\n}\r\n\r\n.inboxpageinate {\r\n	clear:both;\r\n	margin: 10px auto 20px auto;\r\n	display:block;\r\n}\r\n\r\n.inboxpageinate a {\r\n	display: block;\r\n	float: left;\r\n	border: 1px #000 solid;\r\n	padding: 3px;\r\n	margin: 0 3px;\r\n}\r\n\r\n.inboxpageinate span {\r\n	display: block;\r\n	float: left;\r\n}\r\n\r\n.pnate_cur {\r\n	background: #005;\r\n	color: #FFF;\r\n}'),(10,'sqban_instr','<p align=\"left\" width=\"500\"><font size=\"2\">Square Banners are banners with the same height and width.  The recommended size is 125x125.</font></p>'),(11,'Solo Mailer Buy','<br><p><font size=\"2\">You Clicked On #SOLOADDATE#</font></p><p><font size=\"2\">Please click below to pay for your Solo Ad</font></p>'),(12,'Solo Mailer Main','<p><font size=\"3\">Purchase A Solo Ad</font></p>'),(23,'piggy_header','<style>\r\nhr {\r\n  border: 0;\r\n  clear:both;\r\n  display:block;\r\n  width: 96%;               \r\n  background-color:#777777;\r\n  height: 1px;\r\n}\r\n.completepurchase {\r\n  border: 1px solid #000000;\r\n  border-radius:25px;\r\n  width:550px;\r\n  padding:15px;\r\n}\r\n.depositoptionouter {\r\n  clear:both;\r\n  width:650px;\r\n}\r\n.depositoptioninner {\r\n  border: 1px solid #000000;\r\n  background-color:#EEEEEE;\r\n  border-radius:5px;\r\n  width:300px;\r\n  min-height:200px;\r\n  padding:15px;\r\n  margin:5px;\r\n  float:left;\r\n}\r\n</style>\r\n\r\n<center><h2>Your Current Balance Is: $#PIGGYBALANCE#</h2>'),(24,'pmarket_header','<center><h2>Your Current Balance Is: $#PIGGYBALANCE#</h2>\r\n<p style=\"font-size:18px;\"><a href=\"piggybank.php\">Add to your balance</a></p>\r\n<p style=\"font-size:18px;\"><a href=\"pmarket.php?viewhistory=1\">View your marketplace purchases</a></p>\r\n<br>\r\n\r\n<style>\r\n.table_mp {\r\n	border-collapse: collapse;\r\n}\r\n\r\n.table_mp td, .table_mp th {\r\n	border: 1px solid #CCCCCC;\r\n	padding: 8px;\r\n}\r\n\r\n.table_mp tr:nth-child(even){ background-color: #EEEEEE; }\r\n\r\n.table_mp th {\r\n	padding-top: 12px;\r\n	padding-bottom: 12px;\r\n	text-align: left;\r\n	background-color: navy;\r\n	color: white;\r\n}\r\n.buybutton {\r\n	/* This class defines <a> tag links that look like buttons */\r\n	cursor: pointer;\r\n	width: 230px;\r\n	background-color:#1468e5;\r\n	border-radius:2px;\r\n	border:1px solid #002175;\r\n	display:inline-block;\r\n	cursor:pointer;\r\n	color:#FFFFFF;\r\n	font-family:arial;\r\n	font-size:16px;\r\n	font-weight:500;\r\n	padding:3px 6px;\r\n	margin:2px 1px 2px 1px;\r\n	text-decoration:none;\r\n}\r\n.buybutton:hover {\r\n	/* This controls the button links when you hover over them */\r\n	color:#FFFFFF;\r\n	background-color:#3385FF;\r\n	text-decoration:none;\r\n}\r\n</style>'),(15,'dlbsplash_header','<center><h2>Recommended Programs Splash Page</h2>\r\n<br>\r\n<p style=\"font-size:16px; width:600px; text-align:left;\">This splash page allows you to promote your favorite sites and build your #SITENAME# downline at the same time!  Just select which sites you want to recommend below, and then start promoting your Recommended Splash URL.</p>\r\n<br>\r\n<p style=\"font-size:20px;\">Your Recommended Splash URL:<br><a target=\"_blank\" href=\"#RECOMMENDEDURL#\">#RECOMMENDEDURL#</a></p>\r\n\r\n<br>\r\n\r\n	<link href=\"lib/jquery-ui/jquery-ui.min.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n	<script src=\"lib/jquery-ui/jquery-ui.min.js\"></script>\r\n	\r\n	<style>\r\n	\r\n	.ranklistbox {\r\n		width: 350px;\r\n		display: flex;\r\n		background-color: #73fb76;\r\n		color: #222222;\r\n		border: 1px solid #bbc1ca;\r\n		padding: 15px;\r\n		margin-top: 15px;\r\n		margin-bottom: 15px;\r\n		cursor: move;\r\n	}\r\n	\r\n	.ranklistboxadd {\r\n		width: 350px;\r\n		display: flex;\r\n		background-color: #DDDDDD;\r\n		color: #222222;\r\n		border: 1px solid #bbc1ca;\r\n		padding: 15px;\r\n		margin-top: 15px;\r\n		margin-bottom: 15px;\r\n	}\r\n	\r\n	.ranklistinfo {\r\n		width: 250px;\r\n		float: left;\r\n		padding-right: 20px;\r\n	}\r\n	\r\n	.ranklistbuttons {\r\n		width: 100px;\r\n		float: right;\r\n		margin-top: 30px;\r\n	}	\r\n	\r\n	.ranklistbuttons a {\r\n		text-decoration: none;\r\n	}\r\n	\r\n	</style>'),(16,'dlbsplash_page','<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<title>Want Results?</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody {\r\n	background-image: url(dlbsplashimages/splash_te_dlb_bg.jpg);\r\n	background-repeat: repeat-x;\r\n	margin-top: 0px;\r\n	font-family: Arial, Helvetica, sans-serif;\r\n	color: #333;\r\n}\r\n#header {\r\n	background-image: url(dlbsplashimages/splash_te_dlb_main.png);\r\n	background-repeat: no-repeat;\r\n	background-position: left top;\r\n	height: 105px;\r\n	width: 731px;\r\n	margin-right: auto;\r\n	margin-left: auto;\r\n}\r\n#main {\r\n	background-image: url(dlbsplashimages/splash_te_dlb_mid.png);\r\n	background-repeat: repeat-y;\r\n	width: 731px;\r\n	margin-right: auto;\r\n	margin-left: auto;\r\n}\r\n#footer {\r\n	background-image: url(dlbsplashimages/splash_te_dlb_main.png);\r\n	background-repeat: no-repeat;\r\n	background-position: left bottom;\r\n	height: 56px;\r\n	width: 731px;\r\n	margin-right: auto;\r\n	margin-left: auto;\r\n}\r\n#joinlink img {\r\n	float: right;\r\n}\r\n-->\r\n</style>\r\n</head>\r\n\r\n<body>\r\n<table id=\"header\" width=\"731\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <!--DWLayoutTable-->\r\n  <tr>\r\n    <td width=\"731\" height=\"70\" valign=\"top\"><!--DWLayoutEmptyCell-->&nbsp;</td>\r\n  </tr>\r\n  <tr>\r\n    <td height=\"21\" align=\"center\" valign=\"top\"><img src=\"dlbsplashimages/splash_te_dlb_anim.gif\" width=\"689\" height=\"20\" /></td>\r\n  </tr>\r\n  <tr>\r\n    <td height=\"15\"></td>\r\n  </tr>\r\n</table>\r\n<table id=\"main\" width=\"731\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <!--DWLayoutTable-->\r\n  <tr>\r\n    <td width=\"16\" height=\"166\">&nbsp;</td>\r\n    <td width=\"700\" valign=\"top\"><table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n      <!--DWLayoutTable-->\r\n      <tr>\r\n        <td width=\"700\" height=\"166\" align=\"center\" valign=\"top\">\r\n        \r\n        <div style=\"text-align: left; width: 700px;\">\r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\">\r\n	<tr>\r\n		<td width=\"25%\" valign=\"top\" align=\"center\">\r\n			<img src=\"#MEMBERPHOTOURL#\" alt=\"\"></a><br />\r\n			<strong>#FIRSTNAME# #LASTNAME#</strong>\r\n		</td>\r\n		<td valign=\"top\" align=\"center\">Get a splash page just like this to promote your 10 favorite traffic exchanges with YOUR referral IDs attached. And the best bit... It\'s all completely free!\r\n        \r\n        \r\n        <div id=\"joinlink\"><a href=\"#REFURL#\" target=\"_blank\"><img src=\"dlbsplashimages/splash_te_dlb_join.gif\" width=\"196\" height=\"35\" border=\"0\" /></a></div>\r\n        \r\n        </td>\r\n	</tr>\r\n</table>\r\n<table cellspacing=\"0\" cellpadding=\"2\" border=\"0\" width=\"100%\">\r\n	<tr></tr><tr><td colspan=\"5\">&nbsp;</td></tr><tr>\r\n		#RECOMMENDEDBANNERS#\r\n	</tr>\r\n</table>\r\n</div>\r\n        \r\n        </td>\r\n        </tr>\r\n    </table></td>\r\n    <td width=\"15\">&nbsp;</td>\r\n  </tr>\r\n</table>\r\n<table id=\"footer\" width=\"731\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <!--DWLayoutTable-->\r\n  <tr>\r\n    <td width=\"731\" height=\"27\" valign=\"top\"><!--DWLayoutEmptyCell-->&nbsp;</td>\r\n  </tr>\r\n  \r\n  <tr>\r\n    <td height=\"20\" align=\"center\" valign=\"top\"><img src=\"dlbsplashimages/splash_te_dlb_anim.gif\" width=\"689\" height=\"20\" /></td>\r\n  </tr>\r\n  <tr>\r\n    <td height=\"18\"></td>\r\n  </tr>\r\n</table>\r\n<center>\r\nGet A Cool Page Just Like This To Promote Your Top Exchanges At <a href=\"#REFURL#\" target=\"_blank\">#SITENAME#</a>\r\n</center>\r\n\r\n</body>\r\n</html>'),(17,'geniuxs_expired','&lt;html&gt;\r\n&lt;head&gt;\r\n&lt;title&gt;Link Expired&lt;/title&gt;\r\n&lt;/head&gt;\r\n\r\n&lt;body&gt;\r\n&lt;center&gt;\r\n\r\n&lt;p&gt;&lt;font size=&quot;6&quot; color=&quot;darkred&quot;&gt;&lt;b&gt;Sorry, this link has expired!&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;\r\n\r\n&lt;p&gt;&lt;font size=&quot;4&quot; color=&quot;black&quot;&gt;&lt;b&gt;But while you\'re here, check out the special bonus below...&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;\r\n\r\n&lt;script language=&quot;JavaScript&quot; src=&quot;https://soloswaps.com/bonuspage/showad.php&quot;&gt;&lt;/script&gt;\r\n\r\n&lt;/center&gt;\r\n&lt;/body&gt;\r\n\r\n&lt;/html&gt;'),(18,'surftarget_claim','<p>Your reward has been added to your account. Come back tomorrow to earn another reward!</p>'),(19,'rotator_top','<html>\r\n<head>\r\n<STYLE>\r\nbody { margin: 0; padding: 0; }\r\nimg { margin: 0; padding: 0; }\r\np { margin: 0; padding: 0; }\r\na { color: white; text-decoration:none; }\r\nimg { border:none; }\r\n</STYLE>\r\n</head>\r\n<body bgcolor=\"darkblue\">\r\n<table width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\r\n  <tr>\r\n<td width=\"20\"> </td>\r\n    <td width=\"70\"><a href=\"/index.php?rid=[ref_id]\" target=\"_blank\">[user_img]</a></td>\r\n    <td valign=\"middle\"><font size=\"4\" color=\"white\"><b>#FIRSTNAME# #LASTNAME# Presents...</font> <br />[social_info]</td>\r\n    <td width=\"468\" align=\"right\" valign=\"middle\"><a href=\"/index.php?rid=[ref_id]\" target=\"_blank\"><font size=\"4\" color=\"white\">Powered By #SITENAME#<br>Click Here To Get Your FREE Rotator</font></a></td>\r\n<td width=\"20\"> </td>\r\n  </tr>\r\n</table>\r\n</body>\r\n</html>'),(20,'sr_prizedl','#THEMEHEADER#\r\n<p style=\"TEXT-ALIGN: center\"><font size=\"5\"><b>Thank You</b></font></p>\r\n<p><font size=\"3\">You can download your prize below.  Keep looking for other pages with a SourceRanks rate box.  You may get a different prize every time you rate a page!</font></p>\r\n<center>\r\n#PRIZEDLBOX#\r\n</center>\r\n<p>&nbsp;</p>\r\n#THEMEFOOTER#'),(21,'widgetads_instr','<center>\r\n<h2>Widget Ads</h2>\r\n<p style=\"text-align:left;width:600px;\">Widget Ads are text ads that are shown on web sites belonging to other #SITENAME# members. This very powerful feature allows you to reach visitors across the web, and around the world!\r\n<br><br>\r\nTo get started, add a Widget Ad below. Then you can either convert your #SITENAME# credits into Widget Ad impressions, or you can earn impressions directly by adding a widget to your own web sites.\r\n</p>\r\n<a href=\"mywidgets.php\"><h4>Add A Widget To My Own Web Site</h4></a><br>\r\n<a href=\"widgetads_convert.php\"><h4>Convert My Credits Into Impressions</h4></a>\r\n<br>\r\n<h4>You Currently Have #WIDGETIMPS# Impressions</h4>\r\n<br><br>'),(22,'widgets_instr','<center>\r\n<p style=\"text-align:left;width:600px;\"><a href=\"mywidgetads.php\"><< Back To Widget Ads</a></p>\r\n<h2>Widgets</h2>\r\n<p style=\"text-align:left;width:600px;\">You can create widgets below, and then copy the HTML code to your own web sites to earn Widget Ad impressions at #SITENAME#. You can also choose the layout and color scheme for each widget, so that they will match the design of your site.</p>\r\n<p style=\"text-align:left;width:600px;\"><small>Please ensure that any widgets you place online conform to the following guidelines:<br>\r\n1. The widget must be in a visible location on the website.<br>\r\n2. The page that you place your widget on must NOT be rotated in any kind of autosurf, autohit or automated traffic generating program.<br>\r\n3. The webpage you place the widget on must serve a purpose OTHER THAN advertising. In other words, you cannot place the widget on a page that\'s only purpose is to generate widget views. The page you place your widget on must attract visitors for some other purpose, such as to read content on a blog for instance.<br>\r\n4. Your widget needs to be easily visible when somebody is viewing the page in a normal way. In other words, placing the widget at the bottom of a list of other ads is not acceptable because in order to see the widget, the visitor would need to scroll through all the other ads which is not normal visitor behavior.</small></p>\r\n<br>');
/*!40000 ALTER TABLE `oto_templates_defaults` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_thespot`
--

DROP TABLE IF EXISTS `oto_thespot`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_thespot` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `mtid` int(11) NOT NULL,
  `field` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_thespot`
--

LOCK TABLES `oto_thespot` WRITE;
/*!40000 ALTER TABLE `oto_thespot` DISABLE KEYS */;
INSERT INTO `oto_thespot` (`id`, `mtid`, `field`, `value`) VALUES (1,0,'ssenabled','1'),(2,0,'bidincrease','5'),(3,0,'maxtime','24'),(4,0,'startingbid','20'),(5,0,'bannertype','0'),(6,0,'defaulturl','https://trafficbuildr.com/'),(7,0,'defaultbannerurl','https://i.imgur.com/svsVgCN.jpg'),(8,0,'defaultadtxt','Get The Spot'),(9,1,'bidopen','24'),(10,1,'timer',''),(11,1,'creditsprize',''),(12,1,'bannerprize',''),(13,1,'textprize',''),(14,1,'cashprize',''),(15,1,'sqbansprize',''),(16,2,'bidopen','24'),(17,2,'timer',''),(18,2,'creditsprize',''),(19,2,'bannerprize',''),(20,2,'textprize',''),(21,2,'cashprize',''),(22,2,'sqbansprize',''),(23,3,'bidopen','24'),(24,3,'timer',''),(25,3,'creditsprize',''),(26,3,'bannerprize',''),(27,3,'textprize',''),(28,3,'cashprize',''),(29,3,'sqbansprize','');
/*!40000 ALTER TABLE `oto_thespot` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_thespotlog`
--

DROP TABLE IF EXISTS `oto_thespotlog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_thespotlog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `spotlink` int(11) NOT NULL,
  `time` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_thespotlog`
--

LOCK TABLES `oto_thespotlog` WRITE;
/*!40000 ALTER TABLE `oto_thespotlog` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_thespotlog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_thespoturl`
--

DROP TABLE IF EXISTS `oto_thespoturl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_thespoturl` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `adtext` varchar(255) NOT NULL,
  `bannerurl` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `bidamount` int(11) NOT NULL,
  `bidtime` int(11) NOT NULL,
  `views` int(11) NOT NULL,
  `current` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=432 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_thespoturl`
--

LOCK TABLES `oto_thespoturl` WRITE;
/*!40000 ALTER TABLE `oto_thespoturl` DISABLE KEYS */;
INSERT INTO `oto_thespoturl` (`id`, `userid`, `adtext`, `bannerurl`, `url`, `bidamount`, `bidtime`, `views`, `current`) VALUES (430,0,'Get The Spot','https://i.imgur.com/svsVgCN.jpg','https://trafficbuildr.com/',15,1772495410,0,0),(431,448,'Advertise And Get Paid For It !','','https://3inchads.com/ads/?ref=buzz',20,1772581810,0,1),(429,0,'Get The Spot','https://i.imgur.com/svsVgCN.jpg','https://trafficbuildr.com/',15,1772495352,0,0);
/*!40000 ALTER TABLE `oto_thespoturl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_upsells`
--

DROP TABLE IF EXISTS `oto_upsells`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_upsells` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `openkey` varchar(50) NOT NULL,
  `offername` varchar(100) NOT NULL,
  `content` longtext NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `openkey` (`openkey`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_upsells`
--

LOCK TABLES `oto_upsells` WRITE;
/*!40000 ALTER TABLE `oto_upsells` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_upsells` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_vmdash_hidden`
--

DROP TABLE IF EXISTS `oto_vmdash_hidden`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_vmdash_hidden` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `adminidnum` int(11) NOT NULL DEFAULT 0,
  `listitem` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `adminidnum` (`adminidnum`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_vmdash_hidden`
--

LOCK TABLES `oto_vmdash_hidden` WRITE;
/*!40000 ALTER TABLE `oto_vmdash_hidden` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_vmdash_hidden` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_widgetads`
--

DROP TABLE IF EXISTS `oto_widgetads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_widgetads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `state` tinyint(1) NOT NULL DEFAULT 0,
  `memid` int(11) NOT NULL,
  `ad_type` tinyint(1) NOT NULL DEFAULT 0,
  `ad_title` varchar(25) NOT NULL,
  `ad_text` varchar(75) NOT NULL,
  `ad_url` varchar(255) NOT NULL,
  `ad_file` varchar(255) NOT NULL DEFAULT '',
  `ad_reject` varchar(255) NOT NULL DEFAULT '',
  `imps` int(11) NOT NULL DEFAULT 0,
  `hits` int(11) NOT NULL DEFAULT 0,
  `clicks` int(11) NOT NULL DEFAULT 0,
  `hitstoday` int(11) NOT NULL DEFAULT 0,
  `hitsyesterday` int(11) NOT NULL DEFAULT 0,
  `lasthit` int(11) NOT NULL DEFAULT 0,
  `abassign` tinyint(3) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `state` (`state`,`memid`,`imps`,`lasthit`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_widgetads`
--

LOCK TABLES `oto_widgetads` WRITE;
/*!40000 ALTER TABLE `oto_widgetads` DISABLE KEYS */;
INSERT INTO `oto_widgetads` (`id`, `state`, `memid`, `ad_type`, `ad_title`, `ad_text`, `ad_url`, `ad_file`, `ad_reject`, `imps`, `hits`, `clicks`, `hitstoday`, `hitsyesterday`, `lasthit`, `abassign`) VALUES (1,1,151,0,'Simple - Fast - Traffic','Here\'s something you can use. Instant, hands-free, high-quality traffic.','https://ezclix.club/ss/1843','','',4996,4,0,0,0,0,0),(2,1,27,0,'We Got Friends!','Free Evaluationâ€¦ Brilliant concept solving the 2 biggest problems...','https://rebrand.ly/2ypaih8','','',1196,4,0,0,0,0,0),(3,1,75,0,'The 7 Top AI Platforms','The world of Artificial Intelligence continues to fascinate us.','https://jemi.so/aiplatforms','','',19994,6,0,0,0,0,0),(4,1,75,0,'The 7 Top AI Platforms','The world of Artificial Intelligence continues to fascinate us.','https://jemi.so/aiplatforms','','',19993,7,1,0,0,0,0),(5,1,268,0,'earn','iframe data-aa=\'2197265\' src=\'//ad.a-ads.com/2197265?size=125x125\' style=\'','https://a-ads.com','','',0,0,0,0,0,0,0),(6,1,268,0,'earn','a href=https://a-ads.com?partner=2197265Advertise with Anonymous Ads/a','https://a-ads.com','','',0,0,0,0,0,0,0),(7,1,268,0,'earn','!--Start AdsFirm.com 125x125 code--a href=https://www.adsfirm.com/?r=C','https://app.adsfirm.com','','',0,0,0,0,0,0,0),(8,1,222,0,'check this out... (OPEN)','Hey there, You\'ve been selected to be one of the1st to get access to this.','https://www.multipleincomefunnel.com/cp1/ajohn','','',45,5,1,0,0,0,0),(9,1,53,0,'Start Profiting in 24hrs','Learn Our $300 A Day BlueprintBy Posting Pre Written Ads On Social Media!','https://affilireviews.blogspot.com/2023/06/infinity-processing-system-review-2023.html','','',96,4,0,0,0,0,0),(10,1,17,0,'Get this $24K Funnel For ','This funnel earns over $24K and now your can get for free!','https://llclickpro.com/r/ecflgotp/','','',997,3,0,0,0,0,0),(12,1,60,0,'MPT is on fire','Premium ads/2x12 matrix/25% check matching pay down 4 Levels/$25 & $50 Fast','https://llpgpro.com/z62z9g8k/','','',1000,0,0,0,0,0,0),(11,1,300,0,'Clickfunnels Alternative','Clickfunnels & others are $$. Dashnex is doing a Giveaway. Claim yours now!','https://clicktrakr.biz/soloswapsmailer','','',10,0,0,0,0,0,0),(13,1,75,0,'How I\'d Make $5k/Mo With','In times of AI there is 1000 opportunities, but Iâ€™m going to give you 1.','https://docs.google.com/document/d/1fxqq_fXCoA3abhXRK-clS7EjU71RiGoxJaikYDBJXWY/edit#heading=h.r08amsfh18jb','','',3000,0,0,0,0,0,0),(20,1,312,0,'Drive Targeted Traffic On','Learn powerful ad strategies to generate high-quality traffc.','https://kerstinfrashier.com/paidtraffic','','',1000,0,0,0,0,0,0),(21,1,51,0,'May the list be with you','This Reveals How Online Fortunes Are Really Made','https://llclick.com/yc4kzbjd/soloswapswidget','','',50000,0,0,0,0,0,0),(22,1,51,0,'Times Are Tough Out There','This Is Your Ultimate Gift','https://llclick.com/r9hym9mr/soloswapsadwidget','','',50000,0,0,0,0,0,0),(18,1,140,0,'State of the Art AI-ChatG','Step into the future of business success withthis innovative platform!','https://www.bjsetc.com','','',0,0,0,0,0,0,0),(19,1,301,0,'Get A FREE Membership!','Struggling To Get Traffic, Leads, and Sales For Your Business?','https://www.im-club.com/twpage01.php?r=onesuccess','','',6210,0,0,0,0,0,0);
/*!40000 ALTER TABLE `oto_widgetads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_widgetads_iplog`
--

DROP TABLE IF EXISTS `oto_widgetads_iplog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_widgetads_iplog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ipaddress` varchar(60) DEFAULT '0',
  `memid` int(11) DEFAULT 0,
  `lasttime` int(11) DEFAULT 0,
  `dailycount` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `ipaddress` (`ipaddress`),
  KEY `memid` (`memid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_widgetads_iplog`
--

LOCK TABLES `oto_widgetads_iplog` WRITE;
/*!40000 ALTER TABLE `oto_widgetads_iplog` DISABLE KEYS */;
/*!40000 ALTER TABLE `oto_widgetads_iplog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_widgetads_settings`
--

DROP TABLE IF EXISTS `oto_widgetads_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_widgetads_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(25) NOT NULL,
  `value` varchar(75) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_widgetads_settings`
--

LOCK TABLES `oto_widgetads_settings` WRITE;
/*!40000 ALTER TABLE `oto_widgetads_settings` DISABLE KEYS */;
INSERT INTO `oto_widgetads_settings` (`id`, `field`, `value`) VALUES (1,'widgetads_enabled','1'),(2,'dailycount','10'),(3,'footerv','images/ad_footer.png'),(4,'footerh','images/ad_footer_h.png');
/*!40000 ALTER TABLE `oto_widgetads_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_widgetads_widgets`
--

DROP TABLE IF EXISTS `oto_widgetads_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_widgetads_widgets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `status` tinyint(4) DEFAULT 1,
  `skin_id` int(11) DEFAULT NULL,
  `sid_1` int(11) DEFAULT 0,
  `sid_2` int(11) DEFAULT 0,
  `type` tinyint(4) DEFAULT 1,
  `name` varchar(30) DEFAULT NULL,
  `no_images` tinyint(4) DEFAULT 0,
  `override` tinyint(4) DEFAULT 0,
  `override_image` varchar(150) DEFAULT '',
  `hits` int(11) DEFAULT 0,
  `hits_today` int(11) DEFAULT 0,
  `uhits` int(11) DEFAULT 0,
  `uhits_today` int(11) DEFAULT 0,
  `credits` int(11) DEFAULT 0,
  `credits_today` int(11) DEFAULT 0,
  `membertype` tinyint(4) DEFAULT 1,
  `loaded_url` varchar(100) DEFAULT '',
  `ref_url` varchar(100) DEFAULT '',
  `suspend_date` datetime DEFAULT NULL,
  `widget_mult` tinyint(4) DEFAULT 1,
  `width` int(11) DEFAULT 200,
  `locked` tinyint(4) DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`,`status`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_widgetads_widgets`
--

LOCK TABLES `oto_widgetads_widgets` WRITE;
/*!40000 ALTER TABLE `oto_widgetads_widgets` DISABLE KEYS */;
INSERT INTO `oto_widgetads_widgets` (`id`, `user_id`, `status`, `skin_id`, `sid_1`, `sid_2`, `type`, `name`, `no_images`, `override`, `override_image`, `hits`, `hits_today`, `uhits`, `uhits_today`, `credits`, `credits_today`, `membertype`, `loaded_url`, `ref_url`, `suspend_date`, `widget_mult`, `width`, `locked`) VALUES (2,300,1,5,0,0,1,'test',0,0,'',14,0,1,0,11,0,1,'','',NULL,1,200,0),(3,395,1,2,0,0,1,'clubshop',0,0,'',0,0,0,0,0,0,1,'','',NULL,1,200,0);
/*!40000 ALTER TABLE `oto_widgetads_widgets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_widgetpositions`
--

DROP TABLE IF EXISTS `oto_widgetpositions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_widgetpositions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `widgetid` int(11) NOT NULL,
  `adminid` int(11) NOT NULL,
  `row` int(11) NOT NULL DEFAULT 0,
  `col` varchar(20) NOT NULL DEFAULT 'left',
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `rank` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `widgetid` (`widgetid`),
  KEY `adminid` (`adminid`),
  KEY `col` (`col`),
  KEY `enabled` (`enabled`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_widgetpositions`
--

LOCK TABLES `oto_widgetpositions` WRITE;
/*!40000 ALTER TABLE `oto_widgetpositions` DISABLE KEYS */;
INSERT INTO `oto_widgetpositions` (`id`, `widgetid`, `adminid`, `row`, `col`, `enabled`, `rank`) VALUES (1,1,0,1,'left',1,1),(2,2,0,1,'center',1,2),(3,3,0,2,'left',1,3),(4,4,0,3,'left',1,5),(5,5,0,4,'left',1,6),(6,6,0,2,'center',1,4),(7,7,0,0,'left',1,0);
/*!40000 ALTER TABLE `oto_widgetpositions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oto_widgets`
--

DROP TABLE IF EXISTS `oto_widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `oto_widgets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `descr` text NOT NULL,
  `widgetfile` varchar(100) NOT NULL,
  `settingsfile` varchar(100) NOT NULL,
  `candelete` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oto_widgets`
--

LOCK TABLES `oto_widgets` WRITE;
/*!40000 ALTER TABLE `oto_widgets` DISABLE KEYS */;
INSERT INTO `oto_widgets` (`id`, `name`, `descr`, `widgetfile`, `settingsfile`, `candelete`) VALUES (1,'Member Dashboard','Lists the number of members in your site.','memberdashboard.php','',0),(2,'New From LFMVM','Delivers important information about your software, including updates, security alerts, and new plugins.','newfromlfm.php','',0),(3,'Sales Dashboard','Shows the sales and profit stats of your site.','salesdashboard.php','',0),(4,'Split Test','If you have enabled split testing in your System Settings, the stats will be shown here.  This widget will not appear if split testing is not enabled.','splittest.php','',0),(5,'Affiliate Leaderboard','Shows a list of which affiliates are making the most sales at your site.','salesleaderboard.php','',0),(6,'VM Dashboard','Displays information and stats about your viral mailer.','vmdash.php','vmdash_settings.php',0),(7,'Graph Dashboard','Shows a graph with your VM stats','graphdashboard.php','',0);
/*!40000 ALTER TABLE `oto_widgets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pmessages`
--

DROP TABLE IF EXISTS `pmessages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pmessages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `state` int(11) DEFAULT 1,
  `datesent` varchar(30) DEFAULT '0000-00-00',
  `timesent` varchar(30) NOT NULL,
  `touser` int(11) DEFAULT 0,
  `fromuser` int(11) DEFAULT 0,
  `orto` int(11) DEFAULT 0,
  `orfrom` int(11) DEFAULT 0,
  `subject` varchar(50) DEFAULT '(No Subject)',
  `body` text DEFAULT NULL,
  `teamsurf` int(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pmessages`
--

LOCK TABLES `pmessages` WRITE;
/*!40000 ALTER TABLE `pmessages` DISABLE KEYS */;
INSERT INTO `pmessages` (`id`, `state`, `datesent`, `timesent`, `touser`, `fromuser`, `orto`, `orfrom`, `subject`, `body`, `teamsurf`) VALUES (1,1,'06-14-2022','07:54:28 PM',113,27,113,27,'Thank you for Joining','Hello,  \r\n\r\nI just wanted to introduce myself and say HI.  \r\n\r\nMy name is Mark Schow I am your Refer here at SOLO SWAPS\r\nI just want to say thank you for joining.   Make sure to check out the Affiliates section and start Promoting.   \r\n\r\nAnd make sure to add your BANNERS, and Text Ads as well.\r\n\r\nI also would like for you to check out a few other sites, I think you will like.  All of them are free to Join.  \r\n\r\n\r\nHere is just a few if you would like more please let me know.\r\nJust copy and past in your browser.\r\n\r\nOver the Rainbow  Mailer\r\nhttps://rebrand.ly/0406aa\r\n\r\nPremium ad Swap:\r\nhttp://rebrand.ly/zoqhlak\r\n\r\nInstant list \r\nhttps://rebrand.ly/r148r1w\r\n\r\nFree Clicks\r\nhttps://rebrand.ly/6c4rpo1\r\n\r\nAnd this one is a great way to make some additional income,\r\nI love this, begin able to help Veterans and the Homeless.\r\nhttps://rebrand.ly/dzh3ltl\r\n \r\n\r\n\r\nThanks again.\r\n\r\nMark Schow',0),(2,1,'06-14-2022','07:56:03 PM',76,27,76,27,'Just wanted to say Thanks For Joining..','Hello, Micheal,\r\n\r\nI just wanted to introduce myself and say HI.  \r\n\r\nMy name is Mark Schow I am your Refer here at SOLO SWAPS\r\nI just want to say thank you for joining.   Make sure to check out the Affiliates section and start Promoting.   \r\n\r\nAnd make sure to add your BANNERS, and Text Ads as well.\r\n\r\nI also would like for you to check out a few other sites, I think you will like.  All of them are free to Join.  \r\n\r\n\r\nHere is just a few if you would like more please let me know.\r\nJust copy and past in your browser.\r\n\r\nOver the Rainbow  Mailer\r\nhttps://rebrand.ly/0406aa\r\n\r\nPremium ad Swap:\r\nhttp://rebrand.ly/zoqhlak\r\n\r\nInstant list \r\nhttps://rebrand.ly/r148r1w\r\n\r\nFree Clicks\r\nhttps://rebrand.ly/6c4rpo1\r\n\r\nAnd this one is a great way to make some additional income,\r\nI love this, begin able to help Veterans and the Homeless.\r\nhttps://rebrand.ly/dzh3ltl\r\n \r\nThanks again.\r\n\r\nMark Schow',0),(3,1,'06-14-2022','07:56:56 PM',75,27,75,27,'I just wanted to say Thank You!!','Hello Richard,\r\n\r\nI just wanted to introduce myself and say HI.  \r\n\r\nMy name is Mark Schow I am your Refer here at SOLO SWAPS\r\nI just want to say thank you for joining.   Make sure to check out the Affiliates section and start Promoting.   \r\n\r\nAnd make sure to add your BANNERS, and Text Ads as well.\r\n\r\nI also would like for you to check out a few other sites, I think you will like.  All of them are free to Join.  \r\n\r\n\r\nHere is just a few if you would like more please let me know.\r\nJust copy and past in your browser.\r\n\r\nOver the Rainbow  Mailer\r\nhttps://rebrand.ly/0406aa\r\n\r\nPremium ad Swap:\r\nhttp://rebrand.ly/zoqhlak\r\n\r\nInstant list \r\nhttps://rebrand.ly/r148r1w\r\n\r\nFree Clicks\r\nhttps://rebrand.ly/6c4rpo1\r\n\r\nAnd this one is a great way to make some additional income,\r\nI love this, begin able to help Veterans and the Homeless.\r\nhttps://rebrand.ly/dzh3ltl\r\n \r\n\r\n\r\nThanks again.\r\n\r\nMark Schow',0),(4,1,'07-20-2022','10:04:16 PM',113,27,113,27,'Welcome to Solo Swaps','Hello, \r\n\r\nWelcome to Solo Swaps,  I wanted to give you \r\nthis promo code.  make sure you log in every day and surf You could win a lot of great Prizes.  \r\n\r\nMy Name is Mark Schow I am your refer so if you have any questions please reach out to me and I can help you get going.\r\n\r\nHere is your Promo Code   ( Welcome143 )  all you have to do is go to click on Mail Center then Click on enter Promo code.  \r\n\r\nAnd then once you surf 50 sites you will have a lot of credits.\r\nI am here to help.  \r\n\r\nTalk to you soon.\r\n\r\nMark',0),(5,1,'07-20-2022','10:04:49 PM',76,27,76,27,'Welcome to Solo Swaps','Hello, \r\n\r\nWelcome to Solo Swaps,  I wanted to give you \r\nthis promo code.  make sure you log in every day and surf You could win a lot of great Prizes.  \r\n\r\nMy Name is Mark Schow I am your refer so if you have any questions please reach out to me and I can help you get going.\r\n\r\nHere is your Promo Code   ( Welcome143 )  all you have to do is go to click on Mail Center then Click on enter Promo code.  \r\n\r\nAnd then once you surf 50 sites you will have a lot of credits.\r\nI am here to help.  \r\n\r\nTalk to you soon.\r\n\r\nMark',0),(6,1,'07-20-2022','10:05:02 PM',75,27,75,27,'Welcome to Solo Swaps','Hello, \r\n\r\nWelcome to Solo Swaps,  I wanted to give you \r\nthis promo code.  make sure you log in every day and surf You could win a lot of great Prizes.  \r\n\r\nMy Name is Mark Schow I am your refer so if you have any questions please reach out to me and I can help you get going.\r\n\r\nHere is your Promo Code   ( Welcome143 )  all you have to do is go to click on Mail Center then Click on enter Promo code.  \r\n\r\nAnd then once you surf 50 sites you will have a lot of credits.\r\nI am here to help.  \r\n\r\nTalk to you soon.\r\n\r\nMark',0),(7,1,'09-30-2022','01:56:27 AM',76,27,76,27,'Welcome to Solo Swaps','Hello Micheal,\r\n\r\nThis is Mark I just wanted to welcome you to solo swaps.\r\ntake a look around and should you have any questions let me know.\r\n\r\nTalk to you soon\r\n\r\nMark',0),(8,1,'01-26-2023','05:45:26 PM',75,27,75,27,'Hello there','Hello Richard Powell,\r\n\r\nthanks for joining SoloSwaps,  don\'t forget to setup your \r\nbanners, and other ads.  \r\n\r\nShould you need any help let me know, and again welcome \r\naboard.\r\n\r\nMark Schow',0),(9,1,'06-27-2023','08:10:52 AM',266,5,266,5,'Your Upline Sent You Credits','Your referrer has just transferred credits to your account! To contact them, just reply to this message.',0),(10,1,'07-02-2023','09:51:01 AM',180,119,180,119,'Your Upline Sent You Credits','Your referrer has just transferred credits to your account! To contact them, just reply to this message.',0),(11,1,'10-25-2024','09:47:59 PM',417,50,417,50,'Welcome to this platform','Thank you need some credit\r\nJust reply',0);
/*!40000 ALTER TABLE `pmessages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pspam`
--

DROP TABLE IF EXISTS `pspam`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pspam` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `touser` int(11) DEFAULT NULL,
  `fromuser` int(11) DEFAULT NULL,
  `subject` varchar(100) DEFAULT '(No Subject)',
  `body` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pspam`
--

LOCK TABLES `pspam` WRITE;
/*!40000 ALTER TABLE `pspam` DISABLE KEYS */;
/*!40000 ALTER TABLE `pspam` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rotator_datelog`
--

DROP TABLE IF EXISTS `rotator_datelog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rotator_datelog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date DEFAULT NULL,
  `rotator_id` int(11) DEFAULT 0,
  `nhits` int(11) DEFAULT 0,
  `uhits` int(11) DEFAULT 0,
  `convs` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `rotator_id` (`rotator_id`)
) ENGINE=MyISAM AUTO_INCREMENT=152 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rotator_datelog`
--

LOCK TABLES `rotator_datelog` WRITE;
/*!40000 ALTER TABLE `rotator_datelog` DISABLE KEYS */;
/*!40000 ALTER TABLE `rotator_datelog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rotator_datesourcelog`
--

DROP TABLE IF EXISTS `rotator_datesourcelog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rotator_datesourcelog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date DEFAULT NULL,
  `datelog_id` int(11) DEFAULT 0,
  `logdata` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `datelog_id` (`datelog_id`)
) ENGINE=MyISAM AUTO_INCREMENT=152 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rotator_datesourcelog`
--

LOCK TABLES `rotator_datesourcelog` WRITE;
/*!40000 ALTER TABLE `rotator_datesourcelog` DISABLE KEYS */;
/*!40000 ALTER TABLE `rotator_datesourcelog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rotator_livestats`
--

DROP TABLE IF EXISTS `rotator_livestats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rotator_livestats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `stattime` int(11) DEFAULT 0,
  `user_id` int(11) DEFAULT 0,
  `rotator_id` int(11) DEFAULT 0,
  `statdata` varchar(40) DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `stattime` (`stattime`),
  KEY `user_id` (`user_id`),
  KEY `rotator_id` (`rotator_id`)
) ENGINE=MyISAM AUTO_INCREMENT=292 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rotator_livestats`
--

LOCK TABLES `rotator_livestats` WRITE;
/*!40000 ALTER TABLE `rotator_livestats` DISABLE KEYS */;
/*!40000 ALTER TABLE `rotator_livestats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rotator_sites`
--

DROP TABLE IF EXISTS `rotator_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rotator_sites` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL DEFAULT 0,
  `tracker_id` int(10) unsigned NOT NULL DEFAULT 0,
  `barvalue` int(11) unsigned NOT NULL DEFAULT 0,
  `highnum` int(3) unsigned NOT NULL DEFAULT 0,
  `lownum` int(2) unsigned NOT NULL DEFAULT 0,
  `rotator_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `rotator_id` (`rotator_id`),
  KEY `tracker_id` (`tracker_id`),
  KEY `highnum` (`highnum`),
  KEY `lownum` (`lownum`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rotator_sites`
--

LOCK TABLES `rotator_sites` WRITE;
/*!40000 ALTER TABLE `rotator_sites` DISABLE KEYS */;
INSERT INTO `rotator_sites` (`id`, `user_id`, `tracker_id`, `barvalue`, `highnum`, `lownum`, `rotator_id`) VALUES (1,91,4,50,100,86,1),(2,91,3,50,86,72,1),(3,91,7,50,72,58,1),(4,91,5,50,58,44,1),(5,91,15,50,44,30,1),(8,91,8,50,30,16,1),(9,91,13,50,16,2,1),(13,40,32,50,100,90,3),(14,40,37,50,90,80,3),(15,40,40,50,80,70,3),(16,40,31,50,70,60,3),(17,40,34,50,60,50,3),(18,40,33,50,50,40,3),(19,40,35,50,40,30,3),(20,40,38,50,30,20,3),(21,40,36,50,20,10,3),(22,40,39,50,10,0,3),(23,36,42,50,100,67,4),(24,36,43,50,67,34,4),(25,36,41,50,34,1,4),(26,263,57,50,100,90,6),(27,263,58,50,90,80,6),(28,263,59,50,80,70,6),(29,263,60,50,70,60,6),(30,263,61,50,60,50,6),(31,263,62,50,50,40,6),(32,263,63,50,40,30,6),(33,263,64,50,30,20,6),(34,263,65,50,20,10,6),(35,263,66,50,10,0,6),(36,222,78,50,100,67,8),(37,222,79,50,67,34,8),(38,222,77,50,34,1,8),(39,320,81,50,100,67,9),(40,320,83,50,67,34,9),(41,320,82,50,34,1,9),(42,445,114,50,100,67,11),(43,445,115,50,67,34,11),(44,445,116,50,34,1,11);
/*!40000 ALTER TABLE `rotator_sites` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rotators`
--

DROP TABLE IF EXISTS `rotators`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `rotators` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `name` varchar(40) NOT NULL,
  `showframe` tinyint(1) NOT NULL DEFAULT 1,
  `smartfilter` tinyint(1) NOT NULL DEFAULT 1,
  `showphoto` tinyint(1) NOT NULL DEFAULT 1,
  `showsocial` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rotators`
--

LOCK TABLES `rotators` WRITE;
/*!40000 ALTER TABLE `rotators` DISABLE KEYS */;
INSERT INTO `rotators` (`id`, `user_id`, `name`, `showframe`, `smartfilter`, `showphoto`, `showsocial`) VALUES (1,91,'lincsrotator',1,1,1,1),(3,40,'myprograms',1,1,1,1),(4,36,'livegoodtoday',1,1,1,1),(5,242,'5dollarfriday',1,1,1,1),(6,263,'linesrotate',1,1,1,1),(8,222,'multipleincome',1,1,1,1),(9,320,'healthymoosi',1,1,1,1),(10,75,'ai',1,1,1,1),(11,445,'1',1,1,0,1);
/*!40000 ALTER TABLE `rotators` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sg_ban_exclude`
--

DROP TABLE IF EXISTS `sg_ban_exclude`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sg_ban_exclude` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `domain` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sg_ban_exclude`
--

LOCK TABLES `sg_ban_exclude` WRITE;
/*!40000 ALTER TABLE `sg_ban_exclude` DISABLE KEYS */;
/*!40000 ALTER TABLE `sg_ban_exclude` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sg_ban_types`
--

DROP TABLE IF EXISTS `sg_ban_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sg_ban_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sg_ban_types`
--

LOCK TABLES `sg_ban_types` WRITE;
/*!40000 ALTER TABLE `sg_ban_types` DISABLE KEYS */;
INSERT INTO `sg_ban_types` (`id`, `type`) VALUES (1,1),(2,2),(3,3),(4,4),(5,5),(6,6);
/*!40000 ALTER TABLE `sg_ban_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sg_checker_actions`
--

DROP TABLE IF EXISTS `sg_checker_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sg_checker_actions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `action` int(11) NOT NULL DEFAULT 0,
  `mailadmin` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sg_checker_actions`
--

LOCK TABLES `sg_checker_actions` WRITE;
/*!40000 ALTER TABLE `sg_checker_actions` DISABLE KEYS */;
INSERT INTO `sg_checker_actions` (`id`, `name`, `action`, `mailadmin`) VALUES (1,'Not Found',1,0),(2,'Too Many Redirects',1,0),(3,'Hidden IFrame',1,0),(4,'Encoded JavaScript',1,0),(5,'Frame Breaking Code',1,0),(6,'Site Banned By You',1,0),(7,'Site In Central Ban',1,0),(8,'Virus',1,0),(9,'Google - Suspected phishing page',1,0),(10,'Google - Suspected malicious code',1,0);
/*!40000 ALTER TABLE `sg_checker_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sg_mban_actions`
--

DROP TABLE IF EXISTS `sg_mban_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sg_mban_actions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `action` int(11) NOT NULL DEFAULT 0,
  `mailadmin` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sg_mban_actions`
--

LOCK TABLES `sg_mban_actions` WRITE;
/*!40000 ALTER TABLE `sg_mban_actions` DISABLE KEYS */;
INSERT INTO `sg_mban_actions` (`id`, `name`, `action`, `mailadmin`) VALUES (1,'Chargeback/Reversal',1,1),(2,'Cheater',1,1),(3,'Unreasonable Dispute',0,1),(4,'Other',0,1);
/*!40000 ALTER TABLE `sg_mban_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sg_mban_list`
--

DROP TABLE IF EXISTS `sg_mban_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sg_mban_list` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(100) NOT NULL,
  `ipaddress` varchar(50) NOT NULL,
  `type` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sg_mban_list`
--

LOCK TABLES `sg_mban_list` WRITE;
/*!40000 ALTER TABLE `sg_mban_list` DISABLE KEYS */;
INSERT INTO `sg_mban_list` (`id`, `email`, `ipaddress`, `type`) VALUES (1,'a.david.beaman@gmail.com','75.108.137.122',1),(2,'aarontroops@gmail.com','184.62.2.180',1),(3,'bjfolly08@gmail.com','75.106.92.112',1),(4,'jwors35@gmail.com','72.204.30.54',1),(5,'jeffindarden@gmail.com','135.84.228.231',2),(6,'srinivasmoluguri84@gmail.com','103.96.18.8',2),(7,'boinirajitha11@gmail.com','106.208.116.15',2),(8,'molugurimoksha@gmail.com','106.208.28.143',2),(9,'gadhearun7979@gmail.com','106.208.21.41',2),(10,'kesarisuresh77@gmail.com','49.37.152.79',2),(11,'himanshunarmala15@gmail.com','157.48.254.16',2),(12,'anvithraju4670@gmail.com','223.182.56.52',2),(13,'kesaridmstrategies@gmail.com','49.37.158.201',2),(14,'varshakante4579@gmail.com','49.37.153.40',2),(15,'yaminigowtham14@gmail.com','49.37.153.36',2),(16,'bimmernut318@gmail.com','195.208.126.217',2),(17,'rajeshkudala101@gmail.com','223.228.73.226',1),(18,'rgigens@emergentvillage.org','197.167.20.189',1),(19,'egzonmehmedi01@gmail.com','178.218.167.211',1);
/*!40000 ALTER TABLE `sg_mban_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sg_mban_types`
--

DROP TABLE IF EXISTS `sg_mban_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sg_mban_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sg_mban_types`
--

LOCK TABLES `sg_mban_types` WRITE;
/*!40000 ALTER TABLE `sg_mban_types` DISABLE KEYS */;
/*!40000 ALTER TABLE `sg_mban_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sg_settings`
--

DROP TABLE IF EXISTS `sg_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sg_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `value` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sg_settings`
--

LOCK TABLES `sg_settings` WRITE;
/*!40000 ALTER TABLE `sg_settings` DISABLE KEYS */;
INSERT INTO `sg_settings` (`id`, `name`, `value`) VALUES (1,'timer','5'),(2,'exchange','soloswaps.com'),(3,'key','786d3e2046dde235f92e047f02d4a3ae'),(4,'hitsconnectid','7296'),(5,'adminemail','support@surfingguard.com'),(6,'sgusername',''),(7,'sgpassword',''),(8,'keeplogs','30'),(9,'serverrequired','0'),(10,'version','2'),(11,'lastcbmon','1782486910'),(12,'adminreply','support@surfingguard.com');
/*!40000 ALTER TABLE `sg_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_banip`
--

DROP TABLE IF EXISTS `tracker_banip`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_banip` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ipaddress` varchar(60) NOT NULL DEFAULT '',
  `reason` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ipaddress` (`ipaddress`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_banip`
--

LOCK TABLES `tracker_banip` WRITE;
/*!40000 ALTER TABLE `tracker_banip` DISABLE KEYS */;
/*!40000 ALTER TABLE `tracker_banip` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_conversions`
--

DROP TABLE IF EXISTS `tracker_conversions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_conversions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date DEFAULT NULL,
  `ipaddress` varchar(60) NOT NULL DEFAULT '',
  `rotator_id` int(11) DEFAULT 0,
  `tracker_id` int(11) DEFAULT 0,
  `source_id` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `ipaddress` (`ipaddress`),
  KEY `rotator_id` (`rotator_id`),
  KEY `tracker_id` (`tracker_id`),
  KEY `source_id` (`source_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_conversions`
--

LOCK TABLES `tracker_conversions` WRITE;
/*!40000 ALTER TABLE `tracker_conversions` DISABLE KEYS */;
/*!40000 ALTER TABLE `tracker_conversions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_datelog`
--

DROP TABLE IF EXISTS `tracker_datelog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_datelog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date DEFAULT NULL,
  `tracker_id` int(11) DEFAULT 0,
  `nhits` int(11) DEFAULT 0,
  `uhits` int(11) DEFAULT 0,
  `convs` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `tracker_id` (`tracker_id`)
) ENGINE=MyISAM AUTO_INCREMENT=266 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_datelog`
--

LOCK TABLES `tracker_datelog` WRITE;
/*!40000 ALTER TABLE `tracker_datelog` DISABLE KEYS */;
/*!40000 ALTER TABLE `tracker_datelog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_datesourcelog`
--

DROP TABLE IF EXISTS `tracker_datesourcelog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_datesourcelog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date DEFAULT NULL,
  `datelog_id` int(11) DEFAULT 0,
  `logdata` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `datelog_id` (`datelog_id`)
) ENGINE=MyISAM AUTO_INCREMENT=266 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_datesourcelog`
--

LOCK TABLES `tracker_datesourcelog` WRITE;
/*!40000 ALTER TABLE `tracker_datesourcelog` DISABLE KEYS */;
/*!40000 ALTER TABLE `tracker_datesourcelog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_iplog`
--

DROP TABLE IF EXISTS `tracker_iplog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_iplog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date DEFAULT NULL,
  `lasttime` int(11) DEFAULT 0,
  `ipaddress` varchar(60) NOT NULL DEFAULT '',
  `rotator_id` int(11) DEFAULT 0,
  `tracker_id` int(11) DEFAULT 0,
  `source_id` int(11) DEFAULT 0,
  `nhits` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `lasttime` (`lasttime`),
  KEY `ipaddress` (`ipaddress`),
  KEY `rotator_id` (`rotator_id`),
  KEY `tracker_id` (`tracker_id`),
  KEY `source_id` (`source_id`)
) ENGINE=MyISAM AUTO_INCREMENT=292 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_iplog`
--

LOCK TABLES `tracker_iplog` WRITE;
/*!40000 ALTER TABLE `tracker_iplog` DISABLE KEYS */;
/*!40000 ALTER TABLE `tracker_iplog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_livestats`
--

DROP TABLE IF EXISTS `tracker_livestats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_livestats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `stattime` int(11) DEFAULT 0,
  `user_id` int(11) DEFAULT 0,
  `tracker_id` int(11) DEFAULT 0,
  `statdata` varchar(40) DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `stattime` (`stattime`),
  KEY `user_id` (`user_id`),
  KEY `tracker_id` (`tracker_id`)
) ENGINE=MyISAM AUTO_INCREMENT=303 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_livestats`
--

LOCK TABLES `tracker_livestats` WRITE;
/*!40000 ALTER TABLE `tracker_livestats` DISABLE KEYS */;
/*!40000 ALTER TABLE `tracker_livestats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_prizes`
--

DROP TABLE IF EXISTS `tracker_prizes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_prizes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` int(11) NOT NULL DEFAULT 0,
  `image` varchar(30) NOT NULL DEFAULT 'none',
  `filename` varchar(30) NOT NULL DEFAULT 'none',
  `title` varchar(40) NOT NULL DEFAULT 'none',
  `descr` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_prizes`
--

LOCK TABLES `tracker_prizes` WRITE;
/*!40000 ALTER TABLE `tracker_prizes` DISABLE KEYS */;
INSERT INTO `tracker_prizes` (`id`, `type`, `image`, `filename`, `title`, `descr`) VALUES (1,1,'imagepak.gif','imagepack.zip','Image Pack','A large collection of clip images that you can use to decorate your web site, squeeze pages, and more!');
/*!40000 ALTER TABLE `tracker_prizes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_prizeswon`
--

DROP TABLE IF EXISTS `tracker_prizeswon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_prizeswon` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date DEFAULT NULL,
  `prizeid` int(11) NOT NULL DEFAULT 0,
  `ipaddress` varchar(60) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `prizeid` (`prizeid`),
  KEY `ipaddress` (`ipaddress`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_prizeswon`
--

LOCK TABLES `tracker_prizeswon` WRITE;
/*!40000 ALTER TABLE `tracker_prizeswon` DISABLE KEYS */;
/*!40000 ALTER TABLE `tracker_prizeswon` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_rates`
--

DROP TABLE IF EXISTS `tracker_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_rates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `rotator_id` int(11) DEFAULT 0,
  `tracker_id` int(11) NOT NULL DEFAULT 0,
  `source_id` int(11) NOT NULL DEFAULT 0,
  `rate` int(11) NOT NULL DEFAULT 0,
  `date` date DEFAULT NULL,
  `abuseflag` int(11) NOT NULL DEFAULT 0,
  `ipaddress` varchar(60) NOT NULL DEFAULT '',
  `comment` varchar(81) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `rotator_id` (`rotator_id`),
  KEY `tracker_id` (`tracker_id`),
  KEY `source_id` (`source_id`),
  KEY `rate` (`rate`),
  KEY `date` (`date`),
  KEY `abuseflag` (`abuseflag`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_rates`
--

LOCK TABLES `tracker_rates` WRITE;
/*!40000 ALTER TABLE `tracker_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `tracker_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_settings`
--

DROP TABLE IF EXISTS `tracker_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field` varchar(20) DEFAULT NULL,
  `value` varchar(60) NOT NULL DEFAULT 'None',
  PRIMARY KEY (`id`),
  UNIQUE KEY `field` (`field`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_settings`
--

LOCK TABLES `tracker_settings` WRITE;
/*!40000 ALTER TABLE `tracker_settings` DISABLE KEYS */;
INSERT INTO `tracker_settings` (`id`, `field`, `value`) VALUES (1,'frameheight','60'),(2,'lastcron','2026-06-26'),(3,'livestats','1'),(4,'keepdailylogs','182'),(5,'keepsourcelogs','30'),(6,'showhelptab','1'),(7,'helpurl','https://thetrafficexchangescript.com/rotmemhelp.php'),(8,'notifyabuse','1');
/*!40000 ALTER TABLE `tracker_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_sources`
--

DROP TABLE IF EXISTS `tracker_sources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_sources` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `url` varchar(100) DEFAULT NULL,
  `markdel` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `url` (`url`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_sources`
--

LOCK TABLES `tracker_sources` WRITE;
/*!40000 ALTER TABLE `tracker_sources` DISABLE KEYS */;
INSERT INTO `tracker_sources` (`id`, `url`, `markdel`) VALUES (1,'soloswaps.com',0),(2,'freeadvertisingforyou.com',0),(3,'premiumadswap.com',0),(4,'freeclicks.net',0),(5,'1000freeclicks.com',0),(6,'cryptoklicks.com',0),(7,'traffikcoop.com',0),(8,'google.com',0),(9,'trafficbuildr.com',0),(10,'zaneyclicks.com',0),(11,'showmyads.online',0);
/*!40000 ALTER TABLE `tracker_sources` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_trackdata`
--

DROP TABLE IF EXISTS `tracker_trackdata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_trackdata` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `lasttime` int(11) DEFAULT 0,
  `user_id` int(11) DEFAULT 0,
  `rotator_id` int(11) DEFAULT 0,
  `tracker_id` int(11) DEFAULT 0,
  `source_id` int(11) DEFAULT 0,
  `nhits` int(11) DEFAULT 0,
  `nconvs` int(11) DEFAULT 0,
  `ratehits` int(11) DEFAULT 0,
  `nrates` int(11) DEFAULT 0,
  `avgrate` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `lasttime` (`lasttime`),
  KEY `user_id` (`user_id`),
  KEY `rotator_id` (`rotator_id`),
  KEY `tracker_id` (`tracker_id`),
  KEY `source_id` (`source_id`),
  KEY `nhits` (`nhits`),
  KEY `nconvs` (`nconvs`),
  KEY `ratehits` (`ratehits`),
  KEY `nrates` (`nrates`),
  KEY `avgrate` (`avgrate`)
) ENGINE=MyISAM AUTO_INCREMENT=66 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_trackdata`
--

LOCK TABLES `tracker_trackdata` WRITE;
/*!40000 ALTER TABLE `tracker_trackdata` DISABLE KEYS */;
INSERT INTO `tracker_trackdata` (`id`, `lasttime`, `user_id`, `rotator_id`, `tracker_id`, `source_id`, `nhits`, `nconvs`, `ratehits`, `nrates`, `avgrate`) VALUES (2,1659574509,91,1,4,1,1,0,0,0,0),(3,1660479984,91,1,3,1,2,0,0,0,0),(4,1661188445,91,0,5,1,3,0,0,0,0),(7,1661212589,91,1,7,1,2,0,0,0,0),(6,1661188398,91,0,13,1,1,0,0,0,0),(8,1661523221,91,1,8,1,1,0,0,0,0),(10,1661731586,91,1,15,2,1,0,0,0,0),(11,1661731611,91,1,5,2,1,0,0,0,0),(13,1674220129,40,3,31,3,1,0,0,0,0),(14,1674220194,40,3,40,4,1,0,0,0,0),(15,1674220249,40,3,38,5,1,0,0,0,0),(16,1674220409,40,3,32,6,1,0,0,0,0),(17,1715804107,40,3,33,7,3,0,0,0,0),(18,1676372008,40,3,38,7,2,0,0,0,0),(19,1679534391,40,3,34,5,2,0,0,0,0),(20,1674511394,40,3,39,7,1,0,0,0,0),(21,1674533499,40,3,39,6,1,0,0,0,0),(22,1674941989,40,3,34,3,1,0,0,0,0),(23,1675114533,40,3,35,7,1,0,0,0,0),(24,1675639102,40,3,34,7,1,0,0,0,0),(25,1676025034,40,3,37,6,1,0,0,0,0),(26,1680093842,40,3,32,3,2,0,0,0,0),(27,1676595258,40,3,36,8,1,0,0,0,0),(28,1677726006,40,3,32,5,1,0,0,0,0),(29,1684780462,40,3,33,3,2,0,0,0,0),(30,1678667834,40,3,35,6,1,0,0,0,0),(31,1679008431,40,3,38,4,1,0,0,0,0),(32,1680154733,40,3,36,7,1,0,0,0,0),(33,1692097091,263,6,66,9,24,0,0,0,0),(34,1681482785,263,6,61,10,3,0,0,0,0),(35,1681444415,263,6,57,10,3,0,0,0,0),(36,1681436711,263,6,60,10,4,0,0,0,0),(37,1681377571,263,6,58,10,2,0,0,0,0),(38,1681461276,263,6,64,10,3,0,0,0,0),(39,1691319255,263,6,62,9,25,0,0,0,0),(40,1681415552,263,6,63,10,2,0,0,0,0),(41,1681399273,263,6,62,10,1,0,0,0,0),(42,1681408178,263,6,66,10,1,0,0,0,0),(43,1681428501,263,6,59,10,2,0,0,0,0),(44,1681473736,263,6,65,10,2,0,0,0,0),(45,1681496471,263,6,57,11,1,0,0,0,0),(46,1691943911,263,6,57,9,18,0,0,0,0),(47,1691729860,263,6,60,9,26,0,0,0,0),(48,1691630479,263,6,58,9,22,0,0,0,0),(49,1691709236,263,6,65,9,26,0,0,0,0),(50,1692023076,263,6,63,9,23,0,0,0,0),(51,1691378475,263,6,61,9,12,0,0,0,0),(52,1690927507,263,6,64,9,20,0,0,0,0),(53,1691616382,263,6,59,9,17,0,0,0,0),(54,1684728874,36,4,41,1,1,0,0,0,0),(55,1694941826,40,3,31,7,1,0,0,0,0),(56,1697032981,320,9,83,1,1,0,0,0,0),(65,1751376952,445,11,114,1,1,0,0,0,0),(58,1712968109,91,0,15,1,8,0,0,0,0),(59,1716120807,91,0,84,1,1,0,0,0,0),(60,1716120818,91,0,86,1,1,0,0,0,0),(61,1716385489,140,0,100,1,1,0,0,0,0),(62,1716939512,91,0,7,1,1,0,0,0,0),(64,1751376930,445,11,115,1,1,0,0,0,0);
/*!40000 ALTER TABLE `tracker_trackdata` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_urls`
--

DROP TABLE IF EXISTS `tracker_urls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_urls` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `name` varchar(40) NOT NULL,
  `state` tinyint(1) NOT NULL DEFAULT 0,
  `sourceranks` tinyint(1) NOT NULL DEFAULT 0,
  `autoconv` tinyint(1) NOT NULL DEFAULT 0,
  `url` varchar(150) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `user_id` (`user_id`),
  KEY `state` (`state`),
  KEY `sourceranks` (`sourceranks`)
) ENGINE=InnoDB AUTO_INCREMENT=119 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_urls`
--

LOCK TABLES `tracker_urls` WRITE;
/*!40000 ALTER TABLE `tracker_urls` DISABLE KEYS */;
INSERT INTO `tracker_urls` (`id`, `user_id`, `name`, `state`, `sourceranks`, `autoconv`, `url`) VALUES (3,91,'mypipstracker',0,0,0,'https://www.pluginprofitsite.com/main-47528'),(4,91,'digbiztracker',0,0,0,'https://www.lincsnicks.com/'),(5,91,'myrpmtracker',0,0,0,'https://warriorplus.com/o2/a/w9xr1y/0'),(7,91,'myilistrotator',0,0,0,'https://instantlist.club/r/lincsnicksrotat'),(8,91,'mytrafficswarm',0,0,0,'https://www.trafficswarm.com/go.cgi?1612774'),(13,91,'theclickengine',0,0,0,'https://warriorplus.com/o2/a/bzfq8r/0'),(15,91,'myllcoop',0,0,0,'https://lltrco.com/?r=lincsllp'),(16,165,'09',0,0,0,'https://bit.ly/3wA0283'),(17,165,'08',0,0,0,'https://bit.ly/3wA0283'),(18,165,'07',0,0,0,'https://bit.ly/3wA0283'),(19,165,'06',0,0,0,'https://bit.ly/3wA0283'),(20,165,'05',0,0,0,'https://bit.ly/3wA0283'),(21,165,'04',0,0,0,'https://bit.ly/3wA0283'),(22,165,'03',0,0,0,'https://bit.ly/3wA0283'),(23,165,'02',0,0,0,'https://bit.ly/3wA0283'),(24,165,'01',0,0,0,'https://bit.ly/3wA0283'),(25,165,'0q',0,0,0,'https://bit.ly/3wA0283'),(31,40,'coreseo',0,0,0,'https://paykstrt.com/23459/47519'),(32,40,'addresponse',0,0,0,'https://paykstrt.com/23457/47519'),(33,40,'groupleads',0,0,0,'https://paykstrt.com/23449/47519'),(34,40,'gamification',0,0,0,'https://paykstrt.com/24051/47519'),(35,40,'leadgoldmine',0,0,0,'https://paykstrt.com/24050/47519'),(36,40,'trafficjeet',0,0,0,'https://paykstrt.com/26083/47519'),(37,40,'adplify',0,0,0,'https://paykstrt.com/26083/47519'),(38,40,'leadpal',0,0,0,'https://paykstrt.com/39762/47519'),(39,40,'unlimitedhost',0,0,0,'https://paykstrt.com/42248/47519'),(40,40,'clicktrakr',0,0,0,'https://paykstrt.com/40303/47519'),(41,36,'livegoodtoday',0,0,0,'https://llpgpro.com/68scgjxx/'),(42,36,'cp2livegood',0,0,0,'https://llpgpro.com/hwf3t7c8/'),(43,36,'cp3',0,0,0,'https://llpgpro.com/7rhzjf2s/'),(45,242,'freetraffic',0,0,0,'https://mb101.net/freetraffic'),(46,242,'instaprofile',0,0,0,'https://mb101.net/insta-profile'),(57,263,'lines001',0,0,0,'https://bucketsofbanners.com/splashbc.php?bob=linesent60'),(58,263,'lines002',0,0,0,'https://bannerstaker.com/papawstv'),(59,263,'lines003',0,0,0,'https://www.elitebannerads.com/?papawstv'),(60,263,'lines004',0,0,0,'https://ezbannerz.net/?papawstv'),(61,263,'lines005',0,0,0,'https://onemillionclicks.im-club.com/?papawstv'),(62,263,'lines006',0,0,0,'https://www.LiveGoodTour.com/michelines?SOURCE=SoloSwapsRotator'),(63,263,'lines007',0,0,0,'https://affiliate-traffic.website/?rid=152'),(64,263,'lines008',0,0,0,'https://submitads4free.com/supersplash.php?rid=4355'),(65,263,'lines009',0,0,0,'https://wizardte.com/supersplash.php?rid=452'),(66,263,'lines010',0,0,0,'https://advertisingblowout.com/splashpage.php?id=9045'),(77,222,'multipleincome',0,0,0,'https://www.multipleincomefunnel.com/cp1/ajohn'),(78,222,'multipleinco2',0,0,0,'https://www.multipleincomefunnel.com/cp2/ajohn'),(79,222,'multipleinco3',0,0,0,'https://www.multipleincomefunnel.com/cp3/ajohn'),(80,298,'httpsatriple',0,0,0,'https://atripleinstant.com'),(81,320,'coop',0,0,0,'https://lltrco.com/?r=marketingmoosi'),(82,320,'funnelspecial',0,0,0,'https://lllpg.com/vhk2m5sr/'),(83,320,'ezc',0,0,0,'https://ezhitzs.com/m/5219'),(84,91,'olspautocommi',0,0,0,'https://tdpages.com/67997/page159289'),(85,91,'snapit',0,0,0,'https://www.nexussnap.com/lincsnxr'),(86,91,'supertoolsmax',0,0,0,'https://supertoolsmax.com/?r=LincsSTMAX'),(87,336,'donaldmaull',1,0,0,'https:/<a href=\"https://trafficbuildr.com/?rid=9670\"><img src=\"https://imgur.com/ZfvyqK5.jpg\"></a>'),(88,337,'harnessthepow',0,0,0,'https://www.TheBizCreators.com/?rd=fj4lkKwZ'),(89,337,'postto5000',0,0,0,'https://www.TheBizCreators.com/?rd=vk98BeIO'),(90,337,'whoelsewants',0,0,0,'https://www.TheBizCreators.com/?rd=mv1hEenX'),(91,337,'getthese7mag',0,0,0,'https://www.TheBizCreators.com/?rd=ik7EchP1'),(92,337,'thewealthyaf',0,0,0,'https://www.TheBizCreators.com/?rd=uy0itDI4'),(93,337,'discoverhowto',0,0,0,'https://www.TheBizCreators.com/?rd=ck2TGNCe'),(94,337,'freereport',0,0,0,'https://www.TheBizCreators.com/?rd=av3UGyGL'),(95,337,'freegift',0,0,0,'https://www.TheBizCreators.com/?rd=uh8MuDA5'),(96,337,'limitedbonus',0,0,0,'https://www.TheBizCreators.com/?rd=rj5hS3MQ'),(97,337,'moneymaking',0,0,0,'https://www.TheBizCreators.com/?rd=xd3ZnCuU'),(98,140,'worldprofit',0,0,0,'https://www.bjsetc.com/?rd=pd5G7xMF'),(99,140,'livegood',0,0,0,'https://www.bjsetc.com/?rd=jz4sXYmn'),(100,140,'lgproducts',0,0,0,'https://www.shoplivegood.com/Kr8zzy?SOURCE=WP'),(101,405,'all4web',0,0,0,'https://all4webs.com/tactical2k'),(102,53,'wavestate',0,0,0,'https://wavestatebliss.com'),(103,75,'site103',0,0,0,'https://tinyurl.com/5e6vyzax'),(104,75,'site104',0,0,0,'https://tinyurl.com/5e6vyzax'),(105,75,'site105',0,0,0,'https://tinyurl.com/5e6vyzax'),(106,75,'site106',0,0,0,'https://tinyurl.com/5e6vyzax'),(107,75,'site107',0,0,0,'https://tinyurl.com/5e6vyzax'),(108,75,'site108',0,0,0,'https://tinyurl.com/5e6vyzax'),(109,75,'site109',0,0,0,'https://tinyurl.com/5e6vyzax'),(110,75,'site110',0,0,0,'https://tinyurl.com/5e6vyzax'),(111,75,'site111',0,0,0,'https://tinyurl.com/5e6vyzax'),(112,75,'site112',0,0,0,'https://tinyurl.com/5e6vyzax'),(113,351,'rotate4all',0,0,0,'https://www.rotate4all.com/ptp/promote-266948'),(114,445,'saveclub',0,0,0,'https://tinyurl.com/save217'),(115,445,'trafficboost',0,0,0,'https://www.trafficboostupx.com?via=shirleyr'),(116,445,'hitzcash',0,0,0,'https://hitzcash.com/fbupd3cu'),(117,448,'moneyforbiz',0,0,0,'https://app.freeforyou.com/ir/2xi4'),(118,673,'searchdriveng',0,0,0,'https://llclick.com/r/p9zgg9r5/');
/*!40000 ALTER TABLE `tracker_urls` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tracker_verify`
--

DROP TABLE IF EXISTS `tracker_verify`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tracker_verify` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date DEFAULT NULL,
  `user_id` int(11) DEFAULT 0,
  `rotator_id` int(11) DEFAULT 0,
  `tracker_id` int(11) NOT NULL DEFAULT 0,
  `source_id` int(11) NOT NULL DEFAULT 0,
  `ipaddress` varchar(60) NOT NULL DEFAULT '',
  `verifycode` varchar(34) DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `user_id` (`user_id`),
  KEY `rotator_id` (`rotator_id`),
  KEY `tracker_id` (`tracker_id`),
  KEY `source_id` (`source_id`),
  KEY `ipaddress` (`ipaddress`),
  KEY `verifycode` (`verifycode`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tracker_verify`
--

LOCK TABLES `tracker_verify` WRITE;
/*!40000 ALTER TABLE `tracker_verify` DISABLE KEYS */;
/*!40000 ALTER TABLE `tracker_verify` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'soloswaps_sl26'
--

--
-- Dumping routines for database 'soloswaps_sl26'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2026-06-26  8:25:07
